-
Notifications
You must be signed in to change notification settings - Fork 91
/
Jenkinsfile
73 lines (72 loc) · 2.12 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env groovy
pipeline {
agent any
tools {
jdk "jdk-17.0.1"
}
environment {
discordWebhook = credentials('discordWebhook')
CURSEFORGE_TOKEN = credentials('curseforgeApiKey')
MODRINTH_TOKEN = credentials('modrinthApiKey')
}
stages {
stage('Clean') {
steps {
echo 'Cleaning Project'
sh 'chmod +x gradlew'
sh './gradlew clean'
}
}
stage('Build') {
steps {
echo 'Building'
sh './gradlew build'
}
}
stage('Run Datagen') {
steps {
echo 'Running datagen tasks'
sh './gradlew runAllDatagen'
}
}
stage('Check Datagen') {
steps {
echo 'Checking for modified files'
// also fail if there are new untracked files
sh 'git add --intent-to-add .'
// cache isn't reproducible, so ignore modifications to it
// https://stackoverflow.com/a/71878316
sh 'git diff --name-only --exit-code -- ":!:*/src/generated/resources/.cache/*"'
}
}
stage('Publish') {
when {
allOf {
branch 'main'
not { changeRequest() }
}
}
stages {
stage('Deploy Previews') {
steps {
echo 'Deploying previews to various places'
sh './gradlew publish publishToDiscord'
}
}
stage('Deploy releases') {
steps {
echo 'Maybe deploy releases'
sh './gradlew publishCurseforge publishModrinth'
}
}
}
}
}
post {
always {
archiveArtifacts 'Common/build/libs/**.jar'
archiveArtifacts 'Forge/build/libs/**.jar'
archiveArtifacts 'Fabric/build/libs/**.jar'
}
}
}