Skip to content

Add FreeBSD pre-built binary release workflow #363

Add FreeBSD pre-built binary release workflow

Add FreeBSD pre-built binary release workflow #363

Workflow file for this run

name: Rust
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/.rustup/toolchains/stable-*
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-stable-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install cargo-nextest
uses: taiki-e/install-action@nextest
- name: Build
run: cargo build --all-features
- name: Run tests
run: cargo nextest run --all-features
test_freebsd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test in FreeBSD
id: test
uses: vmactions/freebsd-vm@v1
with:
envs: 'CARGO_TERM_COLOR'
usesh: true
prepare: |
pkg install -y curl gcc
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
run: |
. "$HOME/.cargo/env"
cargo build --all-features
cargo test --all-features
cargo clean