Skip to content

Commit

Permalink
chore(enterprise): make sure we're Kong enterprise backwards compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
hutchic committed Nov 4, 2022
1 parent f5608af commit 00f3dc0
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,33 @@ pipeline {
sh 'make PACKAGE_TYPE=deb RESTY_IMAGE_BASE=ubuntu RESTY_IMAGE_TAG=22.04 SSL_PROVIDER=boringssl package-kong test cleanup'
}
}
stage('Kong EE 3.0.0.0'){
agent {
node {
label 'bionic'
}
}
environment {
GITHUB_SSH_KEY = credentials('github_bot_ssh_key')
PATH = "/home/ubuntu/bin/:${env.PATH}"
KONG_SOURCE = "3.0.0.0"
}
options {
retry(2)
timeout(time: 2, unit: 'HOURS')
}
steps {
sh 'mkdir -p /home/ubuntu/bin/'
sh 'echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin || true'
sh 'while /bin/bash -c "ps aux | grep [a]pt-get"; do sleep 5; done'
sh 'curl https://raw.githubusercontent.com/Kong/kong/master/scripts/setup-ci.sh | bash'
sh 'git clone --single-branch --branch ${KONG_SOURCE} https://github.com/Kong/kong-ee.git ${KONG_SOURCE_LOCATION}'
sh 'make PACKAGE_TYPE=deb RESTY_IMAGE_BASE=debian RESTY_IMAGE_TAG=10 package-kong test cleanup'
sh 'make PACKAGE_TYPE=apk RESTY_IMAGE_BASE=alpine RESTY_IMAGE_TAG=3 package-kong test cleanup'
sh 'make PACKAGE_TYPE=rpm RESTY_IMAGE_BASE=rhel RESTY_IMAGE_TAG=8.6 package-kong test cleanup'

}
}
}
}
stage('OSS Test Builds') {
Expand Down

0 comments on commit 00f3dc0

Please sign in to comment.