-
Notifications
You must be signed in to change notification settings - Fork 82
88 lines (82 loc) · 2.79 KB
/
rust.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
78
79
80
81
82
83
84
85
86
87
88
name: continuous integration
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: Test (default)
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.72.0
- stable
- beta
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
components: clippy
cache: true
# test project with default + extra features
- if: matrix.rust == 'stable' || matrix.rust == 'beta'
run: cargo test --features image,ndarray,sop-class,rle,cli,jpegxl
# test dicom-pixeldata with openjp2
- if: matrix.rust == 'stable' || matrix.rust == 'beta'
run: cargo test -p dicom-pixeldata --features openjp2
# test dicom-pixeldata with openjpeg-sys and charls
- if: matrix.rust == 'stable' || matrix.rust == 'beta'
run: cargo test -p dicom-pixeldata --features openjpeg-sys,charls
# test dicom-pixeldata with gdcm-rs
- if: matrix.rust == 'stable' || matrix.rust == 'beta'
run: cargo test -p dicom-pixeldata --features gdcm
# test dicom-pixeldata without default features
- if: matrix.rust == 'stable' || matrix.rust == 'beta'
run: cargo test -p dicom-pixeldata --no-default-features
# test dicom-ul with async feature
- if: matrix.rust == 'stable' || matrix.rust == 'beta'
run: cargo test -p dicom-ul --features async
# test library projects with minimum rust version
- if: matrix.rust == '1.72.0'
run: |
cargo test -p dicom-core
cargo test -p dicom-encoding
cargo test -p dicom-dictionary-std
cargo test -p dicom-parser
cargo test -p dicom-transfer-syntax-registry
cargo test -p dicom-object
cargo test -p dicom-dump --no-default-features --features sop-class
cargo test -p dicom-json
cargo test -p dicom-ul
cargo test -p dicom-pixeldata
cargo check -p dicom
env:
RUSTFLAGS: -W warnings
# run Clippy with stable toolchain
- if: matrix.rust == 'stable'
run: cargo clippy
env:
RUSTFLAGS: -W warnings
check_windows:
name: Build (Windows)
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
cache: true
- run: cargo build --features=cli,inventory-registry,sop-class
check_macos:
name: Check (macOS)
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
cache: true
- run: cargo check