mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 21:17:16 +00:00
78 lines
2.0 KiB
YAML
78 lines
2.0 KiB
YAML
name: Continuous integration
|
|
on:
|
|
push:
|
|
branches:
|
|
- devel
|
|
- stable
|
|
pull_request:
|
|
branches:
|
|
- devel
|
|
- stable
|
|
jobs:
|
|
tests:
|
|
strategy:
|
|
matrix:
|
|
os: [ ubuntu-20.04, macos-11 ] # list of os: https://github.com/actions/virtual-environments
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: git submodule update --init --recursive --force
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.17.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') }}
|
|
- run: make all
|
|
- 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
|
|
- name: Lint
|
|
if: matrix.os == 'ubuntu-20.04'
|
|
uses: golangci/golangci-lint-action@v2
|
|
with:
|
|
version: v1.42
|
|
skip-go-installation: true
|
|
skip-pkg-cache: true
|
|
skip-build-cache: true
|
|
- run: make test
|
|
|
|
win:
|
|
strategy:
|
|
matrix:
|
|
os: [ windows-2019 ]
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: git submodule update --init --recursive --force
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.17.x
|
|
- run: choco upgrade mingw cmake -y --no-progress
|
|
- name: Build
|
|
run: |
|
|
.\wmake.ps1
|
|
make test
|
|
shell: powershell
|
|
|
|
docker:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: git submodule update --init --recursive --force
|
|
- run: docker build .
|