gitea.ysmox.com/helm/helm@v2.17.0+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.14
     8          auth:
     9            username: $DOCKER_USER
    10            password: $DOCKER_PASS
    11      environment:
    12        PROJECT_NAME: "kubernetes-helm"
    13      steps:
    14        - checkout
    15        - setup_remote_docker:
    16            version: 18.06.0-ce
    17        - restore_cache:
    18            keys:
    19              - glide-2-{{ checksum "glide.yaml" }}-{{ checksum "glide.lock" }}
    20              - glide-2- # used as a fall through if the checksum fails to find exact entry
    21        - run:
    22            name: install dependencies
    23            command: .circleci/bootstrap.sh
    24        - save_cache:
    25            key: glide-2-{{ checksum "glide.yaml" }}-{{ checksum "glide.lock" }}
    26            paths:
    27              - /root/.glide  # Where the glide cache is stored
    28        - run:
    29            name: test
    30            command: .circleci/test.sh
    31        - deploy:
    32            name: deploy
    33            command: .circleci/deploy.sh
    34  workflows:
    35    version: 2
    36    build:
    37      jobs:
    38        - build:
    39            filters:
    40              tags:
    41                only: /.*/