diff options
author | Thomas Lively <tlively@google.com> | 2023-11-07 18:28:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-07 09:28:09 -0800 |
commit | 0167c65132dd41fde2df6b76149ffc91305abe30 (patch) | |
tree | 9555e2ab86a35638930efef47277f6d2580d0b6a /.github/workflows | |
parent | ba2ebea5fbd4fef2c95e234198cb3edec68eb8f5 (diff) | |
download | binaryen-0167c65132dd41fde2df6b76149ffc91305abe30.tar.gz binaryen-0167c65132dd41fde2df6b76149ffc91305abe30.tar.bz2 binaryen-0167c65132dd41fde2df6b76149ffc91305abe30.zip |
Fix build failure on older Ubuntu (#6085)
Update the C++20 builder to use Ubuntu 20.04 to catch problems building with its
system compiler. Also fix such a problem in wasm-fuzz-lattices.cpp.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b225bad3b..5dc229593 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -349,7 +349,8 @@ jobs: # Duplicates build-asan. Please keep in sync build-cxx20: name: c++20 - runs-on: ubuntu-latest + # Make sure we can still build on older Ubuntu + runs-on: ubuntu-20.04 env: CC: "gcc" CXX: "g++" |