mirror of
https://github.com/wez/wezterm.git
synced 2024-11-22 22:42:48 +03:00
Add CI for Fedora
This commit is contained in:
parent
b75d6ae62b
commit
9596dfd97f
73
.github/workflows/fedora.yml
vendored
Normal file
73
.github/workflows/fedora.yml
vendored
Normal file
@ -0,0 +1,73 @@
|
||||
name: fedora
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
container: ["fedora:31"]
|
||||
rust_toolchain: [stable]
|
||||
runs-on: ubuntu-latest
|
||||
container: ${{ matrix.container }}
|
||||
steps:
|
||||
- name: Install Git
|
||||
shell: bash
|
||||
run: |
|
||||
sudo yum install -y git
|
||||
- uses: actions/checkout@v1
|
||||
- name: Install System Deps
|
||||
run: sudo ./get-deps
|
||||
- name: Install Rust
|
||||
run: |
|
||||
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain ${{ matrix.rust_toolchain }}
|
||||
source $HOME/.cargo/env
|
||||
rustup update ${{ matrix.rust_toolchain }}
|
||||
- name: Show versions
|
||||
run: |
|
||||
source $HOME/.cargo/env
|
||||
rustc -V
|
||||
cargo -V
|
||||
- name: Cache cargo registry
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.cargo/registry
|
||||
key: ${{ matrix.container }}-${{ matrix.rust_toolchain }}-cargo-registry-${{ hashFiles('Cargo.lock') }}
|
||||
- name: Cache cargo index
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.cargo/git
|
||||
key: ${{ matrix.container }}-${{ matrix.rust_toolchain }}-cargo-index-${{ hashFiles('Cargo.lock') }}
|
||||
- name: Cache cargo build
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: target
|
||||
key: ${{ matrix.container }}-${{ matrix.rust_toolchain }}-cargo-build-target-${{ hashFiles('Cargo.lock') }}
|
||||
- name: Build
|
||||
run: |
|
||||
source $HOME/.cargo/env
|
||||
cargo build --all --release
|
||||
- name: Test
|
||||
run: |
|
||||
source $HOME/.cargo/env
|
||||
cargo test --all --release
|
||||
- name: Package
|
||||
run: |
|
||||
source $HOME/.cargo/env
|
||||
bash ci/deploy.sh
|
||||
- name: Move Linux Package
|
||||
run: |
|
||||
mkdir pkg_
|
||||
mv ~/rpmbuild/RPMS/*/*.rpm pkg_
|
||||
- uses: actions/upload-artifact@master
|
||||
with:
|
||||
name: linux
|
||||
path: pkg_
|
||||
|
Loading…
Reference in New Issue
Block a user