-
Notifications
You must be signed in to change notification settings - Fork 187
Closed
Labels
Description
We are using github automations for our PR's. Now that we have working bootstrap build lets avoid regressions here by adding -Werror to our CI
This is how we configure our build for CI automation in PR's
gccrs/.github/workflows/ccpp.yml
Lines 37 to 44 in 28f527c
- name: Configure | |
run: | | |
mkdir -p gccrs-build; | |
cd gccrs-build; | |
../configure \ | |
--enable-languages=rust \ | |
--disable-bootstrap \ | |
--enable-multilib |
Let's update this to add --enable-werror to catch warnings breaking the build again.