-
Notifications
You must be signed in to change notification settings - Fork 27
/
azure-pipelines.yml
165 lines (151 loc) · 5.99 KB
/
azure-pipelines.yml
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# Gradle
# Build your Java project and run tests with Gradle using a Gradle wrapper script.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/java
pool:
vmImage: 'ubuntu-20.04'
container: eclipse-temurin:17.0.3_7-jdk
variables:
revision: $[counter('release-number', 0)]
artifactName: 'Release'
GRADLE_USER_HOME: $(Pipeline.Workspace)/.gradle
steps:
- bash: |
loc="/opt/java/openjdk"
echo "##vso[task.setvariable variable=JAVA_HOME_17_X64]${loc}"
echo "##vso[task.setvariable variable=JAVA_HOME]${loc}"
echo "##vso[task.setvariable variable=PATH]${loc}/bin:$(PATH)"
displayName: Set JAVA_HOME Variable
- task: Cache@2
inputs:
key: 'gradle | "$(Agent.OS)" | build.gradle | gradle.properties | src/main/resources/twilightforest.accesswidener'
restoreKeys: gradle
path: $(GRADLE_USER_HOME)
displayName: Gradle build cache
- bash: |
while IFS= read -r line; do
IFS='='; kvp=(${line}); unset IFS;
if [[ ${#kvp[@]} -gt 1 ]]
then
key=${kvp[0]//"."/"_"}
val=${kvp[1]}
echo "##vso[task.setvariable variable=javaprops_${key}]${val}"
fi
done < ./gradle.properties
displayName: Create Azure DevOps variables from gradle properties file
- task: Gradle@2
displayName: Create Release Build
inputs:
workingDirectory: ''
options: '--build-cache --max-workers=1 -PCIRevision=$(javaprops_mod_version).$(revision) -PCIType=RELEASE'
gradleWrapperFile: 'gradlew'
gradleOptions: '-Xmx3072m'
javaHomeOption: 'JDKVersion'
jdkVersionOption: '17'
jdkArchitectureOption: 'x64'
publishJUnitResults: false
testResultsFiles: '**/TEST-*.xml'
tasks: 'build'
- task: CopyFiles@2
displayName: Copy Release build to artifact staging
inputs:
sourceFolder: './build/libs/'
contents: 'twilightforest-*.jar'
targetFolder: $(build.artifactStagingDirectory)
condition: and(succeeded(), eq(variables['CreateArtifacts'], 'True'))
- task: PublishPipelineArtifact@1
displayName: 'Publish Artifacts'
condition: and(succeeded(), eq(variables['CreateArtifacts'], 'True'))
inputs:
targetPath: '$(Build.ArtifactStagingDirectory)'
artifact: '$(artifactName)'
publishLocation: 'pipeline'
- bash: |
rawpath="pipelineartifact://teamtwilight/projectId/1ef09d39-06cf-41fa-ad98-7258b70c2a72/buildId/${BUILD_BUILDID}/artifactName/Release"
path=$(echo -ne ${rawpath} | base64)
path=$(echo -ne ${path} | tr -d ' ')
jar="twilightforest-fabric-${JAVAPROPS_MINECRAFT_VERSION}-${JAVAPROPS_MOD_VERSION}.${REVISION}.jar"
downloadUrl="https://artprodcus3.artifacts.visualstudio.com/Abaabfa6c-deea-4587-ba05-c308c2597b7a/1ef09d39-06cf-41fa-ad98-7258b70c2a72/_apis/artifact/${path}0/content?format=file&subPath=%2F${jar}"
jobResult=${AGENT_JOBSTATUS^}
Colour=65280
if [ "${jobResult}" != "Succeeded" ]
then
Colour=16711680
fi
echo "##vso[task.setvariable variable=DiscordMessageColour]${Colour}"
json="{
\"title\": \"Build ${jobResult}\",
\"url\": \"${SYSTEM_TEAMFOUNDATIONSERVERURI}Twilight%20Forest/_build/results?buildId=${BUILD_BUILDID}&view=results\",
\"color\": ${Colour},
\"fields\": [
{
\"name\": \"Author\",
\"value\": \"${BUILD_SOURCEVERSIONAUTHOR}\"
},
{
\"name\": \"Minecraft Version\",
\"value\": \"${JAVAPROPS_MINECRAFT_VERSION}\"
},
{
\"name\": \"Mod Version\",
\"value\": \"${JAVAPROPS_MOD_VERSION}.${REVISION}\"
},
{
\"name\": \"Fabric API Version\",
\"value\": \"${JAVAPROPS_FABRIC_VERSION}\"
},
{
\"name\": \"Fabric Loader Version\",
\"value\": \"${JAVAPROPS_LOADER_VERSION}\"
},
{
\"name\": \"Commit\",
\"value\": \"[${BUILD_SOURCEVERSION:0:6}](${BUILD_REPOSITORY_URI}/commit/${BUILD_SOURCEVERSION})\"
}"
if [ "${jobResult}" = "Succeeded" ]
then
json="${json},
{
\"name\": \"Download\",
\"value\": \"[${downloadUrl#*"subPath=%2F"}](${downloadUrl})\"
}"
fi
json="${json}
]
}"
json=$(echo ${json} | tr -d '\n' | sed 's/ //g')
echo "##vso[task.setvariable variable=DiscordMessage]${json}"
displayName: Format discord message
condition: always()
env:
SYSTEM_ACCESSTOKEN: $(System.AccessToken)
- task: ado-discord-webhook@1
displayName: Announce Build to discord
inputs:
channelId: '$(DiscordChannelID)'
webhookKey: '$(DiscordChannelSecret)'
messageType: 'embeds'
embeds: |
[$(DiscordMessage)]
condition: and(always(), eq(variables['CreateArtifacts'], 'True'))
#- task: Gradle@2
# displayName: Publish to Maven
# inputs:
# workingDirectory: ''
# options: '-PCIRevision=$(javaprops_mod_version).$(revision) -PCIType=RELEASE'
# gradleWrapperFile: 'gradlew'
# gradleOptions: '-Xmx3072m'
# javaHomeOption: 'JDKVersion'
# jdkVersionOption: '16'
# jdkArchitectureOption: 'x64'
# publishJUnitResults: false
# testResultsFiles: '**/TEST-*.xml'
# tasks: 'publish'
# condition: and(succeeded(), eq(variables['CreateArtifacts'], 'True'))
# env:
# ARTIFACTORY_USER: $(Artifactory.User)
# ARTIFACTORY_PASS: $(Artifactory.Password)
- script: |
# stop the Gradle daemon to ensure no files are left open (impacting the save cache operation later)
./gradlew --stop
displayName: Kill Daemon