Merge pull request #3 from ublk-org/next #56
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: Rust project - latest | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toolchain: | |
- stable | |
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: cargo build --verbose | |
- run: cargo test -- --nocapture | |
- run: cargo test -r | |
build_win: | |
name: Rust project - latest | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
toolchain: | |
- stable | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install Chocolatey | |
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: cargo build --verbose | |
- 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 |