diff options
| author | shedaniel <daniel@shedaniel.me> | 2020-06-19 14:52:32 +0800 |
|---|---|---|
| committer | shedaniel <daniel@shedaniel.me> | 2020-06-19 14:52:32 +0800 |
| commit | e22929648a3b5d74bb52224b10b88c1c06cf8b31 (patch) | |
| tree | e6e42c9fa074369e49cb655ba51307bd7492a2e2 /JenkinsD | |
| parent | ab43f3b0249584aae28ea8300d30bac186346159 (diff) | |
| download | RoughlyEnoughItems-legacy/3.x-1.14.tar.gz RoughlyEnoughItems-legacy/3.x-1.14.tar.bz2 RoughlyEnoughItems-legacy/3.x-1.14.zip | |
Migrate to fabric-key-binding-api-v1, fix crash.legacy/3.x-1.14
Signed-off-by: shedaniel <daniel@shedaniel.me>
Diffstat (limited to 'JenkinsD')
| -rw-r--r-- | JenkinsD | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/JenkinsD b/JenkinsD new file mode 100644 index 000000000..9111a2e13 --- /dev/null +++ b/JenkinsD @@ -0,0 +1,16 @@ +pipeline { + agent any + stages { + + stage ('Build') { + steps { + sh "rm -rf build/libs/" + sh "chmod +x gradlew" + sh "./gradlew clean --stacktrace" + sh "./gradlew build publish --refresh-dependencies --stacktrace" + + archiveArtifacts artifacts: '**/build/libs/*.jar', fingerprint: true + } + } + } +} |
