This should help identify cases where the Gradle build only works if it runs before or after a Maven build. It will also help us recognize any Maven regressions accidentally introduced by our Gradle work.
8 lines
229 B
Bash
8 lines
229 B
Bash
# -*- mode: sh; sh-shell: sh -*-
|
|
|
|
xvfb-run mvn clean install -B -q
|
|
bash ./dependent-projects-trigger.sh "$AUTH_TOKEN"
|
|
mvn javadoc:aggregate -B -q
|
|
bash ./upload-javascript.sh "$GH_TOKEN"
|
|
./build-maven-jars.py "install -Dgpg.skip"
|