Merge queue config #56
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test-risc-zero-old | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: ["*"] | |
paths: | |
- "operator/risc_zero_old/**" | |
- ".github/workflows/test-risc-zero-old.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 Old Risc Zero Rust | |
run: make test_risc_zero_rust_ffi_old | |
- name: Test Old Risc Zero go bindings | |
run: make test_risc_zero_go_bindings_linux_old |