2021-03-29 23:17:19 +00:00
|
|
|
name: Continuous integration
|
2021-05-07 21:43:04 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
2021-03-29 23:17:19 +00:00
|
|
|
jobs:
|
2021-03-30 16:16:07 +00:00
|
|
|
tests:
|
2021-03-29 23:17:19 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-05-03 09:59:35 +00:00
|
|
|
os: [ ubuntu-16.04, ubuntu-20.04, macos-10.15, windows-2019 ] # list of os: https://github.com/actions/virtual-environments
|
2021-03-29 23:17:19 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- uses: actions/setup-go@v2
|
|
|
|
with:
|
|
|
|
go-version: 1.16.x
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
if [ "$RUNNER_OS" == "Linux" ]; then
|
|
|
|
sudo apt update && sudo apt install build-essential
|
|
|
|
fi
|
|
|
|
shell: bash
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/go/pkg/mod
|
|
|
|
key: ${{ matrix.os }}-go-${{ hashFiles('**/go.sum') }}
|
2021-04-02 12:47:09 +00:00
|
|
|
- name: Build (non-windows)
|
2021-05-03 09:59:35 +00:00
|
|
|
if: matrix.os != 'windows-2019'
|
2021-03-29 23:17:19 +00:00
|
|
|
run: make all
|
2021-04-02 12:47:09 +00:00
|
|
|
- name: Build (windows)
|
2021-05-03 09:59:35 +00:00
|
|
|
if: matrix.os == 'windows-2019'
|
2021-04-02 12:47:09 +00:00
|
|
|
run: |
|
|
|
|
go build -trimpath -o bin/tg.exe ./cmd/tg
|
|
|
|
go build -trimpath -o bin/rpcdaemon.exe ./cmd/rpcdaemon
|
|
|
|
go build -trimpath -o bin/rpctest.exe ./cmd/rpctest
|
|
|
|
go build -trimpath -o bin/integration.exe ./cmd/integration
|
|
|
|
go build -trimpath -o bin/headers.ext ./cmd/headers
|
2021-03-29 23:17:19 +00:00
|
|
|
- name: Lint
|
2021-04-15 08:28:16 +00:00
|
|
|
if: matrix.os == 'ubuntu-latest'
|
2021-03-29 23:17:19 +00:00
|
|
|
uses: golangci/golangci-lint-action@v2
|
|
|
|
with:
|
2021-04-08 03:47:10 +00:00
|
|
|
version: v1.38
|
2021-04-26 12:39:34 +00:00
|
|
|
args: "--build-tags=mdbx"
|
2021-03-29 23:17:19 +00:00
|
|
|
skip-go-installation: true
|
|
|
|
skip-pkg-cache: true
|
|
|
|
skip-build-cache: true
|
2021-04-02 12:47:09 +00:00
|
|
|
- name: Test (non-windows)
|
2021-05-03 09:59:35 +00:00
|
|
|
if: matrix.os != 'windows-2019'
|
2021-03-29 23:17:19 +00:00
|
|
|
run: make test
|
2021-03-30 16:16:07 +00:00
|
|
|
docker:
|
2021-05-03 09:59:35 +00:00
|
|
|
runs-on: ubuntu-18.04
|
2021-03-30 16:16:07 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- name: Docker
|
|
|
|
run: docker build .
|