mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 07:34:04 -08:00
c4a6acfb1e
* *: move to go 1.11 Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Reduce number of places where we specify the Go version Signed-off-by: Simon Pasquier <spasquie@redhat.com>
55 lines
1.6 KiB
YAML
55 lines
1.6 KiB
YAML
go:
|
|
# Whenever the Go version is updated here, .travis.yml and
|
|
# .circle/config.yml should also be updated.
|
|
version: 1.11
|
|
repository:
|
|
path: github.com/prometheus/prometheus
|
|
build:
|
|
binaries:
|
|
- name: prometheus
|
|
path: ./cmd/prometheus
|
|
- name: promtool
|
|
path: ./cmd/promtool
|
|
flags: -a -tags netgo
|
|
ldflags: |
|
|
-X {{repoPath}}/vendor/github.com/prometheus/common/version.Version={{.Version}}
|
|
-X {{repoPath}}/vendor/github.com/prometheus/common/version.Revision={{.Revision}}
|
|
-X {{repoPath}}/vendor/github.com/prometheus/common/version.Branch={{.Branch}}
|
|
-X {{repoPath}}/vendor/github.com/prometheus/common/version.BuildUser={{user}}@{{host}}
|
|
-X {{repoPath}}/vendor/github.com/prometheus/common/version.BuildDate={{date "20060102-15:04:05"}}
|
|
tarball:
|
|
files:
|
|
- consoles
|
|
- console_libraries
|
|
- documentation/examples/prometheus.yml
|
|
- LICENSE
|
|
- NOTICE
|
|
crossbuild:
|
|
platforms:
|
|
- linux/amd64
|
|
- linux/386
|
|
- darwin/amd64
|
|
- darwin/386
|
|
- windows/amd64
|
|
- windows/386
|
|
- freebsd/amd64
|
|
- freebsd/386
|
|
- openbsd/amd64
|
|
- openbsd/386
|
|
- netbsd/amd64
|
|
- netbsd/386
|
|
- dragonfly/amd64
|
|
- linux/arm
|
|
- linux/arm64
|
|
- freebsd/arm
|
|
# Temporarily deactivated as golang.org/x/sys does not have syscalls
|
|
# implemented for that os/platform combination.
|
|
#- openbsd/arm
|
|
#- linux/mips64
|
|
#- linux/mips64le
|
|
- netbsd/arm
|
|
- linux/ppc64
|
|
- linux/ppc64le
|
|
- linux/s390x
|
|
|