-
Notifications
You must be signed in to change notification settings - Fork 0
Jb/demo #16
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
Jb/demo #16
Conversation
demo/docker-compose.yaml
Outdated
| @@ -0,0 +1,62 @@ | |||
| services: | |||
| l1: | |||
| image: ghcr.io/espressosystems/geth-l1:main | |||
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.
Dumb question, but why do this instead of using the geth-l1-staging that has the genesis baked in?
https://github.com/EspressoSystems/espresso-geth/blob/main/config/genesis-staging.json
https://github.com/EspressoSystems/espresso-geth/pkgs/container/geth-l1-staging
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.
I did not know that was a thing.
| tags: ghcr.io/espressosystems/staking-ui-service:latest | ||
| inputs: ghcr.io/espressosystems/staking-ui-service@${{ needs.build-amd.outputs.digest }},ghcr.io/espressosystems/staking-ui-service@${{ needs.build-arm.outputs.digest }} | ||
| push: ${{ github.event_name != 'pull_request' }} | ||
| test-demo: |
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.
This feels like a build step we should put a timing bound on. Something like 2x the expected runtime of the workflow
| @@ -0,0 +1,42 @@ | |||
| name: Test Demo | |||
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.
Same thing here. Demos just tend to have lots of places they could hang and have unbounded runtimes in my experience.
No description provided.