Skip to content

Commit e87e11e

Browse files
committed
Print stderr/stdout
1 parent 35daa61 commit e87e11e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/micromamba.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ jobs:
6262
if echo "$output" | grep -i 'Error\|S3 storage'; then
6363
status=1
6464
fi
65+
echo -e $output
6566
sh -c "exit $status"
6667
if: matrix.ob_branch == 'dev' || matrix.ob_branch == 'reduce_install_scope'
6768

@@ -70,10 +71,11 @@ jobs:
7071
run: |
7172
env
7273
output=$( ob run benchmark -b Clustering.yaml --local --threads 10 2>&1 )
73-
status=$?
74+
status=$?
7475
if echo "$output" | grep -i 'Error\|S3 storage'; then
7576
status=1
7677
fi
78+
echo -e $output
7779
sh -c "exit $status"
7880
if: matrix.ob_branch == 'main'
7981

.github/workflows/miniconda_miniforge.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ jobs:
7272
if echo "$output" | grep -i 'Error\|S3 storage'; then
7373
status=1
7474
fi
75+
echo -e $output
7576
sh -c "exit $status"
7677
if: matrix.ob_branch == 'dev' || matrix.ob_branch == 'reduce_install_scope'
7778

@@ -84,6 +85,7 @@ jobs:
8485
if echo "$output" | grep -i 'Error\|S3 storage'; then
8586
status=1
8687
fi
88+
echo -e $output
8789
sh -c "exit $status"
8890
if: matrix.ob_branch == 'main'
8991

0 commit comments

Comments
 (0)