Skip to content

Re-enable MacOS runner #7753

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

Merged
merged 1 commit into from
Mar 21, 2025
Merged
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: 7 additions & 8 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,24 @@ jobs:
matrix:
cfg:
- { name: 'Linux', os: 'ubuntu-24.04' }
# - { name: 'MacOS', os: 'macos-13' }
- { name: 'MacOS', os: 'macos-15' }

steps:
- name: checkout
uses: actions/checkout@v4

- name: install GNU tools
if: matrix.cfg.os == 'macos-13'
if: matrix.cfg.os == 'macos-15'
run: |
brew install gnu-sed
echo "/usr/local/opt/gnu-sed/libexec/gnubin" >> ${GITHUB_PATH}
echo "/opt/homebrew/opt/gnu-sed/libexec/gnubin" >> ${GITHUB_PATH}

- name: check-source.sh
run: ../tools/check-source.sh

- name: update brew
if: matrix.cfg.os == 'macos-13'
run: |
brew update
if: matrix.cfg.os == 'macos-15'
run: brew update

- name: update-apt-cache
if: matrix.cfg.os == 'ubuntu-24.04'
Expand All @@ -47,7 +46,7 @@ jobs:
run: sudo apt-get install latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended lmodern

- name: install (MacOS)
if: matrix.cfg.os == 'macos-13'
if: matrix.cfg.os == 'macos-15'
run: |
brew install basictex
eval "$(/usr/libexec/path_helper)"
Expand All @@ -60,7 +59,7 @@ jobs:
run: make quiet

- name: make (MacOS)
if: matrix.cfg.os == 'macos-13'
if: matrix.cfg.os == 'macos-15'
run: make full

- name: check-output.sh
Expand Down