mirror of https://github.com/citusdata/citus.git
Rollbacks fail-fast
parent
d6017ef1c3
commit
34c7c2ce60
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue