2019-05-09 11:28:35 +02:00
|
|
|
language: go
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- go: 1.x
|
|
|
|
env: LATEST=true
|
|
|
|
- go: 1.8.x
|
|
|
|
- go: 1.9.x
|
|
|
|
- go: 1.10.x
|
|
|
|
- go: 1.11.x
|
|
|
|
- go: 1.12.x
|
|
|
|
- go: tip
|
|
|
|
allow_failures:
|
|
|
|
- go: tip
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
- go get github.com/mitchellh/gox
|
|
|
|
|
|
|
|
install:
|
|
|
|
- export GO111MODULE=on
|
|
|
|
- go get -t -v ./...
|
|
|
|
|
|
|
|
script:
|
|
|
|
- go test -v -race ./...
|
2019-06-15 02:06:08 +02:00
|
|
|
- if [ "${LATEST}" = "true" ]; then gox -ldflags "-s -w" -os="linux darwin windows" -arch="386 amd64" -osarch="linux/arm" -output="pihole_exporter-{{.OS}}-{{.Arch}}" -verbose ./...; fi
|
2019-05-09 11:28:35 +02:00
|
|
|
|
|
|
|
deploy:
|
|
|
|
provider: releases
|
|
|
|
skip_cleanup: true
|
|
|
|
api_key:
|
|
|
|
secure: $GITHUB_TOKEN
|
|
|
|
file:
|
|
|
|
- pihole_exporter-windows-386.exe
|
|
|
|
- pihole_exporter-windows-amd64.exe
|
|
|
|
- pihole_exporter-darwin-386
|
|
|
|
- pihole_exporter-darwin-amd64
|
|
|
|
- pihole_exporter-linux-386
|
|
|
|
- pihole_exporter-linux-amd64
|
|
|
|
- pihole_exporter-linux-arm
|
|
|
|
on:
|
|
|
|
repo: eko/pihole-exporter
|
|
|
|
tags: true
|
|
|
|
condition: $LATEST = true
|