diff options
| author | Gaëtan Gilbert | 2020-07-10 13:44:12 +0200 |
|---|---|---|
| committer | Gaëtan Gilbert | 2020-07-10 14:06:26 +0200 |
| commit | 0fe42aac20ae6623369a6fea379fd150fcaa20cf (patch) | |
| tree | 095fc035e6674f3a2c1caebcfa7d2beb1e86aa1e /dev/ci | |
| parent | f2dc2f5fc8c745c69c0161a91063b11838fb684b (diff) | |
Minor improvement to CI logs
- don't `set -x` while loading overlays, non-verbose untaring
- ls _build_ci to help figure out artifact download issues
Diffstat (limited to 'dev/ci')
| -rw-r--r-- | dev/ci/ci-common.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/dev/ci/ci-common.sh b/dev/ci/ci-common.sh index f0dbe485f7..c01bc57f72 100644 --- a/dev/ci/ci-common.sh +++ b/dev/ci/ci-common.sh @@ -37,17 +37,19 @@ export PATH="$COQBIN:$PATH" # Coq's tools need an ending slash :S, we should fix them. export COQBIN="$COQBIN/" -ls "$COQBIN" +ls -l "$COQBIN" # Where we download and build external developments CI_BUILD_DIR="$PWD/_build_ci" +ls -l "$CI_BUILD_DIR" || true + +set +x for overlay in "${ci_dir}"/user-overlays/*.sh; do # shellcheck source=/dev/null . "${overlay}" done -set +x # shellcheck source=ci-basic-overlay.sh . "${ci_dir}/ci-basic-overlay.sh" set -x @@ -84,7 +86,7 @@ git_download() COMMIT="$REF" fi wget "$ARCHIVEURL/$COMMIT.tar.gz" - tar xvfz "$COMMIT.tar.gz" --strip-components=1 + tar xfz "$COMMIT.tar.gz" --strip-components=1 rm -f "$COMMIT.tar.gz" fi } |
