2018-10-19 23:44:36 +00:00
# The config expects the following environment variables to be set:
2019-11-07 19:51:44 +00:00
# - "GN_CONFIG" Build type. One of {'testing', 'release'}.
2018-10-19 23:44:36 +00: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 17:20:37 +00: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 20:25:49 +00:00
version : 1.0 .{build}
2020-03-30 19:46:42 +00:00
build_cloud : electron-16-core
2020-07-14 01:13:34 +00:00
image : vs2019bt-16.6.2
2018-07-30 20:25:49 +00:00
environment :
2018-08-17 16:20:20 +00:00
GIT_CACHE_PATH : C:\Users\electron\libcc_cache
2018-09-14 07:50:03 +00:00
ELECTRON_OUT_DIR : Default
2019-04-20 17:20:37 +00:00
ELECTRON_ENABLE_STACK_DUMPING : 1
2019-07-25 18:30:56 +00:00
MOCHA_REPORTER : mocha-multi-reporters
MOCHA_MULTI_REPORTERS : mocha-appveyor-reporter, tap
2019-04-26 19:35:43 +00: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 20:25:49 +00:00
build_script :
2018-08-24 14:49:01 +00: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 23:36:26 +00:00
} else {
node script/yarn.js install --frozen-lockfile
2020-09-30 18:36:44 +00: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 23:36:26 +00:00
Write-warning "Skipping build for doc only change"; Exit-AppveyorBuild
}
2018-08-24 14:49:01 +00:00
}
- echo "Building $env:GN_CONFIG build"
2018-07-30 20:25:49 +00:00
- git config --global core.longpaths true
- cd ..
2019-07-03 01:22:09 +00:00
- mkdir src
2020-07-22 05:34:34 +00:00
- update_depot_tools.bat
2018-07-30 20:25:49 +00:00
- ps : Move-Item $env:APPVEYOR_BUILD_FOLDER -Destination src\electron
- ps : $env:CHROMIUM_BUILDTOOLS_PATH="$pwd\src\buildtools"
2018-10-05 00:20:25 +00:00
- ps : >-
if ($env:GN_CONFIG -eq 'release') {
2020-09-30 20:30:10 +00:00
$env:GCLIENT_EXTRA_ARGS="$env:GCLIENT_EXTRA_ARGS --custom-var=checkout_requests=True"
2019-06-15 08:48:59 +00:00
} else {
$env:NINJA_STATUS="[%r processes, %f/%t @ %o/s : %es] "
2018-10-05 00:20:25 +00:00
}
2018-07-30 20:25:49 +00:00
- >-
gclient config
--name "src\electron"
--unmanaged
2018-10-05 00:20:25 +00:00
%GCLIENT_EXTRA_ARGS%
2018-07-30 20:25:49 +00:00
"https://github.com/electron/electron"
2019-11-05 22:18:08 +00:00
- ps : >-
if ($env:GN_CONFIG -eq 'release') {
2019-12-14 19:25:33 +00:00
$env:RUN_GCLIENT_SYNC="true"
2019-11-05 22:18:08 +00: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-28 02:45:04 +00: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-28 00:33:04 +00: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-28 02:45:04 +00:00
}
2019-11-05 22:18:08 +00:00
} else {
# file does not exist, gclient sync, then zip
2019-12-14 19:25:33 +00:00
$env:RUN_GCLIENT_SYNC="true"
2019-11-05 22:18:08 +00:00
if ($env:TARGET_ARCH -ne 'ia32') {
2019-12-14 19:25:33 +00:00
# only save on x64/woa to avoid contention saving
$env:SAVE_GCLIENT_SRC="true"
2019-11-05 22:18:08 +00:00
}
}
}
2019-12-14 19:25:33 +00: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-16 01:30:41 +00: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 19:25:33 +00:00
Write-warning "Could not save source to shared drive; continuing anyway"
}
2020-10-16 01:30:41 +00: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 06:24:18 +00:00
}
2019-12-14 19:25:33 +00:00
}
2020-01-23 17:47:38 +00:00
- ps : >-
2020-11-04 00:18:55 +00: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 17:47:38 +00:00
}
2020-11-04 00:18:55 +00:00
- git clone https://github.com/electron/build-tools.git
- cd build-tools
- npm install
- mkdir third_party
2020-11-30 20:29:36 +00:00
- ps : >-
node -e "require('./src/utils/goma.js').downloadAndPrepare({ gomaOneForAll: true })"
2020-11-04 00:18:55 +00: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 20:25:49 +00:00
- cd src
2020-01-23 17:47:38 +00:00
- set BUILD_CONFIG_PATH=//electron/build/args/%GN_CONFIG%.gn
2020-11-04 00:18:55 +00:00
- gn gen out/Default "--args=import(\"%BUILD_CONFIG_PATH%\") import(\"%GN_GOMA_FILE%\") %GN_EXTRA_ARGS% "
2019-03-05 05:08:55 +00:00
- gn check out/Default //electron:electron_lib
- gn check out/Default //electron:electron_app
2019-04-02 22:38:16 +00:00
- gn check out/Default //electron:manifests
2019-06-19 20:46:59 +00:00
- gn check out/Default //electron/shell/common/api:mojo
2020-02-06 17:56:18 +00: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-28 02:45:04 +00:00
- if "%GN_CONFIG%"=="testing" ( python C:\depot_tools\post_build_ninja_summary.py -C out\Default )
2018-09-03 10:33:23 +00:00
- gn gen out/ffmpeg "--args=import(\"//electron/build/args/ffmpeg.gn\") %GN_EXTRA_ARGS%"
2018-09-25 01:48:49 +00:00
- ninja -C out/ffmpeg electron:electron_ffmpeg_zip
2018-08-21 17:06:28 +00:00
- ninja -C out/Default electron:electron_dist_zip
2019-10-03 20:21:30 +00:00
- ninja -C out/Default shell_browser_ui_unittests
2020-05-18 19:42:23 +00:00
- gn desc out/Default v8:run_mksnapshot_default args > out/Default/mksnapshot_args
2018-09-25 01:48:49 +00:00
- ninja -C out/Default electron:electron_mksnapshot_zip
2020-05-18 19:42:23 +00:00
- cd out\Default
- 7z a mksnapshot.zip mksnapshot_args gen\v8\embedded.S
- cd ..\..
2019-10-31 20:11:51 +00:00
- ninja -C out/Default electron:hunspell_dictionaries_zip
2018-09-19 22:42:42 +00:00
- ninja -C out/Default electron:electron_chromedriver_zip
2018-09-29 02:27:29 +00:00
- ninja -C out/Default third_party/electron_node:headers
2020-11-04 00:18:55 +00:00
- python %LOCAL_GOMA_DIR%\goma_ctl.py stat
2019-11-13 05:42:45 +00: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 16:38:41 +00:00
- appveyor PushArtifact out/Default/dist.zip
2019-10-03 20:21:30 +00:00
- appveyor PushArtifact out/Default/shell_browser_ui_unittests.exe
2018-09-19 22:42:42 +00:00
- appveyor PushArtifact out/Default/chromedriver.zip
2018-09-25 01:48:49 +00:00
- appveyor PushArtifact out/ffmpeg/ffmpeg.zip
2019-08-21 21:37:30 +00: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 20:11:51 +00:00
- appveyor PushArtifact out/Default/hunspell_dictionaries.zip
2019-08-21 21:37:30 +00:00
- appveyor PushArtifact out/Default/electron.lib
2018-09-26 18:56:05 +00:00
- ps : >-
if ($env:GN_CONFIG -eq 'release') {
2019-07-05 17:38:30 +00: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 17:24:00 +00:00
}
- ps : >-
if ($env:GN_CONFIG -eq 'release') {
2018-09-27 05:38:06 +00:00
python electron\script\zip-symbols.py
2019-12-18 14:30:18 +00:00
appveyor-retry appveyor PushArtifact out/Default/symbols.zip
2019-10-02 21:52:55 +00: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 14:30:18 +00:00
appveyor-retry appveyor PushArtifact pdb.zip
2018-09-26 18:56:05 +00:00
}
2019-06-24 17:18:04 +00: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 20:25:49 +00:00
test_script :
2019-03-05 22:07:39 +00:00
# Workaround for https://github.com/appveyor/ci/issues/2420
- set "PATH=%PATH%;C:\Program Files\Git\mingw64\libexec\git-core"
2018-08-22 19:37:22 +00:00
- ps : >-
2019-08-21 21:37:30 +00: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 14:05:20 +00:00
$env:RUN_TESTS="true"
}
- ps : >-
if ($env:RUN_TESTS -eq 'true') {
2018-08-22 19:37:22 +00:00
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 14:49:01 +00:00
} else {
echo "Skipping tests for $env:GN_CONFIG build"
2018-08-22 19:37:22 +00:00
}
2018-09-13 15:30:12 +00:00
- cd electron
2020-10-16 01:30:41 +00: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 08:06:02 +00:00
- cd ..
2019-01-31 17:39:05 +00: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 19:42:23 +00:00
- echo "About to verify mksnapshot"
2019-02-11 22:21:00 +00: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 18:31:14 +00: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 05:38:06 +00: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 20:30:43 +00:00
& python script\release\uploaders\upload.py --verbose --upload_to_s3
2018-09-27 05:38:06 +00:00
} else {
Write-Output "Uploading Electron release distribution to github releases"
2020-11-09 20:30:43 +00:00
& python script\release\uploaders\upload.py --verbose
2018-09-27 05:38:06 +00:00
}
2019-08-21 21:37:30 +00:00
} elseif (Test-Path Env:\TEST_WOA) {
2019-09-03 17:13:06 +00: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 17:24:00 +00:00
}