-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (62 loc) · 1.82 KB
/
texlive_on_win.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
name: TeX Live on Windows
env:
cache-version: v13
on:
push:
tags-ignore:
- 'v*.*.*'
branches:
- '*'
permissions:
contents: read
jobs:
windows:
runs-on: windows-latest
timeout-minutes: 40
steps:
- name: Prepare git
run: git config --global core.autocrlf false
- uses: actions/checkout@v4
- name: Set up PATH
run: |
echo "C:\strawberry\c\bin;C:\strawberry\perl\site\bin;C:\strawberry\perl\bin" >> $GITHUB_PATH
echo "D:\texlive\bin\windows" >> $GITHUB_PATH
shell: bash
- name: Cache TeX Live
id: cache-texlive
uses: actions/cache@v4
with:
path: D:\texlive
key: ${{ env.cache-version }}-${{ runner.os }}-texlive-essential
restore-keys: |
${{ env.cache-version }}-${{ runner.os }}-texlive-essential
- name: Download install-tl.zip
run: |
curl -s -O -L http://mirror.ctan.org/systems/texlive/tlnet/install-tl.zip
unzip -q install-tl.zip
mv install-tl-2* install-tl-dir
if: steps.cache-texlive.outputs.cache-hit != 'true'
- name: Run install-tl-windows.bat
run: |
install-tl-dir\install-tl-windows.bat --profile test\config\texlive_windows.profile
if: steps.cache-texlive.outputs.cache-hit != 'true'
shell: cmd
- name: Run tlmgr install
run: |
tlmgr install collection-latex
tlmgr install import subfiles latexmk makeindex
tlmgr install chktex lacheck
if: steps.cache-texlive.outputs.cache-hit != 'true'
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: latex -v
- run: perl -v
- run: perl -MCwd -e 'print $Cwd::VERSION."\n";'
- run: latexmk -v
- run: echo "$PATH"
- run: |
npm ci
npm run compile
- name: Run tests
run: npm run test