2018-09-15 01:12:30 +03:00
# Build machines configs.
2018-09-18 17:55:43 +03:00
docker-image : &docker-image
2018-09-15 01:12:30 +03:00
docker :
- image : electronbuilds/electron:0.0.8
2018-09-18 17:55:43 +03:00
machine-linux-medium : &machine-linux-medium
<< : *docker-image
resource_class : medium
machine-linux-2xlarge : &machine-linux-2xlarge
<< : *docker-image
2018-09-15 01:12:30 +03:00
resource_class : 2xlarge
machine-mac : &machine-mac
macos :
xcode : "8.3.3"
# Build configurations options.
env-debug-build : &env-debug-build
GN_CONFIG : //electron/build/args/debug.gn
env-testing-build : &env-testing-build
GN_CONFIG : //electron/build/args/testing.gn
env-release-build : &env-release-build
GN_CONFIG : //electron/build/args/release.gn
BUILD_NATIVE_MKSNAPSHOT : false # ARM(64) builds will redefine it.
NOTIFY_SLACK : true
# Build targets options.
env-ia32 : &env-ia32
GN_EXTRA_ARGS : 'target_cpu = "x86"'
NPM_CONFIG_ARCH : ia32
env-arm : &env-arm
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_arm=True'
GN_EXTRA_ARGS : 'target_cpu = "arm"'
MKSNAPSHOT_TOOLCHAIN : //build/toolchain/linux:clang_arm
env-arm64 : &env-arm64
GCLIENT_EXTRA_ARGS : '--custom-var=checkout_arm64=True'
GN_EXTRA_ARGS : 'target_cpu = "arm64" fatal_linker_warnings = false enable_linux_installer = false'
MKSNAPSHOT_TOOLCHAIN : //build/toolchain/linux:clang_arm64
2018-09-17 19:44:02 +03:00
env-mas : &env-mas
GN_EXTRA_ARGS : 'is_mas_build = true'
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-07-05 17:59:47 +03:00
export MESSAGE="Build failed for *<$CIRCLE_BUILD_URL|$CIRCLE_JOB>* nightly build."
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-07-05 17:59:47 +03:00
export MESSAGE="Build succeeded for *<$CIRCLE_BUILD_URL|$CIRCLE_JOB>* nightly build."
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
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 : |
gclient config \
--name "src/electron" \
--unmanaged \
$GCLIENT_EXTRA_ARGS \
"$CIRCLE_REPOSITORY_URL"
gclient sync --with_branch_heads --with_tags
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
# https://github.com/mozilla/sccache
SCCACHE_PATH="$PWD/src/electron/external_binaries/sccache"
echo 'export SCCACHE_PATH="'"$SCCACHE_PATH"'"' >> $BASH_ENV
2018-09-17 19:44:02 +03:00
step-install-nodejs-on-mac : &step-install-nodejs-on-mac
run :
name : Install Node.js 10 on MacOS
command : |
if [ "`uname`" == "Darwin" ]; then
brew update
brew install node@10
fi
2018-09-15 01:12:30 +03:00
step-electron-gn-gen : &step-electron-gn-gen
run :
name : Electron GN gen
command : |
cd src
gn gen out/Default --args='import("'$GN_CONFIG'") cc_wrapper="'"$SCCACHE_PATH"'"'" $GN_EXTRA_ARGS"
step-electron-build : &step-electron-build
run :
name : Electron build
command : |
cd src
ninja -C out/Default electron
step-electron-dist-build : &step-electron-dist-build
run :
name : Build dist.zip
command : |
cd src
ninja -C out/Default electron:electron_dist_zip
step-electron-dist-store : &step-electron-dist-store
store_artifacts :
path : src/out/Default/dist.zip
destination : dist.zip
step-nodejs-headers-build : &step-nodejs-headers-build
run :
name : Build Node.js headers
command : |
cd src
ninja -C out/Default third_party/electron_node:headers
2018-09-18 13:55:46 +03:00
step-native-tests-build : &step-native-tests-build
run :
name : Native tests build
command : |
cd src
ninja -C out/Default electron:electron_tests
2018-09-15 01:12:30 +03:00
step-persist-data-for-tests : &step-persist-data-for-tests
persist_to_workspace :
root : .
paths :
2018-09-17 19:44:02 +03:00
# To run `gn args` for that dir from the "verify-ffmpeg" script.
2018-09-15 01:12:30 +03:00
- src/out/Default/args.gn
- src/out/Default/build.ninja
# Build artifacts
- src/out/Default/dist.zip
- src/out/Default/gen/node_headers
2018-09-17 19:44:02 +03:00
- src/out/ffmpeg/libffmpeg.dylib
2018-09-15 01:12:30 +03:00
- src/out/ffmpeg/libffmpeg.so
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.
unzip -o dist.zip
step-ffmpeg-gn-gen : &step-ffmpeg-gn-gen
run :
name : ffmpeg GN gen
command : |
cd src
gn gen out/ffmpeg --args='import("//electron/build/args/ffmpeg.gn") cc_wrapper="'"$SCCACHE_PATH"'"'" $GN_EXTRA_ARGS"
step-ffmpeg-build : &step-ffmpeg-build
run :
name : Non proprietary ffmpeg build
command : |
cd src
ninja -C out/ffmpeg third_party/ffmpeg
step-ffmpeg-store : &step-ffmpeg-store
store_artifacts :
path : src/out/ffmpeg/libffmpeg.so
destination : libffmpeg.so
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
step-maybe-native-mksnapshot-gn-gen : &step-maybe-native-mksnapshot-gn-gen
run :
name : native mksnapshot GN gen
command : |
if [ "$BUILD_NATIVE_MKSNAPSHOT" == "true" ]; then
cd src
gn gen out/native_mksnapshot --args='import("//electron/build/args/native_mksnapshot.gn") cc_wrapper="'"$SCCACHE_PATH"'" v8_snapshot_toolchain="'"$MKSNAPSHOT_TOOLCHAIN"'"'" $GN_EXTRA_ARGS"
fi
step-maybe-native-mksnapshot-build : &step-maybe-native-mksnapshot-build
run :
name : native mksnapshot (arm/arm64) build
command : |
if [ "$BUILD_NATIVE_MKSNAPSHOT" == "true" ]; then
cd src
ninja -C out/native_mksnapshot v8:mksnapshot
fi
step-maybe-native-mksnapshot-store : &step-maybe-native-mksnapshot-store
store_artifacts :
path : src/out/native_mksnapshot/mksnapshot
destination : mksnapshot
step-setup-for-headless-testing : &step-setup-for-headless-testing
run :
name : Setup for headless testing
2018-09-17 19:44:02 +03:00
command : |
sh -e /etc/init.d/xvfb start
2018-09-15 01:12:30 +03:00
step-electron-tests-run : &step-electron-tests-run
run :
name : Run Electron tests
environment :
DISPLAY : ':99.0'
MOCHA_REPORTER : mocha-multi-reporters
MOCHA_FILE : junit/test-results.xml
MOCHA_MULTI_REPORTERS : mocha-junit-reporter, tap
ELECTRON_DISABLE_SECURITY_WARNINGS : 1
command : |
cd src
export ELECTRON_OUT_DIR=Default
(cd electron && npm run test -- --ci --enable-logging)
step-electron-tests-store-results : &step-electron-tests-store-results
store_test_results :
path : src/junit
step-show-sccache-stats : &step-show-sccache-stats
run :
name : Check sccache stats after build
command : $SCCACHE_PATH -s
# Lists of steps.
steps-checkout : &steps-checkout
2018-07-31 21:18:36 +03:00
steps :
2018-09-20 02:02:12 +03:00
- *step-checkout-electron
- *step-depot-tools-get
- *step-depot-tools-add-to-path
2018-09-17 19:44:02 +03:00
2018-07-31 21:18:36 +03:00
- restore_cache :
paths :
- ~/.gclient-cache
keys :
- v1-gclient-cache-{{ arch }}-{{ checksum "src/electron/DEPS" }}
- v1-gclient-cache-{{ arch }}-
- run :
2018-09-17 19:44:02 +03:00
name : Set GIT_CACHE_PATH to make gclient to use the cache
2018-07-31 21:18:36 +03:00
command : |
2018-09-15 01:12:30 +03:00
# 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
2018-09-20 02:02:12 +03:00
- *step-gclient-sync
2018-07-31 21:18:36 +03:00
- save_cache :
paths :
- ~/.gclient-cache
key : v1-gclient-cache-{{ arch }}-{{ checksum "src/electron/DEPS" }}
2018-09-17 19:44:02 +03:00
2018-07-31 21:18:36 +03:00
- run :
2018-09-15 01:12:30 +03:00
name : Remove some unused data to avoid storing it in the workspace
2018-07-31 21:18:36 +03:00
command : |
2018-09-15 01:12:30 +03:00
rm -rf src/android_webview
rm -rf src/ios
rm -rf src/third_party/WebKit/LayoutTests
- persist_to_workspace :
root : .
paths :
- depot_tools
- src
steps-debug-build : &steps-debug-build
steps :
- attach_workspace :
at : .
2018-09-20 02:02:12 +03:00
- *step-depot-tools-add-to-path
- *step-setup-env-for-build
2018-09-15 01:12:30 +03:00
# Electron app
2018-09-20 02:02:12 +03:00
- *step-electron-gn-gen
- *step-electron-build
2018-09-15 01:12:30 +03:00
2018-09-20 02:02:12 +03:00
- *step-show-sccache-stats
2018-09-15 01:12:30 +03:00
steps-testing-build : &steps-testing-build
steps :
- attach_workspace :
at : .
2018-09-20 02:02:12 +03:00
- *step-depot-tools-add-to-path
- *step-setup-env-for-build
2018-09-15 01:12:30 +03:00
# Electron app
2018-09-20 02:02:12 +03:00
- *step-electron-gn-gen
- *step-electron-build
- *step-electron-dist-build
- *step-electron-dist-store
2018-09-15 01:12:30 +03:00
# ffmpeg
2018-09-20 02:02:12 +03:00
- *step-ffmpeg-gn-gen
- *step-ffmpeg-build
- *step-ffmpeg-store
2018-09-15 01:12:30 +03:00
# Node.js headers
2018-09-20 02:02:12 +03:00
- *step-nodejs-headers-build
2018-08-21 20:06:28 +03:00
2018-09-20 02:02:12 +03:00
- *step-show-sccache-stats
2018-09-15 01:12:30 +03:00
# Save all data needed for a further tests run.
2018-09-20 02:02:12 +03:00
- *step-persist-data-for-tests
2018-09-15 01:12:30 +03:00
steps-release-build : &steps-release-build
steps :
- attach_workspace :
at : .
2018-09-20 02:02:12 +03:00
- *step-depot-tools-add-to-path
- *step-setup-env-for-build
2018-09-15 01:12:30 +03:00
# Electron app
2018-09-20 02:02:12 +03:00
- *step-electron-gn-gen
- *step-electron-build
- *step-electron-dist-build
- *step-electron-dist-store
2018-09-15 01:12:30 +03:00
# ffmpeg
2018-09-20 02:02:12 +03:00
- *step-ffmpeg-gn-gen
- *step-ffmpeg-build
- *step-ffmpeg-store
2018-09-15 01:12:30 +03:00
# native mksnapshot
2018-09-20 02:02:12 +03:00
- *step-maybe-native-mksnapshot-gn-gen
- *step-maybe-native-mksnapshot-build
- *step-maybe-native-mksnapshot-store
2018-09-15 01:12:30 +03:00
# Node.js headers
2018-09-20 02:02:12 +03:00
- *step-nodejs-headers-build
2018-09-15 01:12:30 +03:00
2018-09-20 02:02:12 +03:00
- *step-show-sccache-stats
2018-09-15 01:12:30 +03:00
# Save all data needed for a further tests run.
2018-09-20 02:02:12 +03:00
- *step-persist-data-for-tests
2018-09-15 01:12:30 +03:00
2018-09-20 02:02:12 +03:00
- *step-maybe-notify-slack-failure
- *step-maybe-notify-slack-success
2018-09-15 01:12:30 +03:00
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
2018-09-18 13:55:46 +03:00
2018-09-20 02:02:12 +03:00
- *step-electron-gn-gen
- *step-native-tests-build
2018-09-18 13:55:46 +03:00
# TODO(alexeykuzmin): Run the tests. It can be extremely parallelized!
2018-09-15 01:12:30 +03:00
steps-tests : &steps-tests
steps :
- attach_workspace :
at : .
2018-09-20 02:02:12 +03:00
- *step-depot-tools-add-to-path
- *step-electron-dist-unzip
- *step-setup-for-headless-testing
2018-09-15 01:12:30 +03:00
2018-09-20 02:02:12 +03:00
- *step-verify-ffmpeg
2018-09-15 01:12:30 +03:00
2018-09-20 02:02:12 +03:00
- *step-electron-tests-run
- *step-electron-tests-store-results
2018-09-15 01:12:30 +03:00
2018-09-17 19:44:02 +03:00
# Mac build are different in a few ways:
# 1. We can't use save_cache/restore_cache on Mac,
# unpacking with `tar` fails with "Attempt to write to an empty file" error.
# 2. We don't use a shared checkout job because persist_to_workspace
# and attach_workspace take too much time, more than the checkout itself.
steps-build-mac : &steps-build-mac
2018-08-21 20:06:28 +03:00
steps :
2018-09-20 02:02:12 +03:00
- *step-checkout-electron
- *step-depot-tools-get
- *step-depot-tools-add-to-path
- *step-install-nodejs-on-mac
- *step-gclient-sync
- *step-setup-env-for-build
2018-09-17 19:44:02 +03:00
# Electron app
2018-09-20 02:02:12 +03:00
- *step-electron-gn-gen
- *step-electron-build
- *step-electron-dist-build
- *step-electron-dist-store
2018-09-17 19:44:02 +03:00
# ffmpeg
2018-09-20 02:02:12 +03:00
- *step-ffmpeg-gn-gen
- *step-ffmpeg-build
- *step-ffmpeg-store
2018-09-17 19:44:02 +03:00
# It would be better to verify ffmpeg as a part of a test job,
# but it requires `gn` to run, and it's complicated
# to store all gn's dependencies and configs.
2018-09-19 11:55:22 +03:00
# FIXME(alexeykuzmin): Enable the next step back.
2018-09-20 02:02:12 +03:00
# - *step-verify-ffmpeg
2018-09-17 19:44:02 +03:00
# Node.js headers for tests
2018-09-20 02:02:12 +03:00
- *step-nodejs-headers-build
2018-09-17 19:44:02 +03:00
2018-09-20 02:02:12 +03:00
- *step-show-sccache-stats
2018-09-17 19:44:02 +03:00
- persist_to_workspace :
root : .
paths :
- src/electron
# Save all data needed for a further tests run.
2018-09-20 02:02:12 +03:00
- *step-persist-data-for-tests
2018-09-17 19:44:02 +03:00
steps-tests-mac : &steps-tests-mac
steps :
- attach_workspace :
at : .
2018-09-20 02:02:12 +03:00
- *step-depot-tools-add-to-path
- *step-electron-dist-unzip
- *step-install-nodejs-on-mac
2018-09-17 19:44:02 +03:00
2018-09-20 02:02:12 +03:00
- *step-electron-tests-run
- *step-electron-tests-store-results
2018-09-17 19:44:02 +03:00
filter-only-prs-from-forks : &filter-only-prs-from-forks
filters :
branches :
only : /^pull\/.*$/
2018-08-21 20:06:28 +03:00
2018-09-15 01:12:30 +03:00
# List of all jobs.
2017-09-13 16:48:19 +03:00
version : 2
jobs :
2018-09-15 01:12:30 +03:00
# Layer 1: Checkout.
linux-checkout :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-2xlarge
2018-09-15 01:12:30 +03:00
<< : *steps-checkout
linux-arm-checkout :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-2xlarge
2018-07-11 21:01:15 +03:00
environment :
2018-09-15 01:12:30 +03:00
<< : *env-arm
<< : *steps-checkout
2018-08-17 02:28:01 +03:00
2018-09-15 01:12:30 +03:00
linux-arm64-checkout :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-2xlarge
2018-08-17 02:28:01 +03:00
environment :
2018-09-15 01:12:30 +03:00
<< : *env-arm64
<< : *steps-checkout
2018-07-11 21:01:15 +03:00
2018-09-15 01:12:30 +03:00
# Layer 2: Builds.
linux-x64-debug :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-2xlarge
2018-07-31 21:18:36 +03:00
environment :
2018-09-15 01:12:30 +03:00
<< : *env-debug-build
<< : *steps-debug-build
2018-04-09 22:19:54 +03:00
2018-09-15 01:12:30 +03:00
linux-x64-testing :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-2xlarge
2018-08-01 02:25:51 +03:00
environment :
2018-09-15 01:12:30 +03:00
<< : *env-testing-build
<< : *steps-testing-build
linux-x64-release :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-2xlarge
2018-08-17 02:28:01 +03:00
environment :
2018-09-15 01:12:30 +03:00
<< : *env-release-build
<< : *steps-release-build
2018-08-01 02:25:51 +03:00
2018-09-15 01:12:30 +03:00
linux-ia32-debug :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-2xlarge
2018-08-01 02:25:51 +03:00
environment :
2018-09-15 01:12:30 +03:00
<< : *env-ia32
<< : *env-debug-build
<< : *steps-debug-build
linux-ia32-testing :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-2xlarge
2018-09-15 01:12:30 +03:00
environment :
<< : *env-ia32
<< : *env-testing-build
<< : *steps-testing-build
linux-ia32-release :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-2xlarge
2018-08-14 01:43:00 +03:00
environment :
2018-09-15 01:12:30 +03:00
<< : *env-ia32
<< : *env-release-build
<< : *steps-release-build
linux-arm-debug :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-2xlarge
2018-08-17 02:28:01 +03:00
environment :
2018-09-15 01:12:30 +03:00
<< : *env-arm
<< : *env-debug-build
<< : *steps-debug-build
2018-08-17 02:28:01 +03:00
2018-09-15 01:12:30 +03:00
linux-arm-testing :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-2xlarge
2018-08-14 01:43:00 +03:00
environment :
2018-09-15 01:12:30 +03:00
<< : *env-arm
<< : *env-testing-build
<< : *steps-testing-build
linux-arm-release :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-2xlarge
2018-09-15 01:12:30 +03:00
environment :
<< : *env-arm
<< : *env-release-build
2018-08-22 18:41:25 +03:00
BUILD_NATIVE_MKSNAPSHOT : true
2018-09-15 01:12:30 +03:00
<< : *steps-release-build
2018-08-14 01:43:00 +03:00
2018-09-15 01:12:30 +03:00
linux-arm64-debug :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-2xlarge
2018-08-14 01:43:00 +03:00
environment :
2018-09-15 01:12:30 +03:00
<< : *env-arm64
<< : *env-debug-build
<< : *steps-debug-build
linux-arm64-testing :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-2xlarge
2018-08-17 02:28:01 +03:00
environment :
2018-09-15 01:12:30 +03:00
<< : *env-arm64
<< : *env-testing-build
<< : *steps-testing-build
2018-08-17 02:28:01 +03:00
2018-09-15 01:12:30 +03:00
linux-arm64-release :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-2xlarge
2018-08-14 01:43:00 +03:00
environment :
2018-09-15 01:12:30 +03:00
<< : *env-arm64
<< : *env-release-build
2018-08-22 18:41:25 +03:00
BUILD_NATIVE_MKSNAPSHOT : true
2018-09-15 01:12:30 +03:00
<< : *steps-release-build
2018-09-17 19:44:02 +03:00
osx-testing :
<< : *machine-mac
environment :
<< : *env-testing-build
<< : *steps-build-mac
mas-testing :
<< : *machine-mac
environment :
<< : *env-mas
<< : *env-testing-build
<< : *steps-build-mac
2018-09-15 01:12:30 +03:00
# Layer 3: Tests.
2018-09-18 13:55:46 +03:00
linux-x64-native-tests-fyi :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-2xlarge
2018-09-18 13:55:46 +03:00
environment :
<< : *env-testing-build
<< : *steps-native-tests
2018-09-15 01:12:30 +03:00
linux-x64-testing-tests :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-medium
2018-09-15 01:12:30 +03:00
<< : *steps-tests
linux-x64-release-tests :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-medium
2018-09-15 01:12:30 +03:00
<< : *steps-tests
2018-08-14 01:43:00 +03:00
2018-09-15 01:12:30 +03:00
linux-ia32-testing-tests :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-medium
2018-09-15 01:12:30 +03:00
environment :
<< : *env-ia32
<< : *steps-tests
linux-ia32-release-tests :
2018-09-18 17:55:43 +03:00
<< : *machine-linux-medium
2018-09-15 01:12:30 +03:00
environment :
<< : *env-ia32
<< : *steps-tests
2018-09-17 19:44:02 +03:00
osx-testing-tests :
2018-09-15 01:12:30 +03:00
<< : *machine-mac
2018-09-17 19:44:02 +03:00
<< : *steps-tests-mac
2018-08-21 20:06:28 +03:00
2018-09-17 19:44:02 +03:00
mas-testing-tests :
2018-09-15 01:12:30 +03:00
<< : *machine-mac
2018-09-17 19:44:02 +03:00
<< : *steps-tests-mac
2018-08-21 20:06:28 +03:00
2017-09-13 16:48:19 +03:00
workflows :
version : 2
2018-09-11 10:57:41 +03:00
build-linux :
2018-07-11 21:01:15 +03:00
jobs :
2018-09-15 01:12:30 +03:00
- linux-checkout
- linux-arm-checkout
- linux-arm64-checkout
2018-09-18 13:55:46 +03:00
- linux-x64-native-tests-fyi :
requires :
- linux-checkout
2018-09-15 01:12:30 +03:00
- linux-x64-debug :
requires :
- linux-checkout
- linux-x64-testing :
requires :
- linux-checkout
- linux-x64-testing-tests :
requires :
- linux-x64-testing
- linux-ia32-debug :
requires :
- linux-checkout
- linux-ia32-testing :
requires :
- linux-checkout
- linux-ia32-testing-tests :
requires :
- linux-ia32-testing
- linux-arm-debug :
requires :
- linux-arm-checkout
- linux-arm-testing :
requires :
- linux-arm-checkout
- linux-arm64-debug :
requires :
- linux-arm64-checkout
- linux-arm64-testing :
requires :
- linux-arm64-checkout
2018-09-14 21:56:16 +03:00
build-mac-fork-prs :
2018-08-21 20:06:28 +03:00
jobs :
2018-09-17 19:44:02 +03:00
- osx-testing :
<< : *filter-only-prs-from-forks
- osx-testing-tests :
<< : *filter-only-prs-from-forks
requires :
- osx-testing
- mas-testing :
<< : *filter-only-prs-from-forks
- mas-testing-tests :
<< : *filter-only-prs-from-forks
requires :
- mas-testing
2018-05-22 20:50:44 +03:00
2018-09-11 10:57:41 +03:00
nightly-release-test :
2018-08-17 02:28:01 +03:00
triggers :
- schedule :
cron : "0 0 * * *"
filters :
branches :
only :
- master
jobs :
2018-09-15 01:12:30 +03:00
- linux-checkout
- linux-arm-checkout
- linux-arm64-checkout
- linux-x64-release :
requires :
- linux-checkout
- linux-x64-release-tests :
requires :
- linux-x64-release
- linux-ia32-release :
requires :
- linux-checkout
- linux-ia32-release-tests :
requires :
- linux-ia32-release
- linux-arm-release :
requires :
- linux-arm-checkout
- linux-arm64-release :
requires :
- linux-arm64-checkout