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