diff --git a/.gitlab-nonkde.yml b/.gitlab-nonkde.yml new file mode 100644 index 0000000..8abfe53 --- /dev/null +++ b/.gitlab-nonkde.yml @@ -0,0 +1,36 @@ +stages: + - build + - test + +build_ubuntu_18_04: + stage: build + image: reporter123/cmake:bionic + + before_script: + - apt-get update + - apt-get install -y libqt5test5 gettext qtbase5-dev extra-cmake-modules libkf5i18n-dev libkf5coreaddons-dev libkf5iconthemes-dev libkf5parts-dev libkf5doctools-dev libkf5crash-dev + script: + - cmake -DBUILD_TESTING=YES . + - make + artifacts: + untracked: true + retry: + max: 2 + when: + - runner_system_failure + - stuck_or_timeout_failure + +ubuntu_18_04_test: + stage: test + needs: ["build_ubuntu_18_04"] + image: reporter123/cmake:bionic + before_script: + - apt-get update + - apt-get install -y libqt5test5 + script: + - make ARGS="-V -E appstreamtest" test #exclude appstreamtest this does not run properly in my image + retry: + max: 2 + when: + - runner_system_failure + - stuck_or_timeout_failure diff --git a/.gitlab-ci.yml b/disabled--.gitlab-ci.yml similarity index 100% rename from .gitlab-ci.yml rename to disabled--.gitlab-ci.yml