summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorRuslan N. Marchenko <me@ruff.mobi>2020-09-26 17:31:04 +0200
committerRuslan N. Marchenko <me@ruff.mobi>2020-11-15 09:10:37 +0100
commit623e28263b91dc78a3c37907b7ca1618b84b2914 (patch)
tree79be3c5a0b8443828a90711dce7bba3a06d570f0 /.gitlab-ci.yml
parent6661926cc3a7a897360998034c78985915543885 (diff)
Add OpenSUSE Leap+TW and Debian Stable pipelines
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml57
1 files changed, 57 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 42e0205..c76fae5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,6 +6,9 @@ stages:
variables:
FEDORA_IMG: registry.freedesktop.org/ruff/wocky/master:v1
DEBIAN_IMG: registry.freedesktop.org/ruff/wocky/debtest:v1
+ DEBSTB_IMG: registry.freedesktop.org/ruff/wocky/debstbl:v1
+ SUSELP_IMG: registry.freedesktop.org/ruff/wocky/osuselp:v1
+ SUSETW_IMG: registry.freedesktop.org/ruff/wocky/osusetw:v1
WOCKY_DEBUG: all
#G_MESSAGES_DEBUG: all
@@ -59,3 +62,57 @@ debian-x86_64-test:
when: always
paths:
- "tests/test-report.xml"
+
+opensuse-x86_64-build:
+ image: $SUSETW_IMG
+ extends: .default
+ stage: build
+ script:
+ - make
+
+opensuse-x86_64-test:
+ image: $SUSETW_IMG
+ stage: test
+ extends: .default
+ script:
+ - make check
+ artifacts:
+ when: always
+ paths:
+ - "tests/test-report.xml"
+
+debian-stable-x86_64-build:
+ image: $DEBSTB_IMG
+ extends: .default
+ stage: build
+ script:
+ - make
+
+debian-stable-x86_64-test:
+ image: $DEBSTB_IMG
+ stage: test
+ extends: .default
+ script:
+ - make check
+ artifacts:
+ when: always
+ paths:
+ - "tests/test-report.xml"
+
+opensuse-stable-x86_64-build:
+ image: $SUSELP_IMG
+ extends: .default
+ stage: build
+ script:
+ - make
+
+opensuse-stable-x86_64-test:
+ image: $SUSELP_IMG
+ stage: test
+ extends: .default
+ script:
+ - make check
+ artifacts:
+ when: always
+ paths:
+ - "tests/test-report.xml"