1
1
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:
Wez Furlong 2019-12-29 14:03:09 -08:00
parent b75d6ae62b
commit 9596dfd97f
2 changed files with 75 additions and 1 deletions

73
.github/workflows/fedora.yml vendored Normal file
View 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_

View File

@ -15,7 +15,8 @@ if test -e /etc/centos-release || test -e /etc/fedora-release; then
mesa-libEGL-devel \
xcb-util-keysyms-devel \
xcb-util-wm-devel \
rpm-build
rpm-build \
redhat-lsb-core
exit $?
fi