Prepare for 0.24.2 release. #1033
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: CI | |
on: [push, pull_request] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
components: rustfmt, clippy | |
# make sure all code has been formatted with rustfmt and linted with clippy | |
- name: rustfmt | |
run: cargo fmt -- --check --color always | |
# run clippy to verify we have no warnings | |
- run: cargo fetch | |
- name: cargo clippy | |
run: cargo clippy --workspace --all-targets --all-features -- -D warnings | |
# check that codegen output matches committed source files | |
- name: codegen | |
run: cargo run --release -p codegen -- --check | |
- name: Build-test documentation | |
env: | |
RUSTDOCFLAGS: -Dwarnings | |
run: cargo doc --all --all-features --no-deps --document-private-items --features rkyv/size_32 | |
test: | |
name: Test | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
#toolchain: [1.58.1, stable, beta, nightly] # weirdness with 1.58.1 and git2 | |
toolchain: [stable, beta, nightly] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- run: rustup update --no-self-update ${{ matrix.toolchain }} | |
- run: rustup default ${{ matrix.toolchain }} | |
- run: ./build_and_test_features.sh | |
shell: bash | |
test-core-simd: | |
name: Test portable simd | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
toolchain: [nightly] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- run: rustup update --no-self-update ${{ matrix.toolchain }} | |
- run: rustup default ${{ matrix.toolchain }} | |
- run: cargo test --features core-simd | |
shell: bash | |
test-wasm: | |
name: Test wasm | |
strategy: | |
matrix: | |
toolchain: [stable] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- run: ./build_and_test_wasm32_firefox.sh | |
- run: ./build_and_test_wasm32_chrome.sh |