Skip to content

Commit

Permalink
small change with deploying ubuntu packages
Browse files Browse the repository at this point in the history
  • Loading branch information
ctdk committed Jan 26, 2018
1 parent 559a5b4 commit 9aa8488
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packaging/deploy.sh
Expand Up @@ -18,8 +18,14 @@ package_cloud push ${PACKAGECLOUD_REPO}/debian/wheezy ${DIR}/artifacts/wheezy/*.
# debian/jessie
package_cloud push ${PACKAGECLOUD_REPO}/debian/jessie ${DIR}/artifacts/jessie/*.deb
package_cloud push ${PACKAGECLOUD_REPO}/debian/stretch ${DIR}/artifacts/jessie/*.deb
package_cloud push ${PACKAGECLOUD_REPO}/ubuntu/xenial ${DIR}/artifacts/jessie/*amd64.deb
package_cloud push ${PACKAGECLOUD_REPO}/ubuntu/yakkety ${DIR}/artifacts/jessie/*amd64.deb

# systemd based ubuntus. This will push up artifacts for whatever ubuntu
# versions are current or on deck when a goiardi release is made (since
# non-LTS Ubuntu releases drop off so quickly, we don't make much effort to
# provide packages for older versions).
for UBUNTU_REL in xenial artful bionic; do
package_cloud push ${PACKAGECLOUD_REPO}/ubuntu/${UBUNTU_REL} ${DIR}/artifacts/jessie/*amd64.deb
done

# older upstart-based ubuntu
package_cloud push ${PACKAGECLOUD_REPO}/ubuntu/trusty ${DIR}/artifacts/trusty/*.deb
Expand Down

0 comments on commit 9aa8488

Please sign in to comment.