Skip to content

Commit

Permalink
use older ubuntu for build
Browse files Browse the repository at this point in the history
  • Loading branch information
hotbso committed Jan 3, 2025
1 parent 574697f commit 7aef616
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
# use oldest possible ubuntu version in order to avoid compatibility errors with libc
os: [ubuntu-20.04, macos-latest]
fail-fast: false
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -39,7 +40,7 @@ jobs:
echo "VERSION=$TAG" > version.mak
fi
if [ $OS == "ubuntu-latest" ]; then
if [ $OS == "ubuntu-20.04" ]; then
sudo apt-get -y install libopenal1 libopenal-dev
make -f Makefile.lin64
else
Expand Down

0 comments on commit 7aef616

Please sign in to comment.