-
Notifications
You must be signed in to change notification settings - Fork 4
68 lines (65 loc) · 2.93 KB
/
default.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
name: XCP_lite Default
on:
workflow_dispatch:
push:
branches: ["**"]
tags: ["**"]
concurrency:
group: ${{ (github.ref == 'refs/heads/main') && 'main' || format('{0}-{1}', github.workflow, github.ref) }} # concurrency does not include main branch
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: [ubuntu-22.04]
steps:
- uses: actions/checkout@v3
- uses: moonrepo/setup-rust@v1
with:
bins: cargo-make
components: clippy
- name: Run linter
run: cargo clippy
build:
name: Build
runs-on: ${{ matrix.os }}
needs: [lint]
strategy:
matrix:
os: [ubuntu-22.04, macos-13, macos-14, windows-2022]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: moonrepo/setup-rust@v1
with:
components: rustfmt
- name: Build binary
run: |
cargo build --verbose
test:
name: Test
runs-on: ${{ matrix.os }}
needs: [build]
strategy:
matrix:
os: [ubuntu-22.04, macos-13, macos-14, windows-2022]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: moonrepo/setup-rust@v1
with:
bins: cargo-make, cargo-nextest
- name: Run tests
run: |
cargo test --features=a2l_reader --features=serde -- --test-threads=1 --nocapture --test test_single_thread
cargo test --features=a2l_reader --features=serde -- --test-threads=1 --nocapture --test test_multi_thread
cargo test --features=a2l_reader --features=serde -- --test-threads=1 --nocapture --test test_registry_2
cargo test --features=a2l_reader --features=serde -- --test-threads=1 --nocapture --test test_registry_1
cargo test --features=a2l_reader --features=serde -- --test-threads=1 --nocapture --test test_attribute_macros
cargo test --features=a2l_reader --features=serde -- --test-threads=1 --nocapture --test test_calibration_segment_basics
cargo test --features=a2l_reader --features=serde -- --test-threads=1 --nocapture --test test_calibration_segment_persistence
cargo test --features=a2l_reader --features=serde -- --test-threads=1 --nocapture --test test_cal_page_switch
cargo test --features=a2l_reader --features=serde -- --test-threads=1 --nocapture --test test_cal_page_freeze
cargo test --features=a2l_reader --features=serde -- --test-threads=1 --nocapture --test test_cal_page_trait
cargo test --features=a2l_reader --features=serde -- --test-threads=1 --nocapture --test test_daq_register
cargo test --features=a2l_reader --features=serde -- --test-threads=1 --nocapture --test test_daq_capture
cargo test --features=a2l_reader --features=serde -- --test-threads=1 --nocapture --test test_a2l_local_variables_capture