Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c562052

Browse files
bharath-123SuperFluffy
authored andcommittedJan 13, 2025
ci(auctioneer): add auctioneer to docker-build workflow (#1903)
## Summary This adds the auctioneer binary to the docker build workflow. ## Changes - add the auctioneer to the docker-build github workflow ## Changelogs No updates required. closes #1820
1 parent dfa9554 commit c562052

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed
 

‎.github/workflows/docker-build.yml

+18-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212
required: false
1313
type: choice
1414
options:
15+
- auctioneer
1516
- composer
1617
- conductor
1718
- sequencer
@@ -39,6 +40,22 @@ jobs:
3940
run_checker:
4041
uses: ./.github/workflows/reusable-run-checker.yml
4142

43+
auctioneer:
44+
needs: run_checker
45+
if: needs.run_checker.outputs.run_docker == 'true' || (github.event_name == 'workflow_dispatch' && github.event.inputs.target == 'auctioneer')
46+
uses: "./.github/workflows/reusable-docker-build.yml"
47+
permissions:
48+
contents: read
49+
id-token: write
50+
packages: write
51+
with:
52+
depot-project-id: 1kp2p2bvbr
53+
package-name: auctioneer
54+
binary-name: auctioneer
55+
tag: ${{ inputs.tag }}
56+
force: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.target == 'auctioneer' }}
57+
secrets: inherit
58+
4259
composer:
4360
needs: run_checker
4461
if: needs.run_checker.outputs.run_docker == 'true' || (github.event_name == 'workflow_dispatch' && github.event.inputs.target == 'composer')
@@ -296,7 +313,7 @@ jobs:
296313
297314
docker:
298315
if: ${{ always() && !cancelled() }}
299-
needs: [composer, conductor, sequencer, sequencer-relayer, evm-bridge-withdrawer, cli, smoke-test, smoke-cli, ibc-bridge-test, ibc-no-native-asset-test, ibc-timeout-refund]
316+
needs: [auctioneer, composer, conductor, sequencer, sequencer-relayer, evm-bridge-withdrawer, cli, smoke-test, smoke-cli, ibc-bridge-test, ibc-no-native-asset-test, ibc-timeout-refund]
300317
uses: ./.github/workflows/reusable-success.yml
301318
with:
302319
success: ${{ !contains(needs.*.result, 'failure') }}

0 commit comments

Comments
 (0)
Please sign in to comment.