From 94f2722fa38a6638bf95cdd81fc03adf097e1ad6 Mon Sep 17 00:00:00 2001 From: Keeley Hammond Date: Wed, 4 Sep 2024 17:18:57 +0100 Subject: [PATCH] build: don't run symbol generation on PS (#43554) fix: don't run symbol generation on PS --- appveyor-woa.yml | 2 +- appveyor.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor-woa.yml b/appveyor-woa.yml index 18449884f4..39c61f327f 100644 --- a/appveyor-woa.yml +++ b/appveyor-woa.yml @@ -174,8 +174,8 @@ for: if ($env:GN_CONFIG -eq 'release') { # Needed for msdia140.dll on 64-bit windows $env:Path += ";$pwd\third_party\llvm-build\Release+Asserts\bin" - autoninja -C out/Default electron:electron_symbols } + - if "%GN_CONFIG%"=="release" ( autoninja -C out/Default electron:electron_symbols ) - ps: >- if ($env:GN_CONFIG -eq 'release') { python3 electron\script\zip-symbols.py diff --git a/appveyor.yml b/appveyor.yml index 4d85752b66..d92636c360 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -171,8 +171,8 @@ for: if ($env:GN_CONFIG -eq 'release') { # Needed for msdia140.dll on 64-bit windows $env:Path += ";$pwd\third_party\llvm-build\Release+Asserts\bin" - autoninja -C out/Default electron:electron_symbols } + - if "%GN_CONFIG%"=="release" ( autoninja -C out/Default electron:electron_symbols ) - ps: >- if ($env:GN_CONFIG -eq 'release') { python3 electron\script\zip-symbols.py