-
Notifications
You must be signed in to change notification settings - Fork 101
71 lines (67 loc) · 1.82 KB
/
linux.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
65
66
67
68
69
70
71
name: Linux
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.allow_failure }}
container:
image: ghcr.io/tkw1536/latexml-test-runtime:${{ matrix.texlive }}-${{ matrix.perl }}
env:
CI: true
options: --entrypoint ""
name: TexLive ${{ matrix.texlive }} / Perl ${{ matrix.perl }}
strategy:
matrix:
include:
- perl: "5.34"
texlive: none
allow_failure: false
- perl: "5.32"
texlive: none
allow_failure: false
- perl: "5.30"
texlive: none
allow_failure: false
- perl: "5.28"
texlive: none
allow_failure: false
- perl: "5.26"
texlive: none
allow_failure: false
- perl: "5.34"
texlive: "2021"
allow_failure: true
- perl: "5.32"
texlive: "2020"
allow_failure: true
- perl: "5.30"
texlive: "2019"
allow_failure: true
- perl: "5.28"
texlive: "2018"
allow_failure: true
steps:
- uses: actions/checkout@v2
- name: Print Program Versions
shell: bash
run: |
source /usr/local/perlbrew/etc/bashrc
perl --version
cpanm --version
tex --version || true
- name: Install Dependencies
shell: bash
run: |
source /usr/local/perlbrew/etc/bashrc
cpanm -v --installdeps --notest .
- name: Run 'make'
shell: bash
run: |
source /usr/local/perlbrew/etc/bashrc
perl Makefile.PL
make
- name: Run 'make test'
shell: bash
run: |
source /usr/local/perlbrew/etc/bashrc
make test