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.
 
 

28 lines
720 B

pipeline {
agent any
stages {
stage('Run pytest') {
steps {
sh 'pip install --user --upgrade pytest'
sh 'pip install --user --upgrade -r requirements.txt'
sh 'python -m pytest'
}
}
stage('Run SonarQube') {
steps {
withSonarQubeEnv(installationName: 'rcon', credentialsId: '4cdfb484-a052-41be-8739-3e1c232b5f38') {
sh '/opt/sonar-scanner/bin/sonar-scanner'
}
}
}
stage('Send Email') {
steps {
mail(subject: '[rcon] build successful', body: 'https://jenkins.richard-neumann.de/blue/organizations/jenkins/rcon/activity', from: '[email protected]', to: '[email protected]')
}
}
}
}