diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-11-06 13:56:09 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-11-06 13:56:09 +0100 |
commit | dfe3ef93a301f8ae2ecb4109c059f8224c77c66e (patch) | |
tree | e9ac92eb6ba90879f67dbd069d5303ef762b0975 /.gitlab-ci.yml | |
parent | 74b6205f03ecd85a7cc4d5443479bacdf56f8075 (diff) | |
download | imagefish-dfe3ef93a301f8ae2ecb4109c059f8224c77c66e.tar.gz |
ci: rename deps
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a6acb73..b7d8008 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,7 @@ stages: - publish variables: - DEPS: "/usr/bin/guestfish xz sudo" + FISHDEPS: "/usr/bin/guestfish xz sudo" .store_images: &store_images - xz --verbose $(ls *.tar *.qcow2) @@ -18,7 +18,7 @@ centos7: stage: images image: registry.gitlab.com/kraxel/rpm-package-builder:centos7 before_script: - - time yum install -y $DEPS + - time yum install -y $FISHDEPS script: - sed -i -e '/proxy/d' repos/centos-7.repo - time ./CentOS7-efi.sh @@ -31,7 +31,7 @@ centos8: stage: images image: registry.gitlab.com/kraxel/rpm-package-builder:centos8 before_script: - - time dnf install -y $DEPS + - time dnf install -y $FISHDEPS script: - sed -i -e '/proxy/d' repos/centos-8.repo - time ./CentOS8-efi.sh @@ -44,7 +44,7 @@ fedora: stage: images image: registry.gitlab.com/kraxel/rpm-package-builder:fedora before_script: - - time dnf install -y $DEPS + - time dnf install -y $FISHDEPS script: - time ./Fedora-efi-grub2.sh - time ./Fedora-efi-systemd.sh |