2019-08-27 11:42:46 +00:00
|
|
|
name: main
|
|
|
|
on:
|
2019-11-30 18:36:10 +00:00
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
|
|
|
- '**.md'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- 'docs/**'
|
|
|
|
- '**.md'
|
2019-08-27 11:42:46 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Setup Go
|
2020-10-06 12:34:49 +00:00
|
|
|
uses: actions/setup-go@main
|
2019-08-27 11:42:46 +00:00
|
|
|
with:
|
2021-02-28 23:11:03 +00:00
|
|
|
go-version: 1.16
|
2019-08-27 11:42:46 +00:00
|
|
|
id: go
|
|
|
|
- name: Dependencies
|
|
|
|
run: |
|
2020-12-15 12:17:50 +00:00
|
|
|
go get -u golang.org/x/lint/golint
|
|
|
|
go get -u github.com/kisielk/errcheck
|
2020-12-14 18:04:27 +00:00
|
|
|
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.29.0
|
2020-04-24 14:55:12 +00:00
|
|
|
- name: Code checkout
|
|
|
|
uses: actions/checkout@master
|
2019-08-27 11:42:46 +00:00
|
|
|
- name: Build
|
|
|
|
env:
|
|
|
|
GO111MODULE: on
|
|
|
|
run: |
|
2019-11-30 18:36:10 +00:00
|
|
|
export PATH=$PATH:$(go env GOPATH)/bin # temporary fix. See https://github.com/actions/setup-go/issues/14
|
|
|
|
make check-all
|
|
|
|
git diff --exit-code
|
|
|
|
make test-full
|
|
|
|
make test-pure
|
|
|
|
make test-full-386
|
|
|
|
make victoria-metrics
|
|
|
|
make victoria-metrics-pure
|
|
|
|
make victoria-metrics-arm
|
|
|
|
make victoria-metrics-arm64
|
|
|
|
make vmutils
|
|
|
|
GOOS=freebsd go build -mod=vendor ./app/victoria-metrics
|
2020-09-28 21:49:20 +00:00
|
|
|
GOOS=freebsd go build -mod=vendor ./app/vmagent
|
|
|
|
GOOS=freebsd go build -mod=vendor ./app/vmalert
|
|
|
|
GOOS=freebsd go build -mod=vendor ./app/vmbackup
|
|
|
|
GOOS=freebsd go build -mod=vendor ./app/vmrestore
|
2021-01-31 23:10:16 +00:00
|
|
|
GOOS=freebsd go build -mod=vendor ./app/vmctl
|
2020-09-28 21:44:44 +00:00
|
|
|
GOOS=openbsd go build -mod=vendor ./app/victoria-metrics
|
2020-09-28 21:49:20 +00:00
|
|
|
GOOS=openbsd go build -mod=vendor ./app/vmagent
|
|
|
|
GOOS=openbsd go build -mod=vendor ./app/vmalert
|
|
|
|
GOOS=openbsd go build -mod=vendor ./app/vmbackup
|
|
|
|
GOOS=openbsd go build -mod=vendor ./app/vmrestore
|
2021-01-31 23:10:16 +00:00
|
|
|
GOOS=openbsd go build -mod=vendor ./app/vmctl
|
2019-11-30 18:36:10 +00:00
|
|
|
GOOS=darwin go build -mod=vendor ./app/victoria-metrics
|
2020-09-28 21:49:20 +00:00
|
|
|
GOOS=darwin go build -mod=vendor ./app/vmagent
|
|
|
|
GOOS=darwin go build -mod=vendor ./app/vmalert
|
|
|
|
GOOS=darwin go build -mod=vendor ./app/vmbackup
|
|
|
|
GOOS=darwin go build -mod=vendor ./app/vmrestore
|
2021-01-31 23:10:16 +00:00
|
|
|
GOOS=darwin go build -mod=vendor ./app/vmctl
|
2021-02-26 23:01:47 +00:00
|
|
|
CGO_ENABLED=0 GOOS=windows go build -mod=vendor ./app/vmagent
|
2019-08-27 11:42:46 +00:00
|
|
|
- name: Publish coverage
|
2021-05-10 08:38:56 +00:00
|
|
|
uses: codecov/codecov-action@v1.5.0
|
2019-08-27 11:42:46 +00:00
|
|
|
with:
|
|
|
|
file: ./coverage.txt
|
|
|
|
|