electron/script
Alexey Kuzmin 5e199152e2 ci: run unittests on clean Chromium (#15125)
* ci: run unittests on clean Chromium

* test: add '--run-only-disabled-tests' flag to "script/native-tests.py"

* ci: add a job to run only disabled unittests

* test: use a different GN config for the native tests

* test: enable blink_common_unittests

* test: disable WeakPtrDeathTest*
2018-10-22 16:12:19 -04:00
..
lib ci: run unittests on clean Chromium (#15125) 2018-10-22 16:12:19 -04:00
release-notes chore: update to standard 12 2018-09-14 14:57:01 +10:00
apply-patches chore: fix python lint warnings (#14638) 2018-09-16 12:24:07 -05:00
bump-version.py chore: make FILEVERSION 4th component 0 on nightly builds (#15074) 2018-10-11 09:11:20 -04:00
check-relative-doc-links.py chore: fix relative links in docs and enforce we dont break them again (#14832) 2018-09-28 13:16:38 +10:00
chrome_version.h.in
ci-release-build.js chore: make macOS release builds higher priority to skip the queue (#15276) 2018-10-19 23:56:40 +11:00
dbus_mock.py refactor: use one script to launch all linters (#14622) 2018-09-17 16:09:02 -05:00
download-circleci-artifacts.js ci: Trigger an arm test on VSTS after CircleCI build (#14898) 2018-10-04 12:01:16 -04:00
dump-symbols.py ci: Fix timeout when generating breakpad symbols (#15126) 2018-10-13 13:02:52 +11:00
find-release.js refactor: add prefer-const to .eslintrc + fix errors (#14880) 2018-10-02 11:56:31 +10:00
get-last-major-for-master.js refactor: add prefer-const to .eslintrc + fix errors (#14880) 2018-10-02 11:56:31 +10:00
get-patch build: move libcc patches to electron repo (#14104) 2018-09-13 22:02:16 -07:00
get-version.py Add testing for arm, arm64 and ia32 linux builds 2017-12-20 11:54:52 -05:00
lint.js refactor: move devtools from brightray to atom (#15234) 2018-10-19 15:50:30 +02:00
merge-electron-checksums.py Do not put the upload logic in make_zip 2016-08-01 21:16:16 +09:00
native-tests.py ci: run unittests on clean Chromium (#15125) 2018-10-22 16:12:19 -04:00
patch.py chore: copy script/patch.py from the libcc repo (#14627) 2018-09-14 15:12:05 -07:00
prepare-release.js refactor: add prefer-const to .eslintrc + fix errors (#14880) 2018-10-02 11:56:31 +10:00
publish-to-npm.js refactor: add prefer-const to .eslintrc + fix errors (#14880) 2018-10-02 11:56:31 +10:00
pump.py chore: fix python lint warnings (#14638) 2018-09-16 12:24:07 -05:00
README.md build: move libcc patches to electron repo (#14104) 2018-09-13 22:02:16 -07:00
release-artifact-cleanup.js fix: make release-artifact-cleanup executable (#15225) 2018-10-18 20:20:43 -07:00
release.js refactor: add prefer-const to .eslintrc + fix errors (#14880) 2018-10-02 11:56:31 +10:00
run-clang-format.py chore: add --fix option to lint:cpp (#14977) 2018-10-15 22:59:45 -07:00
spec-runner.js chore: some async await stuff for the spec runner (#14897) 2018-10-02 11:53:34 +10:00
start.js refactor: replace var with const / let (#14866) 2018-09-29 09:17:00 +10:00
strip-binaries.py ci: strip linux binaries for release builds (#14991) 2018-10-09 16:19:05 -04:00
sysroots.json update,,, sysroots? again???? 2018-10-09 14:38:00 -07:00
test.py chore: stop using electron.gyp for branding and version (#14559) 2018-09-27 14:53:08 -04:00
tls.py chore: fix relative links in docs and enforce we dont break them again (#14832) 2018-09-28 13:16:38 +10:00
update-external-binaries.py build: make external binaries download action more flexible (#14982) 2018-10-06 00:21:46 +02:00
upload-index-json.py chore: fix out_dir usage in upload-index-json.py 2018-09-28 11:16:38 +10:00
upload-node-checksums.py chore: fix out_dir usage in upload-node-checksums.py 2018-09-28 11:16:38 +10:00
upload-node-headers.py chore: fix out_dir usage in upload-symbols.py 2018-09-28 11:24:50 +10:00
upload-symbols.py fix: Convert to lower case in upload symbols script (#15258) 2018-10-19 11:18:35 +11:00
upload-to-github.js chore: add extra logging to the upload script 2018-10-05 09:24:19 +10:00
upload.py ci: fix the upload distribution step on VSTS (#15015) 2018-10-08 15:19:40 -05:00
verify-ffmpeg.py fixme: dont use --enable-logging on the ffmpeg verify phase 2018-10-10 13:11:10 +11:00
zip-symbols.py ci: Fix timeout when generating breakpad symbols (#15126) 2018-10-13 13:02:52 +11:00

get-patch

Use it to save commits from upstream repositories as patch files.

Examples

  1. Write commit contents in the patch format to stdout.
$ ./script/get-patch --repo src --commit 8e8216e5
  1. Create a patch file with a default name if a specified directory.
$ ./script/get-patch --repo src --commit 8e8216e5 --output-dir patches
  1. Create a patch file with a custom name in the current directory.
$ ./script/get-patch --repo src --commit 8e8216e5 --filename my.patch
  1. Create a patch file with a custom name in a specified directory.
$ ./script/get-patch --repo src --commit 8e8216e5 --output-dir patches --filename my.patch
  1. Create patch files with default names in a specified directory.
$ ./script/get-patch --repo src --output-dir patches --commit 8e8216e5 164c37e3
  1. Create patch files with custom names in a specified directory. Note that number of filenames must match the number of commits.
$ ./script/get-patch --repo src --output-dir patches --commit 8e8216e5 164c37e3 --filename first.patch second.patch