qcow2-rs: fix devide-by-zero on i386 arch #75
Workflow file for this run
This file contains 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: qcow2-rs Build & test | |
on: | |
push: | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build_linux: | |
name: qcow2_rs ubuntu | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toolchain: | |
- stable | |
- 1.74.0 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: sudo apt-get update | |
- run: sudo apt-get install -y qemu-utils | |
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} | |
- run: rustup component add clippy | |
- run: cargo build --verbose | |
- run: cargo clippy --no-deps | |
- run: cargo test -- --nocapture | |
- run: cargo test -r | |
build_win: | |
name: qcow2_rs windows | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
toolchain: | |
- stable | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install qemu-img | |
run: | | |
$qemuZipPath = Join-Path $env:USERPROFILE 'qemu.zip' | |
Invoke-WebRequest -Uri 'https://cloudbase.it/downloads/qemu-img-win-x64-2_3_0.zip' -OutFile $qemuZipPath | |
Expand-Archive -Path $qemuZipPath -DestinationPath $env:USERPROFILE | |
- run: | | |
$env:PATH = "$env:USERPROFILE;$env:PATH" | |
qemu-img --help | |
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} | |
- run: rustup component add clippy | |
- run: cargo build --verbose | |
- run: cargo clippy --no-deps | |
- name: Rust test(debug) | |
run: | | |
$env:PATH = "$env:USERPROFILE;$env:PATH" | |
cargo test -- --nocapture | |
- name: Rust test(release) | |
run: | | |
$env:PATH = "$env:USERPROFILE;$env:PATH" | |
cargo test -r |