TSify identity (#1735) #3326
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 iOS/Android Bindings | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
# only run tests when related changes are made | |
paths: | |
- ".github/workflows/test-ffi-bindings.yml" | |
- "bindings_ffi/**" | |
- "dev/**" | |
- "mls_validation_service/**" | |
- "xmtp_api_grpc/**" | |
- "xmtp_cryptography/**" | |
- "xmtp_id/**" | |
- "xmtp_mls/**" | |
- "xmtp_proto/**" | |
- "Cargo.toml" | |
- "Cargo.lock" | |
- ".cargo/**" | |
- "rust-toolchain.toml" | |
env: | |
CARGO_TERM_COLOR: always | |
CARGO_INCREMENTAL: 0 | |
RUSTFLAGS: --cfg tracing_unstable | |
CARGO_PROFILE_TEST_DEBUG: 0 | |
jobs: | |
test: | |
name: Test | |
runs-on: warp-ubuntu-latest-x64-16x | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Update rust toolchains | |
run: rustup update | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: | | |
. | |
bindings_ffi | |
- name: Start Docker containers | |
run: dev/up | |
- name: Setup Kotlin | |
run: | | |
sudo apt update -q | |
sudo apt install -y openjdk-11-jdk | |
sudo snap install --classic kotlin | |
cd bindings_ffi | |
make install-jar | |
echo "$(make echo-jar | tail -n 1 | sed -e 's/\.*export //')" >> "$GITHUB_ENV" | |
- name: Install nextest | |
uses: taiki-e/install-action@nextest | |
- name: Run cargo nextest on FFI bindings | |
run: | | |
export CLASSPATH="${{ env.CLASSPATH }}" | |
cargo nextest --config-file ".cargo/nextest.toml" run --manifest-path bindings_ffi/Cargo.toml --test-threads 2 |