Skip to content

Commit

Permalink
test: ability to install stable chart versions
Browse files Browse the repository at this point in the history
  • Loading branch information
shreddedbacon committed Oct 23, 2024
1 parent c253d6d commit 002dd8f
Show file tree
Hide file tree
Showing 5 changed files with 282 additions and 100 deletions.
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ pipeline {
PASSWORD = credentials('amazeeiojenkins-dockerhub-password')
}
steps {
sh script: "make -O build", label: "Building images"
sh script: "make -j$NPROC -O build", label: "Building images"
retry(3) {
sh script: 'docker login -u amazeeiojenkins -p $PASSWORD', label: "Docker login"
sh script: "make -O publish-testlagoon-images PUBLISH_PLATFORM_ARCH=linux/amd64 BRANCH_NAME=${SAFEBRANCH_NAME}", label: "Publishing built amd64 images to testlagoon/*"
Expand All @@ -88,9 +88,9 @@ pipeline {
parallel {
stage ('0: setup test cluster') {
steps {
sh script: "make -j$NPROC local-dev/k3d", label: "Configure k3d"
sh script: "make local-dev-tools", label: "Configure k3d"
sh script: "./local-dev/k3d cluster delete --all", label: "Delete any remnant clusters"
sh script: "make -j$NPROC k3d/test TESTS=[nginx] BRANCH_NAME=${SAFEBRANCH_NAME}", label: "Setup cluster and run nginx smoketest"
sh script: "make k3d/test TESTS=[nginx] BRANCH_NAME=${SAFEBRANCH_NAME}", label: "Setup cluster and run nginx smoketest"
sh script: "pkill -f './local-dev/stern'", label: "Closing off test-suite-0 log after test completion"
// script {
// skipRemainingStages = true
Expand Down
Loading

0 comments on commit 002dd8f

Please sign in to comment.