feat!: native go sidecar client, remove DAS stubs #124
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: "Check PR is ready for merge" | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: "Lint" | |
runs-on: | |
group: ubuntu-22.04-8core | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: "recursive" | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- uses: Swatinem/rust-cache@v2 | |
- name: 📜 Lint code format | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --all -- --check | |
test-rust: | |
name: "Test Rust" | |
runs-on: | |
group: ubuntu-22.04-16core | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: "recursive" | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- uses: Swatinem/rust-cache@v2 | |
- name: "Install cargo-nextest" | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: nextest | |
- name: "Build contracts" | |
run: make build-contracts | |
- name: "Ensure target dir exists" | |
run: mkdir -p target/near/near_da_blob_store | |
- name: "Run tests" | |
run: TEST_NEAR_ACCOUNT=${{ secrets.TEST_NEAR_ACCOUNT }} TEST_NEAR_SECRET=${{ secrets.TEST_NEAR_SECRET }} cargo nextest run --workspace --locked | |
# Nice to have, turned off for now | |
# - name: "Check for bloat" | |
# uses: orf/cargo-bloat-action@v1 | |
# with: | |
# token: ${{ secrets.CEJAS_PERSONAL_ACCESS_TOKEN }} | |
test-go: | |
name: "Test gopkg" | |
runs-on: | |
group: ubuntu-22.04-8core | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: "recursive" | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: "Ubuntu is missing libm :<" | |
run: sudo apt-get update && sudo apt-get install -y build-essential | |
- name: "Install FFI library" | |
run: make da-rpc-sys | |
- run: sudo cp ./gopkg/da-rpc/lib/* /usr/local/lib | |
- name: "Test gopkg" | |
working-directory: ./gopkg/da-rpc | |
run: go test -v | |