summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2019-01-03 16:16:57 -0500
committerOlivier CrĂȘte <olivier.crete@collabora.com>2019-01-03 23:04:12 -0500
commitdf9c1fe8b81269ffd8eed3fd5303d16cec3d1ab8 (patch)
tree7ef1ce98b404169023a99c7078da622de80e61aa
parentdb303173d9ae6bdd02a86b0d59d1ccc99e1e5c3d (diff)
downloadlibnice-df9c1fe8b81269ffd8eed3fd5303d16cec3d1ab8.tar.gz
gitlab-ci: Run autotools tests in CI too
-rw-r--r--.gitlab-ci.yml31
1 files changed, 22 insertions, 9 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fa6df96..c97c0d4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -17,17 +17,30 @@ build autotools:
- mkdir "$PREFIX"
- ./autogen.sh --prefix="$PREFIX" --enable-compile-warnings=error --enable-gtk-doc --enable-introspection
- make
- #- make check
- make install
- #- make distcheck
artifacts:
- when: on_failure
- paths:
- - nice/test-suite.log
- - random/test-suite.log
- - tests/test-suite.log
- - stun/tests/test-suite.log
- - config.log
+ untracked: true
+
+test autotools:
+ stage: test
+ except:
+ - schedules
+ dependencies:
+ - build autotools
+ before_script:
+ - yum install -y net-tools
+ script:
+ - ifconfig
+ - make check
+ artifacts:
+ when: always
+ paths:
+ - libnice-0.1.15.1.tar.gz
+ - config.log
+ - nice/test-suite.log
+ - random/test-suite.log
+ - tests/test-suite.log
+ - stun/tests/test-suite.log
build meson:
image: 'fedora'