Skip to content

Commit

Permalink
(ci) Do not run tests for the Android target.
Browse files Browse the repository at this point in the history
  • Loading branch information
RazrFalcon committed Jan 24, 2024
1 parent 77c49e3 commit 0559005
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ jobs:
- i686-unknown-linux-musl
- x86_64-unknown-linux-gnu
- x86_64-unknown-linux-musl
- x86_64-linux-android
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -87,6 +86,25 @@ jobs:
- name: Run tests
run: cargo test --all-features --target ${{ matrix.target }}

# Just make sure it builds. Not tests running.
test-android:
runs-on: ubuntu-latest
strategy:
matrix:
target:
- x86_64-linux-android
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install toolchain
uses: dtolnay/rust-toolchain@stable
with:
target: ${{ matrix.target }}

- name: Build
run: cargo build --all-features --target ${{ matrix.target }}

check-stub:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 0559005

Please sign in to comment.