Skip to content

Commit

Permalink
Merge pull request #2287 from div72/ci-cond-out
Browse files Browse the repository at this point in the history
ci: only print depends/apt output if the step fails
  • Loading branch information
jamescowens authored Aug 24, 2021
2 parents 9b1693a + 31722a2 commit 9cd2641
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/test_run_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export LC_ALL=C.UTF-8

set -o errexit; source ./ci/test/00_setup_env.sh
set -o errexit; source ./ci/test/03_before_install.sh
set -o errexit; source ./ci/test/04_install.sh
set -o errexit; source ./ci/test/05_before_script.sh
set -o errexit; source ./ci/test/04_install.sh &> 04.log || (cat 04.log && exit 1)
set -o errexit; source ./ci/test/05_before_script.sh &> 05.log || (cat 05.log && exit 1)
set -o errexit; source ./ci/test/06_script_a.sh
set -o errexit; source ./ci/test/06_script_b.sh

0 comments on commit 9cd2641

Please sign in to comment.