Skip to content

Commit

Permalink
ci: Lock MacOS to 14
Browse files Browse the repository at this point in the history
  • Loading branch information
ShahanaFarooqui committed Jan 7, 2025
1 parent 6d04239 commit cd47c21
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
jobs:
smoke-test:
name: Smoke Test macOS
runs-on: macos-latest
runs-on: macos-14
timeout-minutes: 120
strategy:
fail-fast: true
Expand All @@ -27,13 +27,13 @@ jobs:
- name: Install dependencies
run: |
export PATH="/usr/local/opt:/Users/runner/.local/bin:/Users/runner/Library/Python/3.10/bin:$PATH"
export PATH="/usr/local/opt:/Users/runner/.local/bin:/Users/runner/Library/Python/3.12/bin:$PATH"
brew install wget autoconf automake libtool [email protected] gnu-sed gettext libsodium protobuf
python3.10 -m pip install -U --user poetry wheel pip
python3.10 -m poetry install
python3.10 -m pip install -U --user mako
brew update && brew upgrade
brew install wget autoconf automake [email protected] gettext libsodium
python3.12 -m pip install -U --user poetry setuptools wheel pip
python3.12 -m poetry install
python3.12 -m pip install -U --user mako libtool gnu-sed protobuf
sudo ln -s /usr/local/Cellar/gettext/0.20.1/bin/xgettext /usr/local/opt
Expand All @@ -42,8 +42,8 @@ jobs:
export CPATH=/opt/homebrew/include
export LIBRARY_PATH=/opt/homebrew/lib
python3.10 -m poetry run ./configure --disable-valgrind --disable-compat
python3.10 -m poetry run make
python3.12 -m poetry run ./configure --disable-valgrind --disable-compat
python3.12 -m poetry run make
# sudo PATH="/usr/local/opt:$PATH" LIBRARY_PATH=/opt/homebrew/lib CPATH=/opt/homebrew/include make install
Expand Down

0 comments on commit cd47c21

Please sign in to comment.