2018-10-20 01:44:36 +02:00
# The config expects the following environment variables to be set:
2019-11-07 11:51:44 -08:00
# - "GN_CONFIG" Build type. One of {'testing', 'release'}.
2018-10-20 01:44:36 +02:00
# - "GN_EXTRA_ARGS" Additional gn arguments for a build config,
# e.g. 'target_cpu="x86"' to build for a 32bit platform.
# https://gn.googlesource.com/gn/+/master/docs/reference.md#target_cpu
# Don't forget to set up "NPM_CONFIG_ARCH" and "TARGET_ARCH" accordningly
# if you pass a custom value for 'target_cpu'.
# - "ELECTRON_RELEASE" Set it to '1' upload binaries on success.
# - "NPM_CONFIG_ARCH" E.g. 'x86'. Is used to build native Node.js modules.
# Must match 'target_cpu' passed to "GN_EXTRA_ARGS" and "TARGET_ARCH" value.
# - "TARGET_ARCH" Choose from {'ia32', 'x64', 'arm', 'arm64', 'mips64el'}.
# Is used in some publishing scripts, but does NOT affect the Electron binary.
# Must match 'target_cpu' passed to "GN_EXTRA_ARGS" and "NPM_CONFIG_ARCH" value.
# - "UPLOAD_TO_S3" Set it to '1' upload a release to the S3 bucket.
# Otherwise the release will be uploaded to the Github Releases.
# (The value is only checked if "ELECTRON_RELEASE" is defined.)
#
# The publishing scripts expect access tokens to be defined as env vars,
# but those are not covered here.
#
# AppVeyor docs on variables:
# https://www.appveyor.com/docs/environment-variables/
# https://www.appveyor.com/docs/build-configuration/#secure-variables
# https://www.appveyor.com/docs/build-configuration/#custom-environment-variables
2019-04-20 13:20:37 -04:00
# Uncomment these lines to enable RDP
#on_finish:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
2018-07-30 13:25:49 -07:00
version : 1.0 .{build}
2020-03-30 15:46:42 -04:00
build_cloud : electron-16-core
2020-07-13 18:13:34 -07:00
image : vs2019bt-16.6.2
2018-07-30 13:25:49 -07:00
environment :
2018-08-17 09:20:20 -07:00
GIT_CACHE_PATH : C:\Users\electron\libcc_cache
2018-09-14 17:50:03 +10:00
ELECTRON_OUT_DIR : Default
2019-04-20 13:20:37 -04:00
ELECTRON_ENABLE_STACK_DUMPING : 1
2019-07-25 11:30:56 -07:00
MOCHA_REPORTER : mocha-multi-reporters
MOCHA_MULTI_REPORTERS : mocha-appveyor-reporter, tap
2019-04-26 12:35:43 -07:00
notifications :
- provider : Webhook
url : https://electron-mission-control.herokuapp.com/rest/appveyor-hook
method : POST
headers :
x-mission-control-secret :
secure : 90BLVPcqhJPG7d24v0q/RRray6W3wDQ8uVQlQjOHaBWkw1i8FoA1lsjr2C/v1dVok+tS2Pi6KxDctPUkwIb4T27u4RhvmcPzQhVpfwVJAG9oNtq+yKN7vzHfg7k/pojEzVdJpQLzeJGcSrZu7VY39Q==
on_build_success : false
on_build_failure : true
on_build_status_changed : false
2018-07-30 13:25:49 -07:00
build_script :
2018-08-24 10:49:01 -04:00
- ps : >-
if(($env:APPVEYOR_PULL_REQUEST_HEAD_REPO_NAME -split "/")[0] -eq ($env:APPVEYOR_REPO_NAME -split "/")[0]) {
Write-warning "Skipping PR build for branch"; Exit-AppveyorBuild
2019-10-23 19:36:26 -04:00
} else {
node script/yarn.js install --frozen-lockfile
2020-09-30 14:36:44 -04:00
$result = node script/doc-only-change.js --prNumber=$env:APPVEYOR_PULL_REQUEST_NUMBER --prBranch=$env:APPVEYOR_REPO_BRANCH
Write-Output $result
if ($result.ExitCode -eq 0) {
2019-10-23 19:36:26 -04:00
Write-warning "Skipping build for doc only change"; Exit-AppveyorBuild
}
2018-08-24 10:49:01 -04:00
}
- echo "Building $env:GN_CONFIG build"
2018-07-30 13:25:49 -07:00
- git config --global core.longpaths true
- cd ..
2019-07-02 18:22:09 -07:00
- mkdir src
2020-07-21 22:34:34 -07:00
- update_depot_tools.bat
2018-07-30 13:25:49 -07:00
- ps : Move-Item $env:APPVEYOR_BUILD_FOLDER -Destination src\electron
- ps : $env:CHROMIUM_BUILDTOOLS_PATH="$pwd\src\buildtools"
2018-10-05 02:20:25 +02:00
- ps : >-
2020-12-10 06:15:21 +08:00
if ($env:GN_CONFIG -ne 'release') {
2019-06-15 04:48:59 -04:00
$env:NINJA_STATUS="[%r processes, %f/%t @ %o/s : %es] "
2018-10-05 02:20:25 +02:00
}
2018-07-30 13:25:49 -07:00
- >-
gclient config
--name "src\electron"
--unmanaged
2018-10-05 02:20:25 +02:00
%GCLIENT_EXTRA_ARGS%
2018-07-30 13:25:49 -07:00
"https://github.com/electron/electron"
2019-11-05 17:18:08 -05:00
- ps : >-
if ($env:GN_CONFIG -eq 'release') {
2019-12-14 14:25:33 -05:00
$env:RUN_GCLIENT_SYNC="true"
2019-11-05 17:18:08 -05:00
} else {
cd src\electron
node script\generate-deps-hash.js
$depshash = Get-Content .\.depshash -Raw
$zipfile = "Z:\$depshash.7z"
cd ..\..
if (Test-Path -Path $zipfile) {
# file exists, unzip and then gclient sync
7z x -y $zipfile -mmt=30 -aoa
2020-01-27 21:45:04 -05:00
if (-not (Test-Path -Path "src\buildtools")) {
# the zip file must be corrupt - resync
$env:RUN_GCLIENT_SYNC="true"
if ($env:TARGET_ARCH -ne 'ia32') {
# only save on x64/woa to avoid contention saving
$env:SAVE_GCLIENT_SRC="true"
}
} else {
2020-10-27 17:33:04 -07:00
# update angle
cd src\third_party\angle
git remote set-url origin https://chromium.googlesource.com/angle/angle.git
git fetch
cd ..\..\..
2020-01-27 21:45:04 -05:00
}
2019-11-05 17:18:08 -05:00
} else {
# file does not exist, gclient sync, then zip
2019-12-14 14:25:33 -05:00
$env:RUN_GCLIENT_SYNC="true"
2019-11-05 17:18:08 -05:00
if ($env:TARGET_ARCH -ne 'ia32') {
2019-12-14 14:25:33 -05:00
# only save on x64/woa to avoid contention saving
$env:SAVE_GCLIENT_SRC="true"
2019-11-05 17:18:08 -05:00
}
}
}
2019-12-14 14:25:33 -05:00
- if "%RUN_GCLIENT_SYNC%"=="true" ( gclient sync --with_branch_heads --with_tags --ignore_locks)
- ps : >-
if ($env:SAVE_GCLIENT_SRC -eq 'true') {
# archive current source for future use
# only run on x64/woa to avoid contention saving
2020-10-15 18:30:41 -07:00
$(7z a $zipfile src -xr!android_webview -xr!electron -xr'!*\.git' -xr!third_party\WebKit\LayoutTests! -xr!third_party\blink\web_tests -xr!third_party\blink\perf_tests -slp -t7z -mmt=30)
if ($LASTEXITCODE -ne 0) {
2019-12-14 14:25:33 -05:00
Write-warning "Could not save source to shared drive; continuing anyway"
}
2020-10-15 18:30:41 -07:00
# build time generation of file gen/angle/angle_commit.h depends on
# third_party/angle/.git
# https://chromium-review.googlesource.com/c/angle/angle/+/2074924
$(7z a $zipfile src\third_party\angle\.git)
if ($LASTEXITCODE -ne 0) {
Write-warning "Failed to add third_party\angle\.git; continuing anyway"
2020-03-05 15:24:18 +09:00
}
2019-12-14 14:25:33 -05:00
}
2020-01-23 09:47:38 -08:00
- ps : >-
2020-11-03 19:18:55 -05:00
if (Test-Path 'env:RAW_GOMA_AUTH') {
$env:GOMA_OAUTH2_CONFIG_FILE = "$pwd\.goma_oauth2_config"
$env:RAW_GOMA_AUTH | Set-Content $env:GOMA_OAUTH2_CONFIG_FILE
2020-01-23 09:47:38 -08:00
}
2020-11-03 19:18:55 -05:00
- git clone https://github.com/electron/build-tools.git
- cd build-tools
- npm install
- mkdir third_party
2020-11-30 12:29:36 -08:00
- ps : >-
node -e "require('./src/utils/goma.js').downloadAndPrepare({ gomaOneForAll: true })"
2020-11-03 19:18:55 -05:00
- ps : $env:GN_GOMA_FILE = node -e "console.log(require('./src/utils/goma.js').gnFilePath)"
- ps : $env:LOCAL_GOMA_DIR = node -e "console.log(require('./src/utils/goma.js').dir)"
- cd ..
- ps : .\src\electron\script\start-goma.ps1 -gomaDir $env:LOCAL_GOMA_DIR
2018-07-30 13:25:49 -07:00
- cd src
2020-01-23 09:47:38 -08:00
- set BUILD_CONFIG_PATH=//electron/build/args/%GN_CONFIG%.gn
2020-11-03 19:18:55 -05:00
- gn gen out/Default "--args=import(\"%BUILD_CONFIG_PATH%\") import(\"%GN_GOMA_FILE%\") %GN_EXTRA_ARGS% "
2019-03-05 10:38:55 +05:30
- gn check out/Default //electron:electron_lib
- gn check out/Default //electron:electron_app
2019-06-19 13:46:59 -07:00
- gn check out/Default //electron/shell/common/api:mojo
2020-02-06 12:56:18 -05:00
- if DEFINED GN_GOMA_FILE (ninja -j 300 -C out/Default electron:electron_app) else (ninja -C out/Default electron:electron_app)
2020-01-27 21:45:04 -05:00
- if "%GN_CONFIG%"=="testing" ( python C:\depot_tools\post_build_ninja_summary.py -C out\Default )
2018-09-03 12:33:23 +02:00
- gn gen out/ffmpeg "--args=import(\"//electron/build/args/ffmpeg.gn\") %GN_EXTRA_ARGS%"
2018-09-24 18:48:49 -07:00
- ninja -C out/ffmpeg electron:electron_ffmpeg_zip
2018-08-21 10:06:28 -07:00
- ninja -C out/Default electron:electron_dist_zip
2019-10-03 22:21:30 +02:00
- ninja -C out/Default shell_browser_ui_unittests
2020-05-18 15:42:23 -04:00
- gn desc out/Default v8:run_mksnapshot_default args > out/Default/mksnapshot_args
2018-09-24 18:48:49 -07:00
- ninja -C out/Default electron:electron_mksnapshot_zip
2020-05-18 15:42:23 -04:00
- cd out\Default
- 7z a mksnapshot.zip mksnapshot_args gen\v8\embedded.S
- cd ..\..
2019-10-31 13:11:51 -07:00
- ninja -C out/Default electron:hunspell_dictionaries_zip
2018-09-19 18:42:42 -04:00
- ninja -C out/Default electron:electron_chromedriver_zip
2018-09-29 12:27:29 +10:00
- ninja -C out/Default third_party/electron_node:headers
2020-11-03 19:18:55 -05:00
- python %LOCAL_GOMA_DIR%\goma_ctl.py stat
2019-11-13 06:42:45 +01:00
- python electron/build/profile_toolchain.py --output-json=out/Default/windows_toolchain_profile.json
- appveyor PushArtifact out/Default/windows_toolchain_profile.json
2018-09-11 09:38:41 -07:00
- appveyor PushArtifact out/Default/dist.zip
2019-10-03 22:21:30 +02:00
- appveyor PushArtifact out/Default/shell_browser_ui_unittests.exe
2018-09-19 18:42:42 -04:00
- appveyor PushArtifact out/Default/chromedriver.zip
2018-09-24 18:48:49 -07:00
- appveyor PushArtifact out/ffmpeg/ffmpeg.zip
2019-08-21 17:37:30 -04:00
- 7z a node_headers.zip out\Default\gen\node_headers
- appveyor PushArtifact node_headers.zip
- appveyor PushArtifact out/Default/mksnapshot.zip
2019-10-31 13:11:51 -07:00
- appveyor PushArtifact out/Default/hunspell_dictionaries.zip
2019-08-21 17:37:30 -04:00
- appveyor PushArtifact out/Default/electron.lib
2018-09-26 14:56:05 -04:00
- ps : >-
if ($env:GN_CONFIG -eq 'release') {
2019-07-05 10:38:30 -07:00
# Needed for msdia140.dll on 64-bit windows
$env:Path += ";$pwd\third_party\llvm-build\Release+Asserts\bin"
ninja -C out/Default electron:electron_symbols
2018-09-28 13:24:00 -04:00
}
- ps : >-
if ($env:GN_CONFIG -eq 'release') {
2018-09-27 15:38:06 +10:00
python electron\script\zip-symbols.py
2019-12-18 06:30:18 -08:00
appveyor-retry appveyor PushArtifact out/Default/symbols.zip
2019-10-02 14:52:55 -07:00
} else {
# It's useful to have pdb files when debugging testing builds that are
# built on CI.
7z a pdb.zip out\Default\*.pdb
2019-12-18 06:30:18 -08:00
appveyor-retry appveyor PushArtifact pdb.zip
2018-09-26 14:56:05 -04:00
}
2019-06-24 10:18:04 -07:00
- python electron/script/zip_manifests/check-zip-manifest.py out/Default/dist.zip electron/script/zip_manifests/dist_zip.win.%TARGET_ARCH%.manifest
2018-07-30 13:25:49 -07:00
test_script :
2019-03-05 14:07:39 -08:00
# Workaround for https://github.com/appveyor/ci/issues/2420
- set "PATH=%PATH%;C:\Program Files\Git\mingw64\libexec\git-core"
2018-08-23 01:07:22 +05:30
- ps : >-
2019-08-21 17:37:30 -04:00
if ((-Not (Test-Path Env:\TEST_WOA)) -And (-Not (Test-Path Env:\ELECTRON_RELEASE)) -And ($env:GN_CONFIG -in "testing", "release")) {
2018-10-07 16:05:20 +02:00
$env:RUN_TESTS="true"
}
- ps : >-
if ($env:RUN_TESTS -eq 'true') {
2018-08-23 01:07:22 +05:30
New-Item .\out\Default\gen\node_headers\Release -Type directory
Copy-Item -path .\out\Default\electron.lib -destination .\out\Default\gen\node_headers\Release\node.lib
2018-08-24 10:49:01 -04:00
} else {
echo "Skipping tests for $env:GN_CONFIG build"
2018-08-23 01:07:22 +05:30
}
2018-09-14 01:30:12 +10:00
- cd electron
2020-10-15 18:30:41 -07:00
# CalculateNativeWinOcclusion is disabled due to https://bugs.chromium.org/p/chromium/issues/detail?id=1139022
- if "%RUN_TESTS%"=="true" ( echo Running test suite & node script/yarn test -- --trace-uncaught --enable-logging --disable-features=CalculateNativeWinOcclusion )
2018-09-27 18:06:02 +10:00
- cd ..
2019-01-31 12:39:05 -05:00
- if "%RUN_TESTS%"=="true" ( echo Verifying non proprietary ffmpeg & python electron\script\verify-ffmpeg.py --build-dir out\Default --source-root %cd% --ffmpeg-path out\ffmpeg )
2020-05-18 15:42:23 -04:00
- echo "About to verify mksnapshot"
2019-02-11 12:21:00 -10:00
- if "%RUN_TESTS%"=="true" ( echo Verifying mksnapshot & python electron\script\verify-mksnapshot.py --build-dir out\Default --source-root %cd% )
- echo "Done verifying mksnapshot"
2020-02-03 10:31:14 -08:00
- if "%RUN_TESTS%"=="true" ( echo Verifying chromedriver & python electron\script\verify-chromedriver.py --build-dir out\Default --source-root %cd% )
- echo "Done verifying chromedriver"
2018-09-27 15:38:06 +10:00
deploy_script :
- cd electron
- ps : >-
if (Test-Path Env:\ELECTRON_RELEASE) {
if (Test-Path Env:\UPLOAD_TO_S3) {
Write-Output "Uploading Electron release distribution to s3"
2020-11-09 12:30:43 -08:00
& python script\release\uploaders\upload.py --verbose --upload_to_s3
2018-09-27 15:38:06 +10:00
} else {
Write-Output "Uploading Electron release distribution to github releases"
2020-11-09 12:30:43 -08:00
& python script\release\uploaders\upload.py --verbose
2018-09-27 15:38:06 +10:00
}
2019-08-21 17:37:30 -04:00
} elseif (Test-Path Env:\TEST_WOA) {
2019-09-03 13:13:06 -04:00
node script/release/ci-release-build.js --job=electron-woa-testing --ci=VSTS --armTest --appveyorJobId=$env:APPVEYOR_JOB_ID $env:APPVEYOR_REPO_BRANCH
2018-09-28 13:24:00 -04:00
}