ci: request CentOS-8 bare-metal machines

Currently CentOS-7 machines were requested. CentOS-8 has been out for a
while now, and is stable for running manual jobs. There is nothing
preventing us from using CentOS-8 bare-metal machines for testing.

Signed-off-by: Niels de Vos <ndevos@redhat.com>
This commit is contained in:
Niels de Vos 2020-07-31 16:31:57 +02:00 committed by Madhu Rajanna
parent 9db5d82327
commit 954b2f42ea
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ node('cico-workspace') {
} }
firstAttempt = false firstAttempt = false
cico = sh( cico = sh(
script: "cico node get -f value -c hostname -c comment --retry-count ${cico_retries} --retry-interval ${cico_retry_interval}", script: "cico node get -f value -c hostname -c comment --release=8 --retry-count=${cico_retries} --retry-interval=${cico_retry_interval}",
returnStdout: true returnStdout: true
).trim().tokenize(' ') ).trim().tokenize(' ')
env.CICO_NODE = "${cico[0]}.ci.centos.org" env.CICO_NODE = "${cico[0]}.ci.centos.org"

View File

@ -20,7 +20,7 @@ node('cico-workspace') {
} }
firstAttempt = false firstAttempt = false
cico = sh( cico = sh(
script: "cico node get -f value -c hostname -c comment --retry-count ${cico_retries} --retry-interval ${cico_retry_interval}", script: "cico node get -f value -c hostname -c comment --release=8 --retry-count=${cico_retries} --retry-interval=${cico_retry_interval}",
returnStdout: true returnStdout: true
).trim().tokenize(' ') ).trim().tokenize(' ')
env.CICO_NODE = "${cico[0]}.ci.centos.org" env.CICO_NODE = "${cico[0]}.ci.centos.org"