We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2504ca commit 9e2272cCopy full SHA for 9e2272c
.travis.yml
@@ -39,8 +39,12 @@ install:
39
- cat /proc/cpuinfo
40
41
script:
42
+# Ping stdout every 9 minutes to prevent Travis from terminating the buidl.
43
+- |
44
+ while sleep 9m; do
45
+ echo "====[ This job has been running for $SECONDS ]===="
46
+ done &
47
# Download the virtio-win iso
48
- wget -nv -nc https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.iso -O ~/virtio-win.iso
-- export PACKER_LOG=1
49
# See here https://github.com/travis-ci/travis-ci/issues/1839 for background on the sudo sudo command
50
- sudo -E su $USER -c 'packer build --only=${PROVIDER} --var virtio_win_iso=~/virtio-win.iso --var memory_size=6144 --var disk_size=30720 ${TEMPLATE}.json'
0 commit comments