From b7a4aaf428c7398d2af09051192c3a2bdd5edff7 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 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 362ea76..47e9aa1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,6 +2,13 @@ properties([ pipelineTriggers([cron('H H * * *')]) + parameters([ + choice( + choices: ['testing', 'stable', 'next'], + description: 'Fedora CoreOS Stream', + name: 'stream', + ) + ]) ]) import groovy.json.JsonSlurper