-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ZXBOX 1.0.0 vagrant cloud box release
- Loading branch information
Showing
5 changed files
with
44 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
/.idea | ||
/.vagrant | ||
|
||
/emul/usp | ||
|
||
/.vagrant | ||
/zxbox.box |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Package ZXBOX into vagrant box for vagrant cloud upload | ||
# https://app.vagrantup.com/reefactor/boxes/ZXBOX | ||
# | ||
|
||
set -xe | ||
SCRIPTDIR=$(cd `dirname $0` && pwd) | ||
pushd $SCRIPTDIR | ||
|
||
vagrant halt | ||
vagrant package --output zxbox.box | ||
md5sum zxbox.box | ||
|
||
# https://blog.ycshao.com/2017/09/16/how-to-upload-vagrant-box-to-vagrant-cloud/ | ||
# TODO automate upload script | ||
# Creating Boxes with the API | ||
# https://www.vagrantup.com/vagrant-cloud/boxes/create#creating-boxes-with-the-api | ||
echo "Proceed with manual upload zxbox.box in https://app.vagrantup.com/reefactor/boxes/ZXBOX" |