File tree 2 files changed +2
-6
lines changed
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,6 @@ jobs:
126
126
matrix :
127
127
os : [ubuntu-latest]
128
128
llvm_version : ["9.0", "16.0"]
129
- main_tests : [1]
130
129
release_build : [0, 1]
131
130
no_default_features : [0, 1]
132
131
# FIXME: There are no pre-built static libclang libraries, so the
@@ -168,7 +167,6 @@ jobs:
168
167
- name : Run all the tests
169
168
env :
170
169
GITHUB_ACTIONS_OS : ${{matrix.os}}
171
- BINDGEN_MAIN_TESTS : ${{matrix.main_tests}}
172
170
BINDGEN_RELEASE_BUILD : ${{matrix.release_build}}
173
171
BINDGEN_FEATURE_RUNTIME : ${{matrix.feature_runtime}}
174
172
BINDGEN_FEATURE_EXTRA_ASSERTS : ${{matrix.feature_extra_asserts}}
Original file line number Diff line number Diff line change @@ -53,10 +53,8 @@ CARGO_ARGS=`get_cargo_args`
53
53
# Ensure we build without warnings
54
54
RUSTFLAGS=" -Dwarnings" cargo check $CARGO_ARGS
55
55
56
- if [ " $BINDGEN_MAIN_TESTS " == " 1" ]; then
57
- # Run the tests
58
- (cd bindgen-tests && cargo test $CARGO_ARGS )
59
- fi
56
+ # Run the tests
57
+ (cd bindgen-tests && cargo test $CARGO_ARGS )
60
58
61
59
assert_no_diff
62
60
You can’t perform that action at this time.
0 commit comments