Skip to content

Commit a56a283

Browse files
author
mike dupont
committed
adding the variable for the image
1 parent 8704762 commit a56a283

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

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

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: run Perf Test and collect data
2-
2+
env:
3+
DOCKER_IMAGE_URL: "ghcr.io/meta-introspector/o1js/o1js-perf-recording:sha256:5ce0221662cecbca9a3de05601af94a15b154a3bcf8bafcb0cfa1f5b9f407bdc"
34
on:
45
workflow_dispatch:
56
push:
@@ -11,8 +12,8 @@ jobs:
1112
runs-on: ubuntu-latest
1213
steps:
1314
- uses: meta-introspector/checkout@v4
14-
with:
15-
submodules: recursive
15+
#with:
16+
# submodules: recursive
1617

1718
- name: Login to GHCR
1819
uses: meta-introspector/login-action@v1
@@ -22,10 +23,12 @@ jobs:
2223
password: ${{ secrets.GITHUB_TOKEN }}
2324

2425
- name: pull the image
25-
run: docker pull ghcr.io/meta-introspector/o1js/o1js-perf-recording:latest
26+
run: docker pull ${DOCKER_IMAGE_URL}
2627

2728
- name: run the Docker tests
2829
run: docker compose up mina-local-network
30+
env:
31+
DOCKER_IMAGE_URL: ${DOCKER_IMAGE_URL}
2932

3033
- name: docker cp results
3134
run: docker compose cp mina-local-network:/tmp/perf.data.tar.gz perf.data.tar.gz

0 commit comments

Comments
 (0)