Fix Linux and Windows CI build #661
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [linux, macos, windows] | |
include: | |
- platform: linux | |
os: ubuntu-22.04 | |
- platform: macos | |
os: macos-latest | |
- platform: windows | |
os: windows-2022 | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Fetch tags | |
run: git fetch --tags | |
- if: matrix.platform == 'linux' | |
name: Setup system dependencies (Linux) | |
run: sudo apt-get update && sudo apt-get install libgtk-3-dev libxcb-shape0-dev libxcb-xfixes0-dev libsdl2-dev | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
override: true | |
components: clippy | |
- name: Cache cargo builds | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target/release | |
key: cargo-${{ matrix.platform }}-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: | | |
cargo-${{ matrix.platform }}- | |
- if: matrix.platform == 'linux' | |
name: Run cargo build (Dynamic SDL2) | |
run: | | |
cargo build --release --locked | |
- if: matrix.platform != 'linux' | |
name: Run cargo build (Static SDL2) | |
run: | | |
cargo build --release --locked --features=sdl2-static | |
# - name: Run cargo test | |
# run: | | |
# cargo test --release --locked | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: MFEKglif-${{ matrix.platform }} | |
path: | | |
target/release/MFEKglif | |
target/release/MFEKglif.exe | |
rustfmt: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
override: true | |
components: rustfmt | |
- name: Run rustfmt | |
run: | | |
cargo fmt -- --check | |
cargo_bloat: | |
if: false | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
override: true | |
- name: Cache cargo builds | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
target | |
key: cargo-bloat-${{ matrix.platform }}-${{ hashFiles('**/Cargo.lock') }} | |
- name: Run cargo bloat | |
uses: orf/cargo-bloat-action@v1 | |
with: | |
token: ${{ github.token }} |