summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2020-02-17 16:54:52 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2020-02-17 17:42:32 +1000
commitf2d4ef6cc4f4a90f81e840fd598dd3df4ecc6a5e (patch)
tree8df2fd91d1ea130d18b9c0a69306817d264796bf /.gitlab-ci
parent12f9ec84d93e956f1beabaf1bfc1dd17419564aa (diff)
downloadlibevdev-f2d4ef6cc4f4a90f81e840fd598dd3df4ecc6a5e.tar.gz
gitlab CI: rename few targets for autotools
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to '.gitlab-ci')
-rw-r--r--.gitlab-ci/gitlab-ci.tmpl26
1 files changed, 13 insertions, 13 deletions
diff --git a/.gitlab-ci/gitlab-ci.tmpl b/.gitlab-ci/gitlab-ci.tmpl
index 571188c..22972ee 100644
--- a/.gitlab-ci/gitlab-ci.tmpl
+++ b/.gitlab-ci/gitlab-ci.tmpl
@@ -337,7 +337,7 @@ check-commit:
#
# We only run the build option combinations on one image
# because they're supposed to fail equally on all
-.fedora-custom-build@template:
+.fedora-custom-build@autotools-template:
extends: .autotools-build@template
stage: build
image: $FEDORA_CONTAINER_IMAGE
@@ -345,37 +345,37 @@ check-commit:
FEDORA_VERSION: 31
needs: ['fedora:31@container-prep']
-fedora:31@no-valgrind:
- extends: .fedora-custom-build@template
+fedora:31@no-valgrind-autotools:
+ extends: .fedora-custom-build@autotools-template
before_script:
- dnf remove -y valgrind
-fedora:31@no-check:
- extends: .fedora-custom-build@template
+fedora:31@no-check-autotools:
+ extends: .fedora-custom-build@autotools-template
before_script:
- dnf remove -y check check-devel
-fedora:31@no-doxygen:
- extends: .fedora-custom-build@template
+fedora:31@no-doxygen-autotools:
+ extends: .fedora-custom-build@autotools-template
before_script:
- dnf remove -y doxygen
variables:
MAKE_ARGS: '' # disable distcheck, requires doxygen
# doxygen is required for distcheck
-fedora:31@no-doxygen-check-valgrind:
- extends: .fedora-custom-build@template
+fedora:31@no-doxygen-check-valgrind-autotools:
+ extends: .fedora-custom-build@autotools-template
before_script:
- dnf remove -y doxygen valgrind check check-devel
variables:
MAKE_ARGS: '' # disable distcheck, requires doxygen
-fedora:31@no-nm:
- extends: .fedora-custom-build@template
+fedora:31@no-nm-autotools:
+ extends: .fedora-custom-build@autotools-template
before_script:
- mv /usr/bin/nm /usr/bin/nm.moved
-fedora:31@enable-gcov:
- extends: .fedora-custom-build@template
+fedora:31@enable-gcov-autotools:
+ extends: .fedora-custom-build@autotools-template
variables:
CONFIGURE_FLAGS: "--enable-gcov"