33 lines
856 B
YAML
33 lines
856 B
YAML
# To contribute improvements to CI/CD templates, please follow the Development guide at:
|
|
# https://docs.gitlab.com/ee/development/cicd/templates.html
|
|
# This specific template is located at:
|
|
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Packer.gitlab-ci.yml
|
|
|
|
image:
|
|
name: hashicorp/packer:latest
|
|
entrypoint:
|
|
- '/usr/bin/env'
|
|
- 'PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
|
|
|
|
before_script:
|
|
- packer --version
|
|
|
|
stages:
|
|
- validate
|
|
- build
|
|
- test
|
|
- deploy
|
|
|
|
validate:
|
|
stage: validate
|
|
script:
|
|
- find . -maxdepth 1 -name '*.json' -print0 | xargs -t0n1 packer validate
|
|
|
|
build:
|
|
stage: deploy
|
|
environment: production
|
|
script:
|
|
- find . -maxdepth 1 -name '*.json' -print0 | xargs -t0n1 packer build
|
|
rules:
|
|
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
when: manual
|