-
Notifications
You must be signed in to change notification settings - Fork 265
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
chore(ci): recover from earthly bug with --no-cache, build images from registry #7462
Conversation
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.
⚠️ Performance Alert ⚠️
Possible performance regression was detected for benchmark 'C++ Benchmark'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.05
.
Benchmark suite | Current: 0eaa969 | Previous: 403f4c0 | Ratio |
---|---|---|---|
nativeClientIVCBench/Full/6 |
13516.417912999997 ms/iter |
12420.894322999999 ms/iter |
1.09 |
wasmClientIVCBench/Full/6 |
42429.245116 ms/iter |
39886.975661000004 ms/iter |
1.06 |
This comment was automatically generated by workflow using github-action-benchmark.
CC: @ludamad @codygunton
This reverts commit 355eae8.
@@ -22,58 +22,112 @@ env: | |||
# kludge until we move away from runners | |||
WAIT_FOR_RUNNERS: false | |||
jobs: | |||
setup: |
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.
refactored to be more like ci.yml
tester_ttl: 40 | ||
run: | | ||
set -eux | ||
cd ./yarn-project/end-to-end/ | ||
export FORCE_COLOR=1 | ||
export EARTHLY_BUILD_ARGS="${{ env.EARTHLY_BUILD_ARGS }}" | ||
../../scripts/earthly-ci -P \ | ||
--secret AWS_ACCESS_KEY_ID=${{ secrets.AWS_ACCESS_KEY_ID }} \ |
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.
moved the secret passing to earthly-ci
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.
LGTM
In #7462 the aztec commenter github token was removed from the bench-comment job in favor of loading secrets in the earthly-ci wrapper script. However, the token was never injected into env, so the bench-summary was silently failing due to invalid credentials.
In #7462 the aztec commenter github token was removed from the bench-comment job in favor of loading secrets in the earthly-ci wrapper script. However, the token was never injected into env, so the bench-summary was silently failing due to invalid credentials.
In #7462 the aztec commenter github token was removed from the bench-comment job in favor of loading secrets in the earthly-ci wrapper script. However, the token was never injected into env, so the bench-summary was silently failing due to invalid credentials.
This tries to get a handle on the cache bug by both not reading build images from inline cache, and restarting with
--no-cache
if there's a graph edge bug