-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mac build on macos-13 instead of macos-14 (latest)
At least this runs the test in a reasonable amount of time. Still TBD why macos-14 test run is so slow.
- Loading branch information
Showing
2 changed files
with
6 additions
and
3 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 |
---|---|---|
|
@@ -58,7 +58,7 @@ jobs: | |
max_releases: 1 | ||
macOS: | ||
name: macOS | ||
runs-on: macOS-latest | ||
runs-on: macos-13 | ||
steps: | ||
- name: install dependencies | ||
run: | | ||
|
@@ -67,8 +67,10 @@ jobs: | |
sudo cp -R /Volumes/SDL2/SDL2.framework /Library/Frameworks/ | ||
brew install googletest | ||
- uses: actions/checkout@v4 | ||
- name: make | ||
run: make clean tests macdist | ||
- name: Run headless tests | ||
run: make -j3 tests | ||
- name: make macdist | ||
run: make -j3 clean macdist | ||
- name: deploy main nightly | ||
if: startsWith(github.repository_owner, 'avaraline') && endsWith(github.ref, 'main') | ||
uses: WebFreak001/[email protected] | ||
|
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