Add --mini-tests option and run mini-tests in CI
This commit is contained in:
parent
9a42e6b474
commit
4ef0d19bec
2 changed files with 9 additions and 1 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
|
@ -104,9 +104,13 @@ jobs:
|
|||
command: build
|
||||
args: --release
|
||||
|
||||
- name: Test mini_tests
|
||||
run: |
|
||||
./test.sh --release --clean --build-sysroot --mini-tests ${{ matrix.libgccjit_version.extra }}
|
||||
|
||||
- name: Test std_tests
|
||||
run: |
|
||||
./test.sh --release --clean --build-sysroot --std-tests ${{ matrix.libgccjit_version.extra }}
|
||||
./test.sh --release --std-tests ${{ matrix.libgccjit_version.extra }}
|
||||
|
||||
- name: Test test_libcore
|
||||
run: |
|
||||
|
|
|
|||
4
test.sh
4
test.sh
|
|
@ -69,6 +69,10 @@ while [[ $# -gt 0 ]]; do
|
|||
funcs+=(extended_sysroot_tests)
|
||||
shift
|
||||
;;
|
||||
"--mini-tests")
|
||||
funcs+=(mini_tests)
|
||||
shift
|
||||
;;
|
||||
|
||||
"--build-sysroot")
|
||||
funcs+=(build_sysroot)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue