forked from homalg-project/FunctorCategories
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yml
41 lines (41 loc) · 1.4 KB
/
config.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
version: 2
jobs:
test:
docker:
- image: gapsystem/gap-docker:latest
working_directory: ~/.gap/pkg/FunctorCategories
steps:
- checkout
- run: |
sudo apt update
sudo apt dist-upgrade -y
sudo apt install -y texlive-latex-extra texlive-science curl
cd ..
git clone --depth 1 https://github.com/gap-packages/AutoDoc.git
git clone --depth 1 https://github.com/homalg-project/homalg_project.git
git clone --depth 1 https://github.com/homalg-project/CAP_project.git
git clone --depth 1 https://github.com/homalg-project/CategoryConstructor.git
git clone --depth 1 https://github.com/homalg-project/InfiniteLists.git
git clone --depth 1 https://github.com/homalg-project/ComplexesForCAP.git
git clone --depth 1 https://github.com/homalg-project/QPA2.git
git clone --depth 1 https://github.com/homalg-project/Algebroids.git
cd FunctorCategories
echo "SetInfoLevel(InfoPackageLoading, 3);" > ~/.gap/gaprc
TERM=dumb make ci-test
bash <(curl -s https://codecov.io/bash)
workflows:
version: 2
commit:
jobs:
- test
nightly:
triggers:
- schedule:
# 0:00 UTC = 1:00 CET = 2:00 CEST
cron: "0 0 * * *"
filters:
branches:
only:
- master
jobs:
- test