Commit 7e6880f2 authored by João Lino's avatar João Lino

Add a test Jenkinsfile to trigger the Jenkins pipeline.

parent 4c39b6dc
pipeline {
environment {
BRANCH_TO_DEPLOY = "master"
}
agent none
stages {
stage('Deploy') {
agent {
label 'docker'
}
when {
branch "${BRANCH_TO_DEPLOY}"
}
steps {
withCredentials() {
// Just get helm3 for testing
sh 'wget https://get.helm.sh/helm-v3.0.3-linux-amd64.tar.gz https://get.helm.sh/helm-v3.0.3-linux-amd64.tar.gz.sha256'
}
}
}
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment