Skip to content

Commit a3a5bef

Browse files
authored
Fix some names in CI (#3539)
1 parent 630ad79 commit a3a5bef

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ on:
7272
default: false
7373
rebuild-evm-aa-contracts:
7474
type: boolean
75-
description: rebuild-evm-accounting-contracts
75+
description: rebuild-evm-aa-contracts
7676
required: true
7777
default: false
78-
rebuild-solana-contracts:
78+
rebuild-solana-accounting-contracts:
7979
type: boolean
80-
description: rebuild-solana-contracts
80+
description: rebuild-solana-accounting-contracts
8181
required: true
8282
default: false
8383
push-docker:
@@ -112,7 +112,7 @@ jobs:
112112
rebuild_omni_executor: ${{ steps.env.outputs.rebuild_omni_executor }}
113113
rebuild_evm_accounting_contracts: ${{ steps.env.outputs.rebuild_evm_accounting_contracts }}
114114
rebuild_evm_aa_contracts: ${{ steps.env.outputs.rebuild_evm_aa_contracts }}
115-
rebuild_solana_contracts: ${{ steps.env.outputs.rebuild_solana_contracts }}
115+
rebuild_solana_accounting_contracts: ${{ steps.env.outputs.rebuild_solana_accounting_contracts }}
116116
push_docker: ${{ steps.env.outputs.push_docker }}
117117
run_parachain_test: ${{ steps.env.outputs.run_parachain_test }}
118118
run_identity_test: ${{ steps.env.outputs.run_identity_test }}
@@ -157,8 +157,8 @@ jobs:
157157
if [ "${{ github.event.inputs.rebuild-evm-aa-contracts }}" = "true" ] || [ "${{ steps.filter.outputs.evm_aa_contracts_src }}" = "true" ]; then
158158
rebuild_evm_aa_contracts=true
159159
fi
160-
if [ "${{ github.event.inputs.rebuild-solana-contracts }}" = "true" ] || [ "${{ steps.filter.outputs.solana_contracts_src }}" = "true" ]; then
161-
rebuild_solana_contracts=true
160+
if [ "${{ github.event.inputs.rebuild-solana-accounting-contracts }}" = "true" ] || [ "${{ steps.filter.outputs.solana_contracts_src }}" = "true" ]; then
161+
rebuild_solana_accounting_contracts=true
162162
fi
163163
if [ "${{ github.event.inputs.push-docker }}" = "true" ]; then
164164
push_docker=true
@@ -180,7 +180,7 @@ jobs:
180180
echo "rebuild_omni_executor=$rebuild_omni_executor" | tee -a $GITHUB_OUTPUT
181181
echo "rebuild_evm_accounting_contracts=$rebuild_evm_accounting_contracts" | tee -a $GITHUB_OUTPUT
182182
echo "rebuild_evm_aa_contracts=$rebuild_evm_aa_contracts" | tee -a $GITHUB_OUTPUT
183-
echo "rebuild_solana_contracts=$rebuild_solana_contracts" | tee -a $GITHUB_OUTPUT
183+
echo "rebuild_solana_accounting_contracts=$rebuild_solana_accounting_contracts" | tee -a $GITHUB_OUTPUT
184184
echo "push_docker=$push_docker" | tee -a $GITHUB_OUTPUT
185185
echo "run_parachain_test=$run_parachain_test" | tee -a $GITHUB_OUTPUT
186186
echo "run_identity_test=$run_identity_test" | tee -a $GITHUB_OUTPUT
@@ -685,13 +685,13 @@ jobs:
685685
run: |
686686
cd tee-worker/omni-executor/aa-contracts && forge test
687687
688-
solana-contracts-build-test:
689-
runs-on: ubuntu-24.04
688+
solana-accounting-contracts-build-test:
689+
runs-on: ubuntu-22.04
690690
needs:
691691
- fmt
692692
- set-condition
693693
- sequentialise
694-
if: needs.set-condition.outputs.rebuild_solana_contracts == 'true'
694+
if: needs.set-condition.outputs.rebuild_solana_accounting_contracts == 'true'
695695
steps:
696696
- uses: actions/checkout@v4
697697
with:

0 commit comments

Comments
 (0)