Jenkinsfile: remove ip_vs modprobe for unit/vendor stage

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
(cherry picked from commit 6523ced950)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2019-08-03 16:50:49 +02:00
parent cbbff33086
commit c94dca16fa
No known key found for this signature in database
GPG key ID: 76698F39D527CE8C

7
Jenkinsfile vendored
View file

@ -39,12 +39,7 @@ pipeline {
}
stage("Build dev image") {
steps {
sh '''
# todo: include ip_vs in base image
sudo modprobe ip_vs
docker build --force-rm --build-arg APT_MIRROR -t docker:${GIT_COMMIT} .
'''
sh 'docker build --force-rm --build-arg APT_MIRROR -t docker:${GIT_COMMIT} .'
}
}
stage("Unit tests") {