diff options
| author | jvoisin | 2019-01-02 18:08:09 +0100 |
|---|---|---|
| committer | jvoisin | 2019-01-03 01:25:47 +0100 |
| commit | df84a0fc60eb7d937b27a4ac540cb637a55972bf (patch) | |
| tree | 1b2805346dacf45480654419fb4e2b6ede9a9109 /.gitlab-ci.yml | |
| parent | fc742d62f31637f9698cbd46f5ed1aea1847db6d (diff) | |
Add a gitlab-ci file, and a fix test on Fedora
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..72fd1ed --- /dev/null +++ b/.gitlab-ci.yml | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | stages: | ||
| 2 | - testsuite | ||
| 3 | |||
| 4 | testsuite:debian: | ||
| 5 | image: debian | ||
| 6 | stage: testsuite | ||
| 7 | script: | ||
| 8 | - apt-get -qqy update | ||
| 9 | - apt-get -qqy install --no-install-recommends php-dev gcc make | ||
| 10 | - make debug | ||
| 11 | |||
| 12 | testsuite:fedora: | ||
| 13 | image: fedora | ||
| 14 | stage: testsuite | ||
| 15 | script: | ||
| 16 | - dnf install -y php-devel gcc make | ||
| 17 | - make debug | ||
| 18 | |||
| 19 | #testsuite:alpine: | ||
| 20 | # image: alpine | ||
| 21 | # stage: testsuite | ||
| 22 | # script: | ||
| 23 | # - apk update | ||
| 24 | # - apk add php7-dev make gcc musl-dev | ||
| 25 | # - make debug | ||
