-
Notifications
You must be signed in to change notification settings - Fork 912
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6d04239
commit cd47c21
Showing
1 changed file
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|