]> git.apps.os.sepia.ceph.com Git - ceph-build.git/commitdiff
unquote archive settings 55/head
authorKen Dreyer <kdreyer@redhat.com>
Mon, 4 May 2015 23:46:36 +0000 (17:46 -0600)
committerKen Dreyer <kdreyer@redhat.com>
Mon, 4 May 2015 23:56:04 +0000 (17:56 -0600)
Prior to this commit the archive settings for ceph-deploy and
radosgw-agent were quoted 'false' or 'true' instead of simply the
boolean types that YAML expects.

jenkins-jobs interpreted these strings to be "true", so we ended up with
the following XML:

  <latestOnly>true</latestOnly>

This meant that Jenkins deleted all the older archived ceph-deploy
packages each time a new version was built.  When 1.5.22.1 was built,
the "older" 1.5.23 package was deleted.

Unquote the boolean values so JJB will properly interpret them.

Signed-off-by: Ken Dreyer <kdreyer@redhat.com>
ceph-deploy/config/definitions/ceph-deploy.yml
radosgw-agent/config/definitions/radosgw-agent.yml

index bf3584d62aff43be81de7199e4fbe1ea8b4b2d21..de011abc3c0d7f78fc44c603820eb1551c1fbae8 100644 (file)
@@ -66,5 +66,5 @@
     publishers:
       - archive:
           artifacts: '*-repo/**, dist/**'
-          allow-empty: 'true'
-          latest-only: 'false'
+          allow-empty: true
+          latest-only: false
index 8bfecd3e09d12c7c64e43cb25d36635000d27873..3c635e62cf6f3090eddeb19f4231f0746360bfdf 100644 (file)
@@ -67,5 +67,5 @@
     publishers:
       - archive:
           artifacts: '*-repo/**, dist/**'
-          allow-empty: 'true'
-          latest-only: 'false'
+          allow-empty: true
+          latest-only: false