diff --git a/.github/workflows/build-push-dora.yml b/.github/workflows/build-push-dora.yml deleted file mode 100644 index bb7a6e4..0000000 --- a/.github/workflows/build-push-dora.yml +++ /dev/null @@ -1,87 +0,0 @@ -name: Build dora image - -on: - workflow_dispatch: - inputs: - repository: - description: The source dora repository to build from - default: pk910/dora - type: string - required: true - ref: - description: The branch, tag or SHA to checkout and build from - default: master - type: string - required: true - docker_tag: - description: Override target docker tag (defaults to the above source ref if left blank) - type: string - required: false - -jobs: - prepare: - runs-on: ubuntu-latest - outputs: - matrix: ${{ steps.setup.outputs.matrix }} - platforms: ${{ steps.setup.outputs.platforms }} - steps: - - uses: actions/checkout@v3 - - name: Prepare Matrix - id: setup - uses: ./.github/actions/prepare - with: - client: 'dora' - deploy: - needs: - - prepare - runs-on: ${{ matrix.runner }} - strategy: - matrix: - include: ${{fromJson(needs.prepare.outputs.matrix)}} - steps: - - uses: actions/checkout@v3 - - uses: ./.github/actions/install-deps - with: - repository: ${{ inputs.repository }} - - uses: ./.github/actions/deploy - with: - source_repository: ${{ inputs.repository }} - source_ref: ${{ inputs.ref }} - target_tag: ${{ inputs.docker_tag || inputs.ref }}-${{ matrix.slug }} - target_repository: ethpandaops/dora - platform: ${{ matrix.platform }} - - DOCKER_USERNAME: "${{ vars.DOCKER_USERNAME }}" - DOCKER_PASSWORD: "${{ secrets.DOCKER_PASSWORD }}" - MACOS_PASSWORD: "${{ secrets.MACOS_PASSWORD }}" - manifest: - needs: - - prepare - - deploy - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: ./.github/actions/manifest - with: - source_repository: ${{ inputs.repository }} - source_ref: ${{ inputs.ref }} - target_tag: ${{ inputs.docker_tag || inputs.ref }} - target_repository: ethpandaops/dora - platforms: ${{ needs.prepare.outputs.platforms }} - - DOCKER_USERNAME: "${{ vars.DOCKER_USERNAME }}" - DOCKER_PASSWORD: "${{ secrets.DOCKER_PASSWORD }}" - notify: - name: Discord Notification - runs-on: ubuntu-latest - needs: - - prepare - - deploy - - manifest - if: failure() - steps: - - name: Notify - uses: nobrayner/discord-webhook@v1 - with: - github-token: ${{ secrets.github_token }} - discord-webhook: ${{ secrets.DISCORD_WEBHOOK }} diff --git a/README.md b/README.md index d1b4167..1825cc5 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,6 @@ Run the *Build **tooling*** workflow; - [Build tx-fuzz](https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-tx-fuzz.yaml) [[source](https://github.com/MariusVanDerWijden/tx-fuzz)] - [Build consesnus-monitor](https://github.com/ethpandaops/eth-client-docker-image-builder/blob/master/.github/workflows/build-push-consensus-monitor.yml) [[source](https://github.com/ralexstokes/ethereum_consensus_monitor)] - [Build execution-monitor](https://github.com/ethpandaops/eth-client-docker-image-builder/blob/master/.github/workflows/build-push-execution-monitor.yml) [[source](https://github.com/ethereum/nodemonitor)] -- [Build dora](https://github.com/ethpandaops/eth-client-docker-image-builder/blob/master/.github/workflows/build-push-dora.yml) [[source](https://github.com/pk910/dora)] - [Build beacon-metrics-gazer](https://github.com/ethpandaops/eth-client-docker-image-builder/blob/master/.github/workflows/build-push-beacon-metrics-gazer.yml) [[source](https://github.com/dapplion/beacon-metrics-gazer)] - [Build goomy-blob](https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-goomy-blob.yaml) [[source](https://github.com/ethpandaops/goomy-blob)] - [Build ethereum-genesis-generator](https://github.com/ethpandaops/eth-client-docker-image-builder/actions/workflows/build-push-genesis-generator.yml) [[source](https://github.com/ethpandaops/ethereum-genesis-generator)] diff --git a/config.yaml b/config.yaml index 1de8518..6b85918 100644 --- a/config.yaml +++ b/config.yaml @@ -216,15 +216,6 @@ target: tag: master repository: ethpandaops/tx-fuzz -########## -# dora # -########## -- source: - repository: pk910/dora - ref: master - target: - tag: master - repository: ethpandaops/dora ############## # goomy-blob # ############## diff --git a/nimbus/Dockerfile b/nimbus/Dockerfile index 9e42c08..c8997a4 100644 --- a/nimbus/Dockerfile +++ b/nimbus/Dockerfile @@ -20,7 +20,7 @@ ADD . /root/nimbus-eth2 # We need to run `make update` again because some absolute paths changed. RUN cd /root/nimbus-eth2 \ && make -j$(nproc) update \ - && make -j$(nproc) NIMFLAGS="-d:const_preset=mainnet -d:disableMarchNative" LOG_LEVEL=TRACE nimbus_beacon_node + && make -j$(nproc) V=1 NIMFLAGS="-d:const_preset=mainnet -d:disableMarchNative" LOG_LEVEL=TRACE nimbus_beacon_node # alternatively: # && make -j$(nproc) LOG_LEVEL=TRACE NIMFLAGS="-d:insecure -d:ETH2_SPEC=v0.12.1 -d:BLS_ETH2_SPEC=v0.12.x -d:const_preset=/root/config.yaml" nimbus_validator_client diff --git a/platforms.yaml b/platforms.yaml index 72837c4..49abf71 100644 --- a/platforms.yaml +++ b/platforms.yaml @@ -44,9 +44,6 @@ consensus-monitor: execution-monitor: - linux/amd64 - linux/arm64 -dora: - - linux/amd64 - - linux/arm64 beacon-metrics-gazer: - linux/amd64 - linux/arm64