Skip to content

Commit

Permalink
Better coverage in github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
eminence committed Jul 7, 2022
1 parent aaf5859 commit 2d62aaa
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,25 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: ${{ matrix.toolchain }}
- name: Install toolchains (aarch64)
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
target: aarch64-linux-android

- uses: actions-rs/cargo@v1
with:
command: build
toolchain: ${{ matrix.toolchain }}

- uses: actions-rs/cargo@v1
with:
command: build
toolchain: ${{ matrix.toolchain }}

- name: cargo build (aarch64)
run: cargo +${{ matrix.toolchain }} check --target aarch64-linux-android
if: contains(matrix.os, 'ubuntu')
- name: cargo build (i686)
run: cargo +${{ matrix.toolchain }} check --target i686-unknown-linux-gnu

0 comments on commit 2d62aaa

Please sign in to comment.