Skip to content

Commit

Permalink
Add Jenkinsfile, update requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
knewell committed Apr 5, 2019
1 parent 235e111 commit d3b9705
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
pipeline {
agent { docker { image 'python:latest' } }
stages {
stage('build') {
steps {
sh 'python --version'
sh 'pip install -r requirements.txt'
}
}
}
}
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ junos-eznc==2.1.7
jxmlease==1.0.1
CherryPy==11.0.0
requests==2.18.4
PyYAML==3.12
PyYAML
Jinja2==2.10

0 comments on commit d3b9705

Please sign in to comment.