mirror of https://github.com/citusdata/citus.git
Fixes module error
parent
ff00d5db07
commit
75aabcfe27
|
@ -12,7 +12,12 @@ pyenv activate packaging_env
|
||||||
|
|
||||||
git clone -b error_add --depth=1 https://github.com/citusdata/tools.git tools
|
git clone -b error_add --depth=1 https://github.com/citusdata/tools.git tools
|
||||||
python3 -m pip install -r tools/packaging_automation/requirements.txt
|
python3 -m pip install -r tools/packaging_automation/requirements.txt
|
||||||
python3 -m pip install attr
|
|
||||||
|
# if os is centos 8 then install attrs package with pip
|
||||||
|
if [[ "${package_type}" == "rpm" ]]; then
|
||||||
|
python3 -m pip install attrs
|
||||||
|
fi
|
||||||
|
|
||||||
python3 -m tools.packaging_automation.validate_build_output --output_file output.log \
|
python3 -m tools.packaging_automation.validate_build_output --output_file output.log \
|
||||||
--ignore_file .github/packaging/packaging_ignore.yml \
|
--ignore_file .github/packaging/packaging_ignore.yml \
|
||||||
--package_type ${package_type}
|
--package_type ${package_type}
|
||||||
|
|
Loading…
Reference in New Issue