1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 23:21:08 +03:00

Revert "ci: migrate centos:8 images to stream"

This reverts commit 6fe60d56fd.

It didn't work out, and I'd rather it be broken the original way
than the other way :-p
This commit is contained in:
Wez Furlong 2022-01-31 21:44:48 -07:00
parent 6fe60d56fd
commit fb1350492c
4 changed files with 0 additions and 18 deletions

View File

@ -20,9 +20,6 @@ jobs:
runs-on: "ubuntu-latest"
container: "centos:8"
steps:
- name: "Migrate to CentOS 8 Stream"
shell: bash
run: "dnf --disablerepo '*' --enablerepo extras swap centos-linux-repos centos-stream-repos && dnf distro-sync"
- name: "Install config manager"
shell: bash
run: "dnf install -y 'dnf-command(config-manager)'"

View File

@ -22,11 +22,6 @@ jobs:
runs-on: "ubuntu-latest"
container: "centos:8"
steps:
- name: "Migrate to CentOS 8 Stream"
shell: bash
run: |
export BUILD_REASON=Schedule
dnf --disablerepo '*' --enablerepo extras swap centos-linux-repos centos-stream-repos && dnf distro-sync
- name: "Install config manager"
shell: bash
run: |

View File

@ -10,9 +10,6 @@ jobs:
runs-on: "ubuntu-latest"
container: "centos:8"
steps:
- name: "Migrate to CentOS 8 Stream"
shell: bash
run: "dnf --disablerepo '*' --enablerepo extras swap centos-linux-repos centos-stream-repos && dnf distro-sync"
- name: "Install config manager"
shell: bash
run: "dnf install -y 'dnf-command(config-manager)'"

View File

@ -529,13 +529,6 @@ cargo build --all --release""",
]
if self.container:
if self.container == "centos:8":
steps += [
RunStep(
"Migrate to CentOS 8 Stream",
"dnf --disablerepo '*' --enablerepo extras swap centos-linux-repos centos-stream-repos && dnf distro-sync"
),
]
if ("fedora" in self.container) or ("centos" in self.container):
steps += [
RunStep(