From 7a6e0ab2b3b784af7c4d6c2b81b56092d08911e7 Mon Sep 17 00:00:00 2001 From: Henrik Triem Date: Thu, 29 Jul 2021 14:52:37 +0200 Subject: [PATCH] Install httpd for Fedora too --- .gitlab-ci.yml | 2 -- testing/prepare_test.sh | 4 ++++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index db32a3e..4a5b8fc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -95,7 +95,6 @@ test/fedora/34: <<: *test variables: DOCKER_IMAGE: fedora/34 - allow_failure: true dependencies: - build/fedora/34 @@ -113,7 +112,6 @@ test/fedora/33: <<: *test variables: DOCKER_IMAGE: fedora/33 - allow_failure: true dependencies: - build/fedora/33 diff --git a/testing/prepare_test.sh b/testing/prepare_test.sh index f3355cf..02d527d 100755 --- a/testing/prepare_test.sh +++ b/testing/prepare_test.sh @@ -11,6 +11,10 @@ if [ -f /etc/centos-release ] || grep -q 'ID="centos"' /etc/os-release; then fi fi +if [ -f /etc/fedora-release ]; then + sudo yum install -y httpd +fi + if [ -f /etc/os-release ]; then source /etc/os-release fi