mirror of
https://github.com/wez/wezterm.git
synced 2024-12-19 03:11:31 +03:00
76 lines
1.8 KiB
YAML
76 lines
1.8 KiB
YAML
|
|
name: fedora31
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
fail-fast: false
|
|
runs-on: "ubuntu-latest"
|
|
container: "fedora:31"
|
|
steps:
|
|
- name: "Install Sudo"
|
|
shell: bash
|
|
run: "yum install -y sudo"
|
|
- name: "Install System Git"
|
|
shell: bash
|
|
run: "sudo yum install -y git"
|
|
- name: "checkout repo"
|
|
uses: actions/checkout@v1
|
|
- name: "Install Rust"
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
profile: "minimal"
|
|
toolchain: "stable"
|
|
override: true
|
|
components: "rustfmt"
|
|
- name: "Cache cargo registry"
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: "~/.cargo/registry"
|
|
key: "fedora31-None-${{ hashFiles('Cargo.lock') }}-cargo-registry"
|
|
- name: "Cache cargo index"
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: "~/.cargo/git"
|
|
key: "fedora31-None-${{ hashFiles('Cargo.lock') }}-cargo-index"
|
|
- name: "Cache cargo build"
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: "target"
|
|
key: "fedora31-None-${{ hashFiles('Cargo.lock') }}-cargo-build-target"
|
|
- name: "Install System Deps"
|
|
shell: bash
|
|
run: "sudo ./get-deps"
|
|
- name: "Check formatting"
|
|
shell: bash
|
|
run: "cargo fmt --all -- --check"
|
|
- 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 Package for artifact upload"
|
|
shell: bash
|
|
run: |
|
|
mkdir pkg_
|
|
mv ~/rpmbuild/RPMS/*/*.rpm pkg_
|
|
|
|
- name: "Upload artifact"
|
|
uses: actions/upload-artifact@master
|
|
with:
|
|
name: "fedora31"
|
|
path: "pkg_"
|