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

Try macos 13

parent b0affa6f
Branches flicker-free-refresh
No related tags found
No related merge requests found
...@@ -8,12 +8,13 @@ permissions: ...@@ -8,12 +8,13 @@ permissions:
jobs: jobs:
macosx: macosx:
runs-on: macos-13-xlarge runs-on: macos-13
timeout-minutes: 30 timeout-minutes: 30
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Set up PATH - name: Set up PATH
run: | run: |
echo "/Users/runner/texlive/bin/x86_64-darwin" >> $GITHUB_PATH
echo "/Users/runner/texlive/bin/universal-darwin" >> $GITHUB_PATH echo "/Users/runner/texlive/bin/universal-darwin" >> $GITHUB_PATH
- name: Cache TeX Live - name: Cache TeX Live
id: cache-texlive id: cache-texlive
...@@ -42,7 +43,7 @@ jobs: ...@@ -42,7 +43,7 @@ jobs:
- name: Download latexindent binary - name: Download latexindent binary
run: | run: |
curl -s -O -L http://mirrors.ctan.org/support/latexindent/bin/macos/latexindent 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' if: steps.cache-texlive.outputs.cache-hit != 'true'
- uses: actions/setup-node@v4 - uses: actions/setup-node@v4
with: with:
...@@ -53,9 +54,6 @@ jobs: ...@@ -53,9 +54,6 @@ jobs:
- run: | - run: |
latex -v latex -v
latexmk -v latexmk -v
- run: |
ls -al /Users/runner/texlive/bin/universal-darwin
echo "$PATH"
- run: | - run: |
npm ci npm ci
npm run compile 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