Skip to content
This repository has been archived by the owner on Nov 29, 2024. It is now read-only.

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
srdtrk committed Aug 4, 2024
1 parent 648d331 commit 8f7064a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 8f7064a

Please sign in to comment.