Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Vid201 committed Oct 28, 2023
1 parent eff6c29 commit 7c949e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:

- run: pip install jq yq

- run: pdm install && git submodule update --init --recursive && cd @account-abstraction && git fetch --all --tags && git checkout tags/v0.6.0 -b v0.6.0 && yarn && yarn compile && cd ../spec && yarn && yarn build
- run: pdm install && git submodule update --init --recursive && cd @account-abstraction && git fetch --all --tags && git checkout v0.6.0 && yarn && yarn compile && cd ../spec && yarn && yarn build && cd ..

- uses: actions/download-artifact@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions bundler-spec-tests/launcher.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ case $1 in

start)
docker-compose up -d
sleep 2
silius bundler \
--verbosity 4 \
--eth-client-address ws://127.0.0.1:8546 \
--eth-client-address http://127.0.0.1:8545 \
--mnemonic-file keys/0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 \
--beneficiary 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 \
--entry-points 0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789 \
Expand All @@ -26,11 +25,12 @@ case $1 in
--ws.port 3001 \
--ws.api eth,debug,web3 & echo $! > bundler.pid
popd
cd @account-abstraction && yarn deploy --network localhost
cd @account-abstraction && yarn deploy --network localhost
;;
stop)
docker-compose down
kill $(cat bundler.pid)
rm bundler.pid
;;

*)
Expand Down

0 comments on commit 7c949e2

Please sign in to comment.