mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
* Update Software Report to support azcopy output * Update util.sh and related scripts * Remove rosetta test from the script * Update mono script * clean up * remove condition from install pipx script * Update scripts according to comments --------- Co-authored-by: Alexey Ayupov <“alexey.ayupov@akvelon.com”>
19 lines
515 B
Bash
19 lines
515 B
Bash
#!/bin/bash -e -o pipefail
|
|
################################################################################
|
|
## File: install-pipx-packages.sh
|
|
## Desc: Install Pipx Packages
|
|
################################################################################
|
|
|
|
source ~/utils/utils.sh
|
|
|
|
export PATH="$PATH:/opt/pipx_bin"
|
|
|
|
pipx_packages=$(get_toolset_value '.pipx[].package')
|
|
|
|
for package in $pipx_packages; do
|
|
echo "Install $package into default python"
|
|
pipx install $package
|
|
done
|
|
|
|
invoke_tests "PipxPackages"
|