From ea2e435973fe2ceb1298812db53d5aaecf2318fd Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Sun, 16 Jun 2024 13:15:13 -0400 Subject: [PATCH] Make CI fail on warning This should help catch missing return statements in fully matched TUs. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b21002bae..01ecc0f1a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: run: cp -R /orig/${{matrix.version}} orig - name: Build run: | - python configure.py --version ${{matrix.version}} --compilers /compilers + python configure.py --version ${{matrix.version}} --compilers /compilers --warn error ninja - name: Upload progress if: github.ref == 'refs/heads/main'