File tree 2 files changed +7
-6
lines changed
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 72
72
export CARGO_HOME=$AGENT_TEMPDIRECTORY/.cargo
73
73
export RUSTFLAGS="-D warnings"
74
74
export RUSTDOCFLAGS="-D warnings"
75
- cargo build --release
75
+ cargo build --release --features dynamic-instrumentation
76
76
displayName: 'cargo build against host clang/LLVM (fast build)'
77
77
78
78
- script : |
81
81
export CARGO_HOME=$AGENT_TEMPDIRECTORY/.cargo
82
82
export RUSTFLAGS="-D warnings"
83
83
export RUSTDOCFLAGS="-D warnings"
84
- cargo test --release
84
+ cargo test --release --features dynamic-instrumentation
85
85
displayName: 'cargo test'
86
86
87
87
- script : |
@@ -145,14 +145,14 @@ jobs:
145
145
export LLVM_CONFIG_PATH=$(brew --prefix llvm)/bin/llvm-config
146
146
export RUSTFLAGS="-D warnings"
147
147
export RUSTDOCFLAGS="-D warnings"
148
- cargo build --release --all- features
148
+ cargo build --release --features dynamic-instrumentation
149
149
displayName: 'cargo build against host clang/LLVM (fast build)'
150
150
151
151
- script : |
152
152
export LLVM_CONFIG_PATH=$(brew --prefix llvm)/bin/llvm-config
153
153
export RUSTFLAGS="-D warnings"
154
154
export RUSTDOCFLAGS="-D warnings"
155
- cargo test --release --all- features
155
+ cargo test --release --features dynamic-instrumentation
156
156
displayName: 'cargo test'
157
157
158
158
- script : python3 ./scripts/test_translator.py ./tests
Original file line number Diff line number Diff line change @@ -6,8 +6,9 @@ export RUSTFLAGS="-D warnings"
6
6
export RUSTDOCFLAGS=" -D warnings"
7
7
8
8
cargo fmt --check
9
- cargo build --all-features
9
+ cargo check --all-features
10
+ cargo build --features dynamic-instrumentation
10
11
cargo doc --all-features --document-private-items
11
- cargo test --all- features
12
+ cargo test --features dynamic-instrumentation
12
13
cargo clippy --tests --all --all-features
13
14
./scripts/test_translator.py tests/
You can’t perform that action at this time.
0 commit comments