Skip to content

Use Cross v0.2.5.

Use Cross v0.2.5. #631

Workflow file for this run

on: [push]
name: CI
jobs:
check-build:
name: Check build
strategy:
matrix:
target: [x86_64-unknown-linux-musl, x86_64-pc-windows-gnu, i686-pc-windows-gnu]
platform: [ubuntu-latest]
include:
- target: x86_64-apple-darwin
platform: macos-latest
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- uses: FrancisRussell/[email protected]
name: Cargo Cache
with:
command: cache
- uses: FrancisRussell/[email protected]
name: Install Rustup
with:
command: install-rustup
toolchain: stable
target: ${{ matrix.target }}
profile: minimal
default: true
- uses: FrancisRussell/[email protected]
name: Install cross (workaround for (https://github.com/cross-rs/cross/issues/1453))
with:
command: cargo install
args: cross --git https://github.com/cross-rs/cross --tag v0.2.5
- name: Report Cross version
run: cross --version
- name: Report Rustc version
run: rustc --version
- name: Build using cross normally
run: cross build --target=${{ matrix.target }}
- uses: FrancisRussell/[email protected]
name: Cargo build
with:
command: cargo build
use-cross: true
args: --target=${{ matrix.target }}
- uses: actions/[email protected]
with:
name: zoog-debug-${{ matrix.target }}
path: |
target/${{ matrix.target }}/debug/opusgain
target/${{ matrix.target }}/debug/opusgain.exe
target/${{ matrix.target }}/debug/zoogcomment
target/${{ matrix.target }}/debug/zoogcomment.exe
if-no-files-found: error
cargo-test:
name: Cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: FrancisRussell/[email protected]
name: Cargo cache
with:
command: cache
- uses: FrancisRussell/[email protected]
name: Install Rustup
with:
command: install-rustup
toolchain: nightly
profile: minimal
default: true
- uses: FrancisRussell/[email protected]
name: Run tests
with:
command: cargo test
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: FrancisRussell/[email protected]
name: Cargo cache
with:
command: cache
- uses: FrancisRussell/[email protected]
name: Install Rustup
with:
command: install-rustup
toolchain: nightly
components: clippy
default: true
- uses: FrancisRussell/[email protected]
name: Clippy
with:
command: cargo clippy