mirror of https://github.com/citusdata/citus.git
Parameterizes safe directory
parent
72846a40f2
commit
d57d7816ac
|
@ -76,7 +76,7 @@ jobs:
|
||||||
- name: Make
|
- name: Make
|
||||||
run: |
|
run: |
|
||||||
set -ex
|
set -ex
|
||||||
git config --global --add safe.directory /__w/citus/citus
|
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
|
make CFLAGS="-Wno-missing-braces" -sj$(cat /proc/cpuinfo | grep "core id" | wc -l) 2>&1 | tee -a output.log
|
||||||
|
|
||||||
# Check the exit code of the make command
|
# Check the exit code of the make command
|
||||||
|
@ -159,7 +159,7 @@ jobs:
|
||||||
- name: Make
|
- name: Make
|
||||||
run: |
|
run: |
|
||||||
set -ex
|
set -ex
|
||||||
git config --global --add safe.directory /__w/citus/citus
|
git config --global --add safe.directory ${GITHUB_WORKSPACE}
|
||||||
make -sj$(cat /proc/cpuinfo | grep "core id" | wc -l) 2>&1 | tee -a output.log
|
make -sj$(cat /proc/cpuinfo | grep "core id" | wc -l) 2>&1 | tee -a output.log
|
||||||
|
|
||||||
# Check the exit code of the make command
|
# Check the exit code of the make command
|
||||||
|
|
Loading…
Reference in New Issue