-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from stelligent/develop
Migrate to CircleCI
- Loading branch information
Showing
9 changed files
with
89 additions
and
68 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -1 +1 @@ | ||
0.1.3 | ||
0.1.4 |
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,42 @@ | ||
## Don't build when new release tags are pushed | ||
general: | ||
branches: | ||
ignore: | ||
- /^v[0-9]/ | ||
|
||
## Run 'make deps' for resolving dependencies | ||
dependencies: | ||
override: | ||
- make deps | ||
|
||
## Run 'make' for compile | ||
compile: | ||
override: | ||
- make | ||
|
||
## Run 'make test' to test | ||
test: | ||
override: | ||
- make test | ||
|
||
|
||
## In order for deploy to work, you need an environment variable set in CircleCI named "GITHUB_TOKEN" that contains | ||
## a token created from https://github.com/settings/tokens | ||
## | ||
## Also, an read/write SSH key needs to be created and private key added to circle ci | ||
## as per https://circleci.com/docs/adding-read-write-deployment-key/ | ||
## | ||
## Suggest creating a machine user for the token and ssh key to limit access | ||
## | ||
deployment: | ||
## Create 'pre-release' from 'develop' branch | ||
pre-release: | ||
branch: develop | ||
commands: | ||
- make dev-release | ||
|
||
## Create 'release' from 'master' branch | ||
release: | ||
branch: master | ||
commands: | ||
- make release |
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
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
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,8 @@ | ||
--- | ||
region: us-west-2 | ||
|
||
environments: | ||
- name: sample-dev | ||
cluster: | ||
desiredCapacity: 1 | ||
maxSize: 2 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.