Verified Commit f9d40e24 authored by Lukas Wiest's avatar Lukas Wiest 🚂
Browse files

refactor(ci): dtt transition

parent 553a3e8d
......@@ -4,7 +4,7 @@ def version = ""
pipeline {
environment {
registry = "hftstuttgart/modocot-backend"
registry = "hftstuttgart/dtt-backend"
registryCredential = 'Dockerhub'
dockerImage = ''
}
......
......@@ -47,9 +47,9 @@ public class ExecuteTestUtil {
public ResultSummary runTests(String assignmentId, Path workDirectory) throws IOException, InterruptedException {
// define paths for the test, the submission and where the result is to be expected afterwards
Path testPath = Paths.get(workDirectory.toAbsolutePath().toString(), "test");
Path srcPath = Paths.get(workDirectory.toAbsolutePath().toString(), "src");
Path resultPath = Paths.get(workDirectory.toAbsolutePath().toString(), "result");
Path testPath = Paths.get(workDirectory.toAbsolutePath().toString(), "/test");
Path srcPath = Paths.get(workDirectory.toAbsolutePath().toString(), "/src");
Path resultPath = Paths.get(workDirectory.toAbsolutePath().toString(), "/result");
// clone stored test to tmpdir
LOG.debug("copying pre-downloaded unitttest repo");
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment