Skip to content

Commit

Permalink
add merkle_tree bindings to ci
Browse files Browse the repository at this point in the history
  • Loading branch information
PatStiles committed Aug 21, 2024
1 parent d0566a6 commit ce4486e
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/test-merkle-tree.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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

0 comments on commit ce4486e

Please sign in to comment.