-
Notifications
You must be signed in to change notification settings - Fork 0
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
ci: use a3p u17 container #45
Conversation
77d588f
to
4196c6c
Compare
docker-compose.yml
Outdated
@@ -72,7 +72,7 @@ services: | |||
- ci | |||
|
|||
a3p: | |||
image: ghcr.io/agoric/agoric-3-proposals:latest | |||
image: ghcr.io/agoric/agoric-3-proposals:latest@sha256:dbc0232a8ed567079aefe4f5de230298f28519a29347413bec79d9b47de37db2 |
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.
so it's more clear to the reader what the base is, please use the use-upgrade-17
tag. That will also help when searching the org code for what images need updating when a new one is released.
please also update https://github.com/Agoric/agoric-3-proposals/blob/main/.github/pull_request_template.md with a note to file an issue on this repo to adopt the new proposal when it's added
5922b67
to
e8d913f
Compare
It's weird that when I index locally with the |
9f68185
to
63d4a4f
Compare
34111d6
to
20046f3
Compare
docker-compose.yml
Outdated
@@ -72,7 +72,7 @@ services: | |||
- ci | |||
|
|||
a3p: | |||
image: ghcr.io/agoric/agoric-3-proposals:latest | |||
image: ghcr.io/agoric/agoric-3-proposals:use-upgrade-17 |
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.
Please include the sha in case that tag changes again
scripts/validateData.mjs
Outdated
@@ -18,6 +18,7 @@ const filter = dailyEntities.includes(entity) ? { blockHeightLast: blockHeight } | |||
|
|||
try { | |||
const graphqlQuery = { query: getQuery(entity, filter) }; | |||
console.log('Fetch data for query:', graphqlQuery); |
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.
Please log just the query string
console.log('Fetch data for query:', graphqlQuery); | |
console.log('Fetch data for query:', graphqlQuery.query); |
Or move the property wrapping down to the other call site
20046f3
to
f649a51
Compare
No description provided.