8adc24eef9
* build: add config to build Electron for tests * build: run nightly linux builds for the 3-0-x branch * build: gn: update CI config for linux builds - run GN debug and testing builds for PRs (as FYI) - do not run tests for GN debug builds - run GN release builds nightly * build: gn: run testing builds on CI instead of release on Windows Should save some time since release builds set 'official_build=true' which make the builds take much more time. * build: gn: use testing config to run CI jobs on Mac Tests should run faster for testing builds.
44 lines
1.3 KiB
YAML
44 lines
1.3 KiB
YAML
version: 1.0.{build}
|
|
branches:
|
|
except:
|
|
- /^release$|^release-\d-\d-x$/
|
|
build_cloud: libcc-20
|
|
image: libcc-20-vs2017-15.4.5
|
|
environment:
|
|
DISABLE_CRASH_REPORTER_TESTS: true
|
|
ELECTRON_ENABLE_LOGGING: true
|
|
matrix:
|
|
- gn_args: debug
|
|
ELECTRON_SKIP_NATIVE_MODULE_TESTS: 1
|
|
- gn_args: testing
|
|
platform:
|
|
- x86
|
|
- x64
|
|
build_script:
|
|
- git config --global core.longpaths true
|
|
- cd ..
|
|
- md src
|
|
- ps: Move-Item $env:APPVEYOR_BUILD_FOLDER -Destination src\electron
|
|
- ps: $env:CHROMIUM_BUILDTOOLS_PATH="$pwd\src\buildtools"
|
|
- >-
|
|
gclient config
|
|
--name "src\electron"
|
|
--unmanaged
|
|
--cache-dir "C:\Users\electron\libcc_cache"
|
|
"https://github.com/electron/electron"
|
|
- gclient sync --with_branch_heads --with_tags
|
|
- cd src
|
|
- gn gen out/Default "--args=import(\"//electron/build/args/%gn_args%.gn\")"
|
|
- ninja -C out/Default electron:electron_app
|
|
test_script:
|
|
- ninja -C out/Default electron/build/node:headers
|
|
- ps: $env:npm_config_nodedir="$pwd/out/Default/gen/node_headers"
|
|
- ps: $env:npm_config_msvs_version="2017"
|
|
- ps: Push-Location; cd electron/spec
|
|
- npm install
|
|
- ps: Pop-Location
|
|
- ./out/Default/electron.exe electron/spec --ci
|
|
# TODO(nornagon): verify-ffmpeg step
|
|
artifacts:
|
|
- path: test-results.xml
|
|
name: test-results.xml
|