Support removal of secondary apps. #8
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: Android Camera Miri Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'camera_hub/**' | |
| - '.github/workflows/android-camera-miri-tests.yml' | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'camera_hub/**' | |
| - '.github/workflows/android-camera-miri-tests.yml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| test-android-camera-miri: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: camera_hub | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Rust toolchain | |
| uses: dtolnay/rust-toolchain@nightly | |
| with: | |
| components: miri | |
| - name: Cache Rust build | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| workspaces: camera_hub -> target | |
| - name: Run Miri tests | |
| run: cargo miri test --lib --features android --verbose -- --test-threads=1 |