From 659cbd9dcae9d4f56e9bc3740ddc368d9526e137 Mon Sep 17 00:00:00 2001 From: RodrigoHolztrattner Date: Mon, 27 May 2019 11:20:17 -0700 Subject: [PATCH 1/6] Add script and appveyor commands --- appveyor.yml | 7 +++++++ tools/scripts/run-sentry-cli.cmd | 11 +++++++++++ 2 files changed, 18 insertions(+) create mode 100644 tools/scripts/run-sentry-cli.cmd diff --git a/appveyor.yml b/appveyor.yml index 3aa5c1b..58f3cf9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -38,6 +38,13 @@ 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 diff --git a/tools/scripts/run-sentry-cli.cmd b/tools/scripts/run-sentry-cli.cmd new file mode 100644 index 0000000..9b74581 --- /dev/null +++ b/tools/scripts/run-sentry-cli.cmd @@ -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\" \ No newline at end of file From 662d888bf590ed699aaec842907508f45b535709 Mon Sep 17 00:00:00 2001 From: RodrigoHolztrattner Date: Mon, 27 May 2019 11:34:42 -0700 Subject: [PATCH 2/6] Force push --- tools/scripts/run-sentry-cli.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/scripts/run-sentry-cli.cmd b/tools/scripts/run-sentry-cli.cmd index 9b74581..38d55d5 100644 --- a/tools/scripts/run-sentry-cli.cmd +++ b/tools/scripts/run-sentry-cli.cmd @@ -8,4 +8,4 @@ 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\" \ No newline at end of file +"sentry-cli.exe" --auth-token "d6526d57bb84421eaaeff7983639897de9a0c51ab5274cf4b89d3ad3944d3cbd" upload-dif --org streamlabs-obs --project obs-client "syms\" From ea8c6d84744b312d37eabab798deeb6850446084 Mon Sep 17 00:00:00 2001 From: Kamyar Allahverdi Date: Mon, 27 May 2019 11:43:52 -0700 Subject: [PATCH 3/6] Dummy commit --- appveyor.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 58f3cf9..e2c4d8c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -48,7 +48,6 @@ before_deploy: test_script: - cmd: RelWithDebInfo\facemask-plugin-test.exe - deploy: - provider: S3 access_key_id: From 1a04ad363f86020c2fa0cd5674283b4156fc20b6 Mon Sep 17 00:00:00 2001 From: RodrigoHolztrattner Date: Tue, 28 May 2019 12:23:15 -0700 Subject: [PATCH 4/6] Dummy commit --- tools/scripts/run-sentry-cli.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/scripts/run-sentry-cli.cmd b/tools/scripts/run-sentry-cli.cmd index 38d55d5..9b74581 100644 --- a/tools/scripts/run-sentry-cli.cmd +++ b/tools/scripts/run-sentry-cli.cmd @@ -8,4 +8,4 @@ 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\" +"sentry-cli.exe" --auth-token "d6526d57bb84421eaaeff7983639897de9a0c51ab5274cf4b89d3ad3944d3cbd" upload-dif --org streamlabs-obs --project obs-client "syms\" \ No newline at end of file From 2fa82b4a8f933fb7f90783cf52b414812c512a14 Mon Sep 17 00:00:00 2001 From: RodrigoHolztrattner Date: Tue, 28 May 2019 12:25:38 -0700 Subject: [PATCH 5/6] Dummy Commit --- plugin/base64.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/plugin/base64.cpp b/plugin/base64.cpp index 2450834..a2f0431 100644 --- a/plugin/base64.cpp +++ b/plugin/base64.cpp @@ -202,4 +202,3 @@ void zlib_decode(const std::vector& decoded, uint8_t* outbuf) { // yield ::Sleep(0); } - From d9491e55913a10b405fa151bc159bc7193f395ac Mon Sep 17 00:00:00 2001 From: RodrigoHolztrattner Date: Tue, 28 May 2019 12:27:03 -0700 Subject: [PATCH 6/6] Dummy Commit --- smll/DetectionResults.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/smll/DetectionResults.cpp b/smll/DetectionResults.cpp index 261a46e..fda0610 100644 --- a/smll/DetectionResults.cpp +++ b/smll/DetectionResults.cpp @@ -408,7 +408,6 @@ namespace smll { } } - } void DetectionResult::InitKalmanFilter() {