added basic automation file
EIVE/-/pipeline/head There was a failure building this commit Details

This commit is contained in:
Robin Müller 2023-06-10 14:58:15 +02:00
parent 522f273c99
commit 4a990e704b
Signed by: muellerr
GPG Key ID: A649FB78196E3849
2 changed files with 23 additions and 0 deletions

6
automation/Dockerfile Normal file
View 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
View File

@ -0,0 +1,17 @@
pipeline {
environment {
}
agent {
dockerfile {
dir 'automation'
reuseNode true
}
}
stages {
stage('Package') {
steps {
sh 'pip install .'
}
}
}
}