add stage for running prometheus.py

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2018-10-09 15:36:58 -04:00
parent 7d5db8d1b6
commit 1dd8ed6743
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 5 additions and 1 deletions

6
Jenkinsfile vendored
View File

@ -16,7 +16,7 @@ node('linux') {
sh 'pip3 install --user -r requirements.txt'
}
stage('Generate Images') {
stage('Gen AppFigures Stats') {
withCredentials([
string(credentialsId: 'appfigures-key', variable: 'CLIENT_KEY'),
string(credentialsId: 'appfigures-header', variable: 'AUTH_HEADER'),
@ -25,6 +25,10 @@ node('linux') {
}
}
stage('Gen Whisper Stats') {
sh './prometheus.py analytics'
}
stage('Push Changes') {
withCredentials([
string(credentialsId: 'jenkins-github-token', variable: 'GH_TOKEN'),