Skip to content

Fix/kqueue waker

Fix/kqueue waker #178

name: Check Illumos
on:
merge_group:
types: [checks_requested]
push:
branches:
- master
paths:
- '**/*.rs'
- '**/Cargo.toml'
- '.github/workflows/ci_check_illumos.yml'
pull_request:
branches:
- master
paths:
- '**/*.rs'
- '**/Cargo.toml'
- '.github/workflows/ci_check_illumos.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
check_illumos:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: ['nightly']
steps:
- uses: actions/checkout@v6
- name: Check in Illumos
id: check
uses: vmactions/omnios-vm@v1
with:
usesh: true
sync: rsync
copyback: false
prepare: |
pkg install gcc14 curl gnu-make pkg-config
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf > install.sh
chmod +x install.sh
./install.sh -y --default-toolchain ${{ matrix.toolchain }} --profile minimal
run: |
. "$HOME/.cargo/env"
set -ex
rustup component add clippy
cargo clippy --all-features --all-targets -- -Dwarnings