Skip to content

Update winreg requirement from 0.50 to 0.51 #70

Update winreg requirement from 0.50 to 0.51

Update winreg requirement from 0.50 to 0.51 #70

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
tags:
- "v*.*.*"
jobs:
style:
name: Check Style
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
profile: minimal
override: true
- name: cargo fmt -- --check
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
build:
name: Build
runs-on: windows-latest
strategy:
matrix:
include:
- target: i686-pc-windows-msvc
suffix: x86
- target: x86_64-pc-windows-msvc
suffix: x64
- target: aarch64-pc-windows-msvc
suffix: arm64
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
target: ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2
- name: Build target
uses: actions-rs/cargo@v1
with:
command: build
args: --release --target ${{ matrix.target }}
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: rd_pipe-${{ matrix.suffix }}
path: |
./target/${{ matrix.target }}/release/*.dll*
./target/${{ matrix.target }}/release/*.pdb