github.com/sdbaiguanghe/helm@v2.16.7+incompatible/.circleci/config.yml (about)

     1  version: 2
     2  jobs:
     3    build:
     4      working_directory: /go/src/k8s.io/helm
     5      parallelism: 3
     6      docker:
     7        - image: golang:1.13.3
     8      environment:
     9        PROJECT_NAME: "kubernetes-helm"
    10      steps:
    11        - checkout
    12        - setup_remote_docker:
    13            version: 18.06.0-ce
    14        - restore_cache:
    15            keys:
    16              - glide-{{ checksum "glide.yaml" }}-{{ checksum "glide.lock" }}
    17              - glide- # used as a fall through if the checksum fails to find exact entry
    18        - run:
    19            name: install dependencies
    20            command: .circleci/bootstrap.sh
    21        - save_cache:
    22            key: glide-{{ checksum "glide.yaml" }}-{{ checksum "glide.lock" }}
    23            paths:
    24              - /root/.glide  # Where the glide cache is stored
    25        - run:
    26            name: test
    27            command: .circleci/test.sh
    28        - deploy:
    29            name: deploy
    30            command: .circleci/deploy.sh
    31  workflows:
    32    version: 2
    33    build:
    34      jobs:
    35        - build:
    36            filters:
    37              tags:
    38                only: /.*/