Skip to content

Commit

Permalink
Add GitHub Action to build giuroll
Browse files Browse the repository at this point in the history
  • Loading branch information
Hagb committed Jun 7, 2024
1 parent e89a68a commit 5e777a1
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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

0 comments on commit 5e777a1

Please sign in to comment.