Skip to content

Commit 15bba01

Browse files
ci: Lock MacOS to 14
1 parent 6d04239 commit 15bba01

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

.github/workflows/macos.yaml

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
jobs:
66
smoke-test:
77
name: Smoke Test macOS
8-
runs-on: macos-latest
8+
runs-on: macos-14
99
timeout-minutes: 120
1010
strategy:
1111
fail-fast: true
@@ -27,23 +27,19 @@ jobs:
2727
2828
- name: Install dependencies
2929
run: |
30-
export PATH="/usr/local/opt:/Users/runner/.local/bin:/Users/runner/Library/Python/3.10/bin:$PATH"
31-
32-
brew install wget autoconf automake libtool [email protected] gnu-sed gettext libsodium protobuf
33-
34-
python3.10 -m pip install -U --user poetry wheel pip
35-
python3.10 -m poetry install
36-
python3.10 -m pip install -U --user mako
37-
38-
sudo ln -s /usr/local/Cellar/gettext/0.20.1/bin/xgettext /usr/local/opt
30+
brew install autoconf automake libtool gnu-sed
31+
python3 -m pip install -U --user poetry wheel pip mako protobuf
32+
# python3.12 -m poetry install
33+
34+
# sudo ln -s /usr/local/Cellar/gettext/0.20.1/bin/xgettext /usr/local/opt
3935
4036
- name: Build and install
4137
run: |
4238
export CPATH=/opt/homebrew/include
4339
export LIBRARY_PATH=/opt/homebrew/lib
4440
45-
python3.10 -m poetry run ./configure --disable-valgrind --disable-compat
46-
python3.10 -m poetry run make
41+
python3.12 -m poetry run ./configure --disable-valgrind --disable-compat
42+
python3.12 -m poetry run make
4743
4844
# sudo PATH="/usr/local/opt:$PATH" LIBRARY_PATH=/opt/homebrew/lib CPATH=/opt/homebrew/include make install
4945

0 commit comments

Comments
 (0)