Skip to content

Add additional tools to the GitHub release #126

Add additional tools to the GitHub release

Add additional tools to the GitHub release #126

Workflow file for this run

name: Build
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Build
run: cargo build --release
- name: Build bcryptprimitives.rs shim
run: rustc shims/bcryptprimitives.rs -Copt-level=3 -Clto=fat --out-dir target/release