~andrewjbeach/juju-ci-tools/make-local-patcher

« back to all changes in this revision

Viewing changes to prepare-new-version

  • Committer: Aaron Bentley
  • Date: 2014-02-24 17:18:29 UTC
  • mto: This revision was merged to the branch mainline in revision 252.
  • Revision ID: aaron.bentley@canonical.com-20140224171829-sz644yhoygu7m9dm
Use tags to identify and shut down instances.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
set -eu
 
3
# Create package
 
4
source $SCRIPTS/make-release-tarball.bash $REVNO $BRANCH
 
5
source $SCRIPTS/make-package-with-tarball.bash testing $TARFILE \
 
6
    'Curtis C. Hovey <curtis.hovey@canonical.com>'
 
7
# Now that we aren't sourcing credentials, it's safe to enable command echo.
 
8
set -x
 
9
 
 
10
for new_package in $NEW_PACKAGES; do
 
11
    mv $new_package $WORKSPACE/
 
12
done
 
13
 
 
14
mkdir -p new-tools
 
15
$SCRIPTS/assemble-public-tools.bash -t $WORKSPACE/ $VERSION new-tools
 
16
$SCRIPTS/publish-public-tools.bash TESTING new-tools/juju-dist-testing
 
17