Skip to content

Instantly share code, notes, and snippets.

@icheko
Last active July 30, 2021 16:58
Show Gist options
  • Save icheko/2642f082bef8fcd3e35515344b2c7137 to your computer and use it in GitHub Desktop.
Save icheko/2642f082bef8fcd3e35515344b2c7137 to your computer and use it in GitHub Desktop.
// load shared library via @Library or other methods
pipeline {
agent {
kubernetes {
yaml libraryResource('node-10.yaml')
}
}
stages {
stage('Build App'){
steps {
container('node-10'){
sh 'npm install'
}
}
}
stage('SonarQube Analysis') {
agent {
kubernetes {
yaml libraryResource('sonar-scanner.yaml')
}
}
steps {
container('sonar-scanner'){
// scan
}
}
}
...
} // stages
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment