1
0
Derivar 0

Add a Jenkinsfile

Este cometimento está contido em:
Juanjo Gutiérrez 2021-06-28 09:38:55 +02:00
ascendente 400777aaee
cometimento 34360bcafc
2 ficheiros modificados com 30 adições e 0 eliminações

28
Jenkinsfile externo Ficheiro normal
Ver ficheiro

@ -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 Ficheiro normal
Ver ficheiro

@ -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