diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-08-05 16:13:29 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-08-05 16:13:29 +0200 |
commit | 61fade7b3ffad883c6aa427bd7e3817f02af84da (patch) | |
tree | 58a82d4a2fc9db54101594fc364e94ce3103df61 /.gitlab-ci.yml | |
parent | 984a5722862fea9e19a2ebb51a029f4397552844 (diff) | |
download | gterm-61fade7b3ffad883c6aa427bd7e3817f02af84da.tar.gz |
ci: cleanups
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b11bcb9..1be2bb9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,19 +13,18 @@ stages: build_fedora: stage: build image: fedora:latest - script: + before_script: - *builddep_dnf + script: - *build_meson build_centos8: stage: build image: centos:8 - script: + before_script: - dnf install -y 'dnf-command(config-manager)' - - dnf config-manager --set-enabled cr - - dnf config-manager --set-enabled Devel - dnf config-manager --set-enabled PowerTools - - dnf repolist --all - *builddep_dnf + script: - *build_meson |