Skip to content

Commit

Permalink
Add test-system to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pinosu committed May 18, 2023
1 parent 7c98f53 commit 2d18a29
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,28 @@ jobs:
- "profiles/*"
- store_artifacts:
path: /tmp/logs

test-system:
executor: golang
parallelism: 1
steps:
- attach_workspace:
at: /tmp/workspace
- checkout
- restore_cache:
keys:
- go-mod-v1-{{ checksum "go.sum" }}
- run:
name: Build and run system tests
command: make test-system
- store_artifacts:
path: /go/src/github.com/CosmWasm/wasmd/testnet/node0.out
- store_artifacts:
path: /go/src/github.com/CosmWasm/wasmd/testnet/node1.out
- store_artifacts:
path: /go/src/github.com/CosmWasm/wasmd/testnet/node2.out
- store_artifacts:
path: /go/src/github.com/CosmWasm/wasmd/testnet/node3.out

benchmark:
executor: golang
Expand Down Expand Up @@ -232,6 +254,9 @@ workflows:
- upload-coverage:
requires:
- test-cover
- test-system:
requires:
- test-cover
- benchmark:
requires:
- test-cover
Expand Down

0 comments on commit 2d18a29

Please sign in to comment.