aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnstein Ressem <aressem@verizonmedia.com>2023-09-11 15:40:57 +0200
committerGitHub <noreply@github.com>2023-09-11 15:40:57 +0200
commit0a383addced96943dd7e94ed50ec7006b3e282e1 (patch)
tree532ec68b4033b411e54975ad9247fa0a0bd0d2a9
parent879f50160b6ac2e492188898db7e9f8a54a5e635 (diff)
parent3512dfc27b1e16a6ee6d2f16ce6b7ed9824b2fba (diff)
Merge pull request #28475 from vespa-engine/build-with-mvnwv8.224.19
Build using ./mvnw for the 'build-vespa' sd job.
-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
-