diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2022-07-13 07:27:46 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2022-07-13 07:27:46 +0200 |
commit | e6ccc7765f2a0e0efd04888824dd974c4192e2fa (patch) | |
tree | d5d52c92600fc208d40e4fda8c7cc370e6b4f3e2 | |
parent | a3ba76849e486e0b48a38f845fb7b4aee77ab97b (diff) | |
download | imagefish-e6ccc7765f2a0e0efd04888824dd974c4192e2fa.tar.gz |
ci: drop el8, too big
-rw-r--r-- | .gitlab-ci.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4206185..351e6ec 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -43,6 +43,7 @@ el7: el8: stage: images image: registry.gitlab.com/kraxel/rpm-package-builder:el8 + when: manual before_script: - time dnf install -y $FISHDEPS script: @@ -103,12 +104,12 @@ pages: image: registry.gitlab.com/kraxel/rpm-package-builder:fedora dependencies: - el7 - - el8 +# - el8 # - fedora - wsl script: - mkdir public - - for d in el7 el8 wsl; do mv -v ${d}/index.html public/${d}.html; done + - for d in el7 wsl; do mv -v ${d}/index.html public/${d}.html; done - cat pages/header.html > listing.html - cat pages/efi.html >> listing.html - cat public/*.html | grep "href.*qcow2.xz" >> listing.html |