diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2021-05-06 15:27:26 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2021-05-06 15:27:26 +0200 |
commit | 12e79e45f046701214262caac35783e09a88ff84 (patch) | |
tree | 98e5e9bfef34ff1dde72173ac001755a2bdce659 | |
parent | af9f71b704cbcab0f9d2b43fda1f081566e6f214 (diff) | |
download | rpm-package-builder-12e79e45f046701214262caac35783e09a88ff84.tar.gz |
meson build tweaks
-rw-r--r-- | gitlab-ci-build-meson.yml | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/gitlab-ci-build-meson.yml b/gitlab-ci-build-meson.yml index 3b327c9..3304e6a 100644 --- a/gitlab-ci-build-meson.yml +++ b/gitlab-ci-build-meson.yml @@ -23,6 +23,14 @@ build_fedora_x86_64: script: - *build_meson +build_el7_x86_64: + stage: build + image: registry.gitlab.com/kraxel/rpm-package-builder:el7 + before_script: + - yum-builddep -y *.spec + script: + - *build_meson + build_el8_x86_64: stage: build image: registry.gitlab.com/kraxel/rpm-package-builder:el8 @@ -31,10 +39,10 @@ build_el8_x86_64: script: - *build_meson -build_el7_x86_64: +build_stream8_x86_64: stage: build - image: registry.gitlab.com/kraxel/rpm-package-builder:el7 + image: registry.gitlab.com/kraxel/rpm-package-builder:stream8 before_script: - - yum-builddep -y *.spec + - dnf builddep -y *.spec script: - *build_meson |