From 34c7c2ce6090d1db70f3a9fec36bbb3d1bc3e31b Mon Sep 17 00:00:00 2001 From: gindibay Date: Wed, 12 Jul 2023 20:59:46 +0300 Subject: [PATCH] Rollbacks fail-fast --- .github/workflows/packaging-test-pipelines.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/packaging-test-pipelines.yml b/.github/workflows/packaging-test-pipelines.yml index 71f6eeba2..ef753b488 100644 --- a/.github/workflows/packaging-test-pipelines.yml +++ b/.github/workflows/packaging-test-pipelines.yml @@ -33,7 +33,7 @@ jobs: needs: get_postgres_versions_from_file runs-on: ubuntu-latest strategy: - fail-fast: true + fail-fast: false matrix: # While we use separate images for different Postgres versions in rpm # based distros @@ -63,20 +63,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 CFLAGS="-Wno-missing-braces" -sj$(cat /proc/cpuinfo | grep "core id" | wc -l) 2>&1 | tee -a output.log - name: Make install run: | + set -e make CFLAGS="-Wno-missing-braces" install 2>&1 | tee -a output.log - name: Validate output @@ -97,7 +101,7 @@ jobs: needs: get_postgres_versions_from_file runs-on: ubuntu-latest strategy: - fail-fast: true + fail-fast: false matrix: # On deb based distros, we use the same docker image for # builds based on different Postgres versions because deb