From 7bab58ef8432a23a3957a35b9b19c18cb46bfdfe Mon Sep 17 00:00:00 2001 From: gindibay Date: Wed, 12 Jul 2023 21:00:49 +0300 Subject: [PATCH] Adds set -e for required steps --- .github/workflows/packaging-test-pipelines.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/packaging-test-pipelines.yml b/.github/workflows/packaging-test-pipelines.yml index ef753b488..59d16edad 100644 --- a/.github/workflows/packaging-test-pipelines.yml +++ b/.github/workflows/packaging-test-pipelines.yml @@ -136,20 +136,24 @@ jobs: - name: Configure run: | + set -e echo "Current Shell:$0" echo "GCC Version: $(gcc --version)" ./configure 2>&1 | tee output.log - name: Make clean run: | + set -e make clean - name: Make run: | + set -e make -sj$(cat /proc/cpuinfo | grep "core id" | wc -l) 2>&1 | tee -a output.log - name: Make install run: | + set -e make install 2>&1 | tee -a output.log - name: Validate output