add `-d:has_deposit_root_checks` build to CI (#5856)

To prevent accidental breakage of builds with non-standard developer
flags, add the `-d:has_deposit_root_checks` build to CI. This is only
a quick compilation check, and is only run on Linux.
This commit is contained in:
Etan Kissling 2024-02-07 01:11:51 +01:00 committed by GitHub
parent da567ea994
commit 388b865aac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 13 additions and 0 deletions

View File

@ -208,6 +208,19 @@ jobs:
name: Unit Test Results ${{ matrix.target.os }}-${{ matrix.target.cpu }}
path: build/*.xml
devbuild:
name: "Developer builds"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Build with developer flags
run: |
make -j nimbus_beacon_node LOG_LEVEL=TRACE NIMFLAGS="-d:has_deposit_root_checks=1"
lint:
name: "Lint"
runs-on: ubuntu-latest