diff options
author | gatecat <gatecat@ds0.me> | 2021-09-28 09:42:25 +0100 |
---|---|---|
committer | gatecat <gatecat@ds0.me> | 2021-09-28 09:42:25 +0100 |
commit | d89afc2aa648711e22e282bec3d63df5cbdb0c54 (patch) | |
tree | 86d50a08c53664d2abd82ea68c66cf165993f762 | |
parent | 9d8d3bdbc48133ff7758c9c5293e5904bc6e5ba7 (diff) | |
download | nextpnr-d89afc2aa648711e22e282bec3d63df5cbdb0c54.tar.gz nextpnr-d89afc2aa648711e22e282bec3d63df5cbdb0c54.tar.bz2 nextpnr-d89afc2aa648711e22e282bec3d63df5cbdb0c54.zip |
ci: Enable -Werror for interchange arch
Signed-off-by: gatecat <gatecat@ds0.me>
-rwxr-xr-x | .github/ci/build_interchange.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/ci/build_interchange.sh b/.github/ci/build_interchange.sh index 8168d519..674bd5c1 100755 --- a/.github/ci/build_interchange.sh +++ b/.github/ci/build_interchange.sh @@ -57,7 +57,7 @@ function build_nextpnr { build_capnp mkdir build pushd build - cmake .. -DARCH=fpga_interchange -DRAPIDWRIGHT_PATH=${RAPIDWRIGHT_PATH} -DPYTHON_INTERCHANGE_PATH=${PYTHON_INTERCHANGE_PATH} + cmake .. -DARCH=fpga_interchange -DRAPIDWRIGHT_PATH=${RAPIDWRIGHT_PATH} -DPYTHON_INTERCHANGE_PATH=${PYTHON_INTERCHANGE_PATH} -DWERROR=on make nextpnr-fpga_interchange -j`nproc` popd } |