Skip to content

Commit

Permalink
use ubuntu 20.04 for Linux artifacts
Browse files Browse the repository at this point in the history
Fixes #31

This ensures that the generated artifacts are compatible with systems
that have somewhat older libc installs.
  • Loading branch information
nmattia committed May 24, 2024
1 parent a1b3a83 commit cac553c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ jobs:
git config user.email [email protected]
git push --set-upstream origin release
build-linux:
runs-on: ubuntu-latest
# For Linux build we use an Ubuntu version that's as old as possible so that
# the generated artifacts are compatible with not-so-recent systems
runs-on: ubuntu-20.04
needs: create-branch
steps:
- name: Checkout code
Expand Down

0 comments on commit cac553c

Please sign in to comment.