mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-09 23:24:09 -08:00
becca1275c
* Convert to Go modules * Update promu config. * Convert to Go modules. * Update vendoring. * Update Makefile.common. * Update circleci config. * Use Prometheus release tar for promtool. * Fixup unpack * Use temp dir for unpacking tools. * Use BSD compatible tar command. * OpenBSD mkdir doesn't support `-v`. Signed-off-by: Ben Kochie <superq@gmail.com>
25 lines
735 B
YAML
25 lines
735 B
YAML
go:
|
|
cgo: true
|
|
repository:
|
|
path: github.com/prometheus/node_exporter
|
|
build:
|
|
binaries:
|
|
- name: node_exporter
|
|
flags: -mod=vendor -a -tags 'netgo static_build'
|
|
ldflags: |
|
|
-X github.com/prometheus/common/version.Version={{.Version}}
|
|
-X github.com/prometheus/common/version.Revision={{.Revision}}
|
|
-X github.com/prometheus/common/version.Branch={{.Branch}}
|
|
-X github.com/prometheus/common/version.BuildUser={{user}}@{{host}}
|
|
-X github.com/prometheus/common/version.BuildDate={{date "20060102-15:04:05"}}
|
|
tarball:
|
|
files:
|
|
- LICENSE
|
|
- NOTICE
|
|
crossbuild:
|
|
platforms:
|
|
- darwin/amd64
|
|
- darwin/386
|
|
- netbsd/amd64
|
|
- netbsd/386
|