Skip to content

Commit 5bcbc4f

Browse files
committed
Move to /opt/exercism/gdscript/test-runner/
Keeps Docker vs. native more consistent while avoiding collisions on native systems
1 parent f32e6cf commit 5bcbc4f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ RUN wget https://github.com/godotengine/godot/releases/download/4.4.1-stable/God
1212
mv Godot_v4.4.1-stable_linux.x86_64 /usr/bin/godot && \
1313
rm Godot_v4.4.1-stable_linux.x86_64.zip
1414

15-
WORKDIR /opt/test-runner
15+
WORKDIR /opt/exercism/gdscript/test-runner
1616
COPY . .
17-
ENTRYPOINT ["/opt/test-runner/bin/run.sh"]
17+
ENTRYPOINT ["/opt/exercism/gdscript/test-runner/bin/run.sh"]

bin/run-tests-in-docker.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ docker run \
2323
--rm \
2424
--network none \
2525
--read-only \
26-
--mount type=bind,src="${PWD}/tests",dst=/opt/test-runner/tests \
26+
--mount type=bind,src="${PWD}/tests",dst=/opt/exercism/gdscript/test-runner/tests \
2727
--mount type=tmpfs,dst=/tmp \
28-
--volume "${PWD}/bin/run-tests.sh:/opt/test-runner/bin/run-tests.sh" \
29-
--workdir /opt/test-runner \
30-
--entrypoint /opt/test-runner/bin/run-tests.sh \
28+
--volume "${PWD}/bin/run-tests.sh:/opt/exercism/gdscript/test-runner/bin/run-tests.sh" \
29+
--workdir /opt/exercism/gdscript/test-runner \
30+
--entrypoint /opt/exercism/gdscript/test-runner/bin/run-tests.sh \
3131
exercism/test-runner

0 commit comments

Comments
 (0)