diff options
author | Keith Winstein <keithw@cs.stanford.edu> | 2023-07-30 09:38:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-30 09:38:48 -0700 |
commit | 319f0c6112caa407c6b354772beda4ef986bac72 (patch) | |
tree | 6785093c7a1ebf0738d8bbe721515dc4b212d4fa /.github | |
parent | e37de9dedfc7037cea09ca3c75fd5a544d68cb2a (diff) | |
download | wabt-319f0c6112caa407c6b354772beda4ef986bac72.tar.gz wabt-319f0c6112caa407c6b354772beda4ef986bac72.tar.bz2 wabt-319f0c6112caa407c6b354772beda4ef986bac72.zip |
Fix CI from upgraded cmake version on GitHub Ubuntu runner (#2273)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 937f6d24..78fd7b89 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -50,7 +50,7 @@ jobs: - name: mkdir run: mkdir -p out - name: cmake - run: cmake .. -G Ninja -DWITH_WASI=ON -DWERROR=ON -Werror=dev + run: cmake .. -G Ninja -DWITH_WASI=ON -DWERROR=ON -Werror=dev -Wno-deprecated working-directory: out if: matrix.os != 'windows-latest' - name: cmake (windows) |