1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#!/usr/bin/env bash
root=$(cd $(dirname $0); pwd)
tdnf install -y ca-certificates
pip install wheel
pip install -U pip
pip install -r $root/requirements.txt
find /mnt/src/ -name setup.py -type f | xargs -I {} dirname {} | grep -v azure-cli-testsdk | xargs pip install --no-deps
pip install -r /mnt/src/azure-cli/requirements.py3.Darwin.txt
pip list
# default option is update_existing to build from homebrew master branch,
# append '-b use_template' to build from formula_template.txt
python3 $root/formula_generate.py
|