Remove -Werror from compiler package to install.

This commit is contained in:
Darren Tucker 2021-10-21 15:33:27 +11:00
parent 5a7a468750
commit 086a4b5977
1 changed files with 2 additions and 1 deletions

3
.github/setup_ci.sh vendored
View File

@ -29,7 +29,8 @@ for TARGET in $TARGETS; do
# nothing to do
;;
clang-*|gcc-*)
PACKAGES="$PACKAGES $TARGET"
compiler=$(sed 's/-Werror//' <<<$TARGET)
PACKAGES="$PACKAGES $compiler"
;;
kerberos5)
PACKAGES="$PACKAGES heimdal-dev"