Skip to content

Commit b257faa

Browse files
committed
Merge branch 'stable-1.4'
2 parents 1961d6f + e8cc36a commit b257faa

File tree

2 files changed

+29
-8
lines changed

2 files changed

+29
-8
lines changed

.appveyor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ branches:
55
except:
66
- /rc-v\d+\.\d+\.\d+/
77

8+
skip_branch_with_pr: true
9+
810
environment:
911
TEST_SUITE: test
1012
PACKAGES: "latest"

.github/workflows/gap.yml

Lines changed: 27 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,35 @@ jobs:
2121
pkgs-to-clone: datastructures
2222

2323
steps:
24-
- uses: actions/checkout@v2
25-
- uses: gap-actions/setup-gap-for-packages@v1
26-
name: "Install GAP and clone/compile necessary packages"
24+
- name: "Check out the repository"
25+
uses: actions/checkout@v2
26+
- name: "Install TeX Live"
27+
if: ${{ matrix.gap-branch == 'master' }}
28+
run: |
29+
sudo apt-get update
30+
sudo apt-get install texlive-latex-base texlive-latex-recommended texlive-latex-extra
31+
sudo apt-get install texlive-extra-utils texlive-fonts-recommended texlive-fonts-extra
32+
- name: "Install GAP and clone/compile necessary packages"
33+
uses: gap-actions/setup-gap-for-packages@v1
2734
with:
2835
GAP_PKGS_TO_CLONE: "${{ matrix.pkgs-to-clone }}"
2936
GAP_PKGS_TO_BUILD: "io orb profiling grape NautyTracesInterface datastructures"
3037
GAPBRANCH: ${{ matrix.gap-branch }}
3138
- name: "Install digraphs-lib"
32-
run: DIGRAPHS_LIB="digraphs-lib-0.6"
33-
&& curl --retry 5 -L -O "https://digraphs.github.io/Digraphs/${DIGRAPHS_LIB}.tar.gz"
34-
&& tar xf "${DIGRAPHS_LIB}.tar.gz"
35-
- uses: gap-actions/run-test-for-packages@v1
36-
name: "Run tst/testall.g"
39+
run: |
40+
DIGRAPHS_LIB="digraphs-lib-0.6"
41+
curl --retry 5 -L -O "https://digraphs.github.io/Digraphs/${DIGRAPHS_LIB}.tar.gz"
42+
tar xf "${DIGRAPHS_LIB}.tar.gz"
43+
- name: "Run tst/testall.g"
44+
uses: gap-actions/run-test-for-packages@v1
45+
- name: "Upload compiled manuals"
46+
if: ${{ matrix.gap-branch == 'master' }}
47+
uses: actions/upload-artifact@v2
48+
with:
49+
name: manual
50+
path: |
51+
doc/manual.pdf
52+
doc/*.html
53+
doc/*.css
54+
doc/*.js
55+

0 commit comments

Comments
 (0)