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:
parent
519cf58526
commit
7089954049
3
.github/workflows/gen_centos9.yml
vendored
3
.github/workflows/gen_centos9.yml
vendored
@ -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"
|
||||
|
5
.github/workflows/gen_centos9_continuous.yml
vendored
5
.github/workflows/gen_centos9_continuous.yml
vendored
@ -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: |
|
||||
|
3
.github/workflows/gen_centos9_tag.yml
vendored
3
.github/workflows/gen_centos9_tag.yml
vendored
@ -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"
|
||||
|
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user