Skip to content
Snippets Groups Projects
Commit e6f633a3 authored by James Yu's avatar James Yu
Browse files

Try macos 13

parent b0affa6f
No related branches found
No related tags found
No related merge requests found
......@@ -8,12 +8,13 @@ permissions:
jobs:
macosx:
runs-on: macos-13-xlarge
runs-on: macos-13
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Set up PATH
run: |
echo "/Users/runner/texlive/bin/x86_64-darwin" >> $GITHUB_PATH
echo "/Users/runner/texlive/bin/universal-darwin" >> $GITHUB_PATH
- name: Cache TeX Live
id: cache-texlive
......@@ -42,7 +43,7 @@ jobs:
- name: Download latexindent binary
run: |
curl -s -O -L http://mirrors.ctan.org/support/latexindent/bin/macos/latexindent
mv -f latexindent /Users/runner/texlive/bin/universal-darwin/latexindent && chmod +x /Users/runner/texlive/bin/universal-darwin/latexindent
[ -d /Users/runner/texlive/bin/x86_64-darwin/ ] && mv -f latexindent /Users/runner/texlive/bin/x86_64-darwin/latexindent && chmod +x /Users/runner/texlive/bin/x86_64-darwin/latexindent || [ -d /Users/runner/texlive/bin/universal-darwin/ ] && mv -f latexindent /Users/runner/texlive/bin/universal-darwin/latexindent && chmod +x /Users/runner/texlive/bin/universal-darwin/latexindent
if: steps.cache-texlive.outputs.cache-hit != 'true'
- uses: actions/setup-node@v4
with:
......@@ -53,9 +54,6 @@ jobs:
- run: |
latex -v
latexmk -v
- run: |
ls -al /Users/runner/texlive/bin/universal-darwin
echo "$PATH"
- run: |
npm ci
npm run compile
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment