File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -104,9 +104,13 @@ jobs:
104
104
command : build
105
105
args : --release
106
106
107
+ - name : Test mini_tests
108
+ run : |
109
+ ./test.sh --release --clean --build-sysroot --mini-tests ${{ matrix.libgccjit_version.extra }}
110
+
107
111
- name : Test std_tests
108
112
run : |
109
- ./test.sh --release --clean --build-sysroot -- std-tests ${{ matrix.libgccjit_version.extra }}
113
+ ./test.sh --release --std-tests ${{ matrix.libgccjit_version.extra }}
110
114
111
115
- name : Test test_libcore
112
116
run : |
Original file line number Diff line number Diff line change @@ -69,6 +69,10 @@ while [[ $# -gt 0 ]]; do
69
69
funcs+=(extended_sysroot_tests)
70
70
shift
71
71
;;
72
+ " --mini-tests" )
73
+ funcs+=(mini_tests)
74
+ shift
75
+ ;;
72
76
73
77
" --build-sysroot" )
74
78
funcs+=(build_sysroot)
You can’t perform that action at this time.
0 commit comments