mirror of https://github.com/conqp/rcon
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
474 B
26 lines
474 B
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Install build dependencies') {
|
|
steps {
|
|
sh 'pip install -U --upgrade pytest'
|
|
}
|
|
}
|
|
|
|
stage('Run pytest') {
|
|
steps {
|
|
sh 'python3 -m pytest'
|
|
}
|
|
}
|
|
|
|
stage('Prepare SonarQube') {
|
|
steps {
|
|
withSonarQubeEnv(installationName: 'rcon', credentialsId: '4cdfb484-a052-41be-8739-3e1c232b5f38') {
|
|
sh '/opt/sonar-scanner/bin/sonar-scanner'
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|