Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,16 @@ before_deploy:
- tar cvaf "%SignedArtifact%.tar.gz" "distribute"
- ps: Push-AppveyorArtifact "$env:SignedArtifact.tar.gz"

- appveyor DownloadFile "https://s3.amazonaws.com/getsentry-builds/getsentry/breakpad-tools/windows/breakpad-tools-windows.zip" -FileName "breakpadtools.zip"
- 7z x "breakpadtools.zip" > nul
- appveyor DownloadFile "https://github.com/getsentry/sentry-cli/releases/download/1.37.3/sentry-cli-Windows-i686.exe" -FileName "sentry-cli.exe"

# Transform our .pdb files into .sym and upload each of them to sentry using sentry-cli
- cmd: tools\scripts\run-sentry-cli.cmd

test_script:
- cmd: RelWithDebInfo\facemask-plugin-test.exe


deploy:
- provider: S3
access_key_id:
Expand Down
1 change: 0 additions & 1 deletion plugin/base64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,4 +202,3 @@ void zlib_decode(const std::vector<uint8_t>& decoded, uint8_t* outbuf) {
// yield
::Sleep(0);
}

1 change: 0 additions & 1 deletion smll/DetectionResults.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,6 @@ namespace smll {
}

}

}

void DetectionResult::InitKalmanFilter() {
Expand Down
11 changes: 11 additions & 0 deletions tools/scripts/run-sentry-cli.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
md syms

rem -> copy all .pdb files from plugins dir
cd "\projects\source\build\distribute\slobs\RelWithDebInfo\data\obs-plugins\"
for /f %%f in ('dir /b "\projects\source\build\distribute\slobs\RelWithDebInfo\data\obs-plugins\*.pdb"') do "\projects\source\dump_syms.exe" %%f > "\projects\source\syms\%%~nf.sym"

cd "\projects\source\"

"sentry-cli.exe" --auth-token "d6526d57bb84421eaaeff7983639897de9a0c51ab5274cf4b89d3ad3944d3cbd" upload-dif --org streamlabs-obs --project obs-server "syms\"
"sentry-cli.exe" --auth-token "d6526d57bb84421eaaeff7983639897de9a0c51ab5274cf4b89d3ad3944d3cbd" upload-dif --org streamlabs-obs --project obs-server-preview "syms\"
"sentry-cli.exe" --auth-token "d6526d57bb84421eaaeff7983639897de9a0c51ab5274cf4b89d3ad3944d3cbd" upload-dif --org streamlabs-obs --project obs-client "syms\"