added basic automation file
Some checks failed
EIVE/-/pipeline/head There was a failure building this commit
Some checks failed
EIVE/-/pipeline/head There was a failure building this commit
This commit is contained in:
parent
522f273c99
commit
4a990e704b
6
automation/Dockerfile
Normal file
6
automation/Dockerfile
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
FROM python:3
|
||||||
|
|
||||||
|
RUN apt-get update
|
||||||
|
RUN apt-get --yes upgrade
|
||||||
|
#tzdata is a dependency, won't install otherwise
|
||||||
|
ARG DEBIAN_FRONTEND=noninteractive
|
17
automation/Jenkinsfile
vendored
Normal file
17
automation/Jenkinsfile
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
pipeline {
|
||||||
|
environment {
|
||||||
|
}
|
||||||
|
agent {
|
||||||
|
dockerfile {
|
||||||
|
dir 'automation'
|
||||||
|
reuseNode true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stages {
|
||||||
|
stage('Package') {
|
||||||
|
steps {
|
||||||
|
sh 'pip install .'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user