mirror of https://github.com/citusdata/citus.git
Rollbacks tools branch
parent
a910fc0387
commit
72846a40f2
|
@ -25,7 +25,7 @@ pyenv versions
|
|||
pyenv virtualenv ${PACKAGING_PYTHON_VERSION} packaging_env
|
||||
pyenv activate packaging_env
|
||||
|
||||
git clone -b error_add --depth=1 https://github.com/citusdata/tools.git tools
|
||||
git clone -b 0.8.24 --depth=1 https://github.com/citusdata/tools.git tools
|
||||
python3 -m pip install -r tools/packaging_automation/requirements.txt
|
||||
|
||||
echo "Package type: ${package_type}"
|
||||
|
|
|
@ -162,6 +162,16 @@ jobs:
|
|||
git config --global --add safe.directory /__w/citus/citus
|
||||
make -sj$(cat /proc/cpuinfo | grep "core id" | wc -l) 2>&1 | tee -a output.log
|
||||
|
||||
# Check the exit code of the make command
|
||||
make_exit_code=${PIPESTATUS[0]}
|
||||
|
||||
# If the make command returned a non-zero exit code, exit with the same code
|
||||
if [[ $make_exit_code -ne 0 ]]; then
|
||||
echo "make command failed with exit code $make_exit_code"
|
||||
exit $make_exit_code
|
||||
fi
|
||||
|
||||
|
||||
- name: Make install
|
||||
run: |
|
||||
set -e
|
||||
|
|
Loading…
Reference in New Issue