-
Notifications
You must be signed in to change notification settings - Fork 0
first draft of a workflow to run a selection of proofs #31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: proofs
Are you sure you want to change the base?
Conversation
8e082ef
to
41cd351
Compare
41cd351
to
92e1de0
Compare
32c68f2
to
16feb35
Compare
724a631
to
5f9106d
Compare
0781c9a
to
cb5b19d
Compare
sleep 3600 | ||
sleep 10 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the purpose of these sleep
commands?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The sleep 3600
is what the started container executes in the background. The further steps in the job use docker exec
to execute a command in the running container.
sleep 10
is a technicality, waiting for the container to be properly set up because its start-up script (entrypoint) adjusts file ownerships, which may take a few seconds.
Co-authored-by: Tamás Tóth <[email protected]>
This was tested in CI using another manually-dispatched workflow: https://github.com/runtimeverification/solana-token/actions/runs/18034328235/job/51318032661
Speed on the public runners is ... 🐌 but the technical hurdles are explored for a start.