Skip to content

Commit 35f211c

Browse files
authored
fix: Move Install OS X dependencies before python setup (feast-dev#5488)
Signed-off-by: ntkathole <[email protected]>
1 parent 07174cc commit 35f211c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build_wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,9 @@ jobs:
130130
fi
131131
steps:
132132
- uses: actions/checkout@v4
133+
- name: Install OS X dependencies
134+
if: matrix.os == 'macos-14'
135+
run: brew install coreutils gettext
133136
- name: Setup Python
134137
id: setup-python
135138
uses: actions/setup-python@v5
@@ -140,9 +143,6 @@ jobs:
140143
with:
141144
name: python-wheels
142145
path: dist
143-
- name: Install OS X dependencies
144-
if: matrix.os == 'macos-14'
145-
run: brew install coreutils gettext
146146
- name: Install wheel
147147
if: ${{ !matrix.from-source }}
148148
# try to install all wheels; only the current platform wheel should be actually installed

0 commit comments

Comments
 (0)