-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documentation improved, added date to build script
- Loading branch information
Showing
3 changed files
with
4 additions
and
9 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
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 |
---|---|---|
@@ -1,22 +1,17 @@ | ||
#!/bin/bash -eu | ||
|
||
export VERSION="$(date +%Y%m%d).01" | ||
LOGFILE="/tmp/build_all.log" | ||
#export USE_DOCKERIZED_PACKER="true" | ||
|
||
( | ||
|
||
date | ||
|
||
for PACKER_VAGRANT_PROVIDER in libvirt virtualbox; do | ||
for BUILD in ubuntu-18.04-desktop ubuntu-{18.04,16.04,14.04}-server my_ubuntu-{18.04,16.04}-server my_centos-7 my_windows-10 windows-10 windows-2016 windows-2012_r2; do | ||
echo "**** `date`" | ||
./build.sh $BUILD:$PACKER_VAGRANT_PROVIDER | ||
done | ||
done | ||
|
||
date | ||
|
||
./vagrant_init_destroy_boxes.sh | ||
|
||
date | ||
|
||
) 2>&1 | tee $LOGFILE |