metrics calculation

This commit is contained in:
Tomasz Łysiak 2019-04-26 12:20:08 +02:00
parent c76c17c16b
commit 018096cf36
2 changed files with 6 additions and 2 deletions

3
Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM node:7-alpine
RUN apk add -U subversion

5
Jenkinsfile vendored
View File

@ -1,5 +1,5 @@
pipeline { pipeline {
agent any agent { dockerfile true }
stages { stages {
stage('Copy Archive') { stage('Copy Archive') {
steps { steps {
@ -15,7 +15,8 @@ pipeline {
sh 'python3 calculate_metrics.py' sh 'python3 calculate_metrics.py'
sh 'node --version'
sh 'svn --version'
} }
} }