From d80742f8bbe7758d0480ff2ec87f51296e274313 Mon Sep 17 00:00:00 2001 From: jjy Date: Tue, 5 Sep 2023 16:40:57 +0800 Subject: [PATCH 1/2] chore(ci): upgrade ibc-test ckb 0.107.0 -> 0.110.0 --- .github/workflows/ibc-test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ibc-test.yaml b/.github/workflows/ibc-test.yaml index d76b6fd74..27c432191 100644 --- a/.github/workflows/ibc-test.yaml +++ b/.github/workflows/ibc-test.yaml @@ -63,10 +63,10 @@ jobs: - name: Prepare CKB run: | if [ ! -f "/tmp/ckb.tar.gz" ]; then - curl -L https://github.com/nervosnetwork/ckb/releases/download/v0.107.0/ckb_v0.107.0_x86_64-unknown-linux-gnu.tar.gz -o /tmp/ckb.tar.gz + curl -L https://github.com/nervosnetwork/ckb/releases/download/v0.110.0/ckb_v0.110.0_x86_64-unknown-linux-gnu.tar.gz -o /tmp/ckb.tar.gz fi tar -zxf /tmp/ckb.tar.gz -C /tmp - echo "/tmp/ckb_v0.107.0_x86_64-unknown-linux-gnu" >> $GITHUB_PATH + echo "/tmp/ckb_v0.110.0_x86_64-unknown-linux-gnu" >> $GITHUB_PATH - name: Prepare Axon source run: git clone --recursive https://github.com/axonweb3/axon.git $SRC_DIR/axon && cd $SRC_DIR/axon && git checkout $AXON_COMMIT From 7a91cbf88b149bfb76aa79988ff672eef0cff260 Mon Sep 17 00:00:00 2001 From: jjy Date: Wed, 6 Sep 2023 11:25:23 +0800 Subject: [PATCH 2/2] fix(ci): only cache current project, otherwise the cache size is too large --- .github/workflows/ibc-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ibc-test.yaml b/.github/workflows/ibc-test.yaml index 27c432191..a0663a93d 100644 --- a/.github/workflows/ibc-test.yaml +++ b/.github/workflows/ibc-test.yaml @@ -74,7 +74,7 @@ jobs: - name: Rust cache uses: Swatinem/rust-cache@v2 with: - workspaces: ".\n${{env.SRC_DIR}}/axon" + workspaces: "." - name: Cache axon bin id: cache-axon-bin