-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines-publish-release.yml
150 lines (142 loc) · 4.64 KB
/
azure-pipelines-publish-release.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
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
name: $(Build.BuildID)
trigger: none
resources:
- repo: self
pool:
vmImage: ubuntu-latest
variables:
marketplace_publisher: 'jreleaser'
marketplace_extensionName: 'JReleaser'
marketplace_extensionId: 'jreleaser-azure-devops-extension'
stages:
- stage: Build
jobs:
- job: Build_JReleaser_Installer
steps:
- task: Npm@1
displayName: 'install'
inputs:
command: 'custom'
customCommand: 'install --production'
workingDir: $(System.DefaultWorkingDirectory)/tasks/JReleaserInstaller
- task: Npm@1
displayName: 'build'
inputs:
command: custom
customCommand: 'run build'
workingDir: $(System.DefaultWorkingDirectory)/tasks/JReleaserInstaller
- task: CopyFiles@2
displayName: 'copy'
inputs:
SourceFolder: '$(System.DefaultWorkingDirectory)/tasks/JReleaserInstaller/'
Contents: |
**/*
!**/*.ts
!**/tests/**
TargetFolder: '$(Build.ArtifactStagingDirectory)'
- publish: '$(Build.ArtifactStagingDirectory)'
artifact: JReleaserInstaller
- job: Build_JReleaser_Task
steps:
- task: Npm@1
displayName: 'install'
inputs:
command: 'custom'
customCommand: 'install --production'
workingDir: $(System.DefaultWorkingDirectory)/tasks/JReleaserTask
- task: Npm@1
displayName: 'build'
inputs:
command: custom
customCommand: 'run build'
workingDir: $(System.DefaultWorkingDirectory)/tasks/JReleaserTask
- task: CopyFiles@2
displayName: 'copy'
inputs:
sourceFolder: $(System.DefaultWorkingDirectory)/tasks/JReleaserTask/
contents: |
**/*
!**/*.ts
!**/tests/**
targetFolder: $(Build.ArtifactStagingDirectory)
- publish: '$(Build.ArtifactStagingDirectory)'
artifact: JReleaserTask
- job: Build_JReleaser_Extension
dependsOn: ['Build_JReleaser_Installer', 'Build_JReleaser_Task']
steps:
- task: DownloadPipelineArtifact@2
displayName: 'Download JReleaserInstaller'
inputs:
artifact: JReleaserInstaller
path: $(System.DefaultWorkingDirectory)/tasks/JReleaserInstaller
- task: DownloadPipelineArtifact@2
displayName: 'Download JReleaserTask'
inputs:
artifact: JReleaserTask
path: $(System.DefaultWorkingDirectory)/tasks/JReleaserTask
- task: CopyFiles@2
displayName: 'copy JReleaser Extension'
inputs:
contents: |
**/*
!**/*.ts
targetFolder: $(Build.ArtifactStagingDirectory)
overWrite: true
- publish: '$(Build.ArtifactStagingDirectory)'
artifact: JReleaserExtension
- stage: Publish_JReleaser_Extension
dependsOn: ['Build']
jobs:
- job: Publish_JReleaser_Extension
steps:
- checkout: self
fetchTags: true
clean: true
- script: |
if [[ "$(Build.SourceBranch)" != refs/tags/* ]]; then
echo "Build was not triggered by a tag, exiting."
exit 1
fi
version=${Build.SourceBranch#refs/tags/}
echo "##vso[task.setvariable variable=version]$version"
- task: DownloadPipelineArtifact@2
displayName: 'Download JReleaserExtension'
inputs:
artifact: JReleaserExtension
path: $(System.DefaultWorkingDirectory)
- task: TfxInstaller@3
displayName: 'install tfx-cli'
inputs:
version: '0.14.x'
checkLatest: true
- task: PackageAzureDevOpsExtension@4
inputs:
rootFolder: '$(System.DefaultWorkingDirectory)'
patternManifest: 'jreleaser-azure-devops-extension.json'
outputPath: 'jreleaser-azure-devops-extension.vsix'
updateTasksVersion: false
extensionName: '$(marketplace_extensionName)'
extensionId: '$(marketplace_extensionId)'
extensionVersion: '$(version)'
extensionVisibility: 'public preview'
extensionPricing: 'free'
- task: PublishAzureDevOpsExtension@4
name: publish
inputs:
connectTo: 'VsTeam'
connectedServiceName: 'jreleaser_publish'
fileType: 'vsix'
vsixFile: 'jreleaser-azure-devops-extension.vsix'
updateTasksVersion: false
- publish: 'jreleaser-azure-devops-extension.vsix'
artifact: JReleaserExtension-vsix
# wait for 1 minute to allow the extension to be installed
# TODO: find a better way to do this
- task: CmdLine@2
displayName: 'wait for 1 minute'
inputs:
script: 'sleep 60'