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
|
2022-04-22 07:23:29 +00:00
|
|
|
- alpha
|
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
|
2022-04-22 07:23:29 +00:00
|
|
|
- alpha
|
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:
|
2022-03-18 04:28:18 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-06-19 20:30:12 +00:00
|
|
|
- run: git submodule update --init --recursive --force
|
2022-03-18 04:28:18 +00:00
|
|
|
- uses: actions/setup-go@v3
|
2021-03-29 23:17:19 +00:00
|
|
|
with:
|
2022-04-21 07:51:30 +00:00
|
|
|
go-version: 1.18.x
|
2022-05-05 08:59:54 +00:00
|
|
|
- name: Install dependencies on Linux
|
|
|
|
if: runner.os == 'Linux'
|
|
|
|
run: sudo apt update && sudo apt install build-essential
|
2022-05-06 01:54:05 +00:00
|
|
|
|
2022-04-11 01:55:21 +00:00
|
|
|
- uses: actions/cache@v3
|
2021-03-29 23:17:19 +00:00
|
|
|
with:
|
2022-05-06 01:54:05 +00:00
|
|
|
path: |
|
|
|
|
~/.cache/go-build
|
|
|
|
~/Library/Caches/go-build
|
|
|
|
~/go/pkg/mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: ${{ runner.os }}-go-
|
|
|
|
|
2022-05-05 08:59:54 +00:00
|
|
|
- name: Build
|
|
|
|
run: make all
|
2022-05-06 01:54:05 +00:00
|
|
|
|
2021-06-01 09:00:10 +00:00
|
|
|
- name: Reproducible build test
|
|
|
|
run: |
|
2022-04-21 07:51:30 +00:00
|
|
|
make erigon
|
2021-06-01 09:00:10 +00:00
|
|
|
shasum -a256 ./build/bin/erigon > erigon1.sha256
|
|
|
|
make erigon
|
|
|
|
shasum -a256 ./build/bin/erigon > erigon2.sha256
|
|
|
|
if ! cmp -s erigon1.sha256 erigon2.sha256; then
|
2022-03-24 02:25:38 +00:00
|
|
|
echo >&2 "Reproducible build broken"; cat erigon1.sha256; cat erigon2.sha256; exit 1
|
2021-06-01 09:00:10 +00:00
|
|
|
fi
|
2022-05-06 01:54:05 +00:00
|
|
|
|
2021-03-29 23:17:19 +00:00
|
|
|
- name: Lint
|
2022-05-05 08:59:54 +00:00
|
|
|
if: runner.os == 'Linux'
|
2022-03-10 05:20:20 +00:00
|
|
|
uses: golangci/golangci-lint-action@v3
|
2021-03-29 23:17:19 +00:00
|
|
|
with:
|
2022-04-01 08:20:27 +00:00
|
|
|
version: v1.45
|
2021-03-29 23:17:19 +00:00
|
|
|
skip-pkg-cache: true
|
|
|
|
skip-build-cache: true
|
2022-05-06 01:54:05 +00:00
|
|
|
|
2022-05-05 08:59:54 +00:00
|
|
|
- name: Test
|
|
|
|
run: make test
|
2021-05-20 16:46:12 +00:00
|
|
|
|
2022-05-05 08:59:54 +00:00
|
|
|
tests-windows:
|
|
|
|
runs-on: windows-2019
|
2021-05-20 16:46:12 +00:00
|
|
|
|
|
|
|
steps:
|
2022-03-18 04:28:18 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-06-19 20:30:12 +00:00
|
|
|
- run: git submodule update --init --recursive --force
|
2022-03-18 04:28:18 +00:00
|
|
|
- uses: actions/setup-go@v3
|
2021-05-20 16:46:12 +00:00
|
|
|
with:
|
2022-04-21 07:51:30 +00:00
|
|
|
go-version: 1.18.x
|
2022-05-06 01:54:05 +00:00
|
|
|
|
|
|
|
- uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
C:\ProgramData\chocolatey\lib\mingw
|
|
|
|
C:\ProgramData\chocolatey\lib\cmake
|
|
|
|
key: chocolatey
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
choco upgrade mingw -y --no-progress --version 11.2.0.07112021
|
|
|
|
choco install cmake -y --no-progress --version 3.23.1
|
|
|
|
|
|
|
|
- uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~\AppData\Local\go-build
|
|
|
|
~\go\pkg\mod
|
|
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
|
|
restore-keys: ${{ runner.os }}-go-
|
|
|
|
|
2022-05-05 08:59:54 +00:00
|
|
|
- name: Test
|
|
|
|
run: .\wmake.ps1 && make test
|
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:
|
2022-03-18 04:28:18 +00:00
|
|
|
- uses: actions/checkout@v3
|
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 .
|