Last active
July 30, 2021 16:58
-
-
Save icheko/2642f082bef8fcd3e35515344b2c7137 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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