Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 19 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,21 @@ jobs:
- /caches/app.tar
- run:
command: curl https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get | sh
test:
working_directory: /app
docker:
- image: docker:17.09.0-ce-git
steps:
- checkout
- run:
name: helm lint for minikube
command: |
cd helm; helm lint plone-stack -f plone-stack/values-minikube.yaml
release:
working_directory: /app
docker:
- image: docker:17.09.0-ce-git
steps:
- deploy:
name: Push application Docker image
command: |
Expand All @@ -79,13 +90,15 @@ jobs:
docker images
workflows:
version: 2
test:
jobs:
- build:
context: docker-hub
release:
build-test-release:
jobs:
- build:
- build
- test:
requires:
- build
- release:
requires:
- test
context: docker-hub
filters:
branches:
Expand Down