only use withdrawals-processing in docker build on capella

This commit is contained in:
realbigsean 2022-12-29 11:07:22 -05:00
parent 2734f3f9db
commit c4a41e8f55
No known key found for this signature in database
GPG Key ID: B372B64D866BF8CC

View File

@ -41,6 +41,7 @@ jobs:
run: | run: |
echo "VERSION=capella" >> $GITHUB_ENV echo "VERSION=capella" >> $GITHUB_ENV
echo "VERSION_SUFFIX=" >> $GITHUB_ENV echo "VERSION_SUFFIX=" >> $GITHUB_ENV
echo "CROSS_FEATURES=withdrawals-processing" >> $GITHUB_ENV
- name: Extract version (if eip4844) - name: Extract version (if eip4844)
if: github.event.ref == 'refs/heads/eip4844' if: github.event.ref == 'refs/heads/eip4844'
run: | run: |
@ -54,6 +55,7 @@ jobs:
outputs: outputs:
VERSION: ${{ env.VERSION }} VERSION: ${{ env.VERSION }}
VERSION_SUFFIX: ${{ env.VERSION_SUFFIX }} VERSION_SUFFIX: ${{ env.VERSION_SUFFIX }}
CROSS_FEATURES: ${{ env.CROSS_FEATURES }}
build-docker-single-arch: build-docker-single-arch:
name: build-docker-${{ matrix.binary }} name: build-docker-${{ matrix.binary }}
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
@ -72,7 +74,7 @@ jobs:
DOCKER_CLI_EXPERIMENTAL: enabled DOCKER_CLI_EXPERIMENTAL: enabled
VERSION: ${{ needs.extract-version.outputs.VERSION }} VERSION: ${{ needs.extract-version.outputs.VERSION }}
VERSION_SUFFIX: ${{ needs.extract-version.outputs.VERSION_SUFFIX }} VERSION_SUFFIX: ${{ needs.extract-version.outputs.VERSION_SUFFIX }}
CROSS_FEATURES: withdrawals-processing CROSS_FEATURES: ${{ needs.extract-version.outputs.CROSS_FEATURES }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Update Rust - name: Update Rust