diff options
author | Raphael Amorim <rapha850@gmail.com> | 2023-03-28 21:22:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-28 12:22:57 -0700 |
commit | 4b84fedba5febc2e1502aba7d9f0f20707107eb6 (patch) | |
tree | 8bee92bb4b9cb09b48f316e7a13d73356dee5423 /.github | |
parent | 47a589a17ca431b4861c9383de1430818b4829bc (diff) | |
download | wabt-4b84fedba5febc2e1502aba7d9f0f20707107eb6.tar.gz wabt-4b84fedba5febc2e1502aba7d9f0f20707107eb6.tar.bz2 wabt-4b84fedba5febc2e1502aba7d9f0f20707107eb6.zip |
build.yml: use ubuntu-latest for all Linux runners (#2185)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 94247894..9e0f7187 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -81,7 +81,7 @@ jobs: sanitize: name: sanitize - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest env: USE_NINJA: "1" CC: "clang" @@ -101,11 +101,9 @@ jobs: - run: make clang-${{ matrix.type }}-${{ matrix.sanitizer }} - if: ${{ matrix.sanitizer }} != fuzz run: make test-clang-${{ matrix.type }}-${{ matrix.sanitizer }} - - build-wasm2c-memchecked: name: wasm2c-memchecked - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest env: USE_NINJA: "1" CC: "clang" # used by the wasm2c tests |