mirror of
https://github.com/prometheus-community/smartctl_exporter.git
synced 2024-11-16 01:33:07 +01:00
17 lines
419 B
YAML
17 lines
419 B
YAML
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
|
|
- store_artifacts:
|
|
path: bin/smartctl_exporter
|
|
destination: smartctl_exporter
|