-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
41 lines (36 loc) · 909 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
image: debian:sid
before_script:
- apt update -qq
- apt install -qq -y eatmydata
- eatmydata apt install -qq -y --no-install-recommends
git ca-certificates
- eatmydata apt build-dep -qq -y .
- ./autogen
# Test whether the release can be done.
dist-check:
stage: test
script:
- ./configure
- make distcheck
# Test whether the unit tests pass (with GnuPG).
unit-tests-gpg:
stage: test
script:
- ./configure
- make check TESTSUITEFLAGS=--verbose
# Test whether the unit tests pass (with Seqouia PGP).
unit-tests-sq:
stage: test
script:
- eatmydata apt install -qq -y --no-install-recommends
sq sqv
- ./configure
- make check TESTSUITEFLAGS=--verbose
# Test whether the unit tests pass on a VPATH build.
vpath-tests:
stage: test
script:
- mkdir -p build-tree
- cd build-tree
- ../configure
- make check TESTSUITEFLAGS=--verbose