diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2021-02-04 14:36:27 +0100 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2021-02-04 14:44:18 +0100 |
commit | f2b21afc11d991f1a44b8b0c5c9bce422c3b43ad (patch) | |
tree | e401385c5744d37b59ec3bbe7bca2f989af5efe4 /build_matrix.sh | |
parent | 72c5d9f72738d2eea7fe3ac839e1ff35e77aa920 (diff) |
build.sh, build_matrix.sh: Use always no/yes, no more disable/enable
This change harmonizes the setup.
Run examples are now:
./build_matrix.sh
CC=clang ./build.sh
CMAKE=yes ./build.sh
CC=clang CMAKE=yes REMOTE=yes ./build.sh
Diffstat (limited to 'build_matrix.sh')
-rwxr-xr-x | build_matrix.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build_matrix.sh b/build_matrix.sh index 4feab80e..538f6210 100755 --- a/build_matrix.sh +++ b/build_matrix.sh @@ -2,7 +2,7 @@ # This script executes the matrix loops, exclude tests and cleaning. # It calls the build.sh script which runs one build with exported variables -# setup: CC, CMAKE and REMOTE (default: gcc, no (cmake), disable (remote)). +# setup: CC, CMAKE and REMOTE (default: gcc, no (cmake), no (remote)). set -e @@ -34,7 +34,7 @@ for CC in gcc clang; do if [ "$CC" = gcc ] && [ "$TRAVIS_OS_NAME" = osx ]; then continue; fi for CMAKE in no yes; do export CMAKE - for REMOTE in disable enable; do + for REMOTE in no yes; do export REMOTE echo_magenta "===== SETUP: compiler:$CC cmake:$CMAKE remote:$REMOTE =====" # LABEL is needed to build the travis fold labels |