Skip to content

Commit

Permalink
Update bcny-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
compnerd authored Nov 28, 2023
1 parent 54616a5 commit 2d34a40
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/bcny-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,18 +47,22 @@ jobs:
-G "Visual Studio 17 2022" `
-A ${{ matrix.platform }} `
-D CMAKE_SYSTEM_NAME=Windows `
-D CMAKE_SYSTEM_PROCESSOR=${{ matrix.arch }} `
-D CMAKE_SYSTEM_PROCESSOR=${{ matrix.arch }}
- name: Build Sentry
run: cmake --build out --config Release
run: cmake --build out --config RelWithDebInfo

- name: Stage Sentry
run: |
New-Item -ItemType Directory -Path sentry-native\bin\win64 -Force | Out-Null
New-Item -ItemType Directory -Path sentry-native\include -Force | Out-Null
New-Item -ItemType Directory -Path sentry-native\lib\win64 -Force | Out-Null
Copy-Item include\sentry.h sentry-native\include\
Copy-Item out\Release\sentry.dll sentry-native\bin\win64\
Copy-Item out\Release\sentry.lib sentry-native\lib\win64\
Copy-Item out\RelWithDebInfo\sentry.dll sentry-native\bin\win64\
Copy-Item out\RelWithDebInfo\sentry.pdb sentry-native\bin\win64\
Copy-Item out\crashpad_build\handler\RelWithDebInfo\crashpad_wer.dll sentry-native\bin\win64\
Copy-Item out\crashpad_build\handler\RelWithDebInfo\crashpad_wer.pdb sentry-native\bin\win64\
Copy-Item out\crashpad_build\handler\RelWithDebInfo\crashpad_handler.exe sentry-native\bin\win64\
Copy-Item out\RelWithDebInfo\sentry.lib sentry-native\lib\win64\
- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 2d34a40

Please sign in to comment.