summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorjvoisin2020-11-11 19:26:17 +0100
committerjvoisin2020-11-11 19:26:17 +0100
commitc0c0cf70a8579095d5b7c0fb53f86fca21799e52 (patch)
treefa23a6401f24c29661c476ccfb18492372366aff /.gitlab-ci.yml
parentc76c67ce7624bab488790a4843eb12348c6c044a (diff)
Add a `make tests` to run the testsuite
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 75aa17e..8f99bb8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -7,14 +7,14 @@ testsuite:debian:
7 script: 7 script:
8 - apt-get -qqy update 8 - apt-get -qqy update
9 - apt-get -qqy install --no-install-recommends php-dev gcc make libpcre3-dev 9 - apt-get -qqy install --no-install-recommends php-dev gcc make libpcre3-dev
10 - make debug 10 - make tests
11 11
12testsuite:fedora: 12testsuite:fedora:
13 image: fedora 13 image: fedora
14 stage: testsuite 14 stage: testsuite
15 script: 15 script:
16 - dnf install -y php-devel gcc make pcre-devel 16 - dnf install -y php-devel gcc make pcre-devel
17 - make debug 17 - make tests
18 18
19testsuite:ubuntu: 19testsuite:ubuntu:
20 image: ubuntu 20 image: ubuntu
@@ -22,7 +22,7 @@ testsuite:ubuntu:
22 script: 22 script:
23 - apt-get -qqy update 23 - apt-get -qqy update
24 - DEBIAN_FRONTEND=noninteractive apt-get -qqy install --no-install-recommends php-dev gcc make libpcre3-dev php-cgi php-curl php-xml 24 - DEBIAN_FRONTEND=noninteractive apt-get -qqy install --no-install-recommends php-dev gcc make libpcre3-dev php-cgi php-curl php-xml
25 - make debug 25 - make tests
26 26
27testsuite:alpine: 27testsuite:alpine:
28 image: alpine 28 image: alpine