summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/templates/Chef.gitlab-ci.yml
blob: f166da9bdd63387cf73c46937a8791aa12d39514 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# 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/Chef.gitlab-ci.yml

# This template uses Test Kitchen with the kitchen-dokken driver to
# perform functional testing. Doing so requires that your runner be a
# Docker runner configured for privileged mode. Please see
# https://docs.gitlab.com/runner/executors/docker.html#use-docker-in-docker-with-privileged-mode
# for help configuring your runner properly, or, if you want to switch
# to a different driver, see http://kitchen.ci/docs/drivers

image: "chef/chefdk"
services:
  - docker:dind

variables:
  DOCKER_HOST: "tcp://docker:2375"
  KITCHEN_LOCAL_YAML: ".kitchen.dokken.yml"

stages:
  - build
  - lint
  - test
  - functional
  - deploy

cookstyle:
  stage: lint
  script:
    - chef exec cookstyle .

chefspec:
  stage: test
  script:
    - chef exec rspec spec

# Set up your test matrix here. Example:
# verify-centos-6:
#   stage: functional
#   before_script:
#     - apt-get update
#     - apt-get -y install rsync
#   script:
#     - kitchen verify default-centos-6 --destroy=always
#
# verify-centos-7:
#   stage: functional
#   before_script:
#     - apt-get update
#     - apt-get -y install rsync
#   script:
#     - kitchen verify default-centos-7 --destroy=always