Build lodestar docker image #267
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: Build lodestar docker image | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| repository: | |
| description: The source lodestar repository to build from | |
| default: chainsafe/lodestar | |
| type: string | |
| required: true | |
| ref: | |
| description: The branch, tag or SHA to checkout and build from | |
| default: unstable | |
| 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: | |
| platforms: ${{ steps.setup.outputs.platforms }} | |
| target_tag: ${{ steps.tag.outputs.docker_tag }} | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Prepare Matrix | |
| id: setup | |
| uses: ./.github/actions/prepare | |
| with: | |
| client: 'lodestar' | |
| - name: Generate target tag | |
| id: tag | |
| uses: ./.github/actions/docker-tag | |
| with: | |
| input: ${{ inputs.docker_tag || inputs.ref }} | |
| repository: ${{ inputs.repository }} | |
| upstream_repository: chainsafe/lodestar | |
| docker_tag: ${{ inputs.docker_tag }} | |
| deploy: | |
| needs: | |
| - prepare | |
| runs-on: ${{ matrix.runner }} | |
| continue-on-error: true | |
| strategy: | |
| matrix: | |
| include: ${{fromJson(needs.prepare.outputs.platforms)}} | |
| outputs: | |
| git_commit_hash: ${{ steps.set_output.outputs.git_commit_hash }} | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: ./.github/actions/install-deps | |
| with: | |
| repository: ${{ inputs.repository }} | |
| - uses: ./.github/actions/deploy | |
| id: deploy | |
| with: | |
| source_repository: ${{ inputs.repository }} | |
| source_ref: ${{ inputs.ref }} | |
| build_script: ./lodestar/build.sh | |
| target_tag: ${{ needs.prepare.outputs.target_tag }}-${{ matrix.slug }} | |
| target_repository: ethpandaops/lodestar | |
| platform: ${{ matrix.platform }} | |
| DOCKER_USERNAME: "${{ vars.DOCKER_USERNAME }}" | |
| DOCKER_PASSWORD: "${{ secrets.DOCKER_PASSWORD }}" | |
| MACOS_PASSWORD: "${{ secrets.MACOS_PASSWORD }}" | |
| GOPROXY: "${{ vars.GOPROXY }}" | |
| HARBOR_USERNAME: "${{ vars.HARBOR_USERNAME }}" | |
| HARBOR_PASSWORD: "${{ secrets.HARBOR_PASSWORD }}" | |
| harbor_registry: ${{ vars.HARBOR_REGISTRY }} | |
| # This step captures the git commit hash from the deploy action for job output, which can then be | |
| # used by the manifest job. This is done to handle scenarios where there is a commit to the remote | |
| # repository between the deploy and manifest action. | |
| - name: Set job output | |
| id: set_output | |
| run: echo "git_commit_hash=${{ steps.deploy.outputs.git_commit_hash }}" >> $GITHUB_OUTPUT | |
| shell: bash | |
| manifest: | |
| needs: | |
| - prepare | |
| - deploy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: ./.github/actions/manifest | |
| with: | |
| source_repository: ${{ inputs.repository }} | |
| source_ref: ${{ inputs.ref }} | |
| build_script: ./lodestar/build.sh | |
| target_tag: ${{ needs.prepare.outputs.target_tag }} | |
| target_repository: ethpandaops/lodestar | |
| platforms: ${{ needs.prepare.outputs.platforms }} | |
| harbor_registry: ${{ vars.HARBOR_REGISTRY }} | |
| HARBOR_USERNAME: "${{ vars.HARBOR_USERNAME }}" | |
| HARBOR_PASSWORD: "${{ secrets.HARBOR_PASSWORD }}" | |
| git_commit_hash: ${{ needs.deploy.outputs.git_commit_hash }} | |
| 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@1766a33bf571acdcc0678f00da4fb83aad01ebc7 # v1 | |
| with: | |
| github-token: ${{ secrets.github_token }} | |
| discord-webhook: ${{ secrets.DISCORD_WEBHOOK }} |