erigon-pulse/.github/workflows/ci.yml

140 lines
4.0 KiB
YAML
Raw Normal View History

name: CI
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
- 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
- stable
types:
- opened
- reopened
- synchronize
- ready_for_review
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
2021-03-29 23:17:19 +00:00
jobs:
tests:
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
2021-03-29 23:17:19 +00:00
strategy:
matrix:
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@v3
- run: git submodule update --init --recursive --force
- 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
- name: Install dependencies on Linux
if: runner.os == 'Linux'
run: sudo apt update && sudo apt install build-essential
2022-04-11 01:55:21 +00:00
- uses: actions/cache@v3
2021-03-29 23:17:19 +00:00
with:
path: |
~/.cache/go-build
~/Library/Caches/go-build
~/go/pkg/mod
key: go-${{ matrix.os }}-${{ hashFiles('**/go.sum') }}
restore-keys: go-${{ matrix.os }}-
- name: Build
run: make all
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
echo >&2 "Reproducible build broken"; cat erigon1.sha256; cat erigon2.sha256; exit 1
2021-06-01 09:00:10 +00:00
fi
2021-03-29 23:17:19 +00:00
- name: Lint
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:
version: v1.50
- name: Test
run: make test
2021-05-20 16:46:12 +00:00
2022-11-18 01:31:11 +00:00
# - name: Test HistoryV3
# run: make test3
2022-10-31 07:25:52 +00:00
tests-windows:
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
strategy:
matrix:
os: [ windows-2022 ]
runs-on: ${{ matrix.os }}
2021-05-20 16:46:12 +00:00
steps:
- uses: actions/checkout@v3
- run: git submodule update --init --recursive --force
- 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
- uses: actions/cache@v3
with:
path: |
C:\ProgramData\chocolatey\lib\mingw
C:\ProgramData\chocolatey\lib\cmake
key: chocolatey-${{ matrix.os }}
- 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: go-${{ matrix.os }}-${{ hashFiles('**/go.sum') }}
restore-keys: go-${{ matrix.os }}-
- name: Build
run: .\wmake.ps1 all
- name: Test
run: .\wmake.ps1 test
2021-05-20 16:46:12 +00:00
docker-build-check:
# don't run this on devel - the PR must have run it to be merged and it misleads that this pushes the docker image
if: (${{ github.event_name == 'push' || !github.event.pull_request.draft }}) && ${{ github.ref != 'refs/heads/devel' }}
runs-on: ubuntu-20.04
steps:
- uses: AutoModality/action-clean@v1
- uses: actions/checkout@v3
with:
fetch-depth: 0 # fetch git tags for "git describe"
- name: make docker (see dockerhub for image builds)
run: DOCKER_TAG=thorax/erigon:ci-$GITHUB_SHA DOCKER_UID=$(id -u) DOCKER_GID=$(id -g) make docker
# check with root permissions, should be cached from previous build
- name: sudo make docker
run: sudo DOCKER_TAG=thorax/erigon:ci-$GITHUB_SHA DOCKER_UID=$(id -u) DOCKER_GID=$(id -g) make docker
automated-tests:
runs-on:
ubuntu-20.04
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
steps:
- uses: actions/checkout@v3
- name: run automated testing
run: BUILD_ERIGON=1 ./tests/automated-testing/run.sh