Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
steelhead31 committed Oct 9, 2024
1 parent 22de7d1 commit 2f7bbf6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions linux/sfr.dev/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -200,12 +200,13 @@ pipeline {
def PDIST = ArrayElement[3]
def PARCH = ArrayElement[4]
def PVERS = ArrayElement[5]
def DISTS_TO_BUILD = []

// Setup List Of Packages To Build
if (PDIST == 'alpine-linux') {
def DISTS_TO_BUILD = ['alpine']
DISTS_TO_BUILD = ['alpine']
} else if (PDIST == 'linux') {
def DISTS_TO_BUILD = ['rhel', 'suse', 'debian']
DISTS_TO_BUILD = ['rhel', 'suse', 'debian']
} else {
error("Unsupported dist: ${PDIST}")
}
Expand Down

0 comments on commit 2f7bbf6

Please sign in to comment.