Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 4 additions & 9 deletions .github/workflows/ci_test_illumos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: ['nightly', 'beta', 'stable']
toolchain: ['nightly']
steps:
- uses: actions/checkout@v4
- name: Test in Illumos
Expand All @@ -36,19 +36,14 @@ jobs:
sync: rsync
copyback: false
prepare: |
pkg install gcc14 curl pkg-config
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

ARGS="--features all"
rustup component add clippy

# Add feature "nightly" if toolchain is nightly
if [ "${{ matrix.toolchain }}" = "nightly" ]; then
ARGS="$ARGS --features nightly"
fi

RUST_BACKTRACE=1 cargo +${{ matrix.toolchain }} test --workspace $ARGS
cargo clippy --all-features --all-targets -- -Dwarnings