2019-08-28 20:11:12 +00:00
|
|
|
name: main
|
|
|
|
on:
|
|
|
|
- push
|
2019-09-11 06:30:11 +00:00
|
|
|
- pull_request
|
2019-08-28 20:11:12 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Setup Go
|
|
|
|
uses: actions/setup-go@v1
|
|
|
|
with:
|
2019-09-08 11:02:23 +00:00
|
|
|
go-version: 1.13
|
2019-08-28 20:11:12 +00:00
|
|
|
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
|
2019-10-17 15:22:56 +00:00
|
|
|
make test-full-386
|
2019-08-28 20:11:12 +00:00
|
|
|
make vminsert vmselect vmstorage
|
|
|
|
make vminsert-pure vmselect-pure vmstorage-pure
|
2019-11-07 19:05:39 +00:00
|
|
|
make vmutils
|
2019-08-28 20:11:12 +00:00
|
|
|
GOOS=freebsd go build -mod=vendor ./app/vminsert
|
|
|
|
GOOS=freebsd go build -mod=vendor ./app/vmselect
|
|
|
|
GOOS=freebsd go build -mod=vendor ./app/vmstorage
|
|
|
|
GOOS=darwin go build -mod=vendor ./app/vminsert
|
|
|
|
GOOS=darwin go build -mod=vendor ./app/vmselect
|
|
|
|
GOOS=darwin go build -mod=vendor ./app/vmstorage
|