From 844a9e3bf5983c518e96be8f73bfad89ebea4c88 Mon Sep 17 00:00:00 2001 From: Takuya ASADA Date: Mon, 8 Jul 2024 19:52:40 +0900 Subject: [PATCH] build.yml: drop "Build RPM (Centos:7)" build test yum command failed because of CentOS7 have been deprecated. We should drop it now. --- .github/workflows/build.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2b1c8f64..05e1648c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,9 +26,6 @@ jobs: pip install -r test-requirements.txt pytest ./tests - - name: Build RPM (Centos:7) - run: docker run -v `pwd`:/scylla-machine-image -w /scylla-machine-image --rm centos:7.2.1511 bash -c './dist/redhat/build_rpm.sh -t centos7' - - name: Build RPM (Rockylinux:8) run: docker run -v `pwd`:/scylla-machine-image -w /scylla-machine-image --rm rockylinux:8 bash -c 'dnf update -y; dnf install -y git ; git config --global --add safe.directory "*"; ./dist/redhat/build_rpm.sh -t centos8'