From 2d7156eafbaf7c4ce87438560eff0eddb61c3dbf Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Thu, 30 Nov 2023 12:22:03 -0800 Subject: [PATCH] Update bcny-ci.yml Clean up the installation rules and use the CMake installation to ensure that we get all the content that we are in need of. --- .github/workflows/bcny-ci.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/bcny-ci.yml b/.github/workflows/bcny-ci.yml index 833637693..916bb2dd3 100644 --- a/.github/workflows/bcny-ci.yml +++ b/.github/workflows/bcny-ci.yml @@ -52,19 +52,9 @@ jobs: 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\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\ + run: cmake --install out --config RelWithDebInfo --prefix sentry-native-development/usr - uses: actions/upload-artifact@v3 with: name: sentry-native-windows-${{ matrix.arch }} - path: sentry-native + path: sentry-native-development