From ec26dbcb8295160118b62d113a83e5fc8b6530dd Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Wed, 24 Apr 2024 10:16:17 -0500 Subject: [PATCH] ci: Add FCOS stream parameter Most of the time, we want to build the module for the latest version in the *testing* stream, so that it will be ready when that version moves to *stable*. There may be cases, though, where we need to build for a different stream. For example, if the module never built successfully by the time a version moved from *testing* to *stable*, we may need to manually build it for the current *stable*. --- Jenkinsfile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 362ea76..1fbccdf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,7 +1,14 @@ // vim: set sw=4 ts=4 sts=4 et : properties([ - pipelineTriggers([cron('H H * * *')]) + pipelineTriggers([cron('H H * * *')]), + parameters([ + choice( + choices: ['testing', 'stable', 'next'], + description: 'Fedora CoreOS Stream', + name: 'stream', + ) + ]), ]) import groovy.json.JsonSlurper