Skip to content

Spike/ffi

Spike/ffi #185

Workflow file for this run

name: Build
on:
push:
branches:
- master
- main
paths:
- "**.rs"
- "**.toml"
- "**.lock"
- ".github/workflows/*.yml"
pull_request:
branches:
- master
- main
paths:
- "**.rs"
- "**.toml"
- "**.lock"
- ".github/workflows/*.yml"
env:
CI_NIGHTLY_TOOLCHAIN: "nightly-x86_64-unknown-linux-gnu"
jobs:
format-build-test:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v2
- name: Install ffi toolchain (1.76.0)
run: |
rustup install 1.76.0-x86_64-unknown-linux-gnu
rustup component clippy rustfmt
- name: install libdrift_ffi_sys
run: |
mkdir local_libs && cd local_libs
curl -L https://github.com/user-attachments/files/17126152/libdrift_ffi_sys.so.zip > ffi.zip
unzip ffi.zip
- name: Format
run: cargo fmt --all -- --check
- name: Build
run: cargo check
env:
CARGO_DRIFT_FFI_PATH: "${{ github.workspace }}/local_libs"
- name: Clippy
uses: giraffate/clippy-action@v1
with:
reporter: 'github-pr-review'
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Test
run: |
echo $CARGO_DRIFT_FFI_PATH
ls -al $CARGO_DRIFT_FFI_PATH
cargo test --no-fail-fast -- --nocapture
env:
RUST_LOG: info
TEST_PRIVATE_KEY: ${{ secrets.TEST_PRIVATE_KEY }}
CARGO_DRIFT_FFI_PATH: "${{ github.workspace }}/local_libs"