-
Notifications
You must be signed in to change notification settings - Fork 597
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move website build to CircleCI (#535)
* add circleci website build * remove packer.json since CircleCI builds the site
- Loading branch information
1 parent
75714e0
commit 4a3a10c
Showing
2 changed files
with
43 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
version: 2 | ||
jobs: | ||
build-website: | ||
# setting the working_directory along with the checkout path allows us to not have | ||
# to cd into the website/ directory for commands | ||
working_directory: ~/project/website | ||
docker: | ||
- image: hashicorp/middleman-hashicorp:0.3.35 | ||
steps: | ||
- checkout: | ||
path: ~/project | ||
|
||
# restores gem cache | ||
- restore_cache: | ||
key: static-site-gems-v1-{{ checksum "Gemfile.lock" }} | ||
|
||
- run: | ||
name: install gems | ||
command: bundle check || bundle install --path vendor/bundle --retry=3 | ||
|
||
# saves gem cache if we have changed the Gemfile | ||
- save_cache: | ||
key: static-site-gems-v1-{{ checksum "Gemfile.lock" }} | ||
paths: | ||
- ~/project/website/vendor/bundle | ||
|
||
- run: | ||
name: middleman build | ||
command: bundle exec middleman build | ||
|
||
- run: | ||
name: website deploy | ||
command: ./scripts/deploy.sh | ||
|
||
workflows: | ||
version: 2 | ||
website: | ||
jobs: | ||
- build-website: | ||
context: static-sites | ||
filters: | ||
branches: | ||
only: stable-website |
This file was deleted.
Oops, something went wrong.