2024-10-03 10:06:54 +00:00
|
|
|
#!/usr/bin/env groovy
|
2024-10-10 15:47:34 +00:00
|
|
|
library 'status-jenkins-lib@v1.9.11'
|
2024-10-03 10:06:54 +00:00
|
|
|
|
|
|
|
pipeline {
|
|
|
|
agent { label 'linux' }
|
|
|
|
|
|
|
|
options {
|
|
|
|
timestamps()
|
|
|
|
/* Prevent Jenkins jobs from running forever */
|
|
|
|
timeout(time: 10, unit: 'MINUTES')
|
|
|
|
/* manage how many builds we keep */
|
|
|
|
buildDiscarder(logRotator(
|
|
|
|
numToKeepStr: '20',
|
|
|
|
daysToKeepStr: '30',
|
|
|
|
))
|
|
|
|
disableConcurrentBuilds()
|
|
|
|
}
|
|
|
|
|
|
|
|
environment {
|
|
|
|
PLATFORM = 'chrome'
|
|
|
|
ZIP_NAME = utils.pkgFilename(
|
|
|
|
type: 'Extension',
|
|
|
|
version: 'none',
|
|
|
|
arch: 'chrome',
|
|
|
|
ext: 'zip',
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
stages {
|
|
|
|
stage('Install') {
|
2024-10-10 15:47:34 +00:00
|
|
|
steps {
|
|
|
|
dir("${env.WORKSPACE}/apps/connector") {
|
|
|
|
script {
|
|
|
|
nix.shell(
|
|
|
|
'yarn install --frozen-lockfile',
|
|
|
|
pure: false,
|
|
|
|
entryPoint: "${env.WORKSPACE}/apps/connector/shell.nix"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-10-03 10:06:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stage('Build') {
|
2024-10-10 15:47:34 +00:00
|
|
|
steps {
|
|
|
|
dir("${env.WORKSPACE}/apps/connector") {
|
|
|
|
script {
|
|
|
|
nix.shell(
|
|
|
|
'yarn build:chrome',
|
|
|
|
pure: false,
|
|
|
|
entryPoint: "${env.WORKSPACE}/apps/connector/shell.nix"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-10-03 10:06:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
stage('Zip') {
|
|
|
|
steps {
|
2024-10-10 15:47:34 +00:00
|
|
|
dir("${env.WORKSPACE}/apps/connector") {
|
|
|
|
zip(
|
|
|
|
zipFile: env.ZIP_NAME,
|
|
|
|
dir: 'build/chrome-mv3-prod',
|
|
|
|
archive: false,
|
|
|
|
)
|
|
|
|
}
|
2024-10-03 10:06:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Archive') {
|
|
|
|
steps {
|
2024-10-10 15:47:34 +00:00
|
|
|
dir("${env.WORKSPACE}/apps/connector") {
|
|
|
|
archiveArtifacts(
|
|
|
|
artifacts: env.ZIP_NAME,
|
|
|
|
fingerprint: true,
|
|
|
|
)
|
|
|
|
}
|
2024-10-03 10:06:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Upload') {
|
2024-10-10 15:47:34 +00:00
|
|
|
steps {
|
|
|
|
dir("${env.WORKSPACE}/apps/connector") {
|
|
|
|
script {
|
|
|
|
env.PKG_URL = s5cmd.upload(env.ZIP_NAME)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-10-03 10:06:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
post {
|
|
|
|
success { script { github.notifyPR(true) } }
|
|
|
|
failure { script { github.notifyPR(false) } }
|
|
|
|
cleanup { cleanWs() }
|
|
|
|
}
|
|
|
|
}
|