From patchwork Mon Mar 7 14:59:20 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Dan_Hor=C3=A1k?= X-Patchwork-Id: 1602235 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=lists.ozlabs.org (client-ip=112.213.38.117; helo=lists.ozlabs.org; envelope-from=skiboot-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org; receiver=) Received: from lists.ozlabs.org (lists.ozlabs.org [112.213.38.117]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bilbo.ozlabs.org (Postfix) with ESMTPS id 4KC1pP2gKcz9s8s for ; Tue, 8 Mar 2022 01:59:57 +1100 (AEDT) Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4KC1pM013Vz3bYn for ; Tue, 8 Mar 2022 01:59:55 +1100 (AEDT) X-Original-To: skiboot@lists.ozlabs.org Delivered-To: skiboot@lists.ozlabs.org Authentication-Results: lists.ozlabs.org; spf=none (no SPF record) smtp.helo=redcrew.org (client-ip=37.157.195.192; helo=redcrew.org; envelope-from=<>; receiver=) Received: from redcrew.org (redcrew.org [37.157.195.192]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 4KC1nm2HX1z3bTP for ; Tue, 8 Mar 2022 01:59:24 +1100 (AEDT) Received: from server.danny.cz (85-71-161-19.rce.o2.cz [85.71.161.19]) by redcrew.org (Postfix) with ESMTP id DAC4E4220 for ; Mon, 7 Mar 2022 15:59:20 +0100 (CET) Received: from talos.danny.cz (unknown [IPv6:2001:470:5c11:160:47df:83f6:718e:218]) by server.danny.cz (Postfix) with ESMTP id A429F1EAC1 for ; Mon, 7 Mar 2022 15:59:20 +0100 (CET) From: =?utf-8?q?Dan_Hor=C3=A1k?= To: skiboot@lists.ozlabs.org Date: Mon, 7 Mar 2022 15:59:20 +0100 Message-Id: <20220307145920.30432-1-dan@danny.cz> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Subject: [Skiboot] [PATCH] ci: remove Fedora 33 X-BeenThere: skiboot@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Mailing list for skiboot development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: skiboot-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Skiboot" Fedora 33 has been EOL since the end of 2021, so remove it from the CI setup. Signed-off-by: Dan HorĂ¡k --- .github/workflows/docker-builds-checks.yml | 2 +- opal-ci/Dockerfile-fedora33 | 9 --------- opal-ci/build-fedora33.sh | 22 ---------------------- 3 files changed, 1 insertion(+), 32 deletions(-) delete mode 100644 opal-ci/Dockerfile-fedora33 delete mode 100755 opal-ci/build-fedora33.sh diff --git a/.github/workflows/docker-builds-checks.yml b/.github/workflows/docker-builds-checks.yml index 2e665b1f..a9878fd5 100644 --- a/.github/workflows/docker-builds-checks.yml +++ b/.github/workflows/docker-builds-checks.yml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: - os: [ ubuntu-18.04, ubuntu-20.04, ubuntu-rolling, centos7, fedora33, fedora34, fedora35, docs ] + os: [ ubuntu-18.04, ubuntu-20.04, ubuntu-rolling, centos7, fedora34, fedora35, docs ] steps: - uses: actions/checkout@v2 diff --git a/opal-ci/Dockerfile-fedora33 b/opal-ci/Dockerfile-fedora33 deleted file mode 100644 index cbe32fa3..00000000 --- a/opal-ci/Dockerfile-fedora33 +++ /dev/null @@ -1,9 +0,0 @@ -FROM fedora:33 -RUN dnf -y update -RUN dnf -y install --allowerasing wget curl xterm gcc git xz make diffutils findutils expect valgrind valgrind-devel ccache dtc openssl openssl-devel gcc-powerpc64-linux-gnu mbedtls-devel -# for building documentation and the coverage report -RUN dnf -y install python-pip lcov -RUN if [ `arch` = "x86_64" ]; then dnf -y install http://public.dhe.ibm.com/software/server/powerfuncsim/p9/packages/v1.1-0/systemsim-p9-1.1-0.f22.x86_64.rpm; fi -RUN if [ `arch` = "x86_64" ]; then dnf -y install http://public.dhe.ibm.com/software/server/powerfuncsim/p10/packages/v1.2-1/rhel8/systemsim-p10-1.2-1.x86_64.rpm; fi -COPY . /build/ -WORKDIR /build diff --git a/opal-ci/build-fedora33.sh b/opal-ci/build-fedora33.sh deleted file mode 100755 index 9042256d..00000000 --- a/opal-ci/build-fedora33.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -set -uo pipefail -set -e -set -vx - -MAKE_J=$(grep -c processor /proc/cpuinfo) -export CROSS="ccache powerpc64-linux-gnu-" - -make -j${MAKE_J} all -make -j${MAKE_J} check -(make clean; cd external/gard && CROSS= make -j${MAKE_J}) -(cd external/pflash; make -j${MAKE_J}) -make clean -SKIBOOT_GCOV=1 make -j${MAKE_J} -SKIBOOT_GCOV=1 make -j${MAKE_J} check - -make clean -rm -rf builddir -mkdir builddir -make SRC=$(pwd) -f ../Makefile -C builddir -j${MAKE_J} -make clean