Skip to content

Commit 30de883

Browse files
committed
Fix running of App Recovery tests
1 parent f8ae923 commit 30de883

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/workflows.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333
run: docker pull openanalytics/shinyproxy-demo:latest
3434
- name: Build with Maven
3535
run: mvn -U clean install -DskipTests
36+
- name: Copy Artifact
37+
run: cp target/containerproxy-*-exec.jar target/containerproxy-app-recovery.jar
3638
- name: Run Tests
3739
run: mvn test
3840

src/test/java/eu/openanalytics/containerproxy/test/helpers/ShinyProxyInstance.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public ShinyProxyInstance(String id, String configFileName, int port, String ext
3939
int mgmtPort = port % 1000 + 9000;
4040

4141
processBuilder = new ProcessBuilder("java", "-jar",
42-
"target/containerproxy-0.8.9-SNAPSHOT-exec.jar",
42+
"target/containerproxy-app-recovery.jar",
4343
"--spring.config.location=src/test/resources/" + configFileName,
4444
"--server.port=" + port,
4545
"--management.server.port=" + mgmtPort,

0 commit comments

Comments
 (0)