Skip to content

Commit

Permalink
udpate
Browse files Browse the repository at this point in the history
  • Loading branch information
t-hsgw committed Feb 18, 2018
1 parent 7530a61 commit 920b9f7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!groovy

def repo_name = 'samplemod'
def git_url = 'https://github.com/t-hsgw/${repo_name}.git'

pipeline {
agent {
docker {
Expand All @@ -8,6 +11,9 @@ pipeline {
}
}
stages {
stage('get source') {
checkout scm
}
stage('id'){
steps {
sh 'id'
Expand All @@ -26,6 +32,7 @@ pipeline {
sh 'pip install -r requirements.txt'
sh 'python -V'
}
}
stage('test'){
steps {
sh 'python setup.py test'
Expand Down

0 comments on commit 920b9f7

Please sign in to comment.