Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/ecr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,22 @@ jobs:
build-args: |
SEI_CHAIN_REF=${{ inputs.ref || github.sha }}
GO_BUILD_TAGS=mock_chain_validation
# mock_balances + mock_chain_validation combined -- the chaos suite's flavor
# (fresh-chain replays with synthetic txs against pre-funded accounts). The
# nightly pipeline builds it from main; this step makes it buildable for an
# arbitrary ref, so a PR head can run the full harness.
- name: Build and push mock_chain_validation-mock_balances seid
uses: docker/build-push-action@v6
with:
context: '.'
cache-from: type=registry,ref=${{ steps.login-ecr.outputs.registry }}/sei/build-cache:shared
cache-to: type=registry,ref=${{ steps.login-ecr.outputs.registry }}/sei/build-cache:shared,mode=max
platforms: linux/amd64
push: true
tags: ${{ steps.login-ecr.outputs.registry }}/sei/sei-chain:mock_chain_validation-mock_balances-${{ inputs.tag || inputs.ref || github.sha }}
build-args: |
SEI_CHAIN_REF=${{ inputs.ref || github.sha }}
GO_BUILD_TAGS=mock_balances mock_chain_validation
- name: Build and push seid
uses: docker/build-push-action@v6
with:
Expand Down
Loading