2021-09-07 01:37:57 +00:00
|
|
|
name: "go: build binary"
|
2020-10-30 06:41:54 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
|
|
|
|
2021-08-28 01:57:13 +00:00
|
|
|
concurrency:
|
2021-08-28 02:01:09 +00:00
|
|
|
group: ${{ github.head_ref }}/go
|
2021-08-28 01:57:13 +00:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-03-18 20:47:20 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2020-10-30 06:41:54 +00:00
|
|
|
jobs:
|
|
|
|
|
|
|
|
build:
|
|
|
|
name: Build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Set up Go 1.x
|
2022-08-29 15:49:47 +00:00
|
|
|
uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f # v2
|
2020-10-30 06:41:54 +00:00
|
|
|
with:
|
|
|
|
go-version: ^1.13
|
2020-10-30 06:46:54 +00:00
|
|
|
id: go
|
2020-10-30 06:41:54 +00:00
|
|
|
|
|
|
|
- name: Check out code into the Go module directory
|
2022-08-22 15:33:53 +00:00
|
|
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v2
|
2020-10-30 06:41:54 +00:00
|
|
|
|
|
|
|
- name: Get dependencies
|
|
|
|
run: |
|
2020-10-30 06:46:54 +00:00
|
|
|
cd weed; go get -v -t -d ./...
|
2020-10-30 06:41:54 +00:00
|
|
|
|
|
|
|
- name: Build
|
2022-06-27 03:06:35 +00:00
|
|
|
run: cd weed; go build -tags "elastic gocdk sqlite ydb tikv" -v .
|
2020-10-30 06:41:54 +00:00
|
|
|
|
|
|
|
- name: Test
|
2022-06-27 03:06:35 +00:00
|
|
|
run: cd weed; go test -tags "elastic gocdk sqlite ydb tikv" -v ./...
|