forked from tafia/quick-xml
-
Notifications
You must be signed in to change notification settings - Fork 0
119 lines (108 loc) · 3.86 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
name: Rust
on: [push, pull_request]
jobs:
# lint:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Check fmt
# run: cargo fmt -- --check
# msrv:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/[email protected]
# - run: cargo check
# minimal-versions:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Install tools
# run: cargo install cargo-hack cargo-minimal-versions
# - name: Install nightly rust
# uses: dtolnay/rust-toolchain@nightly
# - name: Check with minimal versions
# run: cargo minimal-versions check
# - name: Check with minimal versions (serialize)
# run: cargo minimal-versions check --features serialize
# - name: Check with minimal versions (encoding)
# run: cargo minimal-versions check --features encoding
# - name: Check with minimal versions (async-tokio)
# run: cargo minimal-versions check --features async-tokio
# test:
# strategy:
# matrix:
# platform: [ubuntu-latest, windows-latest]
# runs-on: ${{ matrix.platform }}
# # Set variable to enable coverage
# env:
# RUSTFLAGS: -C instrument-coverage
# steps:
# - uses: actions/checkout@v4
# - name: Install coverage reporter (llvm-tools-preview)
# if: runner.os == 'Linux'
# run: rustup component add llvm-tools-preview
# - name: Install coverage reporter (grcov)
# if: runner.os == 'Linux'
# run: cargo install grcov
# - name: Build
# run: cargo build
# - name: Build benchmarks
# run: cargo bench --no-run
# - name: Build benchmarks (compare)
# working-directory: compare
# run: cargo bench --no-run
# - name: Run tests + benchmarks
# run: cargo test --all-features --benches --tests
# - name: Run tests (no features)
# env:
# LLVM_PROFILE_FILE: coverage/no-features-%p-%m.profraw
# run: cargo test --no-default-features
# - name: Run tests (serialize)
# env:
# LLVM_PROFILE_FILE: coverage/serialize-%p-%m.profraw
# run: cargo test --features serialize
# - name: Run tests (serialize+encoding)
# env:
# LLVM_PROFILE_FILE: coverage/serialize-encoding-%p-%m.profraw
# run: cargo test --features serialize,encoding
# - name: Run tests (serialize+escape-html)
# env:
# LLVM_PROFILE_FILE: coverage/serialize-escape-html-%p-%m.profraw
# run: cargo test --features serialize,escape-html
# - name: Run tests (all features)
# env:
# LLVM_PROFILE_FILE: coverage/all-features-%p-%m.profraw
# run: cargo test --all-features
# - name: Prepare coverage information for upload
# if: runner.os == 'Linux'
# run: |
# grcov ./coverage \
# -s . \
# --binary-path ./target/debug/ \
# --branch \
# --ignore-not-existing \
# --ignore 'tests/*' \
# -o ./coverage.lcov
# - name: Upload coverage to codecov.io
# if: runner.os == 'Linux'
# uses: codecov/codecov-action@v4
# with:
# files: ./coverage.lcov
# flags: unittests
# verbose: true
# continue-on-error: true
# Check that tests that are sensitive to target are passed
x86:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install 32-bit target
run: rustup target add i686-unknown-linux-gnu
- name: Install 32-bit libs
# https://stackoverflow.com/a/16016792/7518605
run: sudo apt install gcc-multilib
- name: Run some tests on 32-bit target
run: cargo test --target i686-unknown-linux-gnu --test issues
- name: Run some tests on 32-bit target (async-tokio)
run: cargo test --target i686-unknown-linux-gnu --features async-tokio --test async-tokio