Skip to content

Commit af3ca29

Browse files
committed
Run integration tests on ARM
1 parent f4ddfc2 commit af3ca29

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.circleci/config.yml

+20
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,26 @@ jobs:
8282
- restore_cache:
8383
keys:
8484
- cargocache-v2-arm64-rust:1.54.0-{{ checksum "Cargo.lock" }}
85+
- run:
86+
name: "contracts/crypto-verify: integration-test"
87+
working_directory: ~/project/contracts/crypto-verify
88+
command: cargo wasm --locked && cargo integration-test --locked
89+
- run:
90+
name: "contracts/hackatom: integration-test"
91+
working_directory: ~/project/contracts/hackatom
92+
command: cargo wasm --locked && cargo integration-test --locked
93+
- run:
94+
name: "contracts/queue: integration-test"
95+
working_directory: ~/project/contracts/queue
96+
command: cargo wasm --locked && cargo integration-test --locked
97+
- run:
98+
name: "contracts/reflect: integration-test"
99+
working_directory: ~/project/contracts/reflect
100+
command: cargo wasm --locked && cargo integration-test --locked
101+
- run:
102+
name: "contracts/staking: integration-test"
103+
working_directory: ~/project/contracts/staking
104+
command: cargo wasm --locked && cargo integration-test --locked
85105
- run:
86106
name: "packages/crypto: test"
87107
working_directory: ~/project/packages/crypto

0 commit comments

Comments
 (0)