You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8008135/Jenkinsfile

27 lines
321 B
Plaintext

#!/usr/bin/env groovy
pipeline {
5 years ago
agent any
5 years ago
stages{
stage('checkout VCS'){
steps{
checkout scm
}
5 years ago
}
5 years ago
stage('compile'){
5 years ago
steps{
sh 'echo "fake-compiling..."'
}
5 years ago
}
5 years ago
stage('deploySONAR'){
5 years ago
steps{
sh 'sonar-scanner'
5 years ago
}
5 years ago
}
}
}