mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-12-22 19:31:35 +00:00
Split checks
This commit is contained in:
parent
41357d1739
commit
d56ca5eca5
1 changed files with 26 additions and 8 deletions
|
@ -12,6 +12,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- run: |
|
- run: |
|
||||||
git clone ${{ env.github_server_url }}/${{ env.github_repository }} .
|
git clone ${{ env.github_server_url }}/${{ env.github_repository }} .
|
||||||
|
git checkout ${{ env.github_sha }}
|
||||||
rustup component add clippy
|
rustup component add clippy
|
||||||
cargo clippy --no-default-features -- -D warnings
|
cargo clippy --no-default-features -- -D warnings
|
||||||
cargo clippy --no-default-features --features io-uring -- -D warnings
|
cargo clippy --no-default-features --features io-uring -- -D warnings
|
||||||
|
@ -23,18 +24,35 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- run: |
|
- run: |
|
||||||
git clone ${{ env.github_server_url }}/${{ env.github_repository }} .
|
git clone ${{ env.github_server_url }}/${{ env.github_repository }} .
|
||||||
|
git checkout ${{ env.github_sha }}
|
||||||
cargo test
|
cargo test
|
||||||
|
|
||||||
checks:
|
check-amd64:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
- tag: latest-linux-amd64
|
|
||||||
- tag: latest-linux-arm32v7
|
|
||||||
- tag: latest-linux-arm64v8
|
|
||||||
container:
|
container:
|
||||||
image: docker.io/asonix/rust-builder:${{ matrix.tag }}
|
image: docker.io/asonix/rust-builder:latest-linux-amd64
|
||||||
steps:
|
steps:
|
||||||
- run: |
|
- run: |
|
||||||
git clone ${{ env.github_server_url }}/${{ env.github_repository }} .
|
git clone ${{ env.github_server_url }}/${{ env.github_repository }} .
|
||||||
cargo check
|
git checkout ${{ env.github_sha }}
|
||||||
|
cargo check --target x86_64-unknown-linux-musl
|
||||||
|
|
||||||
|
check-arm32v7:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: docker.io/asonix/rust-builder:latest-linux-arm32v7
|
||||||
|
steps:
|
||||||
|
- run: |
|
||||||
|
git clone ${{ env.github_server_url }}/${{ env.github_repository }} .
|
||||||
|
git checkout ${{ env.github_sha }}
|
||||||
|
cargo check --target armv7-unkown-linux-musleabihf
|
||||||
|
|
||||||
|
check-arm64v8:
|
||||||
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: docker.io/asonix/rust-builder:latest-linux-arm64v8
|
||||||
|
steps:
|
||||||
|
- run: |
|
||||||
|
git clone ${{ env.github_server_url }}/${{ env.github_repository }} .
|
||||||
|
git checkout ${{ env.github_sha }}
|
||||||
|
cargo check --target aarch64-unkown-linux-musl
|
||||||
|
|
Loading…
Reference in a new issue