-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy path.packer-build-pull-request-false-tmpl.yml
More file actions
31 lines (31 loc) · 1.14 KB
/
.packer-build-pull-request-false-tmpl.yml
File metadata and controls
31 lines (31 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
message: "%{source_commit_message}\n:tada: :bomb: commit-range=%{commit_range_string}"
branch: "%{template_name}"
config:
language: minimal
dist: trusty
group: edge
sudo: true
before_install:
- if [[ "${BUILDER}" = "docker" ]] ; then
sudo apt-get update -yqq ;
sudo apt-get purge -o Dpkg::Options::="--force-confnew" -yqq docker-ce ;
sudo apt-get install -o Dpkg::Options::="--force-confnew" -yqq docker-ce lvm2 xfsprogs ;
echo 'DOCKER_OPTS="$DOCKER_OPTS --storage-driver devicemapper"' | sudo tee -a /etc/default/docker ;
sudo service docker restart ;
fi
install:
- git clone --branch="%{branch}" "https://github.com/travis-ci/packer-templates.git"
- pushd packer-templates && git checkout -qf %{commit_range_last} ; popd
- ./packer-templates/bin/packer-build-install
script:
- export PACKER_TEMPLATES_BRANCH="%{branch}"
- "./packer-templates/bin/packer-build-script %{template_name}"
addons:
artifacts:
paths:
- image-metadata-$(cat .packer-build-image-name).tar.bz2
target_paths:
- travis-ci/packer-templates/%{template_name}/$BUILDER
notifications:
email: false