Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Github: Update runner names #426

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions .github/workflows/cmake-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# (*) "artefact" for the rest of the Anglosphere
#-
matrix:
os: [ubuntu-20.04, ubuntu-22.04]
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Install dependencies
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
#
# (*) "artefact" for the rest of the Anglosphere -
matrix:
os: [macos-12, macos-13, macos-14]
os: [macos-12, macos-13, macos-latest]

env:
CPACK_SUFFIX: ${{matrix.os != 'macos-14' && 'x86_64' || 'm1'}}.${{matrix.os}}
Expand All @@ -71,12 +71,15 @@ jobs:
##
## Future: Will have to keep an eye on SDL_ttf's Python dependency
## so that the correct/appropriate Python version is removed.
##
## Redirect stderr to /dev/null so that GH doesn't emit useless failure
## messages.
- name: Remnant symlink cleanup
run: |
brew unlink python@3 || true
brew uninstall --ignore-dependencies python@3 || true
brew unlink python@3.12 || true
brew uninstall --ignore-dependencies python@3.12 || true
brew unlink python@3 2> /dev/null || true
brew uninstall --ignore-dependencies python@3 2> /dev/null || true
brew unlink python@3.12 2> /dev/null || true
brew uninstall --ignore-dependencies python@3.12 2> /dev/null || true
for f in $(find /usr/local/bin -type l -print); do \
(readlink $f | grep -q -s "/Library") && echo Removing "$f" && rm -f "$f"; \
done || exit 0
Expand Down
Loading