-
Notifications
You must be signed in to change notification settings - Fork 627
103 lines (97 loc) · 3.03 KB
/
pr_test.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: Build Tests
on: pull_request
jobs:
build_all_without_diff:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v1
- name: Current version
run: echo $GITHUB_REF
- name: Download Fonts
run: setup_lipsum=n ./script/ci/setup.sh
- name: Build Grad in Docker
run: docker run --mount src=$GITHUB_WORKSPACE/,target=/zjuthesis,type=bind adnrv/texlive:full /zjuthesis/script/ci/github-action/build_grad.sh
- name: Build Undergrad in Docker
run: docker run --mount src=$GITHUB_WORKSPACE/,target=/zjuthesis,type=bind adnrv/texlive:full /zjuthesis/script/ci/github-action/build_undergrad.sh
- name: Upload Output Files
if: ${{ always() }}
uses: actions/upload-artifact@v1
with:
name: dist-all
path: dist
- name: Upload Log Files
if: ${{ always() }}
uses: actions/upload-artifact@v1
with:
name: out-ci-all
path: out-ci
build_undergrad:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v1
- name: Current version
run: echo $GITHUB_REF
- name: Download Fonts
run: ./script/ci/setup.sh
- name: Build Test in Docker
run: docker run --mount src=$GITHUB_WORKSPACE/,target=/zjuthesis,type=bind adnrv/texlive:full /zjuthesis/script/ci/github-action/build_undergrad.sh
- name: Upload Output Files
if: ${{ always() }}
uses: actions/upload-artifact@v1
with:
name: dist-undergrad
path: dist
- name: Upload Log Files
if: ${{ always() }}
uses: actions/upload-artifact@v1
with:
name: out-ci-undergrad
path: out-ci
build_grad:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v1
- name: Current version
run: echo $GITHUB_REF
- name: Download Fonts
run: ./script/ci/setup.sh
- name: Build Test in Docker
run: docker run --mount src=$GITHUB_WORKSPACE/,target=/zjuthesis,type=bind adnrv/texlive:full /zjuthesis/script/ci/github-action/build_grad.sh
- name: Upload Output Files
if: ${{ always() }}
uses: actions/upload-artifact@v1
with:
name: dist-grad
path: dist
- name: Upload Log Files
if: ${{ always() }}
uses: actions/upload-artifact@v1
with:
name: out-ci-grad
path: out-ci
diff_pdf:
runs-on: ubuntu-latest
needs: [build_grad, build_undergrad]
steps:
- name: Checkout Repo
uses: actions/checkout@v1
- name: Current version
run: echo $GITHUB_REF
- name: Download Artifacts
uses: actions/download-artifact@v2
- name: Move Artifacts
run: |
mkdir -p dist
mv dist-grad/*.pdf dist/
mv dist-undergrad/*.pdf dist/
- name: PDF Diff
run: bash script/ci/pdf-diff/diff_report.sh
- name: Upload PDF Diff Files
if: ${{ always() }}
uses: actions/upload-artifact@v1
with:
name: pdf-diff
path: diff