Skip to content

Add ability to examine exe header info, add command to set ASLR bit #17

Add ability to examine exe header info, add command to set ASLR bit

Add ability to examine exe header info, add command to set ASLR bit #17

Workflow file for this run

name: Build
on:
push:
pull_request:
permissions:
contents: read
jobs:
build:
name: Build (Windows)
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Format check
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Build (release)
run: cargo build --release --all-features --verbose
- name: Upload binaries
uses: actions/upload-artifact@v4
with:
name: binaries-windows
path: |
target/x86_64-pc-windows-msvc/release/*.exe
if-no-files-found: error