Rollbacks tools branch

pull/7054/head
gindibay 2023-07-12 22:27:37 +03:00
parent a910fc0387
commit 72846a40f2
2 changed files with 11 additions and 1 deletions

View File

@ -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}"

View File

@ -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