From 1dd8ed6743ee34ba8b29132bf242bf8db494f814 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 9 Oct 2018 15:36:58 -0400 Subject: [PATCH] add stage for running prometheus.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- Jenkinsfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index adc9774..2356abb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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'),