89 lines
2.2 KiB
YAML
89 lines
2.2 KiB
YAML
name: All
|
|
|
|
on:
|
|
push:
|
|
branches: [ '**' ]
|
|
pull_request:
|
|
branches: [ '**' ]
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
RUSTFLAGS: '-D warnings'
|
|
|
|
jobs:
|
|
test-stable:
|
|
name: Test 32/64 bit stable
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
# 32-bit target
|
|
- target: i686-unknown-linux-gnu
|
|
deps: sudo apt update && sudo apt install gcc-multilib
|
|
|
|
# 64-bit target
|
|
- target: x86_64-unknown-linux-gnu
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
- run: rustup target add ${{ matrix.target }}
|
|
- run: ${{ matrix.deps }}
|
|
- run: cargo test --target ${{ matrix.target }} --no-default-features
|
|
- run: cargo test --target ${{ matrix.target }}
|
|
- run: cargo test --target ${{ matrix.target }} --all-features
|
|
|
|
test-nightly:
|
|
name: Test Nightly
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: dtolnay/rust-toolchain@nightly
|
|
- run: cargo test
|
|
|
|
bench:
|
|
name: Check that benchmarks compile
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
- name: Build u32 bench
|
|
env:
|
|
RUSTFLAGS: '--cfg curve25519_dalek_bits="32"'
|
|
run: cargo build --benches
|
|
- name: Build u64 bench
|
|
env:
|
|
RUSTFLAGS: '--cfg curve25519_dalek_bits="64"'
|
|
run: cargo build --benches
|
|
- name: Build default (host native) bench
|
|
run: cargo build --benches
|
|
|
|
clippy:
|
|
name: Check that clippy is happy
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: dtolnay/rust-toolchain@nightly
|
|
with:
|
|
components: clippy
|
|
- run: cargo clippy --target x86_64-unknown-linux-gnu
|
|
|
|
rustfmt:
|
|
name: Check formatting
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
components: rustfmt
|
|
- run: cargo fmt --all -- --check
|
|
|
|
doc:
|
|
name: Check docs
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
toolchain: stable
|
|
- run: cargo doc --all-features
|