Skip to content

Commit 5ac8263

Browse files
committed
[check.yml] Update Linux runner, disable MacOS action
The MacOS check is currently broken, and we need to investigate.
1 parent 458b16a commit 5ac8263

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/check.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
strategy:
1818
matrix:
1919
cfg:
20-
- { name: 'Linux', os: 'ubuntu-22.04' }
21-
- { name: 'MacOS', os: 'macos-13' }
20+
- { name: 'Linux', os: 'ubuntu-24.04' }
21+
# - { name: 'MacOS', os: 'macos-13' }
2222

2323
steps:
2424
- name: checkout
@@ -39,11 +39,11 @@ jobs:
3939
brew update
4040
4141
- name: update-apt-cache
42-
if: matrix.cfg.os == 'ubuntu-22.04'
42+
if: matrix.cfg.os == 'ubuntu-24.04'
4343
run: sudo apt-get update
4444

4545
- name: install (Linux)
46-
if: matrix.cfg.os == 'ubuntu-22.04'
46+
if: matrix.cfg.os == 'ubuntu-24.04'
4747
run: sudo apt-get install latexmk texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended lmodern
4848

4949
- name: install (MacOS)
@@ -56,7 +56,7 @@ jobs:
5656
sudo tlmgr install latexmk isodate substr relsize ulem fixme rsfs extract layouts enumitem l3packages l3kernel imakeidx splitindex xstring
5757
5858
- name: make (Linux)
59-
if: matrix.cfg.os == 'ubuntu-22.04'
59+
if: matrix.cfg.os == 'ubuntu-24.04'
6060
run: make quiet
6161

6262
- name: make (MacOS)
@@ -67,7 +67,7 @@ jobs:
6767
run: ../tools/check-output.sh
6868

6969
- name: upload PDF
70-
if: matrix.cfg.os == 'ubuntu-22.04'
70+
if: matrix.cfg.os == 'ubuntu-24.04'
7171
uses: actions/upload-artifact@v4
7272
with:
7373
name: draft-snapshot

0 commit comments

Comments
 (0)