summaryrefslogtreecommitdiffstats
path: root/screwdriver
diff options
context:
space:
mode:
authorgjoranv <gjoranv@gmail.com>2023-09-11 12:27:49 +0200
committergjoranv <gjoranv@gmail.com>2023-09-11 12:27:49 +0200
commit3512dfc27b1e16a6ee6d2f16ce6b7ed9824b2fba (patch)
tree1d5e1c0171d207dc741729eeda4f589a24c2c446 /screwdriver
parentf03c027f650362a8c2acea745ebc8e7526242b30 (diff)
Build using ./mvnw for the 'build-vespa' sd job.
Diffstat (limited to 'screwdriver')
-rwxr-xr-xscrewdriver/build-vespa.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/screwdriver/build-vespa.sh b/screwdriver/build-vespa.sh
index 0a36108c8c9..1873d8e7878 100755
--- a/screwdriver/build-vespa.sh
+++ b/screwdriver/build-vespa.sh
@@ -42,7 +42,7 @@ case $SHOULD_BUILD in
;;
java)
./bootstrap.sh java
- mvn -V $VESPA_MAVEN_EXTRA_OPTS install
+ ./mvnw -V $VESPA_MAVEN_EXTRA_OPTS install
;;
go)
make -C client/go install-all
@@ -50,7 +50,7 @@ case $SHOULD_BUILD in
*)
make -C client/go install-all
./bootstrap.sh java
- time mvn -V $VESPA_MAVEN_EXTRA_OPTS install
+ time ./mvnw -V $VESPA_MAVEN_EXTRA_OPTS install
build_cpp .
make install
;;
@@ -73,4 +73,3 @@ if [[ $SHOULD_BUILD == systemtest ]]; then
sleep 3
ruby $SYSTEM_TEST_DIR/tests/search/basicsearch/basic_search.rb || (/opt/vespa/bin/vespa-logfmt -N && false)
fi
-