Skip to content

Commit

Permalink
feat(ci): python-deps workflow to install specific packages (#28901)
Browse files Browse the repository at this point in the history
This reduces the number of packages that get installed by brew and it prevents upgrading packages.
  • Loading branch information
armenzg authored Sep 29, 2021
1 parent e2855ee commit 3385770
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/python-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,11 @@ jobs:
- uses: actions/checkout@v2

- name: Install prerequisites
# brew can be finicky but it does not always means that the rest of the job will fail
env:
HOMEBREW_NO_AUTO_UPDATE: on
# Necessary packages for some Python deps
run: |
make prerequisites
brew install libxmlsec1
- name: Setup Python
uses: ./.github/actions/setup-python
Expand Down

0 comments on commit 3385770

Please sign in to comment.