-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
40 lines (33 loc) · 970 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
image: ubuntu:trusty
before_script:
- apt-get update
- apt-get install -y curl bundler automake
- export PACKAGE_HOST=http://kisp.github.io/asgl/files
- curl --no-progress-bar --retry 10 -o "ecl.tar.bz2" -L "$PACKAGE_HOST/ecl-16.1.2-amd64.tar.bz2"
- md5sum ecl.tar.bz2
- tar -C / -xf "ecl.tar.bz2"
- rm ecl.tar.bz2
- curl --no-progress-bar --retry 10 -o "gecode.tar.bz2" -L "$PACKAGE_HOST/gecode-4.3.3-complete-amd64.tar.bz2"
- md5sum gecode.tar.bz2
- tar -C / -xjf "gecode.tar.bz2"
- rm gecode.tar.bz2
- apt-get install -y libgmp-dev ragel
- bundle
normal-full:
script:
- ./gitlab-ci/run.sh full
normal-light:
script:
- ./gitlab-ci/run.sh light
cover:
script:
- ./gitlab-ci/run.sh light --enable-cover
timing:
script:
- ./gitlab-ci/run.sh none --enable-timing
logging:
script:
- ./gitlab-ci/run.sh light --enable-logging
fobj-leak-checks:
script:
- ./gitlab-ci/run.sh light --enable-fobj-leak-checks