From 90e96dbd166b321238eea4aeb7d112f8c1088e3b Mon Sep 17 00:00:00 2001 From: Vid Kersic Date: Sat, 28 Oct 2023 15:45:24 +0200 Subject: [PATCH] fix: ci --- .github/workflows/ci.yml | 2 +- bundler-spec-tests/launcher.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8476afdd..b7332527 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: diff --git a/bundler-spec-tests/launcher.sh b/bundler-spec-tests/launcher.sh index d51e26e5..36dfe3be 100755 --- a/bundler-spec-tests/launcher.sh +++ b/bundler-spec-tests/launcher.sh @@ -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 \ @@ -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 ;; *)