-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
49 lines (45 loc) · 930 Bytes
/
.gitlab-ci.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
docs:
script:
- make Docs
- cp -r doc/html /var/www/docs/wormhole
tags:
- docs
ubuntu16.04:
script:
- make -j
artifacts:
paths:
- build/lib
- build/bin
- build/examples
- build/certs
- doc
expire_in: 2 weeks
tags:
- ubuntu16.04
cache:
untracked: true
centos7:
image: onelab4.ii.uam.es:5000/centos7
script:
- CMAKE=cmake3 make -j
artifacts:
paths:
- build/lib
- build/bin
- build/examples
- build/certs
- doc
expire_in: 2 weeks
tags:
- docker
cache:
untracked: true
before_script:
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/lib
- git submodule sync --recursive || true
- git submodule update --recursive || true
clean:
script:
- make clean
when: on_failure