-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
fix(release): correct ubuntu:xenial install #5898
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 11 Ignored Deployments
|
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.
Orca Security Scan Summary
Status | Check | Issues by priority | |
---|---|---|---|
Passed | Secrets | 0 0 0 0 | View in Orca |
@@ -217,7 +217,7 @@ jobs: | |||
- host: ubuntu-latest | |||
container: ubuntu:xenial | |||
container-options: "--platform=linux/amd64 --rm" | |||
container-setup: "apt-get update && apt-get install -y curl musl-tools" | |||
container-setup: "apt-get update && apt-get install -y curl musl-tools sudo" |
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.
Required because the capnproto action needs sudo
, which isn't installed in the linux/amd64 xenial
container. We could remove the sudo from the capnproto action, but because it's used for all linux distros this was the easier option.
@@ -7,7 +7,7 @@ runs: | |||
- name: "Setup capnproto for Linux" | |||
if: runner.os == 'Linux' | |||
shell: bash | |||
run: sudo apt-get update && sudo apt-get install capnproto | |||
run: sudo apt-get -y update && sudo apt-get install -y capnproto |
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.
Auto accept install prompt.
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 don't really have a security concern with using sudo in CI, since it's not our infra
Nothing in CI is testing this, going to merge it to unblock release. |
✅ This change can build |
Linux Benchmark for 6db8a8dClick to view benchmark
|
MacOS Benchmark for 6db8a8d
Click to view full benchmark
|
|
Windows Benchmark for 6db8a8d
Click to view full benchmark
|
Description
Fix capnproto action.
Validated in test action
Closes TURBO-1310