From dd11fc606a47dd0ba99522b22062b353599fa916 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Mon, 7 Dec 2020 21:34:30 -0800 Subject: [PATCH] ci: maybe fix centos 8 The internet suggests that the name should be lowercase. Why this suddenly broke is beyond me. --- .github/workflows/gen_centos8.yml | 2 +- .github/workflows/gen_centos8_continuous.yml | 2 +- .github/workflows/gen_centos8_tag.yml | 2 +- ci/generate-workflows.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gen_centos8.yml b/.github/workflows/gen_centos8.yml index 6f9d0b906..ff08b0ef1 100644 --- a/.github/workflows/gen_centos8.yml +++ b/.github/workflows/gen_centos8.yml @@ -22,7 +22,7 @@ jobs: run: "dnf install -y 'dnf-command(config-manager)'" - name: "Enable PowerTools" shell: bash - run: "dnf config-manager --set-enabled PowerTools" + run: "dnf config-manager --set-enabled powertools" - name: "Install git" shell: bash run: "yum install -y git" diff --git a/.github/workflows/gen_centos8_continuous.yml b/.github/workflows/gen_centos8_continuous.yml index 2029281cd..299358ed2 100644 --- a/.github/workflows/gen_centos8_continuous.yml +++ b/.github/workflows/gen_centos8_continuous.yml @@ -24,7 +24,7 @@ jobs: shell: bash run: | export BUILD_REASON=Schedule - dnf config-manager --set-enabled PowerTools + dnf config-manager --set-enabled powertools - name: "Install git" diff --git a/.github/workflows/gen_centos8_tag.yml b/.github/workflows/gen_centos8_tag.yml index a74fc318f..e1e4160d0 100644 --- a/.github/workflows/gen_centos8_tag.yml +++ b/.github/workflows/gen_centos8_tag.yml @@ -19,7 +19,7 @@ jobs: run: "dnf install -y 'dnf-command(config-manager)'" - name: "Enable PowerTools" shell: bash - run: "dnf config-manager --set-enabled PowerTools" + run: "dnf config-manager --set-enabled powertools" - name: "Install git" shell: bash run: "yum install -y git" diff --git a/ci/generate-workflows.py b/ci/generate-workflows.py index 0ab6fb63b..75fa6e448 100755 --- a/ci/generate-workflows.py +++ b/ci/generate-workflows.py @@ -442,7 +442,7 @@ cargo build --all --release""", ), RunStep( "Enable PowerTools", - "dnf config-manager --set-enabled PowerTools", + "dnf config-manager --set-enabled powertools", ), ] steps += self.install_git()