summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2022-03-06 16:48:03 +0000
committerGitHub <noreply@github.com>2022-03-06 08:48:03 -0800
commitf94830cd36b728f01ef7eef1ef3608b2a8945cdc (patch)
tree4d0f1562d5341f228e972013f2899da3ef434c98 /.github
parent37d60d4be3e92ac03245d48ebec4cef5fdce4770 (diff)
downloadwabt-f94830cd36b728f01ef7eef1ef3608b2a8945cdc.tar.gz
wabt-f94830cd36b728f01ef7eef1ef3608b2a8945cdc.tar.bz2
wabt-f94830cd36b728f01ef7eef1ef3608b2a8945cdc.zip
Fix location in config.h in source list (#1807)
The wrong name here was causing a cmake warning because it was finding `config.h.in` instead and this behaviour is deprecated.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index e707d57b..45fe876f 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -50,11 +50,11 @@ jobs:
- name: mkdir
run: mkdir -p out
- name: cmake
- run: cmake .. -G Ninja -DWERROR=ON
+ run: cmake .. -G Ninja -DWERROR=ON -Werror=dev
working-directory: out
if: matrix.os != 'windows-latest'
- name: cmake (windows)
- run: cmake .. -DWERROR=ON
+ run: cmake .. -DWERROR=ON -Werror=dev
working-directory: out
if: matrix.os == 'windows-latest'
- name: build