Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 19 additions & 4 deletions contracts/near/.buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
steps:
- command: |
source ~/.cargo/env
rustup default stable
rustup install 1.86.0
rustup default 1.86.0
rustup target add wasm32-unknown-unknown
ci/test_verify_eth_headers.sh

label: "verify eth headers"
Expand All @@ -10,7 +12,9 @@ steps:

- command: |
source ~/.cargo/env
rustup default stable
rustup install 1.86.0
rustup default 1.86.0
rustup target add wasm32-unknown-unknown
ci/test_verify_eth_proofs.sh

label: "verify eth proofs"
Expand All @@ -19,7 +23,9 @@ steps:

- command: |
source ~/.cargo/env
rustup default stable
rustup install 1.86.0
rustup default 1.86.0
rustup target add wasm32-unknown-unknown
eth-client/test.sh

label: "eth-client tests"
Expand All @@ -28,14 +34,20 @@ steps:

- command: |
source ~/.cargo/env
rustup default stable
rustup install 1.86.0
rustup default 1.86.0
rustup target add wasm32-unknown-unknown
eth-prover/test.sh

label: "eth-prover tests"
agents:
- "queue=medium"

- command: |
source ~/.cargo/env
rustup install 1.86.0
rustup default 1.86.0
rustup target add wasm32-unknown-unknown
./build_all.sh
changed_files=$$(git status --porcelain --untracked-files=no | wc -l)
if [ $$changed_files -gt 0 ]; then
Expand All @@ -49,6 +61,9 @@ steps:

- command: |
source ~/.cargo/env
rustup install 1.86.0
rustup default 1.86.0
rustup target add wasm32-unknown-unknown
cargo test

label: "rust contracts test"
Expand Down
Loading
Loading