File tree 2 files changed +20
-1
lines changed
2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 31
31
run : docker pull ${{ inputs.image_url || env.default_image }}
32
32
33
33
- name : run the Docker tests
34
- run : docker compose up mina-local-network
34
+ run : docker compose up mixed-source
35
35
env :
36
36
DOCKER_IMAGE_URL : ${{ inputs.image_url || env.default_image}}
37
37
Original file line number Diff line number Diff line change @@ -15,6 +15,25 @@ services:
15
15
- SYS_PTRACE
16
16
- SYS_ADMIN
17
17
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"
18
37
19
38
reporting :
20
39
restart : no
You can’t perform that action at this time.
0 commit comments