mirror of https://github.com/citusdata/citus.git
Removes bash flags
parent
6a633bc599
commit
23c9f4134d
|
@ -63,19 +63,16 @@ 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 -ex
|
||||
git config --global --add safe.directory ${GITHUB_WORKSPACE}
|
||||
make CFLAGS="-Wno-missing-braces" -sj$(cat /proc/cpuinfo | grep "core id" | wc -l) 2>&1 | tee -a output.log
|
||||
|
||||
|
@ -90,7 +87,6 @@ jobs:
|
|||
|
||||
- name: Make install
|
||||
run: |
|
||||
set -e
|
||||
make CFLAGS="-Wno-missing-braces" install 2>&1 | tee -a output.log
|
||||
|
||||
- name: Validate output
|
||||
|
@ -146,20 +142,17 @@ 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
|
||||
shell: bash
|
||||
run: |
|
||||
set -ex
|
||||
git config --global --add safe.directory ${GITHUB_WORKSPACE}
|
||||
make -sj$(cat /proc/cpuinfo | grep "core id" | wc -l) 2>&1 | tee -a output.log
|
||||
|
||||
|
@ -175,7 +168,6 @@ jobs:
|
|||
|
||||
- name: Make install
|
||||
run: |
|
||||
set -e
|
||||
make install 2>&1 | tee -a output.log
|
||||
|
||||
- name: Validate output
|
||||
|
|
Loading…
Reference in New Issue