From 8b3d209ed5de78aeb67b0de4043815c3ccbdaecd Mon Sep 17 00:00:00 2001 From: Alex Collins Date: Tue, 29 Oct 2019 18:52:18 -0700 Subject: [PATCH] changes on circleci to .circleci/config.yml, --- .circleci/config.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 65e6c33b..b81f33d0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,13 +1,17 @@ version: 2 +orbs: + helm: circleci/helm@0.2.0 jobs: build: docker: - image: debian:stretch steps: + - install-helm-client + # circleci local execute + # - run: apt-get update + # - run: apt-get install -y git + # - run: apt-get install -y helm - checkout - - run: - name: Greeting - command: echo Hello, world. - - run: - name: Print the Current Time - command: date + - run: helm lint charts/argo + - run: helm lint charts/argo-cd + - run: helm lint charts/argo-events