mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
52 lines
1.3 KiB
YAML
52 lines
1.3 KiB
YAML
name: main
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- '**.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- '**.md'
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.13
|
|
id: go
|
|
- name: Code checkout
|
|
uses: actions/checkout@v1
|
|
- name: Dependencies
|
|
env:
|
|
GO111MODULE: off
|
|
run: |
|
|
go get -v golang.org/x/lint/golint
|
|
go get -u github.com/kisielk/errcheck
|
|
- name: Build
|
|
env:
|
|
GO111MODULE: on
|
|
run: |
|
|
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
|
|
GOOS=darwin go build -mod=vendor ./app/victoria-metrics
|
|
- name: Publish coverage
|
|
uses: codecov/codecov-action@v1.0.4
|
|
with:
|
|
token: ${{secrets.CODECOV_TOKEN}}
|
|
file: ./coverage.txt
|
|
|