forked from yetanotherco/aligned_layer
-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (35 loc) · 1021 Bytes
/
test-merkle-tree.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: test-merkle-tree
on:
merge_group:
push:
branches: [main]
pull_request:
branches: ["*"]
paths:
- 'operator/merkle_tree/**'
- '.github/workflows/test-merkle-tree.yml'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Clear device space
run: |
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
sudo rm -rf /usr/local/lib/android
sudo rm -rf /opt/ghc
sudo rm -rf /usr/local/.ghcup
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
cache: false
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Test Merkle Tree Rust
run: make test_merkle_tree_rust_ffi
- name: Test Merkle Tree go bindings
run: make test_merkle_tree_go_bindings_linux