2021-03-29 23:17:19 +00:00
|
|
|
name: Continuous integration
|
2021-05-07 21:43:04 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-06-05 10:05:02 +00:00
|
|
|
- devel
|
2021-11-16 12:13:36 +00:00
|
|
|
- stable
|
2021-05-07 21:43:04 +00:00
|
|
|
pull_request:
|
|
|
|
branches:
|
2021-06-05 10:05:02 +00:00
|
|
|
- devel
|
2021-11-16 12:13:36 +00:00
|
|
|
- stable
|
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-11-29 15:37:52 +00:00
|
|
|
os: [ ubuntu-20.04, macos-11 ] # 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
|
2021-06-19 20:30:12 +00:00
|
|
|
- run: git submodule update --init --recursive --force
|
2021-03-29 23:17:19 +00:00
|
|
|
- uses: actions/setup-go@v2
|
|
|
|
with:
|
2021-09-01 05:00:01 +00:00
|
|
|
go-version: 1.17.x
|
2021-03-29 23:17:19 +00:00
|
|
|
- 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-05-20 16:46:12 +00:00
|
|
|
- run: make all
|
2021-06-01 09:00:10 +00:00
|
|
|
- name: Reproducible build test
|
|
|
|
run: |
|
|
|
|
shasum -a256 ./build/bin/erigon > erigon1.sha256
|
|
|
|
make erigon
|
|
|
|
shasum -a256 ./build/bin/erigon > erigon2.sha256
|
|
|
|
if ! cmp -s erigon1.sha256 erigon2.sha256; then
|
|
|
|
echo >&2 "Reproducible build broken"; exit 1
|
|
|
|
fi
|
2021-03-29 23:17:19 +00:00
|
|
|
- name: Lint
|
2021-05-17 02:42:24 +00:00
|
|
|
if: matrix.os == 'ubuntu-20.04'
|
2021-03-29 23:17:19 +00:00
|
|
|
uses: golangci/golangci-lint-action@v2
|
|
|
|
with:
|
2021-11-16 08:33:41 +00:00
|
|
|
version: v1.42
|
2021-03-29 23:17:19 +00:00
|
|
|
skip-go-installation: true
|
|
|
|
skip-pkg-cache: true
|
|
|
|
skip-build-cache: true
|
2021-05-20 16:46:12 +00:00
|
|
|
- run: make test
|
|
|
|
|
|
|
|
win:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-06-01 09:00:10 +00:00
|
|
|
os: [ windows-2019 ]
|
2021-05-20 16:46:12 +00:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-06-19 20:30:12 +00:00
|
|
|
- run: git submodule update --init --recursive --force
|
2021-05-20 16:46:12 +00:00
|
|
|
- uses: actions/setup-go@v2
|
|
|
|
with:
|
2021-09-01 05:00:01 +00:00
|
|
|
go-version: 1.17.x
|
2021-05-20 16:46:12 +00:00
|
|
|
- run: choco upgrade mingw cmake -y --no-progress
|
|
|
|
- name: Build
|
|
|
|
run: |
|
2021-06-19 20:30:12 +00:00
|
|
|
.\wmake.ps1
|
2021-06-18 03:35:11 +00:00
|
|
|
make test
|
2021-06-19 20:30:12 +00:00
|
|
|
shell: powershell
|
2021-05-20 16:46:12 +00:00
|
|
|
|
2021-03-30 16:16:07 +00:00
|
|
|
docker:
|
2021-11-15 03:14:19 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2021-03-30 16:16:07 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-06-19 20:30:12 +00:00
|
|
|
- run: git submodule update --init --recursive --force
|
2021-05-17 02:42:24 +00:00
|
|
|
- run: docker build .
|