|
@@ -56,8 +56,6 @@ env:
|
|
|
ELECTRON_ARTIFACTS_BLOB_STORAGE: ${{ secrets.ELECTRON_ARTIFACTS_BLOB_STORAGE }}
|
|
|
ELECTRON_RBE_JWT: ${{ secrets.ELECTRON_RBE_JWT }}
|
|
|
ELECTRON_GITHUB_TOKEN: ${{ secrets.ELECTRON_GITHUB_TOKEN }}
|
|
|
- # Disable pre-compiled headers to reduce out size - only useful for rebuilds
|
|
|
- GN_BUILDFLAG_ARGS: 'enable_precompiled_headers=false'
|
|
|
GCLIENT_EXTRA_ARGS: ${{ inputs.target-platform == 'macos' && '--custom-var=checkout_mac=True --custom-var=host_os=mac' || '--custom-var=checkout_arm=True --custom-var=checkout_arm64=True' }}
|
|
|
# Only disable this in the Asan build
|
|
|
CHECK_DIST_MANIFEST: true
|
|
@@ -97,7 +95,11 @@ jobs:
|
|
|
if: ${{ inputs.target-platform == 'linux' }}
|
|
|
run: |
|
|
|
if [ "${{ inputs.target-arch }}" = "arm" ]; then
|
|
|
- GN_EXTRA_ARGS='target_cpu="arm" build_tflite_with_xnnpack=false'
|
|
|
+ if [ "${{ inputs.is-release }}" = true ]; then
|
|
|
+ GN_EXTRA_ARGS='target_cpu="arm" build_tflite_with_xnnpack=false symbol_level=1'
|
|
|
+ else
|
|
|
+ GN_EXTRA_ARGS='target_cpu="arm" build_tflite_with_xnnpack=false'
|
|
|
+ fi
|
|
|
elif [ "${{ inputs.target-arch }}" = "arm64" ]; then
|
|
|
GN_EXTRA_ARGS='target_cpu="arm64" fatal_linker_warnings=false enable_linux_installer=false'
|
|
|
fi
|