ci: retry uploading pdb files on appveyor (#21561)
This commit is contained in:
parent
3effa8bc46
commit
7152173d26
1 changed files with 2 additions and 2 deletions
|
@ -146,12 +146,12 @@ build_script:
|
||||||
- ps: >-
|
- ps: >-
|
||||||
if ($env:GN_CONFIG -eq 'release') {
|
if ($env:GN_CONFIG -eq 'release') {
|
||||||
python electron\script\zip-symbols.py
|
python electron\script\zip-symbols.py
|
||||||
appveyor PushArtifact out/Default/symbols.zip
|
appveyor-retry appveyor PushArtifact out/Default/symbols.zip
|
||||||
} else {
|
} else {
|
||||||
# It's useful to have pdb files when debugging testing builds that are
|
# It's useful to have pdb files when debugging testing builds that are
|
||||||
# built on CI.
|
# built on CI.
|
||||||
7z a pdb.zip out\Default\*.pdb
|
7z a pdb.zip out\Default\*.pdb
|
||||||
appveyor PushArtifact pdb.zip
|
appveyor-retry appveyor PushArtifact pdb.zip
|
||||||
}
|
}
|
||||||
- python electron/script/zip_manifests/check-zip-manifest.py out/Default/dist.zip electron/script/zip_manifests/dist_zip.win.%TARGET_ARCH%.manifest
|
- python electron/script/zip_manifests/check-zip-manifest.py out/Default/dist.zip electron/script/zip_manifests/dist_zip.win.%TARGET_ARCH%.manifest
|
||||||
test_script:
|
test_script:
|
||||||
|
|
Loading…
Reference in a new issue