web3-proxy/Jenkinsfile

70 lines
2.2 KiB
Plaintext
Raw Normal View History

2023-06-26 01:37:23 +03:00
@Library('jenkins_lib@main') _
2023-01-27 19:45:08 +03:00
pipeline {
2023-06-27 19:27:56 +03:00
agent {
// not strictly required, but we only build graviton2 right now so this keeps the jenkins-agent count down
label 'arm64_graviton2'
}
2023-02-09 23:00:41 +03:00
options {
ansiColor('xterm')
}
2023-01-27 19:45:08 +03:00
environment {
2023-02-05 11:13:14 +03:00
// AWS_ECR_URL needs to be set in jenkin's config.
// AWS_ECR_URL could really be any docker registry. we just use ECR so that we don't have to manage it
2023-08-05 05:55:42 +03:00
REPO_NAME="web3-proxy"
2023-02-05 11:13:14 +03:00
// branch that should get tagged with "latest_$arch" (stable, main, master, etc.)
2023-02-09 23:19:10 +03:00
LATEST_BRANCH="main"
2023-01-27 19:45:08 +03:00
}
stages {
stage('Check and Cancel Old Builds') {
steps {
script {
def jobName = env.JOB_NAME
def buildNumber = env.BUILD_NUMBER.toInteger()
// Get all running builds of the current job
def job = Jenkins.instance.getItemByFullName(jobName)
def runningBuilds = job.builds.findAll { it.isBuilding() && it.number < buildNumber }
// Cancel running builds
runningBuilds.each { it.doStop() }
}
}
}
stage('build and push') {
2023-01-27 19:45:08 +03:00
parallel {
2023-02-03 23:06:35 +03:00
stage('Build and push arm64_graviton2 image') {
agent {
2023-02-03 23:06:35 +03:00
label 'arm64_graviton2'
}
2023-02-05 11:13:14 +03:00
environment {
ARCH="arm64_graviton2"
}
2023-01-27 19:45:08 +03:00
steps {
script {
2023-06-26 01:49:50 +03:00
myBuildandPush.buildAndPush()
2023-01-27 19:45:08 +03:00
}
}
}
2023-06-26 01:49:50 +03:00
}
}
stage('push latest') {
parallel {
stage('maybe push latest_arm64_graviton2 tag') {
agent any
2023-02-05 11:13:14 +03:00
environment {
2023-06-26 01:49:50 +03:00
ARCH="arm64_graviton2"
2023-02-05 11:13:14 +03:00
}
2023-01-27 19:45:08 +03:00
steps {
script {
2023-06-26 01:49:50 +03:00
myPushLatest.maybePushLatest()
2023-01-27 19:45:08 +03:00
}
}
}
}
}
2023-01-27 19:45:08 +03:00
}
2023-01-28 12:48:58 +03:00
}