2019-09-17 21:48:02 +03:00
version : 2.1
parameters :
upload-to-s3 :
type : string
default : '1'
2019-10-09 00:46:01 +03:00
2019-09-17 21:48:02 +03:00
run-lint :
type : boolean
default : true
run-build-linux :
type : boolean
default : true
run-build-mac :
type : boolean
default : true
2020-02-11 23:42:37 +03:00
run-linux-publish :
type : boolean
default : false
2021-06-07 17:17:27 +03:00
linux-publish-arch-limit :
type : enum
default : all
enum : [ "all" , "arm" , "arm64" , "x64" , "ia32" ]
2020-02-11 23:42:37 +03:00
run-macos-publish :
type : boolean
default : false
2021-06-07 17:17:27 +03:00
macos-publish-arch-limit :
type : enum
default : all
enum : [ "all" , "osx-x64" , "osx-arm64" , "mas-x64" , "mas-arm64" ]
2021-05-10 11:18:59 +03:00
# Executors
executors :
linux-docker :
parameters :
size :
description : "Docker executor size"
default : 2xlarge+
type : enum
enum : [ "medium" , "xlarge" , "2xlarge+" ]
docker :
- image : electron.azurecr.io/build:6555a80939fb4c3ddf9343b3f140e573f40de225
resource_class : << parameters.size >>
macos :
parameters :
size :
description : "macOS executor size"
default : large
type : enum
enum : [ "medium" , "large" ]
macos :
xcode : "12.4.0"
resource_class : << parameters.size >>
# Electron Runners
apple-silicon :
resource_class : electronjs/macos-arm64
machine : true
2018-10-20 02:44:36 +03:00
# The config expects the following environment variables to be set:
# - "SLACK_WEBHOOK" Slack hook URL to send notifications.
#
# The publishing scripts expect access tokens to be defined as env vars,
# but those are not covered here.
#
# CircleCI docs on variables:
# https://circleci.com/docs/2.0/env-vars/
2018-09-15 01:12:30 +03:00
# Build configurations options.
env-testing-build : &env-testing-build
GN_CONFIG : //electron/build/args/testing.gn
2019-05-29 19:40:02 +03:00
CHECK_DIST_MANIFEST : '1'
2018-09-15 01:12:30 +03:00
env-release-build : &env-release-build
GN_CONFIG : //electron/build/args/release.gn
2018-10-11 05:41:48 +03:00
STRIP_BINARIES : true
2019-01-31 20:59:32 +03:00
GENERATE_SYMBOLS : true
2019-12-11 20:42:57 +03:00
CHECK_DIST_MANIFEST : '1'
2020-10-29 00:06:58 +03:00
IS_RELEASE : true
2018-09-15 01:12:30 +03:00
2018-10-05 23:06:52 +03:00
env-headless-testing : &env-headless-testing
DISPLAY : ':99.0'
2018-10-09 02:17:11 +03:00
env-stack-dumping : &env-stack-dumping
ELECTRON_ENABLE_STACK_DUMPING : '1'
2018-09-27 18:29:27 +03:00
env-browsertests : &env-browsertests
2018-10-22 23:12:19 +03:00
GN_CONFIG : //electron/build/args/native_tests.gn
BUILD_TARGET : electron/spec:chromium_browsertests
2018-10-02 01:50:52 +03:00
TESTS_CONFIG : src/electron/spec/configs/browsertests.yml
2018-09-27 18:29:27 +03:00
env-unittests : &env-unittests
2018-10-22 23:12:19 +03:00
GN_CONFIG : //electron/build/args/native_tests.gn
BUILD_TARGET : electron/spec:chromium_unittests
2018-10-02 01:50:52 +03:00
TESTS_CONFIG : src/electron/spec/configs/unittests.yml
2018-09-27 18:29:27 +03:00
2018-09-15 01:12:30 +03:00
# Build targets options.
env-ia32 : &env-ia32
GN_EXTRA_ARGS : 'target_cpu = "x86"'
NPM_CONFIG_ARCH : ia32
2018-09-29 07:13:17 +03:00
TARGET_ARCH : ia32
2018-09-15 01:12:30 +03:00
env-arm : &env-arm
GN_EXTRA_ARGS : 'target_cpu = "arm"'
MKSNAPSHOT_TOOLCHAIN : //build/toolchain/linux:clang_arm
2018-09-27 17:58:57 +03:00
BUILD_NATIVE_MKSNAPSHOT : 1
2018-09-29 08:32:48 +03:00
TARGET_ARCH : arm
2018-09-15 01:12:30 +03:00
2020-07-17 19:08:44 +03:00
env-apple-silicon : &env-apple-silicon
2020-08-22 06:30:04 +03:00
GN_EXTRA_ARGS : 'target_cpu = "arm64" use_prebuilt_v8_context_snapshot = true'
2020-07-17 19:08:44 +03:00
TARGET_ARCH : arm64
2020-08-22 06:30:04 +03:00
USE_PREBUILT_V8_CONTEXT_SNAPSHOT : 1
2021-01-22 02:36:52 +03:00
npm_config_arch : arm64
2020-07-17 19:08:44 +03:00
2018-09-15 01:12:30 +03:00
env-arm64 : &env-arm64
GN_EXTRA_ARGS : 'target_cpu = "arm64" fatal_linker_warnings = false enable_linux_installer = false'
MKSNAPSHOT_TOOLCHAIN : //build/toolchain/linux:clang_arm64
2018-09-27 17:58:57 +03:00
BUILD_NATIVE_MKSNAPSHOT : 1
2018-09-29 08:32:48 +03:00
TARGET_ARCH : arm64
2018-09-15 01:12:30 +03:00
2018-09-17 19:44:02 +03:00
env-mas : &env-mas
GN_EXTRA_ARGS : 'is_mas_build = true'
2019-02-08 21:12:18 +03:00
MAS_BUILD : 'true'
2018-09-17 19:44:02 +03:00
2020-07-17 19:08:44 +03:00
env-mas-apple-silicon : &env-mas-apple-silicon
2020-08-22 06:30:04 +03:00
GN_EXTRA_ARGS : 'target_cpu = "arm64" is_mas_build = true use_prebuilt_v8_context_snapshot = true'
2020-07-17 19:08:44 +03:00
MAS_BUILD : 'true'
2020-07-21 14:55:00 +03:00
TARGET_ARCH : arm64
2020-08-22 06:30:04 +03:00
USE_PREBUILT_V8_CONTEXT_SNAPSHOT : 1
2020-07-17 19:08:44 +03:00
2018-10-01 23:24:51 +03:00
env-send-slack-notifications : &env-send-slack-notifications
NOTIFY_SLACK : true
2020-02-04 02:43:46 +03:00
env-global : &env-global
ELECTRON_OUT_DIR : Default
2018-10-01 23:24:51 +03:00
2019-01-31 20:59:32 +03:00
env-linux-medium : &env-linux-medium
2020-02-04 02:43:46 +03:00
<< : *env-global
2019-01-31 20:59:32 +03:00
NUMBER_OF_NINJA_PROCESSES : 3
env-linux-2xlarge : &env-linux-2xlarge
2020-02-04 02:43:46 +03:00
<< : *env-global
2019-08-21 17:25:23 +03:00
NUMBER_OF_NINJA_PROCESSES : 34
2019-10-09 00:46:01 +03:00
2019-08-24 00:01:12 +03:00
env-linux-2xlarge-release : &env-linux-2xlarge-release
2020-02-04 02:43:46 +03:00
<< : *env-global
2019-08-24 00:01:12 +03:00
NUMBER_OF_NINJA_PROCESSES : 16
2019-01-31 20:59:32 +03:00
env-machine-mac : &env-machine-mac
2020-02-04 02:43:46 +03:00
<< : *env-global
2019-01-31 20:59:32 +03:00
NUMBER_OF_NINJA_PROCESSES : 6
env-mac-large : &env-mac-large
2020-02-04 02:43:46 +03:00
<< : *env-global
2019-08-21 17:25:23 +03:00
NUMBER_OF_NINJA_PROCESSES : 18
2019-01-31 20:59:32 +03:00
2019-08-24 00:01:12 +03:00
env-mac-large-release : &env-mac-large-release
2020-02-04 02:43:46 +03:00
<< : *env-global
2019-08-24 00:01:12 +03:00
NUMBER_OF_NINJA_PROCESSES : 8
2019-06-15 11:48:59 +03:00
env-ninja-status : &env-ninja-status
2019-06-19 17:03:06 +03:00
NINJA_STATUS : "[%r processes, %f/%t @ %o/s : %es] "
2019-06-15 11:48:59 +03:00
2019-06-20 04:10:04 +03:00
env-disable-run-as-node : &env-disable-run-as-node
GN_BUILDFLAG_ARGS : 'enable_run_as_node = false'
2019-11-19 17:36:16 +03:00
env-32bit-release : &env-32bit-release
# Set symbol level to 1 for 32 bit releases because of https://crbug.com/648948
GN_BUILDFLAG_ARGS : 'symbol_level = 1'
2019-11-28 03:29:53 +03:00
env-macos-build : &env-macos-build
# Disable pre-compiled headers to reduce out size, only useful for rebuilds
GN_BUILDFLAG_ARGS : 'enable_precompiled_headers = false'
2018-09-15 01:12:30 +03:00
# Individual (shared) steps.
step-maybe-notify-slack-failure : &step-maybe-notify-slack-failure
2018-07-05 17:59:47 +03:00
run :
2018-09-15 01:12:30 +03:00
name : Send a Slack notification on failure
2018-07-05 17:59:47 +03:00
command : |
2018-09-15 01:12:30 +03:00
if [ "$NOTIFY_SLACK" == "true" ]; then
2018-09-25 16:59:39 +03:00
export MESSAGE="Build failed for *<$CIRCLE_BUILD_URL|$CIRCLE_JOB>* nightly build from *$CIRCLE_BRANCH*."
2018-07-05 17:59:47 +03:00
curl -g -H "Content-Type: application/json" -X POST \
-d "{\"text\": \"$MESSAGE\", \"attachments\": [{\"color\": \"#FC5C3C\",\"title\": \"$CIRCLE_JOB nightly build results\",\"title_link\": \"$CIRCLE_BUILD_URL\"}]}" $SLACK_WEBHOOK
fi
when : on_fail
2018-09-15 01:12:30 +03:00
step-maybe-notify-slack-success : &step-maybe-notify-slack-success
2018-07-05 17:59:47 +03:00
run :
2018-09-15 01:12:30 +03:00
name : Send a Slack notification on success
2018-07-05 17:59:47 +03:00
command : |
2018-09-15 01:12:30 +03:00
if [ "$NOTIFY_SLACK" == "true" ]; then
2018-09-25 16:59:39 +03:00
export MESSAGE="Build succeeded for *<$CIRCLE_BUILD_URL|$CIRCLE_JOB>* nightly build from *$CIRCLE_BRANCH*."
2018-07-05 17:59:47 +03:00
curl -g -H "Content-Type: application/json" -X POST \
-d "{\"text\": \"$MESSAGE\", \"attachments\": [{\"color\": \"good\",\"title\": \"$CIRCLE_JOB nightly build results\",\"title_link\": \"$CIRCLE_BUILD_URL\"}]}" $SLACK_WEBHOOK
fi
when : on_success
2021-03-22 20:34:13 +03:00
step-maybe-cleanup-arm64-mac : &step-maybe-cleanup-arm64-mac
run :
name : Cleanup after testing
command : |
if [ "$TARGET_ARCH" == "arm64" ] &&[ "`uname`" == "Darwin" ]; then
killall Electron || echo "No Electron processes left running"
killall Safari || echo "No Safari processes left running"
rm -rf ~/Library/Application\ Support/Electron*
rm -rf ~/Library/Application\ Support/electron*
fi
when : always
2018-09-17 19:44:02 +03:00
step-checkout-electron : &step-checkout-electron
checkout :
path : src/electron
step-depot-tools-get : &step-depot-tools-get
run :
name : Get depot tools
command : |
git clone --depth=1 https://chromium.googlesource.com/chromium/tools/depot_tools.git
step-depot-tools-add-to-path : &step-depot-tools-add-to-path
2018-09-15 01:12:30 +03:00
run :
name : Add depot tools to PATH
command : echo 'export PATH="$PATH:'"$PWD"'/depot_tools"' >> $BASH_ENV
2018-09-17 19:44:02 +03:00
step-gclient-sync : &step-gclient-sync
run :
name : Gclient sync
command : |
2019-04-23 01:36:59 +03:00
# If we did not restore a complete sync then we need to sync for realz
if [ ! -s "src/electron/.circle-sync-done" ]; then
gclient config \
--name "src/electron" \
--unmanaged \
$GCLIENT_EXTRA_ARGS \
"$CIRCLE_REPOSITORY_URL"
2020-04-08 18:59:14 +03:00
ELECTRON_USE_THREE_WAY_MERGE_FOR_PATCHES=1 gclient sync --with_branch_heads --with_tags
2020-10-29 00:06:58 +03:00
if [ "$IS_RELEASE" != "true" ]; then
# Re-export all the patches to check if there were changes.
python src/electron/script/export_all_patches.py src/electron/patches/config.json
cd src/electron
git update-index --refresh || true
if ! git diff-index --quiet HEAD --; then
# There are changes to the patches. Make a git commit with the updated patches
git add patches
2021-05-13 10:23:00 +03:00
GIT_COMMITTER_NAME="PatchUp" GIT_COMMITTER_EMAIL="73610968+patchup[bot]@users.noreply.github.com" git commit -m "chore: update patches" --author="PatchUp <73610968+patchup[bot]@users.noreply.github.com>"
2020-10-29 00:06:58 +03:00
# Export it
mkdir -p ../../patches
git format-patch -1 --stdout --keep-subject --no-stat --full-index > ../../patches/update-patches.patch
2020-10-29 21:21:23 +03:00
if (node ./script/push-patch.js 2> /dev/null > /dev/null); then
echo
echo "======================================================================"
echo "Changes to the patches when applying, we have auto-pushed the diff to the current branch"
echo "A new CI job will kick off shortly"
echo "======================================================================"
exit 1
else
echo
echo "======================================================================"
echo "There were changes to the patches when applying."
echo "Check the CI artifacts for a patch you can apply to fix it."
echo "======================================================================"
exit 1
fi
2020-10-29 00:06:58 +03:00
fi
2020-04-08 18:59:14 +03:00
fi
2019-04-23 01:36:59 +03:00
fi
2018-09-17 19:44:02 +03:00
2018-09-15 01:12:30 +03:00
step-setup-env-for-build : &step-setup-env-for-build
run :
name : Setup Environment Variables
command : |
# To find `gn` executable.
echo 'export CHROMIUM_BUILDTOOLS_PATH="'"$PWD"'/src/buildtools"' >> $BASH_ENV
2020-02-06 20:56:18 +03:00
step-setup-goma-for-build : &step-setup-goma-for-build
run :
name : Setup Goma
command : |
2020-11-30 23:29:36 +03:00
echo 'export NUMBER_OF_NINJA_PROCESSES=300' >> $BASH_ENV
if [ "`uname`" == "Darwin" ]; then
echo 'ulimit -n 10000' >> $BASH_ENV
echo 'sudo launchctl limit maxfiles 65536 200000' >> $BASH_ENV
2020-11-25 09:00:48 +03:00
fi
2020-02-06 20:56:18 +03:00
if [ ! -z "$RAW_GOMA_AUTH" ]; then
echo $RAW_GOMA_AUTH > ~/.goma_oauth2_config
fi
git clone https://github.com/electron/build-tools.git
cd build-tools
npm install
mkdir third_party
2020-11-30 23:29:36 +03:00
node -e "require('./src/utils/goma.js').downloadAndPrepare({ gomaOneForAll: true })"
2021-03-16 01:43:25 +03:00
third_party/goma/goma_ctl.py ensure_start
2020-02-06 20:56:18 +03:00
echo 'export GN_GOMA_FILE='`node -e "console.log(require('./src/utils/goma.js').gnFilePath)"` >> $BASH_ENV
echo 'export LOCAL_GOMA_DIR='`node -e "console.log(require('./src/utils/goma.js').dir)"` >> $BASH_ENV
2021-04-06 21:05:44 +03:00
echo 'export GOMA_FALLBACK_ON_AUTH_FAILURE=true' >> $BASH_ENV
2020-02-06 20:56:18 +03:00
cd ..
2019-02-07 00:16:11 +03:00
step-restore-brew-cache : &step-restore-brew-cache
restore_cache :
paths :
2021-01-07 23:09:46 +03:00
- /usr/local/Cellar/gnu-tar
- /usr/local/bin/gtar
2019-02-07 00:16:11 +03:00
keys :
2021-01-07 23:09:46 +03:00
- v4-brew-cache-{{ arch }}
2019-02-07 00:16:11 +03:00
2019-08-21 21:52:17 +03:00
step-save-brew-cache : &step-save-brew-cache
save_cache :
paths :
2021-01-07 23:09:46 +03:00
- /usr/local/Cellar/gnu-tar
- /usr/local/bin/gtar
key : v4-brew-cache-{{ arch }}
2019-08-21 21:52:17 +03:00
name : Persisting brew cache
2019-05-01 22:31:02 +03:00
step-get-more-space-on-mac : &step-get-more-space-on-mac
run :
name : Free up space on MacOS
command : |
if [ "`uname`" == "Darwin" ]; then
2020-07-17 00:20:42 +03:00
sudo mkdir -p $TMPDIR/del-target
2020-08-18 08:06:59 +03:00
if [ "$TARGET_ARCH" == "arm64" ]; then
# Remount the root volume as writable, don't ask questions plz
sudo mount -uw /
fi
2020-07-17 00:20:42 +03:00
tmpify() {
2020-07-28 09:09:29 +03:00
if [ -d "$1" ]; then
2020-08-18 08:06:59 +03:00
sudo mv "$1" $TMPDIR/del-target/$(echo $1|shasum -a 256|head -n1|cut -d " " -f1)
2020-07-28 09:09:29 +03:00
fi
2020-07-17 00:20:42 +03:00
}
2020-08-22 06:30:04 +03:00
strip_arm_deep() {
opwd=$(pwd)
cd $1
f=$(find . -perm +111 -type f)
for fp in $f
do
if [[ $(file "$fp") == *"universal binary"* ]]; then
if [[ $(file "$fp") == *"arm64e)"* ]]; then
sudo lipo -remove arm64e "$fp" -o "$fp" || true
fi
if [[ $(file "$fp") == *"arm64)"* ]]; then
sudo lipo -remove arm64 "$fp" -o "$fp" || true
fi
fi
done
cd $opwd
}
2020-07-17 00:20:42 +03:00
tmpify /Library/Developer/CoreSimulator
2020-08-22 06:30:04 +03:00
tmpify ~/Library/Developer/CoreSimulator
2020-07-17 00:20:42 +03:00
tmpify $(xcode-select -p)/Platforms/AppleTVOS.platform
tmpify $(xcode-select -p)/Platforms/iPhoneOS.platform
tmpify $(xcode-select -p)/Platforms/WatchOS.platform
tmpify $(xcode-select -p)/Platforms/WatchSimulator.platform
tmpify $(xcode-select -p)/Platforms/AppleTVSimulator.platform
tmpify $(xcode-select -p)/Platforms/iPhoneSimulator.platform
2020-08-22 06:30:04 +03:00
tmpify $(xcode-select -p)/Toolchains/XcodeDefault.xctoolchain/usr/metal/ios
tmpify $(xcode-select -p)/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift
tmpify $(xcode-select -p)/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-5.0
2020-07-17 00:20:42 +03:00
tmpify ~/.rubies
tmpify ~/Library/Caches/Homebrew
tmpify /usr/local/Homebrew
2020-08-22 06:30:04 +03:00
sudo rm -rf $TMPDIR/del-target
2020-08-18 08:06:59 +03:00
if [ "$TARGET_ARCH" == "arm64" ]; then
2020-08-22 06:30:04 +03:00
sudo rm -rf "/System/Library/Desktop Pictures"
sudo rm -rf /System/Library/Templates/Data
sudo rm -rf /System/Library/Speech/Voices
sudo rm -rf "/System/Library/Screen Savers"
sudo rm -rf /System/Volumes/Data/Library/Developer/CommandLineTools/SDKs
sudo rm -rf "/System/Volumes/Data/Library/Application Support/Apple/Photos/Print Products"
sudo rm -rf /System/Volumes/Data/Library/Java
sudo rm -rf /System/Volumes/Data/Library/Ruby
sudo rm -rf /System/Volumes/Data/Library/Printers
sudo rm -rf /System/iOSSupport
sudo rm -rf /System/Applications/*.app
sudo rm -rf /System/Applications/Utilities/*.app
sudo rm -rf /System/Library/LinguisticData
sudo rm -rf /System/Volumes/Data/private/var/db/dyld/*
# sudo rm -rf /System/Library/Fonts/*
# sudo rm -rf /System/Library/PreferencePanes
sudo rm -rf /System/Library/AssetsV2/*
sudo rm -rf /Applications/Safari.app
sudo rm -rf ~/project/src/build/linux
sudo rm -rf ~/project/src/third_party/catapult/tracing/test_data
sudo rm -rf ~/project/src/third_party/angle/third_party/VK-GL-CTS
# lipo off some huge binaries arm64 versions to save space
strip_arm_deep $(xcode-select -p)/../SharedFrameworks
strip_arm_deep /System/Volumes/Data/Library/Developer/CommandLineTools/usr
2020-08-18 08:06:59 +03:00
fi
2019-05-01 22:31:02 +03:00
fi
2020-07-17 00:20:42 +03:00
background : true
2019-05-01 22:31:02 +03:00
2020-03-04 00:35:05 +03:00
# On macOS delete all .git directories under src/ expect for
# third_party/angle/ because of build time generation of file
# gen/angle/commit.h depends on third_party/angle/.git/HEAD
# https://chromium-review.googlesource.com/c/angle/angle/+/2074924
# TODO: maybe better to always leave out */.git/HEAD file for all targets ?
2019-05-01 22:31:02 +03:00
step-delete-git-directories : &step-delete-git-directories
run :
2019-11-20 18:42:38 +03:00
name : Delete all .git directories under src on MacOS to free space
2019-05-08 17:27:03 +03:00
command : |
if [ "`uname`" == "Darwin" ]; then
2019-11-20 18:42:38 +03:00
cd src
2020-03-04 00:35:05 +03:00
( find . -type d -name ".git" -not -path "./third_party/angle/*" ) | xargs rm -rf
2019-05-08 17:27:03 +03:00
fi
2019-05-01 22:31:02 +03:00
2019-06-06 02:30:39 +03:00
# On macOS the yarn install command during gclient sync was run on a linux
2019-02-07 00:16:11 +03:00
# machine and therefore installed a slightly different set of dependencies
2019-06-06 02:30:39 +03:00
# Notably "fsevents" is a macOS only dependency, we rerun yarn install once
2019-02-07 00:16:11 +03:00
# we are on a macOS machine to get the correct state
step-install-npm-deps-on-mac : &step-install-npm-deps-on-mac
run :
2019-06-06 02:30:39 +03:00
name : Install node_modules on MacOS
2019-02-07 00:16:11 +03:00
command : |
if [ "`uname`" == "Darwin" ]; then
cd src/electron
2019-06-06 02:30:39 +03:00
node script/yarn install
2019-02-07 00:16:11 +03:00
fi
# This step handles the differences between the linux "gclient sync"
# and the expected state on macOS
step-fix-sync-on-mac : &step-fix-sync-on-mac
run :
name : Fix Sync on macOS
command : |
if [ "`uname`" == "Darwin" ]; then
# Fix Clang Install (wrong binary)
rm -rf src/third_party/llvm-build
python src/tools/clang/scripts/update.py
2021-06-17 01:43:51 +03:00
python src/tools/clang/scripts/update.py --package=lld_mac
2019-02-07 00:16:11 +03:00
fi
2019-03-30 03:32:52 +03:00
step-install-signing-cert-on-mac : &step-install-signing-cert-on-mac
run :
name : Import and trust self-signed codesigning cert on MacOS
command : |
2021-01-22 02:36:52 +03:00
if [ "$TARGET_ARCH" != "arm64" ] && [ "`uname`" == "Darwin" ]; then
2019-03-30 03:32:52 +03:00
cd src/electron
2020-03-19 04:00:42 +03:00
./script/codesign/generate-identity.sh
2019-03-30 03:32:52 +03:00
fi
2019-01-31 20:59:32 +03:00
step-install-gnutar-on-mac : &step-install-gnutar-on-mac
run :
name : Install gnu-tar on macos
command : |
if [ "`uname`" == "Darwin" ]; then
2021-01-07 23:09:46 +03:00
if [ ! -d /usr/local/Cellar/gnu-tar/ ]; then
brew update
brew install gnu-tar
fi
2019-01-31 20:59:32 +03:00
ln -fs /usr/local/bin/gtar /usr/local/bin/tar
fi
2018-10-04 18:50:46 +03:00
step-gn-gen-default : &step-gn-gen-default
2018-09-15 01:12:30 +03:00
run :
2018-10-04 18:50:46 +03:00
name : Default GN gen
2018-09-15 01:12:30 +03:00
command : |
cd src
2020-11-16 22:23:23 +03:00
gn gen out/Default --args="import(\"$GN_CONFIG\") import(\"$GN_GOMA_FILE\") $GN_EXTRA_ARGS $GN_BUILDFLAG_ARGS"
2018-09-15 01:12:30 +03:00
2019-03-05 08:08:55 +03:00
step-gn-check : &step-gn-check
run :
name : GN check
command : |
cd src
gn check out/Default //electron:electron_lib
gn check out/Default //electron:electron_app
2019-06-19 23:46:59 +03:00
gn check out/Default //electron/shell/common/api:mojo
2019-10-31 23:11:51 +03:00
# Check the hunspell filenames
node electron/script/gen-hunspell-filenames.js --check
2021-05-22 21:48:38 +03:00
node electron/script/gen-libc++-filenames.js --check
2019-03-05 08:08:55 +03:00
2018-09-15 01:12:30 +03:00
step-electron-build : &step-electron-build
run :
name : Electron build
2019-01-22 19:45:57 +03:00
no_output_timeout : 30m
2018-09-15 01:12:30 +03:00
command : |
2019-11-28 03:29:53 +03:00
# On arm platforms we generate a cross-arch ffmpeg that ninja does not seem
# to realize is not correct / should be rebuilt. We delete it here so it is
# rebuilt
if [ "$TRIGGER_ARM_TEST" == "true" ]; then
rm -f src/out/Default/libffmpeg.so
fi
2018-09-15 01:12:30 +03:00
cd src
2020-08-22 06:30:04 +03:00
# Enable if things get really bad
# if [ "$TARGET_ARCH" == "arm64" ] &&[ "`uname`" == "Darwin" ]; then
# diskutil erasevolume HFS+ "xcode_disk" `hdiutil attach -nomount ram://12582912`
# mv /Applications/Xcode-12.beta.5.app /Volumes/xcode_disk/
# ln -s /Volumes/xcode_disk/Xcode-12.beta.5.app /Applications/Xcode-12.beta.5.app
# fi
# Lets generate a snapshot and mksnapshot and then delete all the x-compiled generated files to save space
if [ "$USE_PREBUILT_V8_CONTEXT_SNAPSHOT" == "1" ]; then
ninja -C out/Default electron:electron_mksnapshot_zip -j $NUMBER_OF_NINJA_PROCESSES
ninja -C out/Default tools/v8_context_snapshot -j $NUMBER_OF_NINJA_PROCESSES
gn desc out/Default v8:run_mksnapshot_default args > out/Default/mksnapshot_args
2021-05-26 19:08:32 +03:00
(cd out/Default; zip mksnapshot.zip mksnapshot_args clang_x64_v8_arm64/gen/v8/embedded.S)
2021-04-26 20:56:31 +03:00
rm -rf out/Default/clang_x64_v8_arm64/gen
2020-08-22 06:30:04 +03:00
rm -rf out/Default/clang_x64_v8_arm64/obj
2021-04-26 20:56:31 +03:00
rm -rf out/Default/clang_x64/obj
2020-08-22 06:30:04 +03:00
2020-11-16 22:23:23 +03:00
# Regenerate because we just deleted some ninja files
gn gen out/Default --args="import(\"$GN_CONFIG\") import(\"$GN_GOMA_FILE\") $GN_EXTRA_ARGS $GN_BUILDFLAG_ARGS"
2020-08-22 06:30:04 +03:00
fi
2021-05-12 21:40:39 +03:00
NINJA_SUMMARIZE_BUILD=1 autoninja -C out/Default electron -j $NUMBER_OF_NINJA_PROCESSES
2021-05-13 09:42:16 +03:00
cp out/Default/.ninja_log out/electron_ninja_log
2020-06-17 00:19:57 +03:00
node electron/script/check-symlinks.js
2018-09-15 01:12:30 +03:00
2019-10-03 23:21:30 +03:00
step-native-unittests-build : &step-native-unittests-build
2019-10-09 00:46:01 +03:00
run :
2019-10-03 23:21:30 +03:00
name : Build native test targets
no_output_timeout : 30m
command : |
cd src
ninja -C out/Default shell_browser_ui_unittests -j $NUMBER_OF_NINJA_PROCESSES
2018-10-11 05:41:48 +03:00
step-maybe-electron-dist-strip : &step-maybe-electron-dist-strip
2018-10-09 23:19:05 +03:00
run :
name : Strip electron binaries
command : |
2019-11-21 04:21:44 +03:00
if [ "$STRIP_BINARIES" == "true" ] && [ "`uname`" == "Linux" ]; then
if [ x"$TARGET_ARCH" == x ]; then
target_cpu=x64
elif [ "$TARGET_ARCH" == "ia32" ]; then
target_cpu=x86
else
target_cpu="$TARGET_ARCH"
fi
2018-10-11 05:41:48 +03:00
cd src
2019-11-21 04:21:44 +03:00
electron/script/copy-debug-symbols.py --target-cpu="$target_cpu" --out-dir=out/Default/debug --compress
2020-02-08 01:05:04 +03:00
electron/script/strip-binaries.py --target-cpu="$target_cpu"
2019-11-21 04:21:44 +03:00
electron/script/add-debug-link.py --target-cpu="$target_cpu" --debug-dir=out/Default/debug
2018-10-11 05:41:48 +03:00
fi
2018-10-09 23:19:05 +03:00
2018-09-15 01:12:30 +03:00
step-electron-dist-build : &step-electron-dist-build
run :
name : Build dist.zip
command : |
cd src
2019-09-16 19:31:08 +03:00
if [ "$SKIP_DIST_ZIP" != "1" ]; then
ninja -C out/Default electron:electron_dist_zip
if [ "$CHECK_DIST_MANIFEST" == "1" ]; then
if [ "`uname`" == "Darwin" ]; then
target_os=mac
2019-05-29 19:40:02 +03:00
target_cpu=x64
2019-09-16 19:31:08 +03:00
if [ x"$MAS_BUILD" == x"true" ]; then
target_os=mac_mas
fi
2020-10-27 23:50:57 +03:00
if [ "$TARGET_ARCH" == "arm64" ]; then
target_cpu=arm64
fi
2019-09-16 19:31:08 +03:00
elif [ "`uname`" == "Linux" ]; then
target_os=linux
if [ x"$TARGET_ARCH" == x ]; then
target_cpu=x64
elif [ "$TARGET_ARCH" == "ia32" ]; then
target_cpu=x86
else
target_cpu="$TARGET_ARCH"
fi
2019-05-29 19:40:02 +03:00
else
2019-09-16 19:31:08 +03:00
echo "Unknown system: `uname`"
exit 1
2019-05-29 19:40:02 +03:00
fi
2019-09-16 19:31:08 +03:00
electron/script/zip_manifests/check-zip-manifest.py out/Default/dist.zip electron/script/zip_manifests/dist_zip.$target_os.$target_cpu.manifest
2019-05-29 19:40:02 +03:00
fi
fi
2018-09-15 01:12:30 +03:00
2018-09-20 01:42:42 +03:00
step-electron-chromedriver-build : &step-electron-chromedriver-build
run :
name : Build chromedriver.zip
command : |
cd src
2020-02-07 21:52:36 +03:00
if [ "$TARGET_ARCH" == "arm" ] || [ "$TARGET_ARCH" == "arm64" ]; then
2021-06-01 02:20:40 +03:00
gn gen out/chromedriver --args="import(\"$GN_CONFIG\") import(\"$GN_GOMA_FILE\") is_component_ffmpeg=false proprietary_codecs=false $GN_EXTRA_ARGS $GN_BUILDFLAG_ARGS"
2020-02-07 21:52:36 +03:00
export CHROMEDRIVER_DIR="out/chromedriver"
else
export CHROMEDRIVER_DIR="out/Default"
fi
ninja -C $CHROMEDRIVER_DIR electron:electron_chromedriver -j $NUMBER_OF_NINJA_PROCESSES
2020-02-08 01:05:04 +03:00
if [ "`uname`" == "Linux" ]; then
electron/script/strip-binaries.py --target-cpu="$TARGET_ARCH" --file $PWD/$CHROMEDRIVER_DIR/chromedriver
fi
2020-02-07 21:52:36 +03:00
ninja -C $CHROMEDRIVER_DIR electron:electron_chromedriver_zip
if [ "$TARGET_ARCH" == "arm" ] || [ "$TARGET_ARCH" == "arm64" ]; then
cp out/chromedriver/chromedriver.zip out/Default
fi
2018-09-20 01:42:42 +03:00
2018-09-15 01:12:30 +03:00
step-nodejs-headers-build : &step-nodejs-headers-build
run :
name : Build Node.js headers
command : |
cd src
2019-01-07 22:59:45 +03:00
ninja -C out/Default third_party/electron_node:headers
2018-09-15 01:12:30 +03:00
2018-09-29 05:33:56 +03:00
step-electron-publish : &step-electron-publish
run :
name : Publish Electron Dist
command : |
2019-12-19 01:54:52 +03:00
if [ "`uname`" == "Darwin" ]; then
rm -rf src/out/Default/obj
fi
2020-02-07 21:52:36 +03:00
2018-09-29 05:33:56 +03:00
cd src/electron
2018-10-01 23:24:51 +03:00
if [ "$UPLOAD_TO_S3" == "1" ]; then
echo 'Uploading Electron release distribution to S3'
2020-11-09 23:30:43 +03:00
script/release/uploaders/upload.py --verbose --upload_to_s3
2018-10-01 23:24:51 +03:00
else
echo 'Uploading Electron release distribution to Github releases'
2020-11-09 23:30:43 +03:00
script/release/uploaders/upload.py --verbose
2018-09-29 05:33:56 +03:00
fi
2018-09-15 01:12:30 +03:00
step-persist-data-for-tests : &step-persist-data-for-tests
persist_to_workspace :
root : .
paths :
# Build artifacts
- src/out/Default/dist.zip
2018-11-09 17:54:17 +03:00
- src/out/Default/mksnapshot.zip
2020-02-07 21:52:36 +03:00
- src/out/Default/chromedriver.zip
2019-10-03 23:21:30 +03:00
- src/out/Default/shell_browser_ui_unittests
2018-09-15 01:12:30 +03:00
- src/out/Default/gen/node_headers
2019-01-31 20:59:32 +03:00
- src/out/ffmpeg/ffmpeg.zip
2019-09-16 19:31:08 +03:00
- src/electron
- src/third_party/electron_node
- src/third_party/nan
2021-01-22 02:36:52 +03:00
- src/cross-arch-snapshots
2021-05-22 21:48:38 +03:00
- src/third_party/llvm-build
- src/build/linux
- src/buildtools/third_party/libc++
- src/buildtools/third_party/libc++abi
- src/out/Default/obj/buildtools/third_party
2018-09-15 01:12:30 +03:00
step-electron-dist-unzip : &step-electron-dist-unzip
run :
name : Unzip dist.zip
command : |
cd src/out/Default
# -o overwrite files WITHOUT prompting
# TODO(alexeykuzmin): Remove '-o' when it's no longer needed.
2021-02-23 03:16:17 +03:00
# -: allows to extract archive members into locations outside
# of the current ``extraction root folder''.
# ASan builds have the llvm-symbolizer binaries listed as
# runtime_deps, with their paths as `../../third_party/...`
# unzip exits with non-zero code on such zip files unless -: is
# passed.
unzip -:o dist.zip
2018-09-15 01:12:30 +03:00
2019-01-31 20:59:32 +03:00
step-ffmpeg-unzip : &step-ffmpeg-unzip
run :
name : Unzip ffmpeg.zip
command : |
cd src/out/ffmpeg
2021-02-23 03:16:17 +03:00
unzip -:o ffmpeg.zip
2019-01-31 20:59:32 +03:00
2018-11-09 17:54:17 +03:00
step-mksnapshot-unzip : &step-mksnapshot-unzip
run :
name : Unzip mksnapshot.zip
command : |
cd src/out/Default
2021-02-23 03:16:17 +03:00
unzip -:o mksnapshot.zip
2018-11-09 17:54:17 +03:00
2020-02-03 21:31:14 +03:00
step-chromedriver-unzip : &step-chromedriver-unzip
run :
name : Unzip chromedriver.zip
command : |
2020-02-07 21:52:36 +03:00
cd src/out/Default
2021-02-23 03:16:17 +03:00
unzip -:o chromedriver.zip
2020-02-03 21:31:14 +03:00
2018-09-15 01:12:30 +03:00
step-ffmpeg-gn-gen : &step-ffmpeg-gn-gen
run :
name : ffmpeg GN gen
command : |
cd src
2020-11-16 22:23:23 +03:00
gn gen out/ffmpeg --args="import(\"//electron/build/args/ffmpeg.gn\") import(\"$GN_GOMA_FILE\") $GN_EXTRA_ARGS"
2018-09-15 01:12:30 +03:00
step-ffmpeg-build : &step-ffmpeg-build
run :
name : Non proprietary ffmpeg build
command : |
cd src
2019-01-31 20:59:32 +03:00
ninja -C out/ffmpeg electron:electron_ffmpeg_zip -j $NUMBER_OF_NINJA_PROCESSES
2018-09-15 01:12:30 +03:00
step-verify-ffmpeg : &step-verify-ffmpeg
run :
name : Verify ffmpeg
command : |
cd src
python electron/script/verify-ffmpeg.py --source-root "$PWD" --build-dir out/Default --ffmpeg-path out/ffmpeg
2018-11-09 17:54:17 +03:00
step-verify-mksnapshot : &step-verify-mksnapshot
run :
name : Verify mksnapshot
command : |
2021-02-23 03:16:17 +03:00
if [ "$IS_ASAN" != "1" ]; then
cd src
if [ "$TARGET_ARCH" == "arm64" ] &&[ "`uname`" == "Darwin" ]; then
python electron/script/verify-mksnapshot.py --source-root "$PWD" --build-dir out/Default --snapshot-files-dir $PWD/cross-arch-snapshots
else
python electron/script/verify-mksnapshot.py --source-root "$PWD" --build-dir out/Default
fi
2021-01-22 02:36:52 +03:00
fi
2018-11-09 17:54:17 +03:00
2020-02-03 21:31:14 +03:00
step-verify-chromedriver : &step-verify-chromedriver
run :
name : Verify ChromeDriver
command : |
2021-02-23 03:16:17 +03:00
if [ "$IS_ASAN" != "1" ]; then
cd src
python electron/script/verify-chromedriver.py --source-root "$PWD" --build-dir out/Default
fi
2020-02-03 21:31:14 +03:00
2018-09-21 12:43:28 +03:00
step-setup-linux-for-headless-testing : &step-setup-linux-for-headless-testing
2018-09-15 01:12:30 +03:00
run :
name : Setup for headless testing
2018-09-17 19:44:02 +03:00
command : |
2018-09-21 12:43:28 +03:00
if [ "`uname`" != "Darwin" ]; then
sh -e /etc/init.d/xvfb start
fi
2018-09-15 01:12:30 +03:00
2020-11-16 22:23:23 +03:00
step-show-goma-stats : &step-show-goma-stats
2018-09-15 01:12:30 +03:00
run :
2020-10-16 04:30:41 +03:00
shell : /bin/bash
2020-11-16 22:23:23 +03:00
name : Check goma stats after build
command : |
set +e
set +o pipefail
$LOCAL_GOMA_DIR/goma_ctl.py stat
$LOCAL_GOMA_DIR/diagnose_goma_log.py
true
2020-10-16 04:30:41 +03:00
when : always
2018-09-15 01:12:30 +03:00
2018-09-25 04:48:49 +03:00
step-mksnapshot-build : &step-mksnapshot-build
run :
name : mksnapshot build
command : |
cd src
2020-08-22 12:23:14 +03:00
if [ "$USE_PREBUILT_V8_CONTEXT_SNAPSHOT" != "1" ]; then
2020-08-22 06:30:04 +03:00
ninja -C out/Default electron:electron_mksnapshot -j $NUMBER_OF_NINJA_PROCESSES
gn desc out/Default v8:run_mksnapshot_default args > out/Default/mksnapshot_args
fi
2018-10-09 23:19:05 +03:00
if [ "`uname`" != "Darwin" ]; then
if [ "$TARGET_ARCH" == "arm" ]; then
2020-02-08 01:05:04 +03:00
electron/script/strip-binaries.py --file $PWD/out/Default/clang_x86_v8_arm/mksnapshot
2020-05-12 21:52:56 +03:00
electron/script/strip-binaries.py --file $PWD/out/Default/clang_x86_v8_arm/v8_context_snapshot_generator
2018-10-09 23:19:05 +03:00
elif [ "$TARGET_ARCH" == "arm64" ]; then
2020-02-08 01:05:04 +03:00
electron/script/strip-binaries.py --file $PWD/out/Default/clang_x64_v8_arm64/mksnapshot
2020-05-12 21:52:56 +03:00
electron/script/strip-binaries.py --file $PWD/out/Default/clang_x64_v8_arm64/v8_context_snapshot_generator
2018-10-09 23:19:05 +03:00
else
2020-02-08 01:05:04 +03:00
electron/script/strip-binaries.py --file $PWD/out/Default/mksnapshot
electron/script/strip-binaries.py --file $PWD/out/Default/v8_context_snapshot_generator
2018-10-09 23:19:05 +03:00
fi
fi
2020-08-22 12:23:14 +03:00
if [ "$USE_PREBUILT_V8_CONTEXT_SNAPSHOT" != "1" ] && [ "$SKIP_DIST_ZIP" != "1" ]; then
2019-09-16 19:31:08 +03:00
ninja -C out/Default electron:electron_mksnapshot_zip -j $NUMBER_OF_NINJA_PROCESSES
2020-02-04 21:10:11 +03:00
(cd out/Default; zip mksnapshot.zip mksnapshot_args gen/v8/embedded.S)
2019-09-16 19:31:08 +03:00
fi
2018-09-25 04:48:49 +03:00
2019-10-31 23:11:51 +03:00
step-hunspell-build : &step-hunspell-build
run :
name : hunspell build
command : |
cd src
if [ "$SKIP_DIST_ZIP" != "1" ]; then
ninja -C out/Default electron:hunspell_dictionaries_zip -j $NUMBER_OF_NINJA_PROCESSES
fi
2021-05-22 21:48:38 +03:00
step-maybe-generate-libcxx : &step-maybe-generate-libcxx
run :
name : maybe generate libcxx
command : |
cd src
if [ "`uname`" == "Linux" ]; then
ninja -C out/Default electron:libcxx_headers_zip -j $NUMBER_OF_NINJA_PROCESSES
ninja -C out/Default electron:libcxxabi_headers_zip -j $NUMBER_OF_NINJA_PROCESSES
ninja -C out/Default electron:libcxx_objects_zip -j $NUMBER_OF_NINJA_PROCESSES
fi
2019-01-31 20:59:32 +03:00
step-maybe-generate-breakpad-symbols : &step-maybe-generate-breakpad-symbols
2018-10-13 05:02:52 +03:00
run :
name : Generate breakpad symbols
2020-07-01 18:06:45 +03:00
no_output_timeout : 30m
2018-10-13 05:02:52 +03:00
command : |
2019-01-31 20:59:32 +03:00
if [ "$GENERATE_SYMBOLS" == "true" ]; then
cd src
2019-07-05 20:38:30 +03:00
ninja -C out/Default electron:electron_symbols
2019-01-31 20:59:32 +03:00
fi
2018-10-13 05:02:52 +03:00
2019-01-31 20:59:32 +03:00
step-maybe-zip-symbols : &step-maybe-zip-symbols
2018-10-13 05:02:52 +03:00
run :
name : Zip symbols
command : |
cd src
export BUILD_PATH="$PWD/out/Default"
2019-09-16 19:31:08 +03:00
ninja -C out/Default electron:licenses
ninja -C out/Default electron:electron_version
2021-04-26 21:04:44 +03:00
DELETE_DSYMS_AFTER_ZIP=1 electron/script/zip-symbols.py -b $BUILD_PATH
2018-09-27 17:58:57 +03:00
2019-03-28 18:05:43 +03:00
step-maybe-cross-arch-snapshot : &step-maybe-cross-arch-snapshot
2018-09-27 17:58:57 +03:00
run :
2019-03-28 18:05:43 +03:00
name : Generate cross arch snapshot (arm/arm64)
2018-09-27 17:58:57 +03:00
command : |
2021-01-22 02:36:52 +03:00
if [ "$GENERATE_CROSS_ARCH_SNAPSHOT" == "true" ] && [ -z "$CIRCLE_PR_NUMBER" ]; then
2018-10-09 23:19:05 +03:00
cd src
2019-03-28 18:05:43 +03:00
if [ "$TARGET_ARCH" == "arm" ]; then
export MKSNAPSHOT_PATH="clang_x86_v8_arm"
elif [ "$TARGET_ARCH" == "arm64" ]; then
export MKSNAPSHOT_PATH="clang_x64_v8_arm64"
fi
2020-07-17 19:08:44 +03:00
cp "out/Default/$MKSNAPSHOT_PATH/mksnapshot" out/Default
2019-03-28 18:05:43 +03:00
cp "out/Default/$MKSNAPSHOT_PATH/v8_context_snapshot_generator" out/Default
2020-07-17 19:08:44 +03:00
if [ "`uname`" == "Linux" ]; then
cp "out/Default/$MKSNAPSHOT_PATH/libffmpeg.so" out/Default
elif [ "`uname`" == "Darwin" ]; then
cp "out/Default/$MKSNAPSHOT_PATH/libffmpeg.dylib" out/Default
fi
2019-03-28 18:05:43 +03:00
python electron/script/verify-mksnapshot.py --source-root "$PWD" --build-dir out/Default --create-snapshot-only
mkdir cross-arch-snapshots
cp out/Default-mksnapshot-test/*.bin cross-arch-snapshots
2018-10-09 23:19:05 +03:00
fi
2018-10-04 19:01:16 +03:00
step-maybe-trigger-arm-test : &step-maybe-trigger-arm-test
run :
name : Trigger an arm test on VSTS if applicable
command : |
cd src
# Only run for non-fork prs
if [ "$TRIGGER_ARM_TEST" == "true" ] && [ -z "$CIRCLE_PR_NUMBER" ]; then
#Trigger VSTS job, passing along CircleCI job number and branch to build
2020-07-17 19:08:44 +03:00
if [ "`uname`" == "Darwin" ]; then
2021-01-22 02:36:52 +03:00
if [ x"$MAS_BUILD" == x"true" ]; then
export DEVOPS_BUILD="electron-mas-arm64-testing"
else
export DEVOPS_BUILD="electron-osx-arm64-testing"
fi
echo "Triggering $DEVOPS_BUILD build on Azure DevOps"
node electron/script/release/ci-release-build.js --job=$DEVOPS_BUILD --ci=DevOps --armTest --circleBuildNum=$CIRCLE_BUILD_NUM $CIRCLE_BRANCH
2020-07-17 19:08:44 +03:00
else
echo "Triggering electron-$TARGET_ARCH-testing build on VSTS"
node electron/script/release/ci-release-build.js --job=electron-$TARGET_ARCH-testing --ci=VSTS --armTest --circleBuildNum=$CIRCLE_BUILD_NUM $CIRCLE_BRANCH
fi
2018-10-04 19:01:16 +03:00
fi
2019-01-31 20:59:32 +03:00
step-maybe-generate-typescript-defs : &step-maybe-generate-typescript-defs
run :
name : Generate type declarations
command : |
if [ "`uname`" == "Darwin" ]; then
cd src/electron
2019-06-06 02:30:39 +03:00
node script/yarn create-typescript-definitions
2019-01-31 20:59:32 +03:00
fi
2019-03-20 05:37:52 +03:00
step-fix-known-hosts-linux : &step-fix-known-hosts-linux
run :
name : Fix Known Hosts on Linux
command : |
if [ "`uname`" == "Linux" ]; then
./src/electron/.circleci/fix-known-hosts.sh
fi
2019-08-21 21:52:17 +03:00
# Checkout Steps
step-generate-deps-hash : &step-generate-deps-hash
run :
name : Generate DEPS Hash
2019-11-28 03:29:53 +03:00
command : node src/electron/script/generate-deps-hash.js && cat src/electron/.depshash-target
2019-08-21 21:52:17 +03:00
step-touch-sync-done : &step-touch-sync-done
run :
name : Touch Sync Done
command : touch src/electron/.circle-sync-done
# Restore exact src cache based on the hash of DEPS and patches/*
# If no cache is matched EXACTLY then the .circle-sync-done file is empty
# If a cache is matched EXACTLY then the .circle-sync-done file contains "done"
step-maybe-restore-src-cache : &step-maybe-restore-src-cache
restore_cache :
keys :
2020-07-14 04:13:34 +03:00
- v8-src-cache-{{ checksum "src/electron/.depshash" }}
2019-08-21 21:52:17 +03:00
name : Restoring src cache
2020-07-17 00:16:02 +03:00
step-maybe-restore-src-cache-marker : &step-maybe-restore-src-cache-marker
restore_cache :
keys :
- v1-src-cache-marker-{{ checksum "src/electron/.depshash" }}
name : Restoring src cache marker
2019-08-21 21:52:17 +03:00
# Restore exact or closest git cache based on the hash of DEPS and .circle-sync-done
# If the src cache was restored above then this will match an empty cache
# If the src cache was not restored above then this will match a close git cache
step-maybe-restore-git-cache : &step-maybe-restore-git-cache
restore_cache :
paths :
- ~/.gclient-cache
keys :
2019-11-28 03:29:53 +03:00
- v2-gclient-cache-{{ checksum "src/electron/.circle-sync-done" }}-{{ checksum "src/electron/DEPS" }}
- v2-gclient-cache-{{ checksum "src/electron/.circle-sync-done" }}
2019-08-21 21:52:17 +03:00
name : Conditionally restoring git cache
2019-11-28 03:29:53 +03:00
step-restore-out-cache : &step-restore-out-cache
restore_cache :
paths :
- ./src/out/Default
keys :
2020-07-03 05:42:40 +03:00
- v9-out-cache-{{ checksum "src/electron/.depshash" }}-{{ checksum "src/electron/.depshash-target" }}
2019-11-28 03:29:53 +03:00
name : Restoring out cache
2019-08-21 21:52:17 +03:00
step-set-git-cache-path : &step-set-git-cache-path
run :
name : Set GIT_CACHE_PATH to make gclient to use the cache
command : |
# CircleCI does not support interpolation when setting environment variables.
# https://circleci.com/docs/2.0/env-vars/#setting-an-environment-variable-in-a-shell-command
echo 'export GIT_CACHE_PATH="$HOME/.gclient-cache"' >> $BASH_ENV
# Persist the git cache based on the hash of DEPS and .circle-sync-done
# If the src cache was restored above then this will persist an empty cache
step-save-git-cache : &step-save-git-cache
save_cache :
paths :
- ~/.gclient-cache
2019-11-28 03:29:53 +03:00
key : v2-gclient-cache-{{ checksum "src/electron/.circle-sync-done" }}-{{ checksum "src/electron/DEPS" }}
2019-08-21 21:52:17 +03:00
name : Persisting git cache
2019-11-28 03:29:53 +03:00
step-save-out-cache : &step-save-out-cache
save_cache :
paths :
- ./src/out/Default
2020-07-03 05:42:40 +03:00
key : v9-out-cache-{{ checksum "src/electron/.depshash" }}-{{ checksum "src/electron/.depshash-target" }}
2019-11-28 03:29:53 +03:00
name : Persisting out cache
2019-08-21 21:52:17 +03:00
step-run-electron-only-hooks : &step-run-electron-only-hooks
run :
name : Run Electron Only Hooks
command : gclient runhooks --spec="solutions=[{'name':'src/electron','url':None,'deps_file':'DEPS','custom_vars':{'process_deps':False},'managed':False}]"
step-generate-deps-hash-cleanly : &step-generate-deps-hash-cleanly
run :
name : Generate DEPS Hash
2019-11-28 03:29:53 +03:00
command : (cd src/electron && git checkout .) && node src/electron/script/generate-deps-hash.js && cat src/electron/.depshash-target
2019-08-21 21:52:17 +03:00
# Mark the sync as done for future cache saving
step-mark-sync-done : &step-mark-sync-done
run :
name : Mark Sync Done
command : echo DONE > src/electron/.circle-sync-done
# Minimize the size of the cache
step-minimize-workspace-size-from-checkout : &step-minimize-workspace-size-from-checkout
run :
name : Remove some unused data to avoid storing it in the workspace/cache
command : |
rm -rf src/android_webview
2021-03-04 20:27:05 +03:00
rm -rf src/ios/chrome
2019-08-21 21:52:17 +03:00
rm -rf src/third_party/blink/web_tests
rm -rf src/third_party/blink/perf_tests
rm -rf src/third_party/WebKit/LayoutTests
2020-08-18 08:06:59 +03:00
rm -rf third_party/electron_node/deps/openssl
rm -rf third_party/electron_node/deps/v8
2020-08-22 06:30:04 +03:00
rm -rf chrome/test/data/xr/webvr_info
2019-08-21 21:52:17 +03:00
# Save the src cache based on the deps hash
step-save-src-cache : &step-save-src-cache
save_cache :
paths :
2020-07-14 04:13:34 +03:00
- /var/portal
key : v8-src-cache-{{ checksum "/var/portal/src/electron/.depshash" }}
2019-08-21 21:52:17 +03:00
name : Persisting src cache
2020-07-17 00:16:02 +03:00
step-make-src-cache-marker : &step-make-src-cache-marker
run :
name : Making src cache marker
command : touch .src-cache-marker
step-save-src-cache-marker : &step-save-src-cache-marker
save_cache :
paths :
- .src-cache-marker
key : v1-src-cache-marker-{{ checksum "/var/portal/src/electron/.depshash" }}
2019-08-21 21:52:17 +03:00
2019-10-24 02:36:26 +03:00
# Check for doc only change
step-check-for-doc-only-change : &step-check-for-doc-only-change
run :
name : Check if commit is doc only change
command : |
cd src/electron
node script/yarn install --frozen-lockfile
2020-02-07 20:58:47 +03:00
if node script/doc-only-change.js --prNumber=$CIRCLE_PR_NUMBER --prURL=$CIRCLE_PULL_REQUEST --prBranch=$CIRCLE_BRANCH; then
2019-10-24 02:36:26 +03:00
#PR is doc only change; save file with value true to indicate doc only change
echo "true" > .skip-ci-build
else
#PR is not a doc only change; create empty file to indicate check has been done
touch .skip-ci-build
fi
step-persist-doc-only-change : &step-persist-doc-only-change
persist_to_workspace :
root : .
paths :
- src/electron/.skip-ci-build
step-maybe-early-exit-doc-only-change : &step-maybe-early-exit-doc-only-change
run :
name : Shortcircuit build if doc only change
command : |
if [ -s src/electron/.skip-ci-build ]; then
circleci-agent step halt
fi
step-maybe-early-exit-no-doc-change : &step-maybe-early-exit-no-doc-change
run :
name : Shortcircuit job if change is not doc only
command : |
if [ ! -s src/electron/.skip-ci-build ]; then
circleci-agent step halt
fi
step-ts-compile : &step-ts-compile
run :
name : Run TS/JS compile on doc only change
command : |
cd src
ninja -C out/Default electron:default_app_js -j $NUMBER_OF_NINJA_PROCESSES
2020-02-07 20:58:47 +03:00
ninja -C out/Default electron:electron_js2c -j $NUMBER_OF_NINJA_PROCESSES
2019-10-24 02:36:26 +03:00
2018-09-15 01:12:30 +03:00
# Lists of steps.
2019-02-06 23:53:25 +03:00
steps-lint : &steps-lint
steps :
- *step-checkout-electron
- run :
name : Setup third_party Depot Tools
command : |
# "depot_tools" has to be checkout into "//third_party/depot_tools" so pylint.py can a "pylintrc" file.
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git src/third_party/depot_tools
echo 'export PATH="$PATH:'"$PWD"'/src/third_party/depot_tools"' >> $BASH_ENV
- run :
name : Download GN Binary
command : |
chromium_revision="$(grep -A1 chromium_version src/electron/DEPS | tr -d '\n' | cut -d\' -f4)"
2019-03-22 02:35:29 +03:00
gn_version="$(curl -sL "https://chromium.googlesource.com/chromium/src/+/${chromium_revision}/DEPS?format=TEXT" | base64 -d | grep gn_version | head -n1 | cut -d\' -f4)"
2019-02-06 23:53:25 +03:00
2019-09-17 21:48:02 +03:00
cipd ensure -ensure-file - -root . \<<-CIPD
2019-07-25 20:44:28 +03:00
\$ServiceURL https://chrome-infra-packages.appspot.com/
@Subdir src/buildtools/linux64
gn/gn/linux-amd64 $gn_version
CIPD
2019-02-06 23:53:25 +03:00
2019-07-09 11:40:26 +03:00
echo 'export CHROMIUM_BUILDTOOLS_PATH="'"$PWD"'/src/buildtools"' >> $BASH_ENV
- run :
name : Download clang-format Binary
command : |
chromium_revision="$(grep -A1 chromium_version src/electron/DEPS | tr -d '\n' | cut -d\' -f4)"
sha1_path='buildtools/linux64/clang-format.sha1'
curl -sL "https://chromium.googlesource.com/chromium/src/+/${chromium_revision}/${sha1_path}?format=TEXT" | base64 -d > "src/${sha1_path}"
download_from_google_storage.py --no_resume --no_auth --bucket chromium-clang-format -s "src/${sha1_path}"
2019-02-06 23:53:25 +03:00
- run :
name : Run Lint
command : |
# gn.py tries to find a gclient root folder starting from the current dir.
# When it fails and returns "None" path, the whole script fails. Let's "fix" it.
touch .gclient
# Another option would be to checkout "buildtools" inside the Electron checkout,
# but then we would lint its contents (at least gn format), and it doesn't pass it.
cd src/electron
2019-06-19 00:42:42 +03:00
node script/yarn install --frozen-lockfile
2019-06-06 02:30:39 +03:00
node script/yarn lint
2020-08-07 23:49:07 +03:00
- run :
name : Run Script Typechecker
command : |
cd src/electron
node script/yarn tsc -p tsconfig.script.json
2019-02-06 23:53:25 +03:00
2019-03-05 08:08:55 +03:00
steps-electron-gn-check : &steps-electron-gn-check
steps :
- attach_workspace :
at : .
2019-10-24 02:36:26 +03:00
- *step-maybe-early-exit-doc-only-change
2019-03-05 08:08:55 +03:00
- *step-depot-tools-add-to-path
- *step-setup-env-for-build
2020-11-16 22:23:23 +03:00
- *step-setup-goma-for-build
2019-03-05 08:08:55 +03:00
- *step-gn-gen-default
- *step-gn-check
2019-10-24 02:36:26 +03:00
steps-electron-ts-compile-for-doc-change : &steps-electron-ts-compile-for-doc-change
steps :
# Checkout - Copied ffrom steps-checkout
- *step-checkout-electron
- *step-check-for-doc-only-change
- *step-maybe-early-exit-no-doc-change
- *step-depot-tools-get
- *step-depot-tools-add-to-path
- *step-restore-brew-cache
- *step-install-gnutar-on-mac
2020-07-15 04:34:38 +03:00
- *step-get-more-space-on-mac
2019-10-24 02:36:26 +03:00
- *step-generate-deps-hash
- *step-touch-sync-done
2019-11-28 03:29:53 +03:00
- maybe-restore-portaled-src-cache
2019-10-24 02:36:26 +03:00
- *step-maybe-restore-git-cache
- *step-set-git-cache-path
# This sync call only runs if .circle-sync-done is an EMPTY file
- *step-gclient-sync
# These next few steps reset Electron to the correct commit regardless of which cache was restored
- run :
name : Wipe Electron
command : rm -rf src/electron
- *step-checkout-electron
- *step-run-electron-only-hooks
- *step-generate-deps-hash-cleanly
- *step-mark-sync-done
- *step-minimize-workspace-size-from-checkout
- *step-depot-tools-add-to-path
- *step-setup-env-for-build
2020-11-16 22:23:23 +03:00
- *step-setup-goma-for-build
2019-10-24 02:36:26 +03:00
- *step-get-more-space-on-mac
- *step-install-npm-deps-on-mac
- *step-fix-sync-on-mac
- *step-gn-gen-default
#Compile ts/js to verify doc change didn't break anything
- *step-ts-compile
2018-09-18 13:55:46 +03:00
steps-native-tests : &steps-native-tests
steps :
- attach_workspace :
at : .
2018-09-20 02:02:12 +03:00
- *step-depot-tools-add-to-path
- *step-setup-env-for-build
2020-11-16 22:23:23 +03:00
- *step-setup-goma-for-build
2018-10-04 18:50:46 +03:00
- *step-gn-gen-default
2018-09-27 18:29:27 +03:00
2018-09-24 16:44:18 +03:00
- run :
2018-09-27 18:29:27 +03:00
name : Build tests
2018-09-24 16:44:18 +03:00
command : |
cd src
2019-01-07 22:59:45 +03:00
ninja -C out/Default $BUILD_TARGET
2020-11-16 22:23:23 +03:00
- *step-show-goma-stats
2018-09-27 18:29:27 +03:00
- *step-setup-linux-for-headless-testing
2018-09-24 16:44:18 +03:00
- run :
2018-09-27 18:29:27 +03:00
name : Run tests
2018-09-24 16:44:18 +03:00
command : |
2018-09-27 18:29:27 +03:00
mkdir test_results
python src/electron/script/native-tests.py run \
--config $TESTS_CONFIG \
--tests-dir src/out/Default \
2018-10-22 23:12:19 +03:00
--output-dir test_results \
$TESTS_ARGS
2018-09-27 18:29:27 +03:00
2018-09-24 16:44:18 +03:00
- store_artifacts :
2018-09-27 18:29:27 +03:00
path : test_results
destination : test_results # Put it in the root folder.
2018-09-24 16:44:18 +03:00
- store_test_results :
2018-09-27 18:29:27 +03:00
path : test_results
2018-09-18 13:55:46 +03:00
2018-09-19 15:53:22 +03:00
steps-verify-ffmpeg : &steps-verify-ffmpeg
2018-09-15 01:12:30 +03:00
steps :
- attach_workspace :
at : .
2018-09-20 02:02:12 +03:00
- *step-depot-tools-add-to-path
- *step-electron-dist-unzip
2019-01-31 20:59:32 +03:00
- *step-ffmpeg-unzip
2018-09-21 12:43:28 +03:00
- *step-setup-linux-for-headless-testing
2018-09-15 01:12:30 +03:00
2018-09-20 02:02:12 +03:00
- *step-verify-ffmpeg
2018-10-06 02:15:38 +03:00
- *step-maybe-notify-slack-failure
2018-09-15 01:12:30 +03:00
2018-09-19 15:53:22 +03:00
steps-tests : &steps-tests
steps :
- attach_workspace :
at : .
2019-10-24 02:36:26 +03:00
- *step-maybe-early-exit-doc-only-change
2018-09-19 15:53:22 +03:00
- *step-depot-tools-add-to-path
- *step-electron-dist-unzip
2018-11-09 17:54:17 +03:00
- *step-mksnapshot-unzip
2020-02-03 21:31:14 +03:00
- *step-chromedriver-unzip
2018-09-21 12:43:28 +03:00
- *step-setup-linux-for-headless-testing
2019-02-07 00:16:11 +03:00
- *step-restore-brew-cache
2019-03-20 05:37:52 +03:00
- *step-fix-known-hosts-linux
2019-03-30 03:32:52 +03:00
- *step-install-signing-cert-on-mac
2018-09-19 15:53:22 +03:00
2018-09-21 12:43:28 +03:00
- run :
name : Run Electron tests
environment :
MOCHA_REPORTER : mocha-multi-reporters
2019-07-09 23:56:46 +03:00
ELECTRON_TEST_RESULTS_DIR : junit
2018-09-21 12:43:28 +03:00
MOCHA_MULTI_REPORTERS : mocha-junit-reporter, tap
ELECTRON_DISABLE_SECURITY_WARNINGS : 1
command : |
cd src
2021-02-23 03:16:17 +03:00
if [ "$IS_ASAN" == "1" ]; then
ASAN_SYMBOLIZE="$PWD/tools/valgrind/asan/asan_symbolize.py --executable-path=$PWD/out/Default/electron"
export ASAN_OPTIONS="symbolize=0 handle_abort=1"
export G_SLICE=always-malloc
export NSS_DISABLE_ARENA_FREE_LIST=1
export NSS_DISABLE_UNLOAD=1
export LLVM_SYMBOLIZER_PATH=$PWD/third_party/llvm-build/Release+Asserts/bin/llvm-symbolizer
export MOCHA_TIMEOUT=180000
echo "Piping output to ASAN_SYMBOLIZE ($ASAN_SYMBOLIZE)"
2021-05-12 21:59:30 +03:00
(cd electron && node script/yarn test --runners=main --trace-uncaught --enable-logging --files $(circleci tests glob spec-main/*-spec.ts | circleci tests split --split-by=timings)) 2>&1 | $ASAN_SYMBOLIZE
(cd electron && node script/yarn test --runners=remote --trace-uncaught --enable-logging --files $(circleci tests glob spec/*-spec.js | circleci tests split --split-by=timings)) 2>&1 | $ASAN_SYMBOLIZE
2021-01-22 02:36:52 +03:00
else
2021-02-23 03:16:17 +03:00
if [ "$TARGET_ARCH" == "arm64" ] &&[ "`uname`" == "Darwin" ]; then
export ELECTRON_SKIP_NATIVE_MODULE_TESTS=true
(cd electron && node script/yarn test --runners=main --trace-uncaught --enable-logging)
(cd electron && node script/yarn test --runners=remote --trace-uncaught --enable-logging)
else
2021-05-12 21:59:30 +03:00
(cd electron && node script/yarn test --runners=main --trace-uncaught --enable-logging --files $(circleci tests glob spec-main/*-spec.ts | circleci tests split --split-by=timings))
(cd electron && node script/yarn test --runners=remote --trace-uncaught --enable-logging --files $(circleci tests glob spec/*-spec.js | circleci tests split --split-by=timings))
2021-02-23 03:16:17 +03:00
fi
2021-01-22 02:36:52 +03:00
fi
2018-10-01 17:59:55 +03:00
- run :
name : Check test results existence
command : |
2019-07-09 23:56:46 +03:00
cd src
# Check if test results exist and are not empty.
if [ ! -s "junit/test-results-remote.xml" ]; then
2019-03-11 01:38:44 +03:00
exit 1
fi
2019-07-09 23:56:46 +03:00
if [ ! -s "junit/test-results-main.xml" ]; then
2018-10-01 17:59:55 +03:00
exit 1
fi
2018-09-21 12:43:28 +03:00
- store_test_results :
path : src/junit
2018-09-15 01:12:30 +03:00
2018-11-09 17:54:17 +03:00
- *step-verify-mksnapshot
2020-02-03 21:31:14 +03:00
- *step-verify-chromedriver
2018-11-09 17:54:17 +03:00
2018-10-06 02:15:38 +03:00
- *step-maybe-notify-slack-failure
2021-03-22 20:34:13 +03:00
- *step-maybe-cleanup-arm64-mac
2019-05-29 22:38:17 +03:00
steps-test-nan : &steps-test-nan
steps :
- attach_workspace :
at : .
2019-10-24 02:36:26 +03:00
- *step-maybe-early-exit-doc-only-change
2019-05-29 22:38:17 +03:00
- *step-depot-tools-add-to-path
- *step-electron-dist-unzip
- *step-setup-linux-for-headless-testing
- *step-fix-known-hosts-linux
- run :
name : Run Nan Tests
command : |
cd src
node electron/script/nan-spec-runner.js
2019-07-23 21:40:06 +03:00
steps-test-node : &steps-test-node
steps :
- attach_workspace :
at : .
2019-10-24 02:36:26 +03:00
- *step-maybe-early-exit-doc-only-change
2019-07-23 21:40:06 +03:00
- *step-depot-tools-add-to-path
- *step-electron-dist-unzip
- *step-setup-linux-for-headless-testing
- *step-fix-known-hosts-linux
- run :
name : Run Node Tests
command : |
cd src
2020-02-21 23:19:25 +03:00
node electron/script/node-spec-runner.js --default --jUnitDir=junit
2019-07-23 23:00:02 +03:00
- store_test_results :
path : src/junit
2019-07-23 21:40:06 +03:00
2019-11-28 03:29:53 +03:00
# Command Aliases
commands :
maybe-restore-portaled-src-cache :
2020-07-17 00:16:02 +03:00
parameters :
halt-if-successful :
type : boolean
default : false
2019-11-28 03:29:53 +03:00
steps :
- run :
name : Prepare for cross-OS sync restore
command : |
2020-07-14 04:13:34 +03:00
sudo mkdir -p /var/portal
sudo chown -R $(id -u):$(id -g) /var/portal
2020-07-17 00:16:02 +03:00
- when :
condition : << parameters.halt-if-successful >>
steps :
- *step-maybe-restore-src-cache-marker
- run :
name : Halt the job early if the src cache exists
command : |
if [ -f ".src-cache-marker" ]; then
circleci-agent step halt
fi
2019-11-28 03:29:53 +03:00
- *step-maybe-restore-src-cache
- run :
name : Fix the src cache restore point on macOS
command : |
2020-07-14 04:13:34 +03:00
if [ -d "/var/portal/src" ]; then
2019-11-28 03:29:53 +03:00
echo Relocating Cache
rm -rf src
2020-07-14 04:13:34 +03:00
mv /var/portal/src ./
2019-11-28 03:29:53 +03:00
fi
2021-05-13 04:34:29 +03:00
move_and_store_all_artifacts :
steps :
- run :
name : Move all generated artifacts to upload folder
command : |
rm -rf generated_artifacts
mkdir generated_artifacts
mv_if_exist() {
if [ -f "$1" ] || [ -d "$1" ]; then
echo Storing $1
mv $1 generated_artifacts
else
echo Skipping $1 - It is not present on disk
fi
}
mv_if_exist src/out/Default/dist.zip
mv_if_exist src/out/Default/shell_browser_ui_unittests
mv_if_exist src/out/Default/gen/node_headers.tar.gz
mv_if_exist src/out/Default/symbols.zip
mv_if_exist src/out/Default/mksnapshot.zip
mv_if_exist src/out/Default/chromedriver.zip
mv_if_exist src/out/ffmpeg/ffmpeg.zip
mv_if_exist src/out/Default/hunspell_dictionaries.zip
mv_if_exist src/cross-arch-snapshots
2021-05-13 09:42:16 +03:00
mv_if_exist src/out/electron_ninja_log
2021-05-13 04:34:29 +03:00
when : always
- store_artifacts :
path : generated_artifacts
destination : ./
- store_artifacts :
path : generated_artifacts/cross-arch-snapshots
destination : cross-arch-snapshots
2019-11-28 03:29:53 +03:00
checkout-from-cache :
steps :
- *step-checkout-electron
- *step-maybe-early-exit-doc-only-change
- *step-depot-tools-get
- *step-depot-tools-add-to-path
- *step-generate-deps-hash
- maybe-restore-portaled-src-cache
- run :
name : Ensure src checkout worked
command : |
if [ ! -d "src/third_party/blink" ]; then
echo src cache was not restored for some reason, idk what happened here...
exit 1
fi
- run :
name : Wipe Electron
command : rm -rf src/electron
- *step-checkout-electron
- *step-run-electron-only-hooks
- *step-generate-deps-hash-cleanly
electron-build :
parameters :
attach :
type : boolean
default : false
persist :
type : boolean
default : true
persist-checkout :
type : boolean
default : false
checkout :
type : boolean
default : true
checkout-and-assume-cache :
type : boolean
default : false
2021-05-13 04:15:44 +03:00
save-git-cache :
type : boolean
default : false
checkout-to-create-src-cache :
type : boolean
default : false
2019-11-28 03:29:53 +03:00
build :
type : boolean
default : true
2020-01-23 20:47:38 +03:00
use-out-cache :
type : boolean
default : true
2020-02-11 23:42:37 +03:00
restore-src-cache :
type : boolean
default : true
2021-02-23 03:16:17 +03:00
build-nonproprietary-ffmpeg :
type : boolean
default : true
2019-11-28 03:29:53 +03:00
steps :
- when :
condition : << parameters.attach >>
steps :
- attach_workspace :
at : .
2021-06-14 22:20:59 +03:00
- *step-maybe-early-exit-doc-only-change
- run : rm -rf src/electron
2019-11-28 03:29:53 +03:00
- *step-restore-brew-cache
- *step-install-gnutar-on-mac
2020-02-06 01:15:51 +03:00
- *step-save-brew-cache
2019-11-28 03:29:53 +03:00
- when :
condition : << parameters.checkout-and-assume-cache >>
steps :
- checkout-from-cache
- when :
condition : << parameters.checkout >>
steps :
# Checkout - Copied ffrom steps-checkout
- *step-checkout-electron
- *step-check-for-doc-only-change
- *step-persist-doc-only-change
- *step-maybe-early-exit-doc-only-change
- *step-depot-tools-get
- *step-depot-tools-add-to-path
- *step-get-more-space-on-mac
- *step-generate-deps-hash
- *step-touch-sync-done
2020-02-11 23:42:37 +03:00
- when :
condition : << parameters.restore-src-cache >>
steps :
2021-05-13 04:15:44 +03:00
- maybe-restore-portaled-src-cache :
halt-if-successful : << parameters.checkout-to-create-src-cache >>
2019-11-28 03:29:53 +03:00
- *step-maybe-restore-git-cache
- *step-set-git-cache-path
# This sync call only runs if .circle-sync-done is an EMPTY file
- *step-gclient-sync
2020-04-08 18:59:14 +03:00
- store_artifacts :
path : patches
2021-05-13 04:15:44 +03:00
- when :
condition : << parameters.save-git-cache >>
steps :
- *step-save-git-cache
2019-11-28 03:29:53 +03:00
# These next few steps reset Electron to the correct commit regardless of which cache was restored
- run :
name : Wipe Electron
command : rm -rf src/electron
- *step-checkout-electron
- *step-run-electron-only-hooks
- *step-generate-deps-hash-cleanly
- *step-mark-sync-done
- *step-minimize-workspace-size-from-checkout
2021-05-13 04:15:44 +03:00
- *step-delete-git-directories
2019-11-28 03:29:53 +03:00
- when :
condition : << parameters.persist-checkout >>
steps :
- persist_to_workspace :
root : .
paths :
- depot_tools
- src
2021-05-13 04:15:44 +03:00
- when :
condition : << parameters.checkout-to-create-src-cache >>
steps :
- run :
name : Move src folder to the cross-OS portal
command : |
sudo mkdir -p /var/portal
sudo chown -R $(id -u):$(id -g) /var/portal
mv ./src /var/portal
- *step-save-src-cache
- *step-make-src-cache-marker
- *step-save-src-cache-marker
2019-11-28 03:29:53 +03:00
- when :
condition : << parameters.build >>
steps :
- *step-depot-tools-add-to-path
- *step-setup-env-for-build
2020-02-06 20:56:18 +03:00
- *step-setup-goma-for-build
2019-11-28 03:29:53 +03:00
- *step-get-more-space-on-mac
- *step-fix-sync-on-mac
- *step-delete-git-directories
# Electron app
2020-01-23 20:47:38 +03:00
- when :
condition : << parameters.use-out-cache >>
steps :
- *step-restore-out-cache
2019-11-28 03:29:53 +03:00
- *step-gn-gen-default
- *step-electron-build
- *step-maybe-electron-dist-strip
- *step-electron-dist-build
# Native test targets
- *step-native-unittests-build
# Node.js headers
- *step-nodejs-headers-build
2020-11-16 22:23:23 +03:00
- *step-show-goma-stats
2019-11-28 03:29:53 +03:00
# mksnapshot
- *step-mksnapshot-build
- *step-maybe-cross-arch-snapshot
2020-02-03 21:31:14 +03:00
# chromedriver
- *step-electron-chromedriver-build
2021-02-23 03:16:17 +03:00
- when :
condition : << parameters.build-nonproprietary-ffmpeg >>
steps :
# ffmpeg
- *step-ffmpeg-gn-gen
- *step-ffmpeg-build
2019-11-28 03:29:53 +03:00
# hunspell
- *step-hunspell-build
# Save all data needed for a further tests run.
- when :
condition : << parameters.persist >>
steps :
- *step-persist-data-for-tests
- when :
condition : << parameters.build >>
steps :
- *step-maybe-generate-breakpad-symbols
- *step-maybe-zip-symbols
- when :
condition : << parameters.build >>
steps :
2021-06-08 05:02:21 +03:00
- move_and_store_all_artifacts
2019-11-28 03:29:53 +03:00
- run :
name : Remove the big things on macOS, this seems to be better on average
command : |
if [ "`uname`" == "Darwin" ]; then
mkdir -p src/out/Default
cd src/out/Default
find . -type f -size +50M -delete
mkdir -p gen/electron
cd gen/electron
# These files do not seem to like being in a cache, let us remove them
find . -type f -name '*_pkg_info' -delete
fi
2020-01-23 20:47:38 +03:00
- when :
condition : << parameters.use-out-cache >>
steps :
- *step-save-out-cache
2019-11-28 03:29:53 +03:00
2020-02-11 23:42:37 +03:00
# Trigger tests on arm hardware if needed
- *step-maybe-trigger-arm-test
2019-11-28 03:29:53 +03:00
2020-02-11 23:42:37 +03:00
- *step-maybe-notify-slack-failure
electron-publish :
parameters :
attach :
type : boolean
default : false
checkout :
type : boolean
default : true
steps :
- when :
condition : << parameters.attach >>
steps :
- attach_workspace :
at : .
- when :
condition : << parameters.checkout >>
steps :
- *step-depot-tools-get
- *step-depot-tools-add-to-path
- *step-restore-brew-cache
- *step-get-more-space-on-mac
- when :
condition : << parameters.checkout >>
steps :
- *step-checkout-electron
2021-05-24 05:42:30 +03:00
- *step-touch-sync-done
2021-05-24 03:14:40 +03:00
- *step-maybe-restore-git-cache
- *step-set-git-cache-path
2020-02-11 23:42:37 +03:00
- *step-gclient-sync
- *step-delete-git-directories
- *step-minimize-workspace-size-from-checkout
2020-11-16 22:23:23 +03:00
- *step-fix-sync-on-mac
2020-02-11 23:42:37 +03:00
- *step-setup-env-for-build
2020-11-16 22:23:23 +03:00
- *step-setup-goma-for-build
2020-02-11 23:42:37 +03:00
- *step-gn-gen-default
# Electron app
- *step-electron-build
2020-11-16 22:23:23 +03:00
- *step-show-goma-stats
2020-02-11 23:42:37 +03:00
- *step-maybe-generate-breakpad-symbols
- *step-maybe-electron-dist-strip
- *step-electron-dist-build
- *step-maybe-zip-symbols
# mksnapshot
- *step-mksnapshot-build
# chromedriver
- *step-electron-chromedriver-build
# Node.js headers
- *step-nodejs-headers-build
# ffmpeg
- *step-ffmpeg-gn-gen
- *step-ffmpeg-build
# hunspell
- *step-hunspell-build
2021-05-22 21:48:38 +03:00
# libcxx
- *step-maybe-generate-libcxx
2020-02-11 23:42:37 +03:00
# typescript defs
- *step-maybe-generate-typescript-defs
# Publish
2021-05-13 04:34:29 +03:00
- *step-electron-publish
- move_and_store_all_artifacts
2019-11-28 03:29:53 +03:00
2018-09-15 01:12:30 +03:00
# List of all jobs.
2017-09-13 16:48:19 +03:00
jobs :
2019-02-06 23:53:25 +03:00
# Layer 0: Lint. Standalone.
lint :
2021-05-10 11:18:59 +03:00
executor :
name : linux-docker
size : medium
2019-02-06 23:53:25 +03:00
environment :
<< : *env-linux-medium
<< : *steps-lint
2019-10-24 02:36:26 +03:00
ts-compile-doc-change :
2021-05-10 11:18:59 +03:00
executor :
name : linux-docker
size : medium
2019-10-24 02:36:26 +03:00
environment :
<< : *env-linux-medium
<< : *env-testing-build
<< : *steps-electron-ts-compile-for-doc-change
2018-09-15 01:12:30 +03:00
# Layer 1: Checkout.
2021-05-13 04:15:44 +03:00
linux-checkout-for-workspace :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-08-17 02:28:01 +03:00
environment :
2019-01-31 20:59:32 +03:00
<< : *env-linux-2xlarge
2018-10-03 22:05:05 +03:00
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_arm=True --custom-var=checkout_arm64=True'
2019-11-28 03:29:53 +03:00
steps :
- electron-build :
persist : false
build : false
checkout : true
persist-checkout : true
2019-08-21 21:52:17 +03:00
2021-05-13 04:15:44 +03:00
linux-make-src-cache :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2019-08-21 21:52:17 +03:00
environment :
<< : *env-linux-2xlarge
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_arm=True --custom-var=checkout_arm64=True'
2021-05-13 04:15:44 +03:00
steps :
- electron-build :
persist : false
build : false
checkout : true
save-git-cache : true
checkout-to-create-src-cache : true
2018-07-11 21:01:15 +03:00
2018-11-05 18:19:00 +03:00
linux-checkout-for-native-tests :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-11-05 18:19:00 +03:00
environment :
2019-01-31 20:59:32 +03:00
<< : *env-linux-2xlarge
2018-11-05 18:19:00 +03:00
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_pyyaml=True'
2019-11-28 03:29:53 +03:00
steps :
- electron-build :
persist : false
build : false
checkout : true
persist-checkout : true
2018-10-04 18:50:46 +03:00
2018-11-05 18:19:00 +03:00
linux-checkout-for-native-tests-with-no-patches :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-10-22 23:12:19 +03:00
environment :
2019-01-31 20:59:32 +03:00
<< : *env-linux-2xlarge
2018-11-05 18:19:00 +03:00
GCLIENT_EXTRA_ARGS : '--custom-var=apply_patches=False --custom-var=checkout_pyyaml=True'
2019-11-28 03:29:53 +03:00
steps :
- electron-build :
persist : false
build : false
checkout : true
persist-checkout : true
2019-08-21 21:52:17 +03:00
2020-02-11 23:42:37 +03:00
mac-checkout :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2020-02-11 23:42:37 +03:00
environment :
<< : *env-linux-2xlarge
<< : *env-testing-build
<< : *env-macos-build
2020-12-10 01:15:21 +03:00
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_mac=True --custom-var=host_os=mac'
2020-02-11 23:42:37 +03:00
steps :
- electron-build :
persist : false
build : false
checkout : true
persist-checkout : true
restore-src-cache : false
2021-05-13 04:15:44 +03:00
mac-checkout-for-workspace :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2019-08-21 21:52:17 +03:00
environment :
<< : *env-linux-2xlarge
2019-11-28 03:29:53 +03:00
<< : *env-testing-build
<< : *env-macos-build
2019-08-21 21:52:17 +03:00
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_mac=True --custom-var=host_os=mac'
2019-11-28 03:29:53 +03:00
steps :
- electron-build :
persist : false
build : false
checkout : true
persist-checkout : true
2018-10-22 23:12:19 +03:00
2021-05-13 04:15:44 +03:00
mac-make-src-cache :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2019-01-31 20:59:32 +03:00
environment :
2019-02-07 00:16:11 +03:00
<< : *env-linux-2xlarge
2019-11-28 03:29:53 +03:00
<< : *env-testing-build
<< : *env-macos-build
2019-02-07 00:16:11 +03:00
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_mac=True --custom-var=host_os=mac'
2021-05-13 04:15:44 +03:00
steps :
- electron-build :
persist : false
build : false
checkout : true
save-git-cache : true
checkout-to-create-src-cache : true
2019-01-31 20:59:32 +03:00
2018-09-15 01:12:30 +03:00
# Layer 2: Builds.
linux-x64-testing :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-08-01 02:25:51 +03:00
environment :
2020-03-30 22:46:42 +03:00
<< : *env-global
2018-09-15 01:12:30 +03:00
<< : *env-testing-build
2019-06-15 11:48:59 +03:00
<< : *env-ninja-status
2019-09-16 19:31:08 +03:00
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_arm=True --custom-var=checkout_arm64=True'
2019-11-28 03:29:53 +03:00
steps :
- electron-build :
persist : true
checkout : true
2020-01-23 20:47:38 +03:00
use-out-cache : false
2018-09-15 01:12:30 +03:00
2021-02-23 03:16:17 +03:00
linux-x64-testing-asan :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2021-02-23 03:16:17 +03:00
environment :
<< : *env-global
<< : *env-testing-build
<< : *env-ninja-status
CHECK_DIST_MANIFEST : '0'
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_arm=True --custom-var=checkout_arm64=True'
GN_EXTRA_ARGS : 'is_asan = true'
steps :
- electron-build :
persist : true
checkout : true
use-out-cache : false
build-nonproprietary-ffmpeg : false
2019-06-20 04:10:04 +03:00
linux-x64-testing-no-run-as-node :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2019-06-20 04:10:04 +03:00
environment :
<< : *env-linux-2xlarge
<< : *env-testing-build
<< : *env-ninja-status
<< : *env-disable-run-as-node
2019-09-16 19:31:08 +03:00
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_arm=True --custom-var=checkout_arm64=True'
2019-11-28 03:29:53 +03:00
steps :
- electron-build :
persist : false
checkout : true
2020-01-23 20:47:38 +03:00
use-out-cache : false
2019-06-20 04:10:04 +03:00
2019-03-05 08:08:55 +03:00
linux-x64-testing-gn-check :
2021-05-10 11:18:59 +03:00
executor :
name : linux-docker
size : medium
2019-03-05 08:08:55 +03:00
environment :
<< : *env-linux-medium
<< : *env-testing-build
<< : *steps-electron-gn-check
2018-09-15 01:12:30 +03:00
linux-x64-release :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-08-17 02:28:01 +03:00
environment :
2019-09-19 19:37:54 +03:00
<< : *env-linux-2xlarge-release
2018-09-15 01:12:30 +03:00
<< : *env-release-build
2018-10-01 23:24:51 +03:00
<< : *env-send-slack-notifications
2019-06-15 11:48:59 +03:00
<< : *env-ninja-status
2020-02-06 20:56:18 +03:00
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_arm=True --custom-var=checkout_arm64=True'
steps :
- electron-build :
persist : true
checkout : true
2018-08-01 02:25:51 +03:00
2018-09-27 17:58:57 +03:00
linux-x64-publish :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-09-27 17:58:57 +03:00
environment :
2019-08-24 00:01:12 +03:00
<< : *env-linux-2xlarge-release
2018-10-01 23:24:51 +03:00
<< : *env-release-build
2019-09-17 21:48:02 +03:00
UPLOAD_TO_S3 : << pipeline.parameters.upload-to-s3 >>
2020-11-16 22:23:23 +03:00
<< : *env-ninja-status
2020-02-11 23:42:37 +03:00
steps :
2021-06-07 17:17:27 +03:00
- run : echo running
- when :
condition :
or :
- equal : [ "all" , << pipeline.parameters.linux-publish-arch-limit >>]
- equal : [ "x64" , << pipeline.parameters.linux-publish-arch-limit >>]
steps :
- electron-publish :
attach : false
checkout : true
2020-02-11 23:42:37 +03:00
2018-09-15 01:12:30 +03:00
linux-ia32-testing :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-09-15 01:12:30 +03:00
environment :
2020-03-30 22:46:42 +03:00
<< : *env-global
2018-09-15 01:12:30 +03:00
<< : *env-ia32
<< : *env-testing-build
2019-06-15 11:48:59 +03:00
<< : *env-ninja-status
2019-09-16 19:31:08 +03:00
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_arm=True --custom-var=checkout_arm64=True'
2019-11-28 03:29:53 +03:00
steps :
- electron-build :
persist : true
checkout : true
2020-01-23 20:47:38 +03:00
use-out-cache : false
2018-09-15 01:12:30 +03:00
linux-ia32-release :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-08-14 01:43:00 +03:00
environment :
2019-09-19 19:37:54 +03:00
<< : *env-linux-2xlarge-release
2018-09-15 01:12:30 +03:00
<< : *env-ia32
<< : *env-release-build
2018-10-01 23:24:51 +03:00
<< : *env-send-slack-notifications
2019-06-15 11:48:59 +03:00
<< : *env-ninja-status
2020-02-06 20:56:18 +03:00
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_arm=True --custom-var=checkout_arm64=True'
steps :
- electron-build :
persist : true
checkout : true
2018-09-15 01:12:30 +03:00
2018-09-27 17:58:57 +03:00
linux-ia32-publish :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-09-27 17:58:57 +03:00
environment :
2019-08-24 00:01:12 +03:00
<< : *env-linux-2xlarge-release
2018-09-27 17:58:57 +03:00
<< : *env-ia32
2018-10-01 23:24:51 +03:00
<< : *env-release-build
2019-11-19 17:36:16 +03:00
<< : *env-32bit-release
2019-09-17 21:48:02 +03:00
UPLOAD_TO_S3 : << pipeline.parameters.upload-to-s3 >>
2020-11-16 22:23:23 +03:00
<< : *env-ninja-status
2020-02-11 23:42:37 +03:00
steps :
2021-06-07 17:17:27 +03:00
- run : echo running
- when :
condition :
or :
- equal : [ "all" , << pipeline.parameters.linux-publish-arch-limit >>]
- equal : [ "ia32" , << pipeline.parameters.linux-publish-arch-limit >>]
steps :
- electron-publish :
attach : false
checkout : true
2020-02-11 23:42:37 +03:00
2018-09-15 01:12:30 +03:00
linux-arm-testing :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-08-14 01:43:00 +03:00
environment :
2020-03-30 22:46:42 +03:00
<< : *env-global
2018-09-15 01:12:30 +03:00
<< : *env-arm
<< : *env-testing-build
2019-06-15 11:48:59 +03:00
<< : *env-ninja-status
2018-10-04 19:01:16 +03:00
TRIGGER_ARM_TEST : true
2021-01-22 02:36:52 +03:00
GENERATE_CROSS_ARCH_SNAPSHOT : true
2019-09-16 19:31:08 +03:00
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_arm=True --custom-var=checkout_arm64=True'
2019-11-28 03:29:53 +03:00
steps :
- electron-build :
persist : false
checkout : true
2020-01-23 20:47:38 +03:00
use-out-cache : false
2018-09-15 01:12:30 +03:00
linux-arm-release :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-09-15 01:12:30 +03:00
environment :
2019-09-19 19:37:54 +03:00
<< : *env-linux-2xlarge-release
2018-09-15 01:12:30 +03:00
<< : *env-arm
<< : *env-release-build
2018-10-01 23:24:51 +03:00
<< : *env-send-slack-notifications
2019-06-15 11:48:59 +03:00
<< : *env-ninja-status
2020-02-06 20:56:18 +03:00
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_arm=True --custom-var=checkout_arm64=True'
steps :
- electron-build :
persist : false
checkout : true
2018-08-14 01:43:00 +03:00
2018-09-27 17:58:57 +03:00
linux-arm-publish :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-09-27 17:58:57 +03:00
environment :
2019-08-24 00:01:12 +03:00
<< : *env-linux-2xlarge-release
2018-09-27 17:58:57 +03:00
<< : *env-arm
2018-10-01 23:24:51 +03:00
<< : *env-release-build
2019-11-19 17:36:16 +03:00
<< : *env-32bit-release
2020-12-10 01:15:21 +03:00
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_arm=True'
2019-09-17 21:48:02 +03:00
UPLOAD_TO_S3 : << pipeline.parameters.upload-to-s3 >>
2020-11-16 22:23:23 +03:00
<< : *env-ninja-status
2020-02-11 23:42:37 +03:00
steps :
2021-06-07 17:17:27 +03:00
- run : echo running
- when :
condition :
or :
- equal : [ "all" , << pipeline.parameters.linux-publish-arch-limit >>]
- equal : [ "arm" , << pipeline.parameters.linux-publish-arch-limit >>]
steps :
- electron-publish :
attach : false
checkout : true
2020-02-11 23:42:37 +03:00
2018-09-15 01:12:30 +03:00
linux-arm64-testing :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-08-17 02:28:01 +03:00
environment :
2020-03-30 22:46:42 +03:00
<< : *env-global
2018-09-15 01:12:30 +03:00
<< : *env-arm64
<< : *env-testing-build
2019-06-15 11:48:59 +03:00
<< : *env-ninja-status
2018-10-04 19:01:16 +03:00
TRIGGER_ARM_TEST : true
2021-01-22 02:36:52 +03:00
GENERATE_CROSS_ARCH_SNAPSHOT : true
2019-09-16 19:31:08 +03:00
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_arm=True --custom-var=checkout_arm64=True'
2019-11-28 03:29:53 +03:00
steps :
- electron-build :
persist : false
checkout : true
2020-01-23 20:47:38 +03:00
use-out-cache : false
2018-08-17 02:28:01 +03:00
2019-03-05 08:08:55 +03:00
linux-arm64-testing-gn-check :
2021-05-10 11:18:59 +03:00
executor :
name : linux-docker
size : medium
2019-03-05 08:08:55 +03:00
environment :
<< : *env-linux-medium
<< : *env-arm64
<< : *env-testing-build
<< : *steps-electron-gn-check
2018-09-15 01:12:30 +03:00
linux-arm64-release :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-08-14 01:43:00 +03:00
environment :
2019-09-19 19:37:54 +03:00
<< : *env-linux-2xlarge-release
2018-09-15 01:12:30 +03:00
<< : *env-arm64
<< : *env-release-build
2018-10-01 23:24:51 +03:00
<< : *env-send-slack-notifications
2019-06-15 11:48:59 +03:00
<< : *env-ninja-status
2020-02-06 20:56:18 +03:00
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_arm=True --custom-var=checkout_arm64=True'
steps :
- electron-build :
persist : false
checkout : true
2018-09-15 01:12:30 +03:00
2018-09-27 17:58:57 +03:00
linux-arm64-publish :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-09-27 17:58:57 +03:00
environment :
2019-08-24 00:01:12 +03:00
<< : *env-linux-2xlarge-release
2018-09-27 17:58:57 +03:00
<< : *env-arm64
2018-10-01 23:24:51 +03:00
<< : *env-release-build
2020-12-10 01:15:21 +03:00
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_arm64=True'
2019-09-17 21:48:02 +03:00
UPLOAD_TO_S3 : << pipeline.parameters.upload-to-s3 >>
2020-11-16 22:23:23 +03:00
<< : *env-ninja-status
2020-02-11 23:42:37 +03:00
steps :
2021-06-07 17:17:27 +03:00
- run : echo running
- when :
condition :
or :
- equal : [ "all" , << pipeline.parameters.linux-publish-arch-limit >>]
- equal : [ "arm64" , << pipeline.parameters.linux-publish-arch-limit >>]
steps :
- electron-publish :
attach : false
checkout : true
2020-02-11 23:42:37 +03:00
2020-07-17 19:08:44 +03:00
osx-testing-x64 :
2021-05-10 11:18:59 +03:00
executor : macos
2018-09-17 19:44:02 +03:00
environment :
2019-01-31 20:59:32 +03:00
<< : *env-mac-large
2018-09-17 19:44:02 +03:00
<< : *env-testing-build
2019-06-15 11:48:59 +03:00
<< : *env-ninja-status
2019-11-28 03:29:53 +03:00
<< : *env-macos-build
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_mac=True --custom-var=host_os=mac'
steps :
- electron-build :
persist : true
checkout : false
checkout-and-assume-cache : true
2021-06-14 22:20:59 +03:00
attach : true
2018-09-17 19:44:02 +03:00
2020-07-17 19:08:44 +03:00
osx-testing-x64-gn-check :
2021-05-10 11:18:59 +03:00
executor :
name : macos
size : medium
2019-03-05 08:08:55 +03:00
environment :
<< : *env-machine-mac
<< : *env-testing-build
<< : *steps-electron-gn-check
2020-07-17 19:08:44 +03:00
osx-publish-x64-skip-checkout :
2021-05-10 11:18:59 +03:00
executor : macos
2020-02-11 23:42:37 +03:00
environment :
<< : *env-mac-large-release
<< : *env-release-build
UPLOAD_TO_S3 : << pipeline.parameters.upload-to-s3 >>
2020-11-16 22:23:23 +03:00
<< : *env-ninja-status
2020-02-11 23:42:37 +03:00
steps :
2021-06-07 17:17:27 +03:00
- run : echo running
- when :
condition :
or :
- equal : [ "all" , << pipeline.parameters.macos-publish-arch-limit >>]
- equal : [ "osx-x64" , << pipeline.parameters.macos-publish-arch-limit >>]
steps :
- electron-publish :
attach : true
checkout : false
2020-07-21 14:55:00 +03:00
osx-publish-arm64-skip-checkout :
2021-05-10 11:18:59 +03:00
executor : macos
2020-07-21 14:55:00 +03:00
environment :
<< : *env-mac-large-release
<< : *env-release-build
<< : *env-apple-silicon
UPLOAD_TO_S3 : << pipeline.parameters.upload-to-s3 >>
2020-11-16 22:23:23 +03:00
<< : *env-ninja-status
2020-07-21 14:55:00 +03:00
steps :
2021-06-07 17:17:27 +03:00
- run : echo running
- when :
condition :
or :
- equal : [ "all" , << pipeline.parameters.macos-publish-arch-limit >>]
- equal : [ "osx-arm64" , << pipeline.parameters.macos-publish-arch-limit >>]
steps :
- electron-publish :
attach : true
checkout : false
2019-01-31 20:59:32 +03:00
2020-07-17 19:08:44 +03:00
osx-testing-arm64 :
2021-05-10 11:18:59 +03:00
executor : macos
2020-07-17 19:08:44 +03:00
environment :
<< : *env-mac-large
<< : *env-testing-build
<< : *env-ninja-status
<< : *env-macos-build
<< : *env-apple-silicon
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_mac=True --custom-var=host_os=mac'
2021-01-22 02:36:52 +03:00
GENERATE_CROSS_ARCH_SNAPSHOT : true
2020-07-17 19:08:44 +03:00
steps :
- electron-build :
persist : true
checkout : false
checkout-and-assume-cache : true
2021-06-14 22:20:59 +03:00
attach : true
2020-07-17 19:08:44 +03:00
mas-testing-x64 :
2021-05-10 11:18:59 +03:00
executor : macos
2019-01-31 20:59:32 +03:00
environment :
<< : *env-mac-large
2018-09-17 19:44:02 +03:00
<< : *env-mas
<< : *env-testing-build
2019-06-15 11:48:59 +03:00
<< : *env-ninja-status
2019-11-28 03:29:53 +03:00
<< : *env-macos-build
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_mac=True --custom-var=host_os=mac'
steps :
- electron-build :
persist : true
checkout : false
checkout-and-assume-cache : true
2021-06-14 22:20:59 +03:00
attach : true
2019-01-31 20:59:32 +03:00
2020-07-17 19:08:44 +03:00
mas-testing-x64-gn-check :
2021-05-10 11:18:59 +03:00
executor :
name : macos
size : medium
2019-03-05 08:08:55 +03:00
environment :
<< : *env-machine-mac
<< : *env-mas
<< : *env-testing-build
<< : *steps-electron-gn-check
2020-07-21 14:55:00 +03:00
mas-publish-x64-skip-checkout :
2021-05-10 11:18:59 +03:00
executor : macos
2020-02-11 23:42:37 +03:00
environment :
<< : *env-mac-large-release
<< : *env-mas
<< : *env-release-build
UPLOAD_TO_S3 : << pipeline.parameters.upload-to-s3 >>
steps :
2021-06-07 17:17:27 +03:00
- run : echo running
- when :
condition :
or :
- equal : [ "all" , << pipeline.parameters.macos-publish-arch-limit >>]
- equal : [ "mas-x64" , << pipeline.parameters.macos-publish-arch-limit >>]
steps :
- electron-publish :
attach : true
checkout : false
2020-07-21 14:55:00 +03:00
mas-publish-arm64-skip-checkout :
2021-05-10 11:18:59 +03:00
executor : macos
2020-07-21 14:55:00 +03:00
environment :
<< : *env-mac-large-release
<< : *env-mas-apple-silicon
<< : *env-release-build
UPLOAD_TO_S3 : << pipeline.parameters.upload-to-s3 >>
2020-11-16 22:23:23 +03:00
<< : *env-ninja-status
2020-07-21 14:55:00 +03:00
steps :
2021-06-07 17:17:27 +03:00
- run : echo running
- when :
condition :
or :
- equal : [ "all" , << pipeline.parameters.macos-publish-arch-limit >>]
- equal : [ "mas-arm64" , << pipeline.parameters.macos-publish-arch-limit >>]
steps :
- electron-publish :
attach : true
checkout : false
2018-09-17 19:44:02 +03:00
2020-07-17 19:08:44 +03:00
mas-testing-arm64 :
2021-05-10 11:18:59 +03:00
executor : macos
2020-07-17 19:08:44 +03:00
environment :
<< : *env-mac-large
<< : *env-testing-build
<< : *env-ninja-status
<< : *env-macos-build
<< : *env-mas-apple-silicon
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_mac=True --custom-var=host_os=mac'
2021-01-22 02:36:52 +03:00
GENERATE_CROSS_ARCH_SNAPSHOT : true
2020-07-17 19:08:44 +03:00
steps :
- electron-build :
persist : true
checkout : false
checkout-and-assume-cache : true
2021-06-14 22:20:59 +03:00
attach : true
2020-07-17 19:08:44 +03:00
2018-09-15 01:12:30 +03:00
# Layer 3: Tests.
2018-09-27 18:29:27 +03:00
linux-x64-unittests :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-09-27 18:29:27 +03:00
environment :
2019-01-31 20:59:32 +03:00
<< : *env-linux-2xlarge
2018-09-27 18:29:27 +03:00
<< : *env-unittests
2018-10-22 23:12:19 +03:00
<< : *env-headless-testing
<< : *steps-native-tests
linux-x64-disabled-unittests :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-10-22 23:12:19 +03:00
environment :
2019-01-31 20:59:32 +03:00
<< : *env-linux-2xlarge
2018-10-22 23:12:19 +03:00
<< : *env-unittests
<< : *env-headless-testing
2018-10-25 21:28:50 +03:00
TESTS_ARGS : '--only-disabled-tests'
2018-10-22 23:12:19 +03:00
<< : *steps-native-tests
linux-x64-chromium-unittests :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-10-22 23:12:19 +03:00
environment :
2019-01-31 20:59:32 +03:00
<< : *env-linux-2xlarge
2018-10-22 23:12:19 +03:00
<< : *env-unittests
2018-10-05 23:06:52 +03:00
<< : *env-headless-testing
2018-10-25 21:28:50 +03:00
TESTS_ARGS : '--include-disabled-tests'
2018-09-27 18:29:27 +03:00
<< : *steps-native-tests
linux-x64-browsertests :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2018-09-18 13:55:46 +03:00
environment :
2019-01-31 20:59:32 +03:00
<< : *env-linux-2xlarge
2018-09-27 18:29:27 +03:00
<< : *env-browsertests
2018-10-01 23:24:51 +03:00
<< : *env-testing-build
2018-10-05 23:06:52 +03:00
<< : *env-headless-testing
2018-09-18 13:55:46 +03:00
<< : *steps-native-tests
2018-09-15 01:12:30 +03:00
linux-x64-testing-tests :
2021-05-10 11:18:59 +03:00
executor :
name : linux-docker
size : medium
2018-10-05 23:06:52 +03:00
environment :
2019-01-31 20:59:32 +03:00
<< : *env-linux-medium
2018-10-05 23:06:52 +03:00
<< : *env-headless-testing
2018-10-09 02:17:11 +03:00
<< : *env-stack-dumping
2019-11-07 03:15:55 +03:00
parallelism : 3
2018-09-15 01:12:30 +03:00
<< : *steps-tests
2021-02-23 03:16:17 +03:00
linux-x64-testing-asan-tests :
2021-05-10 11:18:59 +03:00
executor :
name : linux-docker
size : xlarge
2021-02-23 03:16:17 +03:00
environment :
<< : *env-linux-medium
<< : *env-headless-testing
<< : *env-stack-dumping
IS_ASAN : '1'
DISABLE_CRASH_REPORTER_TESTS : '1'
parallelism : 3
<< : *steps-tests
2019-05-29 22:38:17 +03:00
linux-x64-testing-nan :
2021-05-10 11:18:59 +03:00
executor :
name : linux-docker
size : medium
2019-05-29 22:38:17 +03:00
environment :
<< : *env-linux-medium
<< : *env-headless-testing
<< : *env-stack-dumping
<< : *steps-test-nan
2019-07-23 21:40:06 +03:00
linux-x64-testing-node :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2019-07-23 21:40:06 +03:00
environment :
<< : *env-linux-medium
<< : *env-headless-testing
<< : *env-stack-dumping
<< : *steps-test-node
2018-09-15 01:12:30 +03:00
linux-x64-release-tests :
2021-05-10 11:18:59 +03:00
executor :
name : linux-docker
size : medium
2018-10-05 23:06:52 +03:00
environment :
2019-01-31 20:59:32 +03:00
<< : *env-linux-medium
2018-10-05 23:06:52 +03:00
<< : *env-headless-testing
2018-10-06 02:15:38 +03:00
<< : *env-send-slack-notifications
2018-09-15 01:12:30 +03:00
<< : *steps-tests
2018-08-14 01:43:00 +03:00
2018-10-04 18:50:46 +03:00
linux-x64-verify-ffmpeg :
2021-05-10 11:18:59 +03:00
executor :
name : linux-docker
size : medium
2018-10-05 23:06:52 +03:00
environment :
2019-01-31 20:59:32 +03:00
<< : *env-linux-medium
2018-10-05 23:06:52 +03:00
<< : *env-headless-testing
2018-10-06 02:15:38 +03:00
<< : *env-send-slack-notifications
2018-10-01 23:24:51 +03:00
<< : *steps-verify-ffmpeg
2018-09-15 01:12:30 +03:00
linux-ia32-testing-tests :
2021-05-10 11:18:59 +03:00
executor :
name : linux-docker
size : medium
2018-09-15 01:12:30 +03:00
environment :
2019-01-31 20:59:32 +03:00
<< : *env-linux-medium
2018-09-15 01:12:30 +03:00
<< : *env-ia32
2018-10-05 23:06:52 +03:00
<< : *env-headless-testing
2018-10-09 02:17:11 +03:00
<< : *env-stack-dumping
2019-11-07 03:15:55 +03:00
parallelism : 3
2018-09-15 01:12:30 +03:00
<< : *steps-tests
2019-05-29 22:38:17 +03:00
linux-ia32-testing-nan :
2021-05-10 11:18:59 +03:00
executor :
name : linux-docker
size : medium
2019-05-29 22:38:17 +03:00
environment :
<< : *env-linux-medium
<< : *env-ia32
<< : *env-headless-testing
<< : *env-stack-dumping
<< : *steps-test-nan
2019-07-23 21:40:06 +03:00
linux-ia32-testing-node :
2021-05-10 11:18:59 +03:00
executor : linux-docker
2019-07-23 21:40:06 +03:00
environment :
<< : *env-linux-medium
<< : *env-ia32
<< : *env-headless-testing
<< : *env-stack-dumping
<< : *steps-test-node
2018-09-15 01:12:30 +03:00
linux-ia32-release-tests :
2021-05-10 11:18:59 +03:00
executor :
name : linux-docker
size : medium
2018-09-15 01:12:30 +03:00
environment :
2019-01-31 20:59:32 +03:00
<< : *env-linux-medium
2018-09-15 01:12:30 +03:00
<< : *env-ia32
2018-10-05 23:06:52 +03:00
<< : *env-headless-testing
2018-10-06 02:15:38 +03:00
<< : *env-send-slack-notifications
2018-09-15 01:12:30 +03:00
<< : *steps-tests
2018-10-04 18:50:46 +03:00
linux-ia32-verify-ffmpeg :
2021-05-10 11:18:59 +03:00
executor :
name : linux-docker
size : medium
2018-10-01 23:24:51 +03:00
environment :
2019-01-31 20:59:32 +03:00
<< : *env-linux-medium
2018-10-01 23:24:51 +03:00
<< : *env-ia32
2018-10-05 23:06:52 +03:00
<< : *env-headless-testing
2018-10-06 02:15:38 +03:00
<< : *env-send-slack-notifications
2018-10-01 23:24:51 +03:00
<< : *steps-verify-ffmpeg
2020-07-17 19:08:44 +03:00
osx-testing-x64-tests :
2021-05-10 11:18:59 +03:00
executor :
name : macos
size : medium
2019-01-07 22:59:45 +03:00
environment :
2019-01-31 20:59:32 +03:00
<< : *env-mac-large
2019-01-07 22:59:45 +03:00
<< : *env-stack-dumping
2019-11-07 03:15:55 +03:00
parallelism : 2
2019-01-07 22:59:45 +03:00
<< : *steps-tests
2021-01-22 02:36:52 +03:00
osx-testing-arm64-tests :
2021-05-10 11:18:59 +03:00
executor : apple-silicon
2021-01-22 02:36:52 +03:00
environment :
<< : *env-mac-large
<< : *env-stack-dumping
<< : *env-apple-silicon
<< : *steps-tests
2020-07-17 19:08:44 +03:00
mas-testing-x64-tests :
2021-05-10 11:18:59 +03:00
executor :
name : macos
size : medium
2019-01-31 20:59:32 +03:00
environment :
<< : *env-mac-large
2018-10-09 02:17:11 +03:00
<< : *env-stack-dumping
2019-11-07 03:15:55 +03:00
parallelism : 2
2018-09-21 12:43:28 +03:00
<< : *steps-tests
2018-08-21 20:06:28 +03:00
2021-01-22 02:36:52 +03:00
mas-testing-arm64-tests :
2021-05-10 11:18:59 +03:00
executor : apple-silicon
2021-01-22 02:36:52 +03:00
environment :
<< : *env-mac-large
<< : *env-stack-dumping
<< : *env-apple-silicon
<< : *steps-tests
2018-10-06 02:15:38 +03:00
# Layer 4: Summary.
2021-05-13 04:14:38 +03:00
linux-release-summary :
2021-05-10 11:18:59 +03:00
executor :
name : linux-docker
size : medium
2018-10-06 02:15:38 +03:00
environment :
2019-01-31 20:59:32 +03:00
<< : *env-linux-medium
<< : *env-send-slack-notifications
steps :
- *step-maybe-notify-slack-success
2017-09-13 16:48:19 +03:00
workflows :
2019-09-18 22:53:54 +03:00
version : 2.1
2019-09-17 21:48:02 +03:00
2020-02-11 23:42:37 +03:00
publish-linux :
when : << pipeline.parameters.run-linux-publish >>
jobs :
2021-05-11 19:31:10 +03:00
- linux-x64-publish :
2020-02-11 23:42:37 +03:00
context : release-env
2021-05-11 19:31:10 +03:00
- linux-ia32-publish :
2020-02-11 23:42:37 +03:00
context : release-env
2021-05-11 19:31:10 +03:00
- linux-arm-publish :
2020-02-11 23:42:37 +03:00
context : release-env
2021-05-11 19:31:10 +03:00
- linux-arm64-publish :
2020-02-11 23:42:37 +03:00
context : release-env
publish-macos :
when : << pipeline.parameters.run-macos-publish >>
jobs :
- mac-checkout
2020-07-17 19:08:44 +03:00
- osx-publish-x64-skip-checkout :
2020-02-11 23:42:37 +03:00
requires :
- mac-checkout
2021-04-29 23:34:58 +03:00
context : release-env
2020-07-21 14:55:00 +03:00
- mas-publish-x64-skip-checkout :
requires :
- mac-checkout
2021-04-29 23:34:58 +03:00
context : release-env
2020-07-21 14:55:00 +03:00
- osx-publish-arm64-skip-checkout :
requires :
- mac-checkout
2021-04-29 23:34:58 +03:00
context : release-env
2020-07-21 14:55:00 +03:00
- mas-publish-arm64-skip-checkout :
2020-02-11 23:42:37 +03:00
requires :
- mac-checkout
2021-04-29 23:34:58 +03:00
context : release-env
2020-02-11 23:42:37 +03:00
2019-02-06 23:53:25 +03:00
lint :
2019-09-17 21:48:02 +03:00
when : << pipeline.parameters.run-lint >>
2019-02-06 23:53:25 +03:00
jobs :
- lint
2018-09-11 10:57:41 +03:00
build-linux :
2019-09-17 21:48:02 +03:00
when : << pipeline.parameters.run-build-linux >>
2018-07-11 21:01:15 +03:00
jobs :
2021-05-13 04:15:44 +03:00
- linux-checkout-for-workspace
- linux-make-src-cache
2018-09-15 01:12:30 +03:00
2019-09-16 19:31:08 +03:00
- linux-x64-testing
2021-02-23 03:16:17 +03:00
- linux-x64-testing-asan
2019-09-16 19:31:08 +03:00
- linux-x64-testing-no-run-as-node
2019-03-05 08:08:55 +03:00
- linux-x64-testing-gn-check :
requires :
2021-05-13 04:15:44 +03:00
- linux-checkout-for-workspace
2018-09-15 01:12:30 +03:00
- linux-x64-testing-tests :
requires :
- linux-x64-testing
2021-02-23 03:16:17 +03:00
- linux-x64-testing-asan-tests :
requires :
- linux-x64-testing-asan
2019-05-29 22:38:17 +03:00
- linux-x64-testing-nan :
requires :
- linux-x64-testing
2019-07-23 21:40:06 +03:00
- linux-x64-testing-node :
requires :
- linux-x64-testing
2018-09-19 15:53:22 +03:00
2019-09-16 19:31:08 +03:00
- linux-ia32-testing
2018-09-15 01:12:30 +03:00
- linux-ia32-testing-tests :
requires :
- linux-ia32-testing
2019-05-29 22:38:17 +03:00
- linux-ia32-testing-nan :
requires :
- linux-ia32-testing
2019-07-23 21:40:06 +03:00
- linux-ia32-testing-node :
requires :
- linux-ia32-testing
2018-09-19 15:53:22 +03:00
2019-09-16 19:31:08 +03:00
- linux-arm-testing
2018-09-21 12:43:28 +03:00
2019-09-16 19:31:08 +03:00
- linux-arm64-testing
2019-03-05 08:08:55 +03:00
- linux-arm64-testing-gn-check :
requires :
2021-05-13 04:15:44 +03:00
- linux-checkout-for-workspace
2019-10-24 02:36:26 +03:00
- ts-compile-doc-change
2018-09-14 21:56:16 +03:00
2019-01-31 20:59:32 +03:00
build-mac :
2019-09-17 21:48:02 +03:00
when : << pipeline.parameters.run-build-mac >>
2018-08-21 20:06:28 +03:00
jobs :
2021-05-13 04:15:44 +03:00
- mac-checkout-for-workspace
- mac-make-src-cache
2019-08-21 21:52:17 +03:00
2020-07-17 19:08:44 +03:00
- osx-testing-x64 :
2019-01-31 20:59:32 +03:00
requires :
2021-05-13 04:15:44 +03:00
- mac-make-src-cache
2019-01-31 20:59:32 +03:00
2020-07-17 19:08:44 +03:00
- osx-testing-x64-gn-check :
2019-03-05 08:08:55 +03:00
requires :
2021-05-13 04:15:44 +03:00
- mac-checkout-for-workspace
2019-03-05 08:08:55 +03:00
2020-07-17 19:08:44 +03:00
- osx-testing-x64-tests :
2018-09-17 19:44:02 +03:00
requires :
2020-07-17 19:08:44 +03:00
- osx-testing-x64
2018-09-17 19:44:02 +03:00
2020-07-17 19:08:44 +03:00
- osx-testing-arm64 :
2019-01-31 20:59:32 +03:00
requires :
2021-05-13 04:15:44 +03:00
- mac-make-src-cache
2019-01-31 20:59:32 +03:00
2021-01-22 02:36:52 +03:00
- osx-testing-arm64-tests :
filters :
branches :
# Do not run this on forked pull requests
ignore : /pull\/[0-9]+/
requires :
- osx-testing-arm64
2020-07-17 19:08:44 +03:00
- mas-testing-x64 :
requires :
2021-05-13 04:15:44 +03:00
- mac-make-src-cache
2020-07-17 19:08:44 +03:00
- mas-testing-x64-gn-check :
2019-03-05 08:08:55 +03:00
requires :
2021-05-13 04:15:44 +03:00
- mac-checkout-for-workspace
2019-03-05 08:08:55 +03:00
2020-07-17 19:08:44 +03:00
- mas-testing-x64-tests :
2018-09-17 19:44:02 +03:00
requires :
2020-07-17 19:08:44 +03:00
- mas-testing-x64
- mas-testing-arm64 :
requires :
2021-05-13 04:15:44 +03:00
- mac-make-src-cache
2018-05-22 20:50:44 +03:00
2021-01-22 02:36:52 +03:00
- mas-testing-arm64-tests :
filters :
branches :
# Do not run this on forked pull requests
ignore : /pull\/[0-9]+/
requires :
- mas-testing-arm64
2019-02-01 23:07:23 +03:00
nightly-linux-release-test :
2018-10-10 08:37:59 +03:00
triggers :
- schedule :
cron : "0 0 * * *"
filters :
branches :
only :
- master
2018-08-17 02:28:01 +03:00
jobs :
2021-05-13 04:15:44 +03:00
- linux-checkout-for-workspace
- linux-make-src-cache
2018-09-15 01:12:30 +03:00
2020-02-06 20:56:18 +03:00
- linux-x64-release
2018-09-15 01:12:30 +03:00
- linux-x64-release-tests :
requires :
- linux-x64-release
2018-10-04 18:50:46 +03:00
- linux-x64-verify-ffmpeg :
2018-10-01 23:24:51 +03:00
requires :
- linux-x64-release
2021-05-13 04:14:38 +03:00
- linux-release-summary :
name : linux-x64-release-summary
2018-10-06 02:15:38 +03:00
requires :
- linux-x64-release
- linux-x64-release-tests
- linux-x64-verify-ffmpeg
2018-09-21 12:43:28 +03:00
2020-02-06 20:56:18 +03:00
- linux-ia32-release
2018-09-15 01:12:30 +03:00
- linux-ia32-release-tests :
requires :
- linux-ia32-release
2018-10-04 18:50:46 +03:00
- linux-ia32-verify-ffmpeg :
2018-10-01 23:24:51 +03:00
requires :
- linux-ia32-release
2021-05-13 04:14:38 +03:00
- linux-release-summary :
name : linux-ia32-release-summary
2018-10-06 02:15:38 +03:00
requires :
- linux-ia32-release
- linux-ia32-release-tests
- linux-ia32-verify-ffmpeg
2018-09-21 12:43:28 +03:00
2020-02-06 20:56:18 +03:00
- linux-arm-release
2021-05-13 04:14:38 +03:00
- linux-release-summary :
name : linux-arm-release-summary
2018-10-06 02:15:38 +03:00
requires :
- linux-arm-release
2019-03-28 18:05:43 +03:00
2020-02-06 20:56:18 +03:00
- linux-arm64-release
2021-05-13 04:14:38 +03:00
- linux-release-summary :
name : linux-arm64-release-summary
2018-10-06 02:15:38 +03:00
requires :
- linux-arm64-release
2018-10-04 18:50:46 +03:00
# Various slow and non-essential checks we run only nightly.
# Sanitizer jobs should be added here.
linux-checks-nightly :
triggers :
- schedule :
cron : "0 0 * * *"
filters :
branches :
only :
- master
jobs :
2018-11-05 18:19:00 +03:00
- linux-checkout-for-native-tests
2018-10-04 18:50:46 +03:00
# TODO(alexeykuzmin): Enable it back.
# Tons of crashes right now, see
# https://circleci.com/gh/electron/electron/67463
# - linux-x64-browsertests:
# requires:
2018-11-05 18:19:00 +03:00
# - linux-checkout-for-native-tests
2018-10-04 18:50:46 +03:00
- linux-x64-unittests :
requires :
2018-11-05 18:19:00 +03:00
- linux-checkout-for-native-tests
2018-10-22 23:12:19 +03:00
- linux-x64-disabled-unittests :
requires :
2018-11-05 18:19:00 +03:00
- linux-checkout-for-native-tests
2018-10-22 23:12:19 +03:00
2018-11-05 18:19:00 +03:00
- linux-checkout-for-native-tests-with-no-patches
2018-10-22 23:12:19 +03:00
- linux-x64-chromium-unittests :
requires :
2018-11-05 18:19:00 +03:00
- linux-checkout-for-native-tests-with-no-patches