Feat/android jni usb layer #92
Workflow file for this run
This file contains hidden or 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: Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| node-version: [20.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v2 | |
| with: | |
| version: 9.15.4 | |
| - name: Get pnpm store directory | |
| shell: bash | |
| run: | | |
| echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
| - name: Setup pnpm cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ env.STORE_PATH }} | |
| key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pnpm-store- | |
| - name: Cache node_modules | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| node_modules | |
| examples/*/node_modules | |
| key: ${{ runner.os }}-node-modules-${{ hashFiles('**/pnpm-lock.yaml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node-modules- | |
| - name: Cache Rust dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cargo/registry | |
| ~/.cargo/git | |
| ~/.cargo/bin | |
| target | |
| examples/*/target | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-cargo- | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: rustfmt, clippy | |
| - name: Install cargo-nextest | |
| run: cargo install cargo-nextest --locked --force | |
| - name: Check android-usb-serial (Android target) | |
| run: cargo check -p android-usb-serial --target aarch64-linux-android | |
| - name: Check plugin (Android target) | |
| run: cargo check -p tauri-plugin-serialplugin --target aarch64-linux-android | |
| - name: Golden parity (host) | |
| run: cargo test -p android-usb-serial --features fake-transport | |
| - name: Clippy android-usb-serial (Android target) | |
| run: cargo clippy -p android-usb-serial --target aarch64-linux-android -- -D warnings | |
| - name: Robolectric (Android module) | |
| if: matrix.os == 'ubuntu-latest' | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y openjdk-17-jdk | |
| cd android && ./gradlew test | |
| - name: Install system dependencies (Ubuntu) | |
| if: matrix.os == 'ubuntu-latest' | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y pkg-config libglib2.0-dev libudev-dev libgtk-3-dev libgdk-pixbuf2.0-dev libwebkit2gtk-4.1-dev | |
| - name: Install system dependencies (macOS) | |
| if: matrix.os == 'macos-latest' | |
| run: | | |
| brew install pkg-config | |
| - name: Install dependencies | |
| run: | | |
| pnpm install | |
| - name: Rustfmt | |
| run: cargo fmt --all -- --check | |
| - name: Clippy | |
| run: cargo clippy --workspace --all-targets -- -D warnings | |
| - name: TypeScript check | |
| run: pnpm check | |
| - name: Build JS | |
| run: pnpm build | |
| - name: Run Rust tests | |
| env: | |
| NEXTEST_EXPERIMENTAL_LIBTEST_JSON: 1 | |
| run: cargo nextest run --workspace --message-format=libtest-json-plus > test-results.jsonx | |
| - name: Run JavaScript tests | |
| run: pnpm test | |
| - name: Upload test results | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results-${{ matrix.os }}-${{ matrix.node-version }} | |
| path: | | |
| coverage/ | |
| test-results/ | |
| test-results.jsonx | |
| if-no-files-found: warn | |
| android-integration: | |
| runs-on: macos-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js 20.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v2 | |
| with: | |
| version: 9.15.4 | |
| - name: Setup Java 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| targets: aarch64-linux-android,x86_64-linux-android | |
| - name: Setup Android SDK | |
| uses: android-actions/setup-android@v3 | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Build JS | |
| run: pnpm build | |
| - name: Android integration tests (emulator) | |
| uses: reactivecircus/android-emulator-runner@v2 | |
| with: | |
| api-level: 34 | |
| arch: x86_64 | |
| profile: pixel_6 | |
| script: | | |
| cd examples/serialport-test | |
| pnpm android:integration-test | |
| - name: Upload androidTest results | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: android-integration-test-results | |
| path: | | |
| examples/serialport-test/src-tauri/gen/android/app/build/reports/androidTests/ | |
| examples/serialport-test/src-tauri/gen/android/app/build/outputs/androidTest-results/ | |
| if-no-files-found: warn | |
| windows: | |
| runs-on: windows-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: rustfmt, clippy | |
| - name: Rustfmt | |
| run: cargo fmt --all -- --check | |
| - name: Clippy (Windows target) | |
| run: cargo clippy --all-targets -- -D warnings | |
| - name: Cargo check Windows | |
| run: cargo check --target x86_64-pc-windows-msvc | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v2 | |
| with: | |
| version: 9.15.4 | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: TypeScript check | |
| run: pnpm check | |
| - name: Run JavaScript tests | |
| run: pnpm test |