-
Notifications
You must be signed in to change notification settings - Fork 234
/
Jenkinsfile
513 lines (457 loc) · 19.9 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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
node("docker-ubuntu20-xlarge") {
cleanWs()
// Subtract repo name from the repo url (https://REPO_NAME/ -> REPO_NAME/)
withCredentials([string(credentialsId: 'repo21-url', variable: 'REPO21_URL')]) {
echo "${REPO21_URL}"
def repo21Name = "${REPO21_URL}".substring(8, "${REPO21_URL}".length())
env.REPO_NAME_21="$repo21Name"
}
def architectures = [
[pkg: 'jfrog-cli-windows-amd64', goos: 'windows', goarch: 'amd64', fileExtension: '.exe', chocoImage: '${REPO_NAME_21}/jfrog-docker/linuturk/mono-choco'],
[pkg: 'jfrog-cli-linux-386', goos: 'linux', goarch: '386', fileExtension: '', debianImage: '${REPO_NAME_21}/jfrog-docker/i386/ubuntu:20.04', debianArch: 'i386'],
[pkg: 'jfrog-cli-linux-amd64', goos: 'linux', goarch: 'amd64', fileExtension: '', debianImage: '${REPO_NAME_21}/jfrog-docker/ubuntu:20.04', debianArch: 'x86_64', rpmImage: 'almalinux:8.10'],
[pkg: 'jfrog-cli-linux-arm64', goos: 'linux', goarch: 'arm64', fileExtension: ''],
[pkg: 'jfrog-cli-linux-arm', goos: 'linux', goarch: 'arm', fileExtension: ''],
[pkg: 'jfrog-cli-mac-386', goos: 'darwin', goarch: 'amd64', fileExtension: ''],
[pkg: 'jfrog-cli-mac-arm64', goos: 'darwin', goarch: 'arm64', fileExtension: ''],
[pkg: 'jfrog-cli-linux-s390x', goos: 'linux', goarch: 's390x', fileExtension: ''],
[pkg: 'jfrog-cli-linux-ppc64', goos: 'linux', goarch: 'ppc64', fileExtension: ''],
[pkg: 'jfrog-cli-linux-ppc64le', goos: 'linux', goarch: 'ppc64le', fileExtension: '']
]
cliExecutableName = 'jf'
identifier = 'v2-jf'
nodeVersion = 'v8.17.0'
masterBranch = 'v2'
devBranch = 'dev'
releaseVersion = ''
repo = 'jfrog-cli'
sh 'rm -rf temp'
sh 'mkdir temp'
def goRoot = tool 'go-1.23.2'
env.GOROOT="$goRoot"
env.PATH+=":${goRoot}/bin:/tmp/node-${nodeVersion}-linux-x64/bin"
env.GO111MODULE="on"
env.CI=true
env.JFROG_CLI_LOG_LEVEL="DEBUG"
dir('temp') {
sh "cat /etc/lsb-release"
cliWorkspace = pwd()
sh "echo cliWorkspace=$cliWorkspace"
stage('Clone JFrog CLI sources') {
sh 'git clone https://github.com/jfrog/jfrog-cli.git'
dir("$repo") {
if (BRANCH?.trim()) {
sh "git checkout $BRANCH"
}
}
}
stage('Configure git') {
sh """#!/bin/bash
git config --global user.email "[email protected]"
git config --global user.name "IL-Automation"
git config --global push.default simple
"""
}
stage('Sync branches') {
setReleaseVersion()
validateReleaseVersion()
synchronizeBranches()
}
stage('Install npm') {
installNpm(nodeVersion)
}
stage('jf release phase') {
runRelease(architectures)
}
stage('jfrog release phase') {
cliExecutableName = 'jfrog'
identifier = 'v2'
runRelease(architectures)
}
}
}
def getCliVersion(exePath) {
version = sh(script: "$exePath -v | tr -d 'jfrog version' | tr -d '\n'", returnStdout: true)
return version
}
def runRelease(architectures) {
stage('Build JFrog CLI') {
sh "echo Running release for executable name: '$cliExecutableName'"
jfrogCliRepoDir = "${cliWorkspace}/${repo}/"
builderDir = "${cliExecutableName}-builder/"
sh "mkdir $builderDir"
builderPath = "${builderDir}${cliExecutableName}"
sh 'go version'
dir("$jfrogCliRepoDir") {
sh "build/build.sh $cliExecutableName"
}
sh "mv $jfrogCliRepoDir/$cliExecutableName $builderDir"
version = getCliVersion(builderPath)
print "CLI version: $version"
}
configRepo21()
try {
if (identifier != "v2") {
stage("Audit") {
dir("$jfrogCliRepoDir") {
sh """#!/bin/bash
../$builderPath audit --fail=false
"""
}
}
}
// We sign the binary also for the standalone Windows executable, and not just for Windows executable packaged inside Chocolaty.
downloadToolsCert()
print "Uploading version $version to Repo21"
uploadCli(architectures)
stage("Distribute executables") {
distributeToReleases("ecosystem-jfrog-cli", version, "cli-rbc-spec.json")
}
stage("Publish latest scripts") {
withCredentials([string(credentialsId: 'jfrog-cli-automation', variable: 'JFROG_CLI_AUTOMATION_ACCESS_TOKEN')]) {
options = "--url https://releases.jfrog.io/artifactory --access-token=$JFROG_CLI_AUTOMATION_ACCESS_TOKEN"
sh """#!/bin/bash
$builderPath rt cp jfrog-cli/$identifier/$version/scripts/getCli.sh jfrog-cli/$identifier/scripts/ --flat $options --fail-no-op
$builderPath rt cp jfrog-cli/$identifier/$version/scripts/install-cli.sh jfrog-cli/$identifier/scripts/ --flat $options --fail-no-op
"""
if (identifier == "v2-jf") {
sh """#!/bin/bash
$builderPath rt cp jfrog-cli/$identifier/$version/scripts/setup-cli.sh jfrog-cli/setup/scripts/getCli.sh --flat $options --fail-no-op
$builderPath rt cp "jfrog-cli/$identifier/$version/scripts/gitlab/(*)" "jfrog-cli/gitlab/{1}" $options --fail-no-op
"""
}
}
}
if (identifier == "v2") {
createTag()
}
stage('Docker login') {
dockerLogin()
}
stage('Build and publish rpm and debian') {
buildRpmAndDeb(version, architectures)
}
stage('Npm publish') {
publishNpmPackage(jfrogCliRepoDir)
}
stage('Build and publish docker images') {
buildPublishDockerImages(version, jfrogCliRepoDir)
}
stage('Build and publish Chocolatey') {
publishChocoPackageWithRetries(version, jfrogCliRepoDir, architectures)
}
} finally {
cleanupRepo21()
}
}
def setReleaseVersion() {
dir("$cliWorkspace/$repo") {
sh "git checkout $devBranch"
sh "build/build.sh"
releaseVersion = getCliVersion("./jf")
}
}
def synchronizeBranches() {
dir("$cliWorkspace/$repo") {
withCredentials([string(credentialsId: 'ecosystem-github-automation', variable: 'GITHUB_ACCESS_TOKEN')]) {
print "Merge to $masterBranch"
sh """#!/bin/bash
git checkout $masterBranch
git merge origin/$devBranch --no-edit
git push "https://[email protected]/jfrog/jfrog-cli.git"
"""
print "Merge to $devBranch"
sh """#!/bin/bash
git checkout $devBranch
git merge origin/$masterBranch --no-edit
git push "https://[email protected]/jfrog/jfrog-cli.git"
git checkout $masterBranch
"""
}
}
}
def createTag() {
stage('Create a tag and a GitHub release') {
dir("$jfrogCliRepoDir") {
releaseTag = "v$releaseVersion"
withCredentials([string(credentialsId: 'ecosystem-github-automation', variable: 'GITHUB_ACCESS_TOKEN')]) {
sh """#!/bin/bash
git tag $releaseTag
git push "https://[email protected]/jfrog/jfrog-cli.git" --tags
"""
}
}
}
}
def validateReleaseVersion() {
if (releaseVersion=="") {
error "releaseVersion parameter is empty"
}
if (releaseVersion.startsWith("v")) {
error "releaseVersion parameter should not start with a preceding \"v\""
}
// Verify version stands in semantic versioning.
def pattern = /^2\.(\d+)\.(\d+)$/
if (!(releaseVersion =~ pattern)) {
error "releaseVersion is not a valid version"
}
}
def downloadToolsCert() {
stage('Download tools cert') {
// Download the certificate files, used for signing the JFrog CLI binary.
// To update the certificate before it is expired, download the digicert_sign.zip file and follow the instructions in the README file, which is packaged inside that zip.
sh """#!/bin/bash
$builderPath rt dl ecosys-installation-files/certificates/jfrog/digicert_sign.zip "${jfrogCliRepoDir}build/sign/" --flat --explode
"""
}
}
// Config Repo21 as default server.
def configRepo21() {
withCredentials([
// jfrog-ignore - false positive
usernamePassword(credentialsId: 'repo21', usernameVariable: 'REPO21_USER', passwordVariable: 'REPO21_PASSWORD'),
string(credentialsId: 'repo21-url', variable: 'REPO21_URL')
]) {
sh """#!/bin/bash
$builderPath c add repo21 --url=$REPO21_URL --user=$REPO21_USER --password=$REPO21_PASSWORD --overwrite
$builderPath c use repo21
"""
}
}
def cleanupRepo21() {
sh """#!/bin/bash
$builderPath c rm repo21
"""
}
def buildRpmAndDeb(version, architectures) {
boolean built = false
withCredentials([file(credentialsId: 'rpm-gpg-key2', variable: 'rpmGpgKeyFile'), string(credentialsId: 'rpm-sign-passphrase', variable: 'rpmSignPassphrase')]) {
def dirPath = "${pwd()}/jfrog-cli/build/deb_rpm/${identifier}/pkg"
def gpgPassphraseFilePath = "$dirPath/RPM-GPG-PASSPHRASE-jfrog-cli"
writeFile(file: gpgPassphraseFilePath, text: "$rpmSignPassphrase")
for (int i = 0; i < architectures.size(); i++) {
def currentBuild = architectures[i]
if (currentBuild.debianImage) {
stage("Build debian ${currentBuild.pkg}") {
build(currentBuild.goos, currentBuild.goarch, currentBuild.pkg, cliExecutableName)
dir("$jfrogCliRepoDir") {
sh "build/deb_rpm/$identifier/build-scripts/pack.sh -b $cliExecutableName -v $version -f deb --deb-arch $currentBuild.debianArch --deb-build-image $currentBuild.debianImage -t --deb-test-image $currentBuild.debianImage"
built = true
}
}
}
if (currentBuild.rpmImage) {
stage("Build rpm ${currentBuild.pkg}") {
build(currentBuild.goos, currentBuild.goarch, currentBuild.pkg, cliExecutableName)
dir("$jfrogCliRepoDir") {
sh """#!/bin/bash
build/deb_rpm/$identifier/build-scripts/pack.sh -b $cliExecutableName -v $version -f rpm --rpm-build-image $currentBuild.rpmImage -t --rpm-test-image $currentBuild.rpmImage --rpm-gpg-key-file /$rpmGpgKeyFile --rpm-gpg-passphrase-file $gpgPassphraseFilePath
"""
built = true
}
}
}
}
if (built) {
stage("Deploy deb and rpm") {
def packageName = "jfrog-cli-$identifier"
sh """#!/bin/bash
$builderPath rt u $jfrogCliRepoDir/build/deb_rpm/$identifier/*.i386.deb ecosys-jfrog-debs/pool/$packageName/ --deb=xenial,bionic,eoan,focal/contrib/i386 --flat
$builderPath rt u $jfrogCliRepoDir/build/deb_rpm/$identifier/*.x86_64.deb ecosys-jfrog-debs/pool/$packageName/ --deb=xenial,bionic,eoan,focal/contrib/amd64 --flat
$builderPath rt u $jfrogCliRepoDir/build/deb_rpm/$identifier/*.rpm ecosys-jfrog-rpms/$packageName/ --flat
"""
}
stage("Distribute deb-rpm to releases") {
distributeToReleases("ecosystem-cli-deb-rpm", version, "deb-rpm-rbc-spec.json")
}
}
}
}
def uploadCli(architectures) {
stage("Publish scripts") {
uploadGetCliToJfrogRepo21()
uploadInstallCliToJfrogRepo21()
if (cliExecutableName == 'jf') {
uploadSetupCliToJfrogRepo21()
uploadGitLabSetupToJfrogRepo21()
}
}
for (int i = 0; i < architectures.size(); i++) {
def currentBuild = architectures[i]
stage("Build and upload ${currentBuild.pkg}") {
buildAndUpload(currentBuild.goos, currentBuild.goarch, currentBuild.pkg, currentBuild.fileExtension)
}
}
}
def buildPublishDockerImages(version, jfrogCliRepoDir) {
def repo21Prefix = "${REPO_NAME_21}/ecosys-docker-local"
def images = [
[dockerFile:'build/docker/slim/Dockerfile', name:"jfrog/jfrog-cli-${identifier}"],
[dockerFile:'build/docker/full/Dockerfile', name:"jfrog/jfrog-cli-full-${identifier}"]
]
// Build all images
for (int i = 0; i < images.size(); i++) {
def currentImage = images[i]
def imageRepo21Name = "$repo21Prefix/$currentImage.name"
print "Building and pushing docker image: $imageRepo21Name"
buildDockerImage(imageRepo21Name, version, currentImage.dockerFile, jfrogCliRepoDir)
pushDockerImageVersion(imageRepo21Name, version)
}
stage("Distribute cli-docker-images to releases") {
distributeToReleases("ecosystem-cli-docker-images", version, "docker-images-rbc-spec.json")
}
stage("Promote docker images") {
for (int i = 0; i < images.size(); i++) {
def currentImage = images[i]
promoteDockerImage(currentImage.name, version, jfrogCliRepoDir)
}
}
}
def promoteDockerImage(name, version, jfrogCliRepoDir) {
print "Promoting docker image: $name"
withCredentials([string(credentialsId: 'jfrog-cli-automation', variable: 'JFROG_CLI_AUTOMATION_ACCESS_TOKEN')]) {
options = "--url https://releases.jfrog.io/artifactory --access-token=$JFROG_CLI_AUTOMATION_ACCESS_TOKEN"
sh """#!/bin/bash
$builderPath rt docker-promote $name reg2 reg2 --copy --source-tag=$version --target-tag=latest $options
"""
}
}
def buildDockerImage(name, version, dockerFile, jfrogCliRepoDir) {
dir("$jfrogCliRepoDir") {
sh """#!/bin/bash
docker build --build-arg cli_executable_name=$cliExecutableName --build-arg repo_name_21=$REPO_NAME_21 --tag=$name:$version -f $dockerFile .
"""
}
}
def pushDockerImageVersion(name, version) {
sh """#!/bin/bash
$builderPath rt docker-push $name:$version ecosys-docker-local
"""
}
def uploadGetCliToJfrogRepo21() {
sh """#!/bin/bash
$builderPath rt u $jfrogCliRepoDir/build/getcli/${cliExecutableName}.sh ecosys-jfrog-cli/$identifier/$version/scripts/getCli.sh --flat
"""
}
def uploadInstallCliToJfrogRepo21() {
sh """#!/bin/bash
$builderPath rt u $jfrogCliRepoDir/build/installcli/${cliExecutableName}.sh ecosys-jfrog-cli/$identifier/$version/scripts/install-cli.sh --flat
"""
}
def uploadSetupCliToJfrogRepo21() {
sh """#!/bin/bash
$builderPath rt u $jfrogCliRepoDir/build/setupcli/${cliExecutableName}.sh ecosys-jfrog-cli/$identifier/$version/scripts/setup-cli.sh --flat
"""
}
def uploadGitLabSetupToJfrogRepo21() {
sh """#!/bin/bash
$builderPath rt u "$jfrogCliRepoDir/build/gitlab/(*)" "ecosys-jfrog-cli/$identifier/$version/scripts/gitlab/{1}"
"""
}
def uploadBinaryToJfrogRepo21(pkg, fileName) {
sh """#!/bin/bash
$builderPath rt u $jfrogCliRepoDir/$fileName ecosys-jfrog-cli/$identifier/$version/$pkg/ --flat
"""
}
def build(goos, goarch, pkg, fileName) {
dir("${jfrogCliRepoDir}") {
env.GOOS="$goos"
env.GOARCH="$goarch"
sh "build/build.sh $fileName"
sh "chmod +x $fileName"
// Remove goos and goarch env var to prevent interfering with following builds.
env.GOOS=""
env.GOARCH=""
if (goos == 'windows') {
dir("${jfrogCliRepoDir}build/sign") {
// Move the jfrog executable into the 'sign' directory, so that it is signed there.
sh "mv ${jfrogCliRepoDir}${fileName} ${fileName}.unsigned"
sh "docker build -t jfrog-cli-sign-tool ."
// Run the built image in order to signs the JFrog CLI binary.
sh "docker run -v ${jfrogCliRepoDir}build/sign/:/home/frogger jfrog-cli-sign-tool -in ${fileName}.unsigned -out $fileName"
// Move the JFrog CLI binary from the 'sign' directory, back to its original location.
sh "mv $fileName $jfrogCliRepoDir"
}
}
}
}
def buildAndUpload(goos, goarch, pkg, fileExtension) {
def extension = fileExtension == null ? '' : fileExtension
def fileName = "$cliExecutableName$fileExtension"
build(goos, goarch, pkg, fileName)
uploadBinaryToJfrogRepo21(pkg, fileName)
sh "rm $jfrogCliRepoDir/$fileName"
}
def distributeToReleases(stage, version, rbcSpecName) {
sh """$builderPath ds rbc $stage-rb-$identifier $version --spec=${cliWorkspace}/${repo}/build/release_specs/$rbcSpecName --spec-vars="VERSION=$version;IDENTIFIER=$identifier" --sign"""
sh "$builderPath ds rbd $stage-rb-$identifier $version --site=releases.jfrog.io --sync"
}
def publishNpmPackage(jfrogCliRepoDir) {
dir(jfrogCliRepoDir+"build/npm/$identifier") {
withCredentials([string(credentialsId: 'npm-authorization', variable: 'NPM_AUTH_TOKEN')]) {
sh '''#!/bin/bash
echo "//registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN" > .npmrc
echo "registry=https://registry.npmjs.org" >> .npmrc
npm publish
'''
}
}
}
def installNpm(nodeVersion) {
dir('/tmp') {
sh """#!/bin/bash
apt update
apt install wget -y
echo "Downloading npm..."
wget https://nodejs.org/dist/${nodeVersion}/node-${nodeVersion}-linux-x64.tar.xz
tar -xf node-${nodeVersion}-linux-x64.tar.xz
"""
}
}
def publishChocoPackageWithRetries(version, jfrogCliRepoDir, architectures) {
def architecture = architectures.find { it.goos == 'windows' && it.goarch == 'amd64' }
build(architecture.goos, architecture.goarch, architecture.pkg, "${cliExecutableName}.exe")
def maxAttempts = 10
def currentAttempt = 1
def waitSeconds = 18
while (currentAttempt <= maxAttempts) {
try {
publishChocoPackage(version, jfrogCliRepoDir, architecture)
echo "Successfully published Choco package!"
return
} catch (Exception e) {
echo "Publishing Choco failed on attempt ${currentAttempt}"
currentAttempt++
if (currentAttempt > maxAttempts) {
error "Max attempts reached. Publishing Choco failed!"
}
sleep waitSeconds
}
}
}
def publishChocoPackage(version, jfrogCliRepoDir, architecture) {
def packageName = "jfrog-cli"
if (cliExecutableName == 'jf') {
packageName="${packageName}-v2-jf"
}
print "Choco package name: $packageName"
dir(jfrogCliRepoDir+"build/chocolatey/$identifier") {
withCredentials([string(credentialsId: 'choco-api-key', variable: 'CHOCO_API_KEY')]) {
sh """#!/bin/bash
mv $jfrogCliRepoDir/${cliExecutableName}.exe $jfrogCliRepoDir/build/chocolatey/$identifier/tools
cp $jfrogCliRepoDir/LICENSE $jfrogCliRepoDir/build/chocolatey/$identifier/tools
docker run -v \$PWD:/work -w /work $architecture.chocoImage pack version=$version
docker run -v \$PWD:/work -w /work $architecture.chocoImage push --apiKey \$CHOCO_API_KEY ${packageName}.${version}.nupkg
"""
}
}
}
def dockerLogin(){
withCredentials([
// jfrog-ignore - false positive
usernamePassword(credentialsId: 'repo21', usernameVariable: 'REPO21_USER', passwordVariable: 'REPO21_PASSWORD'),
string(credentialsId: 'repo21-url', variable: 'REPO21_URL')
]) {
sh "echo $REPO21_PASSWORD | docker login $REPO_NAME_21 -u=$REPO21_USER --password-stdin"
}
}