devops: fix chromium build with symbols (#8550)
This commit is contained in:
parent
933f3f5f77
commit
610067f61c
|
|
@ -382,12 +382,12 @@ function generate_and_upload_browser_build {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "-- building"
|
echo "-- building"
|
||||||
if ! ./$BROWSER_NAME/build.sh "$EXTRA_BUILD_ARGS"; then
|
if ! ./$BROWSER_NAME/build.sh $EXTRA_BUILD_ARGS; then
|
||||||
return 22
|
return 22
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "-- archiving to $ZIP_PATH"
|
echo "-- archiving to $ZIP_PATH"
|
||||||
if ! ./$BROWSER_NAME/archive.sh "$ZIP_PATH" "$EXTRA_ARCHIVE_ARGS"; then
|
if ! ./$BROWSER_NAME/archive.sh "$ZIP_PATH" $EXTRA_ARCHIVE_ARGS; then
|
||||||
return 23
|
return 23
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -81,6 +81,10 @@ compile_chromium() {
|
||||||
echo "goma_dir = \"${PLAYWRIGHT_GOMA_PATH}\"" >> ./out/Default/args.gn
|
echo "goma_dir = \"${PLAYWRIGHT_GOMA_PATH}\"" >> ./out/Default/args.gn
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo "===== args.gn ====="
|
||||||
|
cat ./out/Default/args.gn
|
||||||
|
echo "===== ======= ====="
|
||||||
|
|
||||||
if [[ $1 == "--compile-win"* ]]; then
|
if [[ $1 == "--compile-win"* ]]; then
|
||||||
if [[ -z "$USE_GOMA" ]]; then
|
if [[ -z "$USE_GOMA" ]]; then
|
||||||
/c/Windows/System32/cmd.exe "/c $(cygpath -w "${SCRIPT_FOLDER}"/buildwin.bat)"
|
/c/Windows/System32/cmd.exe "/c $(cygpath -w "${SCRIPT_FOLDER}"/buildwin.bat)"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue