Skip to content

Commit

Permalink
chore: update CI
Browse files Browse the repository at this point in the history
we want to test against 1.13.9 clusters
  • Loading branch information
pierrebeitz committed Jun 15, 2020
1 parent 4715ab2 commit b8b85ed
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"path": "semantic-release-jira",
"apiURL": "https://jira.d2iq.com/rest/api/2/issue/${issueKey}",
"apiJSON":
"{ \"update\": { \"labels\": [ { \"add\": \"released-repo:dcos-ui\" }, { \"add\": \"released-tag:master+v${version}\" } ] } }"
"{ \"update\": { \"labels\": [ { \"add\": \"released-repo:dcos-ui\" }, { \"add\": \"released-tag:v${version}\" } ] } }"
}
]
}
24 changes: 7 additions & 17 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,6 @@ pipeline {

stage("Lint / Build") {
parallel {
stage("Lint Commits") {
when {
expression {
!master_branches.contains(BRANCH_NAME)
}
}
steps {
sh 'npm run lint:commits -- --from "origin/${CHANGE_TARGET}"'
}
}
stage("Lint") {
steps { sh "npm run lint" }
}
Expand Down Expand Up @@ -102,13 +92,13 @@ pipeline {
}
}

stage("System Test OSS 1.13.7") {
stage("System Test OSS 1.13.9") {
environment {
DCOS_DIR = "/tmp/.dcos-OSS-1137"
DCOS_DIR = "/tmp/.dcos-OSS-1139"
PROXY_PORT = "4300"
TERRAFORM_DIR = "./scripts/terraform-oss-1137"
TF_VAR_cluster_name = "ui-o1137-${cluster_suffix}-${BUILD_NUMBER}"
TF_VAR_custom_dcos_download_path = "https://downloads.dcos.io/dcos/stable/1.13.7/dcos_generate_config.sh"
TERRAFORM_DIR = "./scripts/terraform-oss-1139"
TF_VAR_cluster_name = "ui-o1139-${cluster_suffix}-${BUILD_NUMBER}"
TF_VAR_custom_dcos_download_path = "https://downloads.dcos.io/dcos/stable/1.13.9/dcos_generate_config.sh"
TF_VAR_variant = "open"
}
steps {
Expand Down Expand Up @@ -172,13 +162,13 @@ pipeline {

stage("System Tests EE") {
parallel {
stage("System Test EE 1.13.7") {
stage("System Test EE 1.13.9") {
environment {
DCOS_DIR = "/tmp/.dcos-EE-113"
PROXY_PORT = "4400"
TERRAFORM_DIR = "./scripts/terraform-ee-1337"
TF_VAR_cluster_name = "ui-ee113-${cluster_suffix}-${BUILD_NUMBER}"
TF_VAR_custom_dcos_download_path = "https://downloads.mesosphere.com/dcos-enterprise/stable/1.13.7/dcos_generate_config.ee.sh"
TF_VAR_custom_dcos_download_path = "https://downloads.mesosphere.com/dcos-enterprise/stable/1.13.9/dcos_generate_config.ee.sh"
TF_VAR_variant = "ee"

// EE-stuff
Expand Down

0 comments on commit b8b85ed

Please sign in to comment.