Skip to content

Commit b92c7ae

Browse files
committed
add explicit funding for stellar wallet
eventually `generate` will not fund by default, so do it manually + depend on the faucet to do so
1 parent 09dcf8a commit b92c7ae

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/test-stellar.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,11 @@ jobs:
132132
- name: Compile WASM contracts
133133
run: |
134134
stellar contract build --manifest-path=axelar-cgp-soroban/Cargo.toml
135+
135136
cd axelar-cgp-soroban
136137
./optimize.sh
137138
cd ..
139+
138140
WASM_DIR=axelar-cgp-soroban/target/wasm32-unknown-unknown/release
139141
echo "WASM_DIR=${WASM_DIR}" >> $GITHUB_ENV
140142
@@ -149,6 +151,9 @@ jobs:
149151
echo "STELLAR_PRIVATE_KEY=${STELLAR_PRIVATE_KEY}" >> $GITHUB_ENV
150152
echo "STELLAR_ADDRESS=${STELLAR_ADDRESS}" >> $GITHUB_ENV
151153
154+
- name: Fund Stellar wallet
155+
run: node stellar/faucet --recipient $STELLAR_ADDRESS
156+
152157
- name: Prepare .env
153158
run: |
154159
echo "PRIVATE_KEY = '$STELLAR_PRIVATE_KEY'" >> .env

0 commit comments

Comments
 (0)