-
Notifications
You must be signed in to change notification settings - Fork 79
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: fixes anvil-zksync failing on ubuntu-latest #527
base: main
Are you sure you want to change the base?
Conversation
.github/workflows/release.yml
Outdated
@@ -41,9 +41,9 @@ jobs: | |||
] | |||
include: | |||
- arch: x86_64-unknown-linux-gnu | |||
platform: ubuntu-20.04 | |||
platform: ubuntu-latest |
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.
Not sure if it's a good idea, using latest
recently broke CI in one of other repositories. IMHO it's better to avoid unexpected changes.
Cross.toml
Outdated
[target.x86_64-unknown-linux-gnu] | ||
image = "ubuntu:22.04" |
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.
Might as well use 24.04 at this point, that's also what Github's ubuntu-latest
currently points to
make build-static-${{ matrix.arch }} | ||
else | ||
make build-${{ matrix.arch }} | ||
fi |
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.
Do you think we shouldn't build static binaries on macOS? I assume openssl is more or less on every modern mac machine but I wouldn't count on it being the same version
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 am not too familiar with any pros / cons but figured we havent had any issue with the macos builds to leave it as it. When I was looking into static builds it seems only prevalent with linux builds.
What 💻
anvil-zksync
fails onubuntu-latest
due to missinglibssl.so.1.1
#524Why ✋
anvil-zksync
fails onubuntu-latest
due to missinglibssl.so.1.1
#524Evidence 📷
Include screenshots, screen recordings, or
console
output here demonstrating that your changes work as intended