Skip to content

Commit

Permalink
fix[tool]: roll back OS used to build binaries (#4494)
Browse files Browse the repository at this point in the history
per ae6ab0d, the OS image used to build vyper binaries was
updated. however, this can break users who don't have a compatible libc
(i.e., at least as recent as the latest ubuntu). roll back to an older
ubuntu for those users.
  • Loading branch information
charles-cooper authored Feb 25, 2025
1 parent dd5a3d9 commit 1339177
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os:
# the binary will not work for users with an older libc than what
# is available on the ubuntu that the binary was built with.
# therefore, use the oldest available ubuntu.
- ubuntu-22.04
- macos-latest

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 1339177

Please sign in to comment.