-
Notifications
You must be signed in to change notification settings - Fork 22
54 lines (50 loc) · 1.57 KB
/
texlive.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
# Based on https://github.com/CTeX-org/ctex-kit/blob/master/.github/workflows/test.yml
name: Test tabularray in TeX Live
on: [push, pull_request]
env:
TLCurrent: https://mirrors.rit.edu/CTAN/systems/texlive/tlnet
TLHistoric: https://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2021/tlnet-final
jobs:
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install TeX Live
uses: teatimeguest/setup-texlive-action@v3
with:
package-file: .github/workflows/texlive-package.txt
update-all-packages: true
- name: Test tabularray with l3build
run: |
l3build check --debug --halt-on-error --show-log-on-error
- name: Install pdftoppm
run:
sudo apt-get install poppler-utils
- name: Test tabularray with ppmcheckpdf
run: |
texlua buildend.lua
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install TeX Live
uses: teatimeguest/setup-texlive-action@v3
with:
package-file: .github/workflows/texlive-package.txt
update-all-packages: true
- name: Test tabularray with l3build
run: |
l3build check --debug --halt-on-error --show-log-on-error
- name: Install pdftoppm
run: |
tlmgr install wintools.windows
- name: Test tabularray with ppmcheckpdf
run: |
texlua buildend.lua
- name: Upload png and md5
uses: actions/upload-artifact@v4
with:
name: png-and-md5
path: |
testfiles/*.png
testfiles/*.md5