1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-11 14:25:57 +03:00
wezterm/.github/workflows/gen_fedora39_tag.yml

118 lines
3.6 KiB
YAML
Raw Normal View History

name: fedora39_tag
2022-05-12 04:25:51 +03:00
on:
push:
tags:
- "20*"
jobs:
build:
runs-on: "ubuntu-latest"
container: "fedora:39"
2024-01-29 00:29:42 +03:00
env:
CARGO_INCREMENTAL: "0"
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
2022-05-12 04:25:51 +03:00
steps:
- name: "Install config manager"
shell: bash
run: "dnf install -y 'dnf-command(config-manager)'"
- name: "Install git"
shell: bash
run: "yum install -y git"
- name: "Install curl"
shell: bash
run: "yum install -y curl"
- 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"
- name: "checkout repo"
uses: actions/checkout@v4
2022-05-12 04:25:51 +03:00
with:
submodules: "recursive"
- name: "Install Rust"
uses: dtolnay/rust-toolchain@stable
2024-01-29 00:29:42 +03:00
- name: "Compile with sccache"
uses: mozilla-actions/sccache-action@v0.0.5
2024-01-29 00:29:42 +03:00
- name: "Cache Rust Dependencies"
uses: actions/cache@v4
2024-01-29 00:29:42 +03:00
id: cache-cargo-vendor
2022-05-12 04:25:51 +03:00
with:
2024-01-29 00:29:42 +03:00
path: |
vendor
.cargo/config
key: "cargo-deps-${{ hashFiles('**/Cargo.lock') }}"
- name: "Vendor dependecies"
if: steps.cache-cargo-vendor.outputs.cache-hit != 'true'
shell: bash
run: "cargo vendor --locked --versioned-dirs >> .cargo/config"
2022-05-12 04:25:51 +03:00
- name: "Install System Deps"
shell: bash
run: "env CI=yes PATH=$PATH ./get-deps"
- name: "Build wezterm (Release mode)"
2022-05-12 04:25:51 +03:00
shell: bash
run: "cargo build -p wezterm --release"
- name: "Build wezterm-gui (Release mode)"
shell: bash
run: "cargo build -p wezterm-gui --release"
- name: "Build wezterm-mux-server (Release mode)"
shell: bash
run: "cargo build -p wezterm-mux-server --release"
- name: "Build strip-ansi-escapes (Release mode)"
shell: bash
run: "cargo build -p strip-ansi-escapes --release"
- name: "Install cargo-nextest from Cargo"
uses: baptiste0928/cargo-install@v3
with:
crate: "cargo-nextest"
cache-key: "fedora39"
- name: "Test"
2022-05-12 04:25:51 +03:00
shell: bash
run: "cargo nextest run --all --no-fail-fast"
2022-05-12 04:25:51 +03:00
- name: "Package"
shell: bash
run: "bash ci/deploy.sh"
- name: "Move RPM"
shell: bash
run: "mv ~/rpmbuild/RPMS/*/*.rpm ."
- name: "Upload artifact"
uses: actions/upload-artifact@v3
with:
name: "fedora39"
2022-05-12 04:25:51 +03:00
path: "wezterm-*.rpm"
upload:
runs-on: ubuntu-latest
needs: build
steps:
- name: "Workaround git permissions issue"
shell: bash
run: "git config --global --add safe.directory /__w/wezterm/wezterm"
- name: "checkout repo"
uses: actions/checkout@v4
2022-05-12 04:25:51 +03:00
- name: "Download artifact"
uses: actions/download-artifact@v3
with:
name: "fedora39"
- name: "Checksum"
shell: bash
run: "for f in wezterm-*.rpm ; do sha256sum $f > $f.sha256 ; done"
2022-05-12 04:25:51 +03:00
- name: "Create pre-release"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
run: "bash ci/retry.sh bash ci/create-release.sh $(ci/tag-name.sh)"
- name: "Upload to Tagged Release"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
run: "bash ci/retry.sh gh release upload --clobber $(ci/tag-name.sh) wezterm-*.rpm *.sha256"