web3-proxy/Jenkinsfile

71 lines
2.3 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 currentBuildNumber = currentBuild.number
// // Check all build from same project
// for (build in currentBuild.rawBuild.getParent().getBuilds()) {
// // Check if an older build is still running and cancel it in favor of the new one
// if (build.number < currentBuildNumber && build.building) {
// echo "Cancelling build ${build.number}"
// build.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
}