summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rwxr-xr-x.github/workflows/ci-examples.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/ci-examples.sh b/.github/workflows/ci-examples.sh
index 7372d70a7..157f8c304 100755
--- a/.github/workflows/ci-examples.sh
+++ b/.github/workflows/ci-examples.sh
@@ -170,6 +170,9 @@ function run_sample {
pushd "$bin_dir" 1>/dev/null 2>&1
if [[ ! "$dry_run" = true ]]; then
./"$sample" "${args[@]}" || result=$?
+ if [[ -f ./"log-$sample.txt" ]]; then
+ cat ./"log-$sample.txt"
+ fi
fi
if [[ $result -eq 0 ]]; then
summary=("${summary[@]}" " success")