smartctl_exporter/.circleci/config.yml

18 lines
419 B
YAML
Raw Normal View History

2019-08-16 09:59:09 +02:00
version: 2
jobs:
build:
working_directory: /go/src/github.com/Sheridan/smartctl_exporter
docker:
- image: circleci/golang:1.10.0
environment:
- GOCACHE: "/tmp/go/cache"
- DEP_VERSION: 0.4.1
steps:
- checkout
- run:
name: build
command: make build
2019-08-16 12:53:03 +02:00
- store_artifacts:
path: bin/smartctl_exporter
destination: smartctl_exporter