mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-09 23:24:09 -08:00
dc4c58671d
* Update vendoring. Update vendoring to latest upstream. Signed-off-by: Ben Kochie <superq@gmail.com>
47 lines
718 B
YAML
47 lines
718 B
YAML
dist: precise
|
|
language: go
|
|
go_import_path: github.com/godbus/dbus
|
|
sudo: true
|
|
|
|
go:
|
|
- 1.7.3
|
|
- 1.8.7
|
|
- 1.9.5
|
|
- 1.10.1
|
|
- tip
|
|
|
|
env:
|
|
global:
|
|
matrix:
|
|
- TARGET=amd64
|
|
- TARGET=arm64
|
|
- TARGET=arm
|
|
- TARGET=386
|
|
- TARGET=ppc64le
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- go: tip
|
|
exclude:
|
|
- go: tip
|
|
env: TARGET=arm
|
|
- go: tip
|
|
env: TARGET=arm64
|
|
- go: tip
|
|
env: TARGET=386
|
|
- go: tip
|
|
env: TARGET=ppc64le
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- dbus
|
|
- dbus-x11
|
|
|
|
before_install:
|
|
|
|
script:
|
|
- go test -v -race ./... # Run all the tests with the race detector enabled
|
|
- go vet ./... # go vet is the official Go static analyzer
|