diff options
| author | Emilio Jesus Gallego Arias | 2020-07-15 11:26:33 +0200 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2020-07-15 11:26:33 +0200 |
| commit | 33e748514dad9459885006a1523d107d556be22b (patch) | |
| tree | be1e8a661b2cf30a220385d190b81c86c7b83d3d /dev/ci | |
| parent | d0cfc7a14318448f9b5c8706bd876fa258d97c9d (diff) | |
| parent | 0fe42aac20ae6623369a6fea379fd150fcaa20cf (diff) | |
Merge PR #12671: Minor improvement to CI logs
Reviewed-by: ejgallego
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 } |
