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 @@ -768,6 +768,7 @@ cmd_test() {
768768 do_build=1
769769 do_archive=1
770770 do_kvm_check=1
771+ do_artifacts_check=1
771772 # Parse any command line args.
772773 while [ $# -gt 0 ]; do
773774 case " $1 " in
@@ -795,6 +796,9 @@ cmd_test() {
795796 " --no-kvm-check" )
796797 do_kvm_check=0
797798 ;;
799+ " --no-artifacts-check" )
800+ do_artifacts_check=0
801+ ;;
798802 " --" ) { shift ; break ; } ;;
799803 * )
800804 die " Unknown argument: $1 . Please use --help for help."
@@ -807,7 +811,7 @@ cmd_test() {
807811 [ $do_kvm_check != 0 ] && ensure_kvm
808812 ensure_devctr
809813 ensure_build_dir
810- ensure_current_artifacts_are_set_up
814+ [ $do_artifacts_check != 0 ] && ensure_current_artifacts_are_set_up
811815
812816 if [ $do_build != 0 ]; then
813817 cmd_build --release
@@ -1041,8 +1045,8 @@ cmd_checkstyle() {
10411045 cmd_sh " git-secrets --register-aws && git-secrets --scan"
10421046 fi
10431047
1044- cmd_test --no-build --no-kvm-check -- -n 4 --dist worksteal integration_tests/style || exit 1
1045- cmd_test --no-build --no-kvm-check -- -n 4 --doctest-modules framework || exit 1
1048+ cmd_test --no-build --no-kvm-check --no-artifacts-check -- -n 4 --dist worksteal integration_tests/style || exit 1
1049+ cmd_test --no-build --no-kvm-check --no-artifacts-check -- -n 4 --doctest-modules framework || exit 1
10461050}
10471051
10481052cmd_checkbuild () {
You can’t perform that action at this time.
0 commit comments