File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -755,6 +755,7 @@ cmd_test() {
755755 do_build=1
756756 do_archive=1
757757 do_kvm_check=1
758+ do_artifacts_check=1
758759 # Parse any command line args.
759760 while [ $# -gt 0 ]; do
760761 case " $1 " in
@@ -782,6 +783,9 @@ cmd_test() {
782783 " --no-kvm-check" )
783784 do_kvm_check=0
784785 ;;
786+ " --no-artifacts-check" )
787+ do_artifacts_check=0
788+ ;;
785789 " --" ) { shift ; break ; } ;;
786790 * )
787791 die " Unknown argument: $1 . Please use --help for help."
@@ -794,7 +798,7 @@ cmd_test() {
794798 [ $do_kvm_check != 0 ] && ensure_kvm
795799 ensure_devctr
796800 ensure_build_dir
797- ensure_current_artifacts_are_set_up
801+ [ $do_artifacts_check != 0 ] && ensure_current_artifacts_are_set_up
798802
799803 if [ $do_build != 0 ]; then
800804 cmd_build --release
@@ -1028,8 +1032,8 @@ cmd_checkstyle() {
10281032 cmd_sh " git-secrets --register-aws && git-secrets --scan"
10291033 fi
10301034
1031- cmd_test --no-build --no-kvm-check -- -n 4 --dist worksteal integration_tests/style || exit 1
1032- cmd_test --no-build --no-kvm-check -- -n 4 --doctest-modules framework || exit 1
1035+ cmd_test --no-build --no-kvm-check --no-artifacts-check -- -n 4 --dist worksteal integration_tests/style || exit 1
1036+ cmd_test --no-build --no-kvm-check --no-artifacts-check -- -n 4 --doctest-modules framework || exit 1
10331037}
10341038
10351039cmd_checkbuild () {
You can’t perform that action at this time.
0 commit comments