From df9c1fe8b81269ffd8eed3fd5303d16cec3d1ab8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= Date: Thu, 3 Jan 2019 16:16:57 -0500 Subject: gitlab-ci: Run autotools tests in CI too --- .gitlab-ci.yml | 31 ++++++++++++++++++++++--------- 1 file 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' -- cgit v1.2.1