Skip to content

Commit

Permalink
Add PDBReSym build
Browse files Browse the repository at this point in the history
  • Loading branch information
stevemk14ebr authored Apr 10, 2024
1 parent 3aab9b9 commit af73d55
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ jobs:
cd Rust/Driver
cargo build
cargo build --release
- name: Build PDBReSym
run: |
cd Rust/PDBReSym
cargo build
cargo build --release
- name: Zip Build
run: |
cd Rust/Driver
Expand All @@ -63,8 +68,14 @@ jobs:
cd ../
Compress-Archive -DestinationPath STrace.zip -Path Rust, C, install -CompressionLevel Fastest
- name: Release
Compress-Archive -DestinationPath PDBReSym.zip -Path Rust\PDBReSym\target\release\PDBReSym.exe -CompressionLevel Fastest
- name: Release STrace
uses: softprops/[email protected]
if: startsWith(github.ref, 'refs/tags/')
with:
files: STrace.zip
- name: Release PDBReSym
uses: softprops/[email protected]
if: startsWith(github.ref, 'refs/tags/')
with:
files: PDBReSym.zip

0 comments on commit af73d55

Please sign in to comment.