Merge pull request #12 from neeleshpoli/gpu-specs #12
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: Build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Build | |
run: rustup target add x86_64-pc-windows-msvc && cargo build --release --verbose --target x86_64-pc-windows-msvc | |
- name: Get Build Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: sys-probe-build-${{ github.run_number }} | |
path: target/x86_64-pc-windows-msvc/release/sys-probe.exe |