This is an automated email from the ASF dual-hosted git repository.
kocolosk pushed a commit to branch jenkins-dynamic-matrix
in repository https://gitbox.apache.org/repos/asf/couchdb.git
The following commit(s) were added to refs/heads/jenkins-dynamic-matrix by this
push:
new dc91ed2 Fix syntax error
dc91ed2 is described below
commit dc91ed2711e6d021fabcb0882aeebf698897cf75
Author: Adam Kocoloski <[email protected]>
AuthorDate: Sun Jan 16 11:58:17 2022 -0500
Fix syntax error
---
build-aux/Jenkinsfile.full | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index 41a53b1..d2a63f1 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -147,7 +147,7 @@ pipeline {
[
failFast: false,
axes: [
- platform: 'macos', 'freebsd'
+ platform: ['macos', 'freebsd']
],
actions: {
stage("${platform}") {
@@ -201,7 +201,7 @@ pipeline {
[
failFast: false,
axes: [
- platform: 'centos7', 'centos8', 'bionic', 'focal', 'stretch',
'buster', 'bullseye'
+ platform: ['centos7', 'centos8', 'bionic', 'focal', 'stretch',
'buster', 'bullseye']
],
actions: {
stage("${platform}") {