mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-15 08:18:55 +00:00
16 lines
372 B
Bash
16 lines
372 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
if [ -z "$JENKINS_URL" ]; then
|
||
|
# if not set in environment use default
|
||
|
JENKINS_URL=https://ci.eclipse.org/xtext/
|
||
|
fi
|
||
|
|
||
|
./gradlew \
|
||
|
clean cleanGenerateXtext build createLocalMavenRepo \
|
||
|
-PuseJenkinsSnapshots=true \
|
||
|
-PJENKINS_URL=$JENKINS_URL \
|
||
|
-PcompileXtend=true \
|
||
|
-PignoreTestFailures=true \
|
||
|
--refresh-dependencies \
|
||
|
--continue \
|
||
|
$@
|