chore/fix: add CI for more platforms and targets, fix build error on 32bit systems #121
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_BACKTRACE: 1 | |
RUSTFLAGS: -Dwarnings | |
RUSTDOCFLAGS: -Dwarnings | |
MSRV: "1.76" | |
jobs: | |
build_and_test_nix: | |
timeout-minutes: 30 | |
name: "Build and test (nix)" | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macOS-latest] | |
rust: [stable] | |
# once feature flags are used more, enable testing with all combinations | |
# features: [all, none, default] | |
features: [none, default] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install ${{ matrix.rust }} rust | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: Install cargo-nextest | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: nextest | |
- name: Select features | |
run: | | |
case "${{ matrix.features }}" in | |
all) | |
echo "FEATURES=--all-features" >> "$GITHUB_ENV" | |
;; | |
none) | |
echo "FEATURES=--no-default-features" >> "$GITHUB_ENV" | |
;; | |
default) | |
echo "FEATURES=" >> "$GITHUB_ENV" | |
;; | |
*) | |
exit 1 | |
esac | |
- name: build tests | |
run: | | |
cargo nextest run --workspace --exclude willow-fuzz ${{ env.FEATURES }} --lib --bins --tests --no-run | |
- name: run tests | |
run: | | |
cargo nextest run --workspace --exclude willow-fuzz ${{ env.FEATURES }} --lib --bins --tests --no-fail-fast | |
env: | |
RUST_LOG: ${{ runner.debug && 'TRACE' || 'DEBUG'}} | |
- name: run doctests | |
if: ${{ matrix.features == 'all' }} | |
env: | |
RUST_LOG: ${{ runner.debug && 'TRACE' || 'DEBUG'}} | |
run: | | |
cargo test --workspace --exclude willow-fuzz --all-features --doc | |
build_and_test_windows: | |
timeout-minutes: 30 | |
name: "Build and test (Windows)" | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest] | |
rust: [stable] | |
# once feature flags are used more, enable testing with all combinations | |
# features: [all, none, default] | |
features: [default] | |
target: | |
- x86_64-pc-windows-msvc | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ inputs.git-ref }} | |
- name: Install ${{ matrix.rust }} | |
run: | | |
rustup toolchain install ${{ matrix.rust }} | |
rustup toolchain default ${{ matrix.rust }} | |
rustup target add ${{ matrix.target }} | |
rustup set default-host ${{ matrix.target }} | |
- name: Install cargo-nextest | |
shell: powershell | |
run: | | |
$tmp = New-TemporaryFile | Rename-Item -NewName { $_ -replace 'tmp$', 'zip' } -PassThru | |
Invoke-WebRequest -OutFile $tmp https://get.nexte.st/latest/windows | |
$outputDir = if ($Env:CARGO_HOME) { Join-Path $Env:CARGO_HOME "bin" } else { "~/.cargo/bin" } | |
$tmp | Expand-Archive -DestinationPath $outputDir -Force | |
$tmp | Remove-Item | |
- name: Select features | |
run: | | |
switch ("${{ matrix.features }}") { | |
"all" { | |
echo "FEATURES=--all-features" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append | |
} | |
"none" { | |
echo "FEATURES=--no-default-features" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append | |
} | |
"default" { | |
echo "FEATURES=" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append | |
} | |
default { | |
Exit 1 | |
} | |
} | |
- uses: msys2/setup-msys2@v2 | |
- name: build tests | |
run: | | |
cargo nextest run --workspace --exclude willow-fuzz ${{ env.FEATURES }} --lib --bins --tests --target ${{ matrix.target }} --no-run | |
- name: run tests | |
run: | | |
cargo nextest run --workspace --exclude willow-fuzz ${{ env.FEATURES }} --lib --bins --tests --target ${{ matrix.target }} --no-fail-fast | |
env: | |
RUST_LOG: ${{ runner.debug && 'TRACE' || 'DEBUG'}} | |
- name: run doctests | |
if: ${{ matrix.features == 'all' }} | |
env: | |
RUST_LOG: ${{ runner.debug && 'TRACE' || 'DEBUG'}} | |
run: | | |
cargo test --workspace --exclude willow-fuzz --all-features --doc | |
android_build: | |
name: "Build only (Android)" | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
target: | |
- aarch64-linux-android | |
- armv7-linux-androideabi | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
target: ${{ matrix.target }} | |
- name: Install rustup target | |
run: rustup target add ${{ matrix.target }} | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v3 | |
- name: Setup Android NDK | |
uses: arqu/setup-ndk@main | |
id: setup-ndk | |
with: | |
ndk-version: r23 | |
add-to-path: true | |
- name: Build | |
env: | |
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }} | |
ANDROID_NDK_ROOT: ${{ steps.setup-ndk.outputs.ndk-path }} | |
run: | | |
cargo install cargo-ndk | |
cargo ndk --target ${{ matrix.target }} build | |
# TODO: would be good to actually run tests on android, but this is not working at the moment. | |
# cargo ndk --target ${{ matrix.target }} test --workspace --exclude willow-fuzz --exclude earthstar | |
cross_build_and_test: | |
name: Cross build and test | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
target: | |
- i686-unknown-linux-gnu | |
- aarch64-unknown-linux-gnu | |
# note that there are known bugs in arm cross-compile qemu runners | |
# if issues appear we might have to disable these | |
# - see https://github.com/cross-rs/cross/issues/1311 | |
- armv7-linux-androideabi@23 | |
- aarch64-linux-android@23 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
run: rustup update stable | |
- name: Install cross-compilation tools | |
uses: taiki-e/setup-cross-toolchain-action@v1 | |
with: | |
target: ${{ matrix.target }} | |
- name: Cleanup Docker | |
continue-on-error: true | |
run: | | |
docker kill $(docker ps -q) | |
# setup-cross-toolchain-action sets the `CARGO_BUILD_TARGET` environment variable, | |
# so there is no need for an explicit `--target` flag. | |
- name: Build tests | |
run: cargo build --workspace --exclude willow-fuzz | |
- name: Run tests | |
run: cargo test --verbose --workspace --exclude willow-fuzz | |
fuzz_tests: | |
timeout-minutes: 30 | |
name: "Run fuzz tests" | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
rust: [nightly] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install ${{ matrix.rust }} rust | |
uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: build and run fuzz tests | |
run: | | |
cargo test -p willow-fuzz | |
check_fmt: | |
timeout-minutes: 30 | |
name: Checking fmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: rustfmt | |
- name: fmt | |
run: cargo fmt --all -- --check | |
check_docs: | |
timeout-minutes: 30 | |
name: Checking docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly-2024-05-02 | |
- name: Install sccache | |
uses: mozilla-actions/sccache-action@v0.0.5 | |
- name: Docs | |
run: cargo doc --workspace --all-features --no-deps --document-private-items | |
env: | |
RUSTDOCFLAGS: --cfg docsrs | |
clippy_check: | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
components: clippy | |
- name: Install sccache | |
uses: mozilla-actions/sccache-action@v0.0.5 | |
- name: clippy check (all features) | |
run: cargo clippy --workspace --all-features --all-targets --bins --tests --benches | |
- name: clippy check (no features) | |
run: cargo clippy --workspace --no-default-features --lib --bins --tests | |
- name: clippy check (default features) | |
run: cargo clippy --workspace --all-targets |