Skip to content

Commit 0c147d5

Browse files
committed
Print what is being executed on CI
This makes it easier to grep for executed commands in CI logs
1 parent 1dba972 commit 0c147d5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/ci/docker/host-x86_64/x86_64-gnu-llvm-14/script.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
set -e
3+
set -ex
44

55
# Only run the stage 1 tests on merges, not on PR CI jobs.
66
if [[ -z "${PR_CI_JOB}" ]]; then

src/ci/run.sh

+1
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ else
188188
fi
189189

190190
if [ ! -z "$SCRIPT" ]; then
191+
echo "Executing ${SCRIPT}"
191192
sh -x -c "$SCRIPT"
192193
else
193194
do_make() {

0 commit comments

Comments
 (0)