From e075407a24c4e62576f2be101a8fa26f66f5192b Mon Sep 17 00:00:00 2001 From: Nikola Begedin Date: Mon, 12 Feb 2018 17:03:51 +0100 Subject: [PATCH] Fix deployment process --- .circleci/config.yml | 134 ++++++++++++++++++++++++++++++++++++------- 1 file changed, 112 insertions(+), 22 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8631419eb..58f83f42c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,15 +1,11 @@ -defaults: &defaults - working_directory: ~/code-corps-api - docker: - - image: circleci/elixir:1.6-node-browsers - - image: circleci/postgres:9.4 - environment: - POSTGRES_USER: ubuntu - - image: circleci/ruby:2.3 - jobs: build: - <<: *defaults + working_directory: ~/code-corps-api + docker: + - image: circleci/elixir:1.6-node-browsers + - image: circleci/postgres:9.4 + environment: + POSTGRES_USER: ubuntu steps: - checkout - restore_cache: @@ -50,8 +46,10 @@ jobs: - save_cache: key: v1-build-cache paths: "_build" - deploy-staging: - <<: *defaults + deploy-remote-development: + working_directory: ~/code-corps-api + docker: + - image: buildpack-deps:trusty steps: - checkout - run: @@ -66,20 +64,28 @@ jobs: git push --force git@heroku.com:code-corps-remote-development.git HEAD:refs/heads/master heroku run "POOL_SIZE=2 mix ecto.migrate" --app code-corps-remote-development heroku restart --app code-corps-remote-development + deploy-staging: + working_directory: ~/code-corps-api + docker: + - image: buildpack-deps:trusty + steps: + - checkout + - run: + name: Run Heroku setup script + command: bash .circleci/setup-heroku.sh + - add_ssh_keys: + fingerprints: + - "48:a0:87:54:ca:75:32:12:c6:9e:a2:77:a4:7a:08:a4" - run: name: Push to Staging command: | git push --force git@heroku.com:code-corps-staging.git HEAD:refs/heads/master heroku run "POOL_SIZE=2 mix ecto.migrate" --app code-corps-staging heroku restart --app code-corps-staging - - run: - name: Update API Docs - command: | - gem install apiaryio - apiary publish --api-name="codecorpsapidevelop" --path ./blueprint/api.apib - ./bin/deploy_docs.sh deploy-production: - <<: *defaults + working_directory: ~/code-corps-api + docker: + - image: buildpack-deps:trusty steps: - checkout - run: @@ -94,17 +100,83 @@ jobs: git push --force git@heroku.com:code-corps.git HEAD:refs/heads/master heroku run "POOL_SIZE=2 mix ecto.migrate" --app code-corps heroku restart --app code-corps + deploy-staging-apiary: + working_directory: ~/code-corps-api + docker: + - image: circleci/ruby:2.4 + steps: + - checkout + - run: + name: Install Apiary + command: gem install apiaryio + - run: + name: Deploy API Docs + command: apiary publish --api-name="codecorpsapidevelop" --path ./blueprint/api.apib + deploy-production-apiary: + working_directory: ~/code-corps-api + docker: + - image: circleci/ruby:2.4 + steps: + - checkout + - run: + name: Install Apiary + command: gem install apiaryio + - run: + name: Deploy API Docs + command: apiary publish --api-name="codecorpsapi" --path ./blueprint/api.apib + deploy-exdocs: + working_directory: ~/code-corps-api + docker: + - image: circleci/elixir:1.6 + steps: + - checkout + - restore_cache: + keys: + - v1-mix-cache-{{ .Branch }}-{{ checksum "mix.lock" }} + - v1-mix-cache-{{ .Branch }} + - v1-mix-cache + - restore_cache: + keys: + - v1-build-cache-{{ .Branch }} + - v1-build-cache + - run: mix local.hex --force + - run: mix local.rebar + - run: mix deps.get - run: - name: Update API Docs + name: Identify as user on GitHub command: | - gem install apiaryio - apiary publish --api-name="codecorpsapi" --path ./blueprint/api.apib + git config --global user.email "josh@coderly.com" + git config --global user.name "joshsmith" + - run: + name: Deploy Docs + command: ./bin/deploy_docs.sh + - save_cache: + key: v1-mix-cache-{{ .Branch }}-{{ checksum "mix.lock" }} + paths: "deps" + - save_cache: + key: v1-mix-cache-{{ .Branch }} + paths: "deps" + - save_cache: + key: v1-mix-cache + paths: "deps" + - save_cache: + key: v1-build-cache-{{ .Branch }} + paths: "_build" + - save_cache: + key: v1-build-cache + paths: "_build" workflows: version: 2 build-deploy: jobs: - build + - deploy-remote-development: + requires: + - build + filters: + branches: + only: develop - deploy-staging: requires: - build @@ -117,3 +189,21 @@ workflows: filters: branches: only: master + - deploy-staging-apiary: + requires: + - build + filters: + branches: + only: develop + - deploy-production-apiary: + requires: + - build + filters: + branches: + only: master + - deploy-exdocs: + requires: + - build + filters: + branches: + only: develop