mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-24 20:47:16 +00:00
74cf9840ae
* Patch plumbing of docker-compose UID/GID build args * Fallback to 1000/1000 if DOCKER_(U|G)ID not set * Revise README.md instructions for docker further * Fix existing typo forc 'servie' -> 'service' * Rename PUID/GUID -> UID/GID * Specify user in erigon docker service * Rely on .env instead of specifying :-1000 * Polish Makefile for docker use case * one more helpful comment * make docker should use UID/GID --build-arg * Fix make docker and more fail-fast if envvar set incorrect * mv .env->.env.example to not intefere existing workflows * Specify envvars in docker CI * Adjust validate_docker_build_args to permit non-erigon user * Also run docker CI target on macos-11 os * Add DOCKER_UID, DOCKER_GID in hooks/build * Patch docker build arg validation for macos * Add actions-setup-docker@master for macos * Don't run automated test for docker macos * Cleanup Makefile * Comments, targets for erigon users * More Makefile cleanup, debugging still * Typo fix * Create subdirs before calling ls * Get rid of flaky validation * DOCKER_UID, DOCKER_GID init to runner if not set * Get rid of unnecessary variable for now * Improved README based on new changes * Proper uid/gid `make user_*` when no envars set * Fix typo in Makefile comment * Fix make docker as sudo user
114 lines
3.0 KiB
YAML
114 lines
3.0 KiB
YAML
name: Continuous integration
|
|
on:
|
|
push:
|
|
branches:
|
|
- devel
|
|
- alpha
|
|
- stable
|
|
pull_request:
|
|
branches:
|
|
- devel
|
|
- alpha
|
|
- 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@v3
|
|
- run: git submodule update --init --recursive --force
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.18.x
|
|
- name: Install dependencies on Linux
|
|
if: runner.os == 'Linux'
|
|
run: sudo apt update && sudo apt install build-essential
|
|
|
|
- uses: actions/cache@v3
|
|
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
|
|
|
|
- name: Reproducible build test
|
|
run: |
|
|
make erigon
|
|
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
|
|
fi
|
|
|
|
- name: Lint
|
|
if: runner.os == 'Linux'
|
|
uses: golangci/golangci-lint-action@v3
|
|
with:
|
|
version: v1.46
|
|
skip-pkg-cache: true
|
|
skip-build-cache: true
|
|
|
|
- name: Test
|
|
run: make test
|
|
|
|
tests-windows:
|
|
strategy:
|
|
matrix:
|
|
os: [ windows-2022 ]
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: git submodule update --init --recursive --force
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
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
|
|
|
|
docker:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0 # fetch git tags for "git describe"
|
|
|
|
- name: make docker
|
|
run: 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_UID=$(id -u) DOCKER_GID=$(id -g) make docker
|