-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
QUA-461: update eslint-1 base image (#559)
* QUA-461: update base image * QUA-461: add CircleCI config file * QUA-461: delete old circle config file
- Loading branch information
Showing
3 changed files
with
57 additions
and
40 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,50 @@ | ||
version: 2 | ||
|
||
jobs: | ||
test: | ||
machine: | ||
docker_layer_caching: true | ||
working_directory: ~/codeclimate/codeclimate-eslint | ||
steps: | ||
- checkout | ||
- run: make image | ||
- run: make citest | ||
|
||
release_images: | ||
machine: | ||
docker_layer_caching: true | ||
working_directory: ~/codeclimate/codeclimate-eslint | ||
steps: | ||
- checkout | ||
- run: | ||
name: Validate owner | ||
command: | | ||
if [ "$CIRCLE_PROJECT_USERNAME" -ne "codeclimate" ] | ||
then | ||
echo "Skipping release for non-codeclimate branches" | ||
circleci step halt | ||
fi | ||
- run: make image | ||
- run: echo "$GCR_JSON_KEY" | docker login -u _json_key --password-stdin us.gcr.io | ||
- run: | ||
name: Push image to GCR | ||
command: | | ||
docker tag $CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME \ | ||
us.gcr.io/code-climate/codeclimate-eslint:b$CIRCLE_BUILD_NUM | ||
docker push us.gcr.io/code-climate/codeclimate-eslint:b$CIRCLE_BUILD_NUM | ||
workflows: | ||
version: 2 | ||
build_deploy: | ||
jobs: | ||
- test | ||
- release_images: | ||
requires: | ||
- test | ||
filters: | ||
branches: | ||
only: /master|channel\/[\w-]+/ | ||
|
||
notify: | ||
webhooks: | ||
- url: https://cc-slack-proxy.herokuapp.com/circle |
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 was deleted.
Oops, something went wrong.