Skip to content

Commit 9613372

Browse files
author
mike dupont
committed
Creating a mounted source
we have a docker image with older test scripts, we mount the current sources into "/app/source" and can call newer test scripts in that directory.
1 parent 6ecb4b9 commit 9613372

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.github/workflows/run-docker-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: docker pull ${{ inputs.image_url || env.default_image }}
3232

3333
- name: run the Docker tests
34-
run: docker compose up mina-local-network
34+
run: docker compose up mixed-source
3535
env:
3636
DOCKER_IMAGE_URL: ${{ inputs.image_url || env.default_image}}
3737

docker-compose.yml

+19
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,25 @@ services:
1515
- SYS_PTRACE
1616
- SYS_ADMIN
1717
command: "bash -x /app/run-all-tests.sh"
18+
19+
mixed-source:
20+
restart: no
21+
image: ghcr.io/meta-introspector/o1js/o1js-perf-recording:latest
22+
privileged: true
23+
environment:
24+
- PROOF_LEVEL=full
25+
- LOG_LEVEL=Debug
26+
working_dir: /app
27+
# mount the source
28+
volumes:
29+
- type: bind
30+
source: "source"
31+
target: "/app/source/"
32+
cap_add:
33+
- SYS_PTRACE
34+
- SYS_ADMIN
35+
# run the test from the mounted source
36+
command: "bash -x /app/source/run-all-tests.sh"
1837

1938
reporting:
2039
restart: no

0 commit comments

Comments
 (0)