From 954b2f42eae253cc60b50bed90f6944b18b48dc4 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Fri, 31 Jul 2020 16:31:57 +0200 Subject: [PATCH] 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 --- ci-job-validation.groovy | 2 +- containerized-tests.groovy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci-job-validation.groovy b/ci-job-validation.groovy index 413200fa1..c4192ef6f 100644 --- a/ci-job-validation.groovy +++ b/ci-job-validation.groovy @@ -22,7 +22,7 @@ node('cico-workspace') { } firstAttempt = false 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 ).trim().tokenize(' ') env.CICO_NODE = "${cico[0]}.ci.centos.org" diff --git a/containerized-tests.groovy b/containerized-tests.groovy index 820ed9621..f799e7422 100644 --- a/containerized-tests.groovy +++ b/containerized-tests.groovy @@ -20,7 +20,7 @@ node('cico-workspace') { } firstAttempt = false 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 ).trim().tokenize(' ') env.CICO_NODE = "${cico[0]}.ci.centos.org"