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-12-02 12:42:25 +00:00
|
|
|
go-version: 1.17
|
2019-08-27 11:42:46 +00:00
|
|
|
id: go
|
2021-10-26 19:08:54 +00:00
|
|
|
- name: Code checkout
|
|
|
|
uses: actions/checkout@master
|
2019-08-27 11:42:46 +00:00
|
|
|
- name: Dependencies
|
|
|
|
run: |
|
2021-10-26 18:26:39 +00:00
|
|
|
make install-golint
|
|
|
|
make install-errcheck
|
|
|
|
make install-golangci-lint
|
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
|
2022-04-08 10:08:09 +00:00
|
|
|
uses: codecov/codecov-action@v3
|
2019-08-27 11:42:46 +00:00
|
|
|
with:
|
|
|
|
file: ./coverage.txt
|
|
|
|
|