File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 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
@@ -158,7 +157,6 @@ jobs:
158
157
- name : Run all the tests
159
158
env :
160
159
GITHUB_ACTIONS_OS : ${{matrix.os}}
161
- BINDGEN_MAIN_TESTS : ${{matrix.main_tests}}
162
160
BINDGEN_RELEASE_BUILD : ${{matrix.release_build}}
163
161
BINDGEN_FEATURE_RUNTIME : ${{matrix.feature_runtime}}
164
162
BINDGEN_NO_DEFAULT_FEATURES : ${{matrix.no_default_features}}
Original file line number Diff line number Diff line change @@ -50,10 +50,8 @@ CARGO_ARGS=`get_cargo_args`
50
50
# Ensure we build without warnings
51
51
RUSTFLAGS=" -Dwarnings" cargo check $CARGO_ARGS
52
52
53
- if [ " $BINDGEN_MAIN_TESTS " == " 1" ]; then
54
- # Run the tests
55
- (cd bindgen-tests && cargo test $CARGO_ARGS )
56
- fi
53
+ # Run the tests
54
+ cd bindgen-tests && cargo test $CARGO_ARGS
57
55
58
56
assert_no_diff
59
57
You can’t perform that action at this time.
0 commit comments