chore(cbind): nim-ffi migration [7/9] — service discovery + extended peer records #421
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Daily Nimbus | |
| on: | |
| schedule: | |
| - cron: "30 6 * * *" | |
| workflow_dispatch: | |
| pull_request: | |
| types: [labeled, synchronize] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| compile_nimbus: | |
| if: github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'run-daily-ci') | |
| timeout-minutes: 80 | |
| name: 'Compile Nimbus (linux-amd64)' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Compile nimbus using nim-libp2p | |
| env: | |
| GITHUB_SHA: ${{ github.sha }} | |
| run: | | |
| git clone --branch unstable --single-branch https://github.com/status-im/nimbus-eth2.git | |
| cd nimbus-eth2 | |
| git submodule update --init --recursive | |
| cd vendor/nim-libp2p | |
| git fetch https://github.com/vacp2p/nim-libp2p.git "$GITHUB_SHA" | |
| git checkout FETCH_HEAD | |
| cd ../.. | |
| make -j"$(nproc)" nimbus_beacon_node |