Skip to content

build

build #5

Workflow file for this run

name: build
on: workflow_dispatch
jobs:
build:
name: build
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly-2024-02-03
targets: i686-pc-windows-msvc
- run: cargo build --target i686-pc-windows-msvc --release --config profile.release.debug=true --config 'profile.release.split-debuginfo="packed"' --config 'profile.release.strip="none"'
- run: cp giuroll.ini target/i686-pc-windows-msvc/release/
- uses: actions/upload-artifact@v4
with:
name: Giuroll binary
path: |
target/i686-pc-windows-msvc/release/giuroll.dll
target/i686-pc-windows-msvc/release/giuroll.ini
- uses: actions/upload-artifact@v4
with:
name: Giuroll symbols (PDB)
path: |
target/i686-pc-windows-msvc/release/giuroll.pdb