diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2021-04-21 11:35:46 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2021-04-21 11:35:46 +0200 |
commit | 119245fdb5b87051f14b061ab2cc768516f4162b (patch) | |
tree | 4ef4e869f3f64a9cb6a619d98de15741f0883898 | |
parent | 7f943f73b4399102d8e74c908d3b99689d4fa79a (diff) | |
download | ipxe-119245fdb5b87051f14b061ab2cc768516f4162b.tar.gz |
docker build
-rw-r--r-- | Jenkinsfile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index b874aa2..3086576 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,7 +14,7 @@ def RPMSource() { ] ], userRemoteConfigs: [ - [ url: 'http://git.ipxe.org/ipxe.git' ] + [ url: 'git://git.kraxel.org/mirror/ipxe.git' ] ]]) } } @@ -72,11 +72,9 @@ def RPMBuild() { pipeline { agent { - kubernetes { - yamlFile 'centos7-rpmbuild.yaml' - defaultContainer 'centos7-rpmbuild' - slaveConnectTimeout '3600' - nodeSelector 'kubernetes.io/os=linux,kubernetes.io/arch=amd64' + docker { + image 'registry.gitlab.com/kraxel/rpm-package-builder:centos7' + args '-u root' } } |