From e803717e0342e84bbc1b7430872867d138326f2f Mon Sep 17 00:00:00 2001 From: Hannes Wellmann Date: Fri, 6 Dec 2024 19:31:28 +0100 Subject: [PATCH] [Build] Add smoke test for linux.riscv64 Part of https://github.com/eclipse-platform/eclipse.platform.releng.aggregator/issues/2310 --- JenkinsJobs/SmokeTests/StartSmokeTests.jenkinsfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/JenkinsJobs/SmokeTests/StartSmokeTests.jenkinsfile b/JenkinsJobs/SmokeTests/StartSmokeTests.jenkinsfile index c29a0454b65..58b46a76af1 100644 --- a/JenkinsJobs/SmokeTests/StartSmokeTests.jenkinsfile +++ b/JenkinsJobs/SmokeTests/StartSmokeTests.jenkinsfile @@ -35,6 +35,7 @@ spec: name 'MACHINE' values \ 'opensuse_leap', \ + 'linux_riscv', \ 'centos9', \ 'centos8_arm', \ 'centos8_ppc' @@ -53,6 +54,9 @@ spec: if (agentId == 'opensuse_leap') { os = 'linux'; arch = 'x86_64' executorAgent = createKubernetesAgent('eclipse/platformreleng-opensuse-gtk3-metacity:15') + } else if (agentId == 'linux_riscv') { + os = 'linux'; arch = 'riscv64' + executorAgent = createLabeledAgent('riscv64') } else if (agentId == 'centos9') { os = 'linux'; arch = 'x86_64' executorAgent = createKubernetesAgent('eclipse/platformreleng-centos-gtk4-mutter:9')