From 8f7064a3d533fd9bc5a92b31036bfd1f7e62ac3a Mon Sep 17 00:00:00 2001 From: srdtrk Date: Mon, 5 Aug 2024 03:21:18 +0800 Subject: [PATCH] ci: fix --- .github/workflows/e2e.yml | 4 +--- justfile | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 210be3d..c9787ad 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -66,8 +66,6 @@ jobs: ~/.sp1/bin/cargo-prove prove --version - name: Install just uses: extractions/setup-just@v2 - - name: Build SP1 Programs - run: just build-programs - name: Build operator run: just build-operator - name: "Install Bun" @@ -79,4 +77,4 @@ jobs: SP1_PRIVATE_KEY: ${{ secrets.SP1_PRIVATE_KEY }} run: | cd e2e/interchaintestv8 - go test -v -mod=readonly . -run=${{ matrix.test }} -timeout 40m + go test -v -mod=readonly . -run '^${{ matrix.test }}$' -timeout 40m diff --git a/justfile b/justfile index 86863e2..f19f476 100644 --- a/justfile +++ b/justfile @@ -89,7 +89,7 @@ test-e2e testname: @echo "Cleaning up the contracts cache and output directories..." -rm -r contracts/cache contracts/out # `-` is used to ignore the error if the directories do not exist @echo "Running {{testname}} test..." - cd e2e/interchaintestv8 && go test -v -run=TestWithSP1ICS07TendermintTestSuite/{{testname}} -timeout 40m + cd e2e/interchaintestv8 && go test -v -run "^TestWithSP1ICS07TendermintTestSuite/{{testname}}$" -timeout 40m # Lint the Rust, Solidity, and Go code using `cargo fmt`, `forge fmt`, and `golanci-lint` commands lint: