Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/update-brew-macs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,22 @@ on:
branches:
- 'master'
paths:
- '.github/workflow/update-brew-macs.yml'
- '.github/workflows/update-brew-macs.yml'

pull_request:
branches:
- 'master'
paths:
- '.github/workflows/update-brew-macs.yml'

env:
VENV_DIR: ${{ github.workspace }}/ROOT_CI_VENV

concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true


jobs:
update-macos:
if: github.repository_owner == 'root-project'
Expand Down Expand Up @@ -75,6 +86,7 @@ jobs:
$(brew --prefix "${PYTHON_PACKAGE_BREW}")/bin/${PYTHON_EXECUTABLE} -m venv "${VENV_DIR}"
source "${VENV_DIR}"/bin/activate
pip3 install --upgrade pip
pip3 install openstacksdk
while read -r PACKAGE; do
PACKAGE="${PACKAGE%%#*}" # Skip comments
if [ -n "${PACKAGE}" ]; then
Expand Down
Loading