From c004e475e34b58e26f9067d0a4385f10309719c8 Mon Sep 17 00:00:00 2001 From: Megan Marsh Date: Wed, 14 Nov 2018 09:37:31 -0800 Subject: [PATCH] first stab at circle ci config --- .circleci/config.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 000000000..e14c1cdc8 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,24 @@ +# Golang CircleCI 2.0 configuration file +# +# Check https://circleci.com/docs/2.0/language-go/ for more details +version: 2 +jobs: + build: + docker: + # specify the version + - image: circleci/golang:1.11 + + # CircleCI maintains a library of pre-built images + # documented at https://circleci.com/docs/2.0/circleci-images/ + + #### TEMPLATE_NOTE: go expects specific checkout path representing url + #### expecting it in the form of + #### /go/src/github.com/circleci/go-tool + #### /go/src/bitbucket.org/circleci/go-tool + working_directory: /go/src/github.com/hashicorp/packer + steps: + - checkout + + # specify any bash command here prefixed with `run: ` + - run: pwd + - run: make ci \ No newline at end of file