1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-12 13:13:15 +03:00
wezterm/.github/workflows/gen_centos9.yml

96 lines
2.7 KiB
YAML
Raw Normal View History

2022-02-02 00:18:57 +03:00
name: centos9
on:
pull_request:
branches:
- main
2023-03-16 07:31:46 +03:00
paths:
- "**/*.rs"
- "**/Cargo.lock"
- "**/Cargo.toml"
- ".github/workflows/gen_ubuntu20.04.yml"
2023-03-16 07:31:46 +03:00
- "assets/fonts/**/*"
- "assets/icon/*"
- "assets/open-wezterm-here"
- "assets/shell-completion/**/*"
- "assets/shell-integration/**/*"
- "assets/wezterm-nautilus.py"
- "assets/wezterm.appdata.xml"
- "assets/wezterm.desktop"
- "ci/appimage.sh"
- "ci/appstreamcli"
- "ci/deploy.sh"
- "ci/source-archive.sh"
- "get-deps"
- "tag-name.sh"
- "termwiz/data/wezterm.terminfo"
2022-02-02 00:18:57 +03:00
jobs:
build:
runs-on: "ubuntu-latest"
container: "quay.io/centos/centos:stream9"
2022-02-02 00:18:57 +03:00
steps:
- name: "Install config manager"
shell: bash
run: "dnf install -y 'dnf-command(config-manager)'"
2022-02-02 01:02:24 +03:00
- name: "Enable CRB repo for X bits"
shell: bash
run: "dnf config-manager --set-enabled crb"
2022-02-02 00:18:57 +03:00
- name: "Install git"
shell: bash
run: "yum install -y git"
- name: "Install curl-minimal"
2022-02-02 00:18:57 +03:00
shell: bash
run: "yum install -y curl-minimal"
2022-02-02 00:18:57 +03:00
- name: "Ensure /run/sshd exists"
shell: bash
run: "mkdir -p /run/sshd"
- name: "Install openssh-server"
shell: bash
run: "yum install -y openssh-server"
- name: "Workaround git permissions issue"
shell: bash
run: "git config --global --add safe.directory /__w/wezterm/wezterm"
2022-02-02 00:18:57 +03:00
- name: "checkout repo"
uses: actions/checkout@v3
2022-02-02 00:18:57 +03:00
with:
submodules: "recursive"
- name: "Install Rust"
uses: actions-rs/toolchain@v1
with:
profile: "minimal"
toolchain: "stable"
override: true
components: "rustfmt"
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: "true"
- name: "Cache cargo"
uses: actions/cache@v3
2022-02-02 00:18:57 +03:00
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: "centos9-None-2-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}-cargo"
- name: "Install System Deps"
shell: bash
run: "env PATH=$PATH ./get-deps"
- name: "Build (Release mode)"
shell: bash
run: "cargo build --all --release"
- name: "Test (Release mode)"
shell: bash
run: "cargo test --all --release"
- name: "Package"
shell: bash
run: "bash ci/deploy.sh"
- name: "Move RPM"
shell: bash
run: "mv ~/rpmbuild/RPMS/*/*.rpm ."
- name: "Upload artifact"
2022-04-11 04:36:34 +03:00
uses: actions/upload-artifact@v3
2022-02-02 00:18:57 +03:00
with:
name: "centos9"
path: "wezterm-*.rpm"