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 = "" ...@@ -4,7 +4,7 @@ def version = ""
pipeline { pipeline {
environment { environment {
registry = "hftstuttgart/modocot-backend" registry = "hftstuttgart/dtt-backend"
registryCredential = 'Dockerhub' registryCredential = 'Dockerhub'
dockerImage = '' dockerImage = ''
} }
......
...@@ -47,9 +47,9 @@ public class ExecuteTestUtil { ...@@ -47,9 +47,9 @@ public class ExecuteTestUtil {
public ResultSummary runTests(String assignmentId, Path workDirectory) throws IOException, InterruptedException { 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 // 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 testPath = Paths.get(workDirectory.toAbsolutePath().toString(), "/test");
Path srcPath = Paths.get(workDirectory.toAbsolutePath().toString(), "src"); Path srcPath = Paths.get(workDirectory.toAbsolutePath().toString(), "/src");
Path resultPath = Paths.get(workDirectory.toAbsolutePath().toString(), "result"); Path resultPath = Paths.get(workDirectory.toAbsolutePath().toString(), "/result");
// clone stored test to tmpdir // clone stored test to tmpdir
LOG.debug("copying pre-downloaded unitttest repo"); 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