aboutsummaryrefslogtreecommitdiff
path: root/build_matrix.sh
diff options
context:
space:
mode:
authorFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2021-02-07 13:55:10 +0100
committerFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2021-02-07 14:17:57 +0100
commitd454fe9c5e435398665dc2dcb4a9b67423882ceb (patch)
tree846a02bfe76ce807368abf9e048fa11bda17c100 /build_matrix.sh
parent881422066a442fee788e16de90009200729ec6dc (diff)
build.sh, build_matrix.sh: Update some comments
[skip ci]
Diffstat (limited to 'build_matrix.sh')
-rwxr-xr-xbuild_matrix.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/build_matrix.sh b/build_matrix.sh
index c215481e..fcad96a9 100755
--- a/build_matrix.sh
+++ b/build_matrix.sh
@@ -1,8 +1,8 @@
#!/usr/bin/env bash
# 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), no (remote)).
+# It calls the build.sh script which runs one build with setup environment
+# variables : CC, CMAKE and REMOTE (default: CC=gcc, CMAKE=no, REMOTE=no).
set -e
@@ -41,7 +41,7 @@ for CC in ${MATRIX_CC:-gcc clang}; do
echo_magenta "===== SETUP $COUNT: compiler:$CC cmake:$CMAKE remote:$REMOTE ====="
# LABEL is needed to build the travis fold labels
LABEL="$CC.$CMAKE.$REMOTE"
- # Run one build with exported variables setup: CC, CMAKE and REMOTE
+ # Run one build with setup environment variables: CC, CMAKE and REMOTE
./build.sh
echo 'Cleaning...'
travis_fold start cleaning