Files
athens/.circleci/config.yml
Rimas Mocevicius 955929d89d use circleci for chart testing (#1225)
* use circleci for chart testing

* update ct flags

* trigger ci

* restore circleci config
2019-05-15 12:21:12 -07:00

34 lines
731 B
YAML

version: 2.1
jobs:
lint-scripts:
docker:
- image: koalaman/shellcheck-alpine
steps:
- checkout
- run:
command: |
shellcheck -x test/e2e-kind.sh
lint-install-charts:
machine: true
environment:
CHART_TESTING_IMAGE: quay.io/helmpack/chart-testing
CHART_TESTING_TAG: v2.3.3
CHARTS_REPO: https://github.com/rimusz/charts
K8S_VERSION: v1.13.4
KIND_VERSION: 0.2.1
steps:
- checkout
- run:
command: test/e2e-kind.sh
no_output_timeout: 3600
workflows:
version: 2
lint_and_install:
jobs:
- lint-scripts
- lint-install-charts:
requires:
- lint-scripts