summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2021-10-21 15:33:27 +1100
committerDarren Tucker <dtucker@dtucker.net>2021-10-21 15:33:27 +1100
commit086a4b5977472aefa3de918b88efad0faf83b2b1 (patch)
treea84fe77c133940d9a138ed80a70fa3651b1d1f71 /.github
parent5a7a4687507d057f9b5e7497f3d3f82e64753c02 (diff)
Remove -Werror from compiler package to install.
Diffstat (limited to '.github')
-rwxr-xr-x.github/setup_ci.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/setup_ci.sh b/.github/setup_ci.sh
index c80bd38d..c0f48f37 100755
--- a/.github/setup_ci.sh
+++ b/.github/setup_ci.sh
@@ -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"