Rollbacks fail-fast

pull/7054/head
gindibay 2023-07-12 20:59:46 +03:00
parent d6017ef1c3
commit 34c7c2ce60
1 changed files with 6 additions and 2 deletions

View File

@ -33,7 +33,7 @@ jobs:
needs: get_postgres_versions_from_file needs: get_postgres_versions_from_file
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
fail-fast: true fail-fast: false
matrix: matrix:
# While we use separate images for different Postgres versions in rpm # While we use separate images for different Postgres versions in rpm
# based distros # based distros
@ -63,20 +63,24 @@ jobs:
- name: Configure - name: Configure
run: | run: |
set -e
echo "Current Shell:$0" echo "Current Shell:$0"
echo "GCC Version: $(gcc --version)" echo "GCC Version: $(gcc --version)"
./configure 2>&1 | tee output.log ./configure 2>&1 | tee output.log
- name: Make clean - name: Make clean
run: | run: |
set -e
make clean make clean
- name: Make - name: Make
run: | run: |
set -e
make CFLAGS="-Wno-missing-braces" -sj$(cat /proc/cpuinfo | grep "core id" | wc -l) 2>&1 | tee -a output.log make CFLAGS="-Wno-missing-braces" -sj$(cat /proc/cpuinfo | grep "core id" | wc -l) 2>&1 | tee -a output.log
- name: Make install - name: Make install
run: | run: |
set -e
make CFLAGS="-Wno-missing-braces" install 2>&1 | tee -a output.log make CFLAGS="-Wno-missing-braces" install 2>&1 | tee -a output.log
- name: Validate output - name: Validate output
@ -97,7 +101,7 @@ jobs:
needs: get_postgres_versions_from_file needs: get_postgres_versions_from_file
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
fail-fast: true fail-fast: false
matrix: matrix:
# On deb based distros, we use the same docker image for # On deb based distros, we use the same docker image for
# builds based on different Postgres versions because deb # builds based on different Postgres versions because deb