1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-28 01:06:37 +03:00
wezterm/.github/workflows/gen_centos9_continuous.yml

116 lines
3.3 KiB
YAML
Raw Normal View History

2022-02-02 00:18:57 +03:00
name: centos9_continuous
on:
schedule:
- cron: "10 3 * * *"
push:
branches:
- main
paths-ignore:
- ".cirrus.yml"
- "docs/**"
- "ci/build-docs.sh"
- "ci/generate-docs.py"
- "ci/subst-release-info.py"
- ".github/workflows/pages.yml"
- ".github/workflows/verify-pages.yml"
- ".github/workflows/no-response.yml"
2022-02-02 00:18:57 +03:00
- ".github/ISSUE_TEMPLATE/*"
- "**/*.md"
- "**/*.markdown"
2022-02-02 00:18:57 +03:00
jobs:
build:
runs-on: "ubuntu-latest"
container: "quay.io/centos/centos:stream9"
env:
BUILD_REASON: "Schedule"
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"
2022-02-02 00:18:57 +03:00
- 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"
2022-02-02 00:18:57 +03:00
- name: "Build (Release mode)"
shell: bash
run: "cargo build --all --release"
2022-02-02 00:18:57 +03:00
- name: "Test (Release mode)"
shell: bash
run: "cargo test --all --release"
2022-02-02 00:18:57 +03:00
- name: "Package"
shell: bash
run: "bash ci/deploy.sh"
2022-02-02 00:18:57 +03:00
- name: "Move RPM"
shell: bash
run: "mv ~/rpmbuild/RPMS/*/*.rpm wezterm-nightly-centos9.rpm"
2022-02-02 00:18:57 +03:00
- 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"
retention-days: 5
upload:
runs-on: ubuntu-latest
needs: build
2022-02-02 00:18:57 +03:00
steps:
- 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
- name: "Download artifact"
2022-04-11 04:36:34 +03:00
uses: actions/download-artifact@v3
2022-02-02 00:18:57 +03:00
with:
name: "centos9"
- name: "Checksum"
shell: bash
run: "for f in wezterm-*.rpm ; do sha256sum $f > $f.sha256 ; done"
2022-02-02 00:18:57 +03:00
- name: "Upload to Nightly Release"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
run: "bash ci/retry.sh gh release upload --clobber nightly wezterm-*.rpm *.sha256"