Skip to content
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.

Commit

Permalink
Release v1.2.1 (#16)
Browse files Browse the repository at this point in the history
* String validation for arches list. (#14)

* Adding string validation for arches

* Updated regex to allow spaces in arches list

* Escaping escape char

* A little more leniency in param spaces

* Reseting the Jenkinsfile indentation to 2 spaces

* Update library release version (#15)
  • Loading branch information
jaypoulz committed Nov 29, 2018
1 parent 80c06c9 commit 4244f97
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,20 @@ properties(
[
parameters(
[
string(
defaultValue: 'x86_64,ppc64le',
description: 'A comma separated list of architectures to run the test on. Valid values include [x86_64, ppc64le, aarch64, s390x].',
name: 'ARCHES'
),
[$class: 'ValidatingStringParameterDefinition',
defaultValue: 'x86_64,ppc64le',
description: 'A comma separated list of architectures to run the test on. Valid values include [x86_64, ppc64le, aarch64, s390x].',
failedValidationMessage: 'Invalid architecture. Valid values are [x86_64, ppc64le, aarch64, s390x].',
name: 'ARCHES',
regex: '^(?:x86_64|ppc64le|aarch64|s390x)(?:,\\s*(?:x86_64|ppc64le|aarch64|s390x))*$'
],
string(
defaultValue: 'https://github.com/redhat-multiarch-qe/multiarch-ci-libraries',
description: 'Repo for shared libraries.',
name: 'LIBRARIES_REPO'
),
string(
defaultValue: 'v1.2.0',
defaultValue: 'v1.2.1',
description: 'Git reference to the branch or tag of shared libraries.',
name: 'LIBRARIES_REF'
),
Expand Down

0 comments on commit 4244f97

Please sign in to comment.