Add a Jenkinsfile

Este commit está contenido en:
Juanjo Gutiérrez 2021-06-28 09:38:55 +02:00
padre 400777aaee
commit 34360bcafc
Se han modificado 2 ficheros con 30 adiciones y 0 borrados

28
Jenkinsfile vendido Archivo normal
Ver fichero

@ -0,0 +1,28 @@
pipeline {
environment {
DOCKER_HOST='docker.hem:2376'
}
agent any;
stages {
stage('Build') {
agent {
dockerfile { dir 'build-deps' }
}
steps {
dir('build') {
sh 'cmake ..'
sh 'make -j4'
}
}
}
}
triggers {
pollSCM('H */4 * * 1-5')
}
}

2
build-deps/Dockerfile Archivo normal
Ver fichero

@ -0,0 +1,2 @@
FROM alpine:3.13
RUN /sbin/apk add -t hermes-build-deps --no-cache gcc g++ make cmake openssl-dev libspf2-dev sqlite-dev gettext-dev doxygen graphviz perl