Files
virtual-kubelet/.circleci/config.yml
2018-08-03 13:33:46 -07:00

27 lines
741 B
YAML

version: 2
jobs:
build:
docker:
# specify the version
- image: circleci/golang:1.10
working_directory: /go/src/github.com/virtual-kubelet/virtual-kubelet
steps:
- checkout
- run:
name: Create the credentials file
command: sh scripts/createCredentials.sh
- run: |
echo 'export AZURE_AUTH_LOCATION=${outputPathCredsfile}' >> $BASH_ENV
- run: |
echo 'export KUBECONFIG=${outputPathKubeConfigFile}' >> $BASH_ENV
- run:
name: Dependencies
command: scripts/validate/dep.sh
- run:
name: Build
command: V=1 make build
- run:
name: Tests
command: V=1 CI=1 SKIP_AWS_E2E=1 make test