diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-11-06 07:37:34 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-11-06 07:37:34 +0100 |
commit | 6930ae6561666e0d450945279b4737f1faf778c5 (patch) | |
tree | cd98021b1b8e39daa5f7888b777efade398e6f51 | |
parent | 4e82e978efe8b0cb9117c36eb9ecb1ed772ea4f1 (diff) | |
download | imagefish-6930ae6561666e0d450945279b4737f1faf778c5.tar.gz |
add centos
-rw-r--r-- | .gitlab-ci.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 51d9977..030d91b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,6 +22,32 @@ fedora: paths: - fedora +centos8: + stage: images + image: registry.gitlab.com/kraxel/rpm-package-builder:centos8 + before_script: + - time dnf install -y /usr/bin/guestfish /usr/bin/xz + script: + - sed -i -e '/proxy/d' repos/centos-8.repo + - time ./CentOS8-efi.sh + - *store_images + artifacts: + paths: + - centos8 + +centos7: + stage: images + image: registry.gitlab.com/kraxel/rpm-package-builder:centos7 + before_script: + - time yum install -y /usr/bin/guestfish /usr/bin/xz + script: + - sed -i -e '/proxy/d' repos/centos-7.repo + - time ./CentOS7-efi.sh + - *store_images + artifacts: + paths: + - centos7 + pages: stage: publish image: registry.gitlab.com/kraxel/rpm-package-builder:fedora |