mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 00:38:56 +00:00
9 lines
No EOL
176 B
Groovy
9 lines
No EOL
176 B
Groovy
// tell Jenkins how to build projects from this repository
|
|
node {
|
|
stage 'Checkout'
|
|
checkout scm
|
|
|
|
stage 'Build'
|
|
sh "./gradlew build"
|
|
archive '**/build/**/*.jar'
|
|
} |