File tree 2 files changed +11
-5
lines changed
2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 1
1
name : run Perf Test and collect data
2
- env :
3
- DOCKER_IMAGE_URL : " ghcr.io/meta-introspector/o1js/o1js-perf-recording:sha256:5ce0221662cecbca9a3de05601af94a15b154a3bcf8bafcb0cfa1f5b9f407bdc"
2
+
4
3
on :
5
4
workflow_dispatch :
5
+ inputs :
6
+ image_url :
7
+ description : ' Docker url to execute'
8
+ default : " ghcr.io/meta-introspector/o1js/o1js-perf-recording:5ce0221662cecbca9a3de05601af94a15b154a3bcf8bafcb0cfa1f5b9f407bdc"
6
9
push :
7
10
branches : [ "collect-perf" ]
8
11
pull_request :
@@ -23,12 +26,12 @@ jobs:
23
26
password : ${{ secrets.GITHUB_TOKEN }}
24
27
25
28
- name : pull the image
26
- run : docker pull ${{ env.DOCKER_IMAGE_URL }}
29
+ run : docker pull ${{ inputs.image_url }}
27
30
28
31
- name : run the Docker tests
29
32
run : docker compose up mina-local-network
30
33
env :
31
- DOCKER_IMAGE_URL : ${{ env.DOCKER_IMAGE_URL }}
34
+ DOCKER_IMAGE_URL : ${{ inputs.image_url }}
32
35
33
36
34
37
- name : docker cp results
Original file line number Diff line number Diff line change @@ -400,9 +400,12 @@ This set of tools is for batch collecting and processing performance and coverag
400
400
We have different github actions
401
401
402
402
### Creating docker images
403
+
404
+ [ Build and publish] ( .github/workflows/build-and-publish-docker-image.yml )
405
+
403
406
### Using docker images to run jobs
404
407
405
- See the job defined here [ "run Perf Test and collect data" .github/workflows/run-docker-tests.yml] ( ./.githrun -docker-tests.yml )
408
+ See the job defined here [ "run Perf Test and collect data" .github/workflows/run-docker-tests.yml] ( .github/workflows/run -docker-tests.yml )
406
409
to use the docker image
407
410
408
411
You can’t perform that action at this time.
0 commit comments