-
Notifications
You must be signed in to change notification settings - Fork 156
77 lines (66 loc) · 2.19 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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