Skip to content

Temporary test commit #9

Temporary test commit

Temporary test commit #9

Workflow file for this run

name: nightly
permissions:
contents: read
on:
push:
branches:
- 'release/**'
- freebsd-test-update
schedule:
- cron: '0 4 * * *'
workflow_dispatch: {}
jobs:
test-freebsd:
# see https://github.com/actions/runner/issues/385
# use https://github.com/vmactions/freebsd-vm for now
name: test on freebsd
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: test on freebsd
uses: vmactions/freebsd-vm@d44bf830e7d850111d27aa120d468c905e5980f4
with:
usesh: true
mem: 4096
copyback: false
prepare: |
pkg install -y curl
curl https://sh.rustup.rs -sSf --output rustup.sh
sh rustup.sh -y --profile minimal --default-toolchain stable
source "$HOME/.cargo/env"
rustup component add clippy
echo "~~~~ rustc --version ~~~~"
rustc --version
echo "~~~~ freebsd-version ~~~~"
freebsd-version
run: |
cargo clippy --workspace --all-targets -- -D warnings
cargo build --all-targets
cargo test