diff options
author | YAMAMOTO Takashi <yamamoto@midokura.com> | 2023-12-12 23:54:58 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-12 14:54:58 +0000 |
commit | e97a1cbe920b96174c59ee347969eaf42d4116f0 (patch) | |
tree | 92a35eb13c93e74b97c75237950b6bd70bc67f0e /.github | |
parent | 74e4f8b59fdc804b9142bd7c644c614792121f8a (diff) | |
download | wabt-e97a1cbe920b96174c59ee347969eaf42d4116f0.tar.gz wabt-e97a1cbe920b96174c59ee347969eaf42d4116f0.tar.bz2 wabt-e97a1cbe920b96174c59ee347969eaf42d4116f0.zip |
Build ubuntu release assets on ubuntu 20.04 (#2352)
binaries built on 22.04 require glibc 2.34 and thus are incompatible
with 20.04, which is still supported.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build_release.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build_release.yml b/.github/workflows/build_release.yml index 95be7a75..07b19d96 100644 --- a/.github/workflows/build_release.yml +++ b/.github/workflows/build_release.yml @@ -15,7 +15,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, macos-12, windows-latest] + os: [ubuntu-20.04, macos-12, windows-latest] defaults: run: shell: bash @@ -29,7 +29,7 @@ jobs: - name: install ninja (linux) run: sudo apt-get install ninja-build - if: matrix.os == 'ubuntu-latest' + if: startsWith(matrix.os, 'ubuntu-') - name: install ninja (osx) run: brew install ninja |