diff options
author | 2021-07-15 15:56:55 -0700 | |
---|---|---|
committer | 2021-07-15 15:56:55 -0700 | |
commit | f5cc0c43c9c85cf8fd1c483ed737ccb683bb4964 (patch) | |
tree | 281dc7bb48c075f3f691904c98767e71413db330 /.github/workflows/ubuntu.yml | |
parent | 300c1659c4bcdae104f828c01de8873743f73d94 (diff) | |
download | WarpX-f5cc0c43c9c85cf8fd1c483ed737ccb683bb4964.tar.gz WarpX-f5cc0c43c9c85cf8fd1c483ed737ccb683bb4964.tar.zst WarpX-f5cc0c43c9c85cf8fd1c483ed737ccb683bb4964.zip |
CI: -Werror (#1457)
Compile with `-Werror` to avoid new warnings slipping into the code base.
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/ubuntu.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index c5c37380f..e62cb6007 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -43,6 +43,7 @@ jobs: export WarpX_QED_TABLE_GEN=ON export CC=$(which clang) export CXX=$(which clang++) + export CXXFLAGS="-Werror -Wno-error=pass-failed" python3 -m pip install -v . - name: run pywarpx |