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

ci: update for centos9

This commit is contained in:
Wez Furlong 2022-02-01 15:02:24 -07:00
parent 519cf58526
commit 7089954049
4 changed files with 19 additions and 0 deletions

View File

@ -23,6 +23,9 @@ jobs:
- name: "Install config manager"
shell: bash
run: "dnf install -y 'dnf-command(config-manager)'"
- name: "Enable CRB repo for X bits"
shell: bash
run: "dnf config-manager --set-enabled crb"
- name: "Install git"
shell: bash
run: "yum install -y git"

View File

@ -27,6 +27,11 @@ jobs:
run: |
export BUILD_REASON=Schedule
dnf install -y 'dnf-command(config-manager)'
- name: "Enable CRB repo for X bits"
shell: bash
run: |
export BUILD_REASON=Schedule
dnf config-manager --set-enabled crb
- name: "Install git"
shell: bash
run: |

View File

@ -13,6 +13,9 @@ jobs:
- name: "Install config manager"
shell: bash
run: "dnf install -y 'dnf-command(config-manager)'"
- name: "Enable CRB repo for X bits"
shell: bash
run: "dnf config-manager --set-enabled crb"
- name: "Install git"
shell: bash
run: "yum install -y git"

View File

@ -546,6 +546,14 @@ cargo build --all --release""",
"dnf config-manager --set-enabled powertools",
),
]
if "centos:stream9" in self.container:
steps += [
# This holds the xcb bits
RunStep(
"Enable CRB repo for X bits",
"dnf config-manager --set-enabled crb",
),
]
steps += self.install_newer_compiler()
steps += self.install_git()
steps += self.install_curl()