Home
last modified time | relevance | path

Searched full:base_branch (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython3/Tools/scripts/
Dpatchcheck.py93 base_branch = line.split(":")[1].strip()
94 return base_branch
107 base_branch = get_git_remote_default_branch(upstream_remote)
109 base_branch = "{0.major}.{0.minor}".format(version)
111 if this_branch is None or this_branch == base_branch:
114 return upstream_remote + "/" + base_branch
119 def changed_files(base_branch=None): argument
125 if base_branch:
126 cmd = 'git diff --name-status ' + base_branch
254 base_branch = get_base_branch()
[all …]
/external/python/cpython2/Tools/scripts/
Dpatchcheck.py76 base_branch = "master"
78 base_branch = "{0.major}.{0.minor}".format(version)
80 if this_branch is None or this_branch == base_branch:
84 return upstream_remote + "/" + base_branch
89 def changed_files(base_branch=None): argument
95 if base_branch:
96 cmd = 'git diff --name-status ' + base_branch
207 base_branch = get_base_branch()
208 file_paths = changed_files(base_branch)
/external/robolectric/.github/workflows/
Dcheck_code_style.yml44 base_branch="${{ github.event.pull_request.base.ref }}"
45 echo "Running google-java-format-diff against 'origin/$base_branch'"
46 git fetch origin "$base_branch" --depth 1
47 …diff=$(git diff -U0 $(git merge-base HEAD origin/$base_branch) | $HOME/google-java-format-diff.py …
50 …git diff -U0 $(git merge-base HEAD origin/$base_branch) | $HOME/google-java-format-diff.py --googl…
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/python_utils/
Dfilter_pull_request_tests.py124 def _get_changed_files(base_branch): argument
131 ["git", "merge-base", base_branch, "HEAD"]).decode("UTF-8").rstrip()
163 def affects_c_cpp(base_branch): argument
167 :param base_branch: branch that a pull request is requesting to merge into
170 changed_files = _get_changed_files(base_branch)
179 def filter_tests(tests, base_branch): argument
187 % base_branch)
188 changed_files = _get_changed_files(base_branch)
/external/grpc-grpc/tools/run_tests/python_utils/
Dfilter_pull_request_tests.py132 def _get_changed_files(base_branch): argument
139 subprocess.check_output(["git", "merge-base", base_branch, "HEAD"])
182 def affects_c_cpp(base_branch): argument
186 :param base_branch: branch that a pull request is requesting to merge into
189 changed_files = _get_changed_files(base_branch)
199 def filter_tests(tests, base_branch): argument
207 % base_branch
209 changed_files = _get_changed_files(base_branch)
/external/google-cloud-java/.github/workflows/
Dgoogleapis_hermetic_sync.yaml19 git clone --quiet --branch "${BASE_BRANCH}" --depth 1 \
27 BASE_BRANCH: main
46 --base="${BASE_BRANCH}" \
52 BASE_BRANCH: main
/external/angle/third_party/spirv-tools/src/utils/
Dcheck_code_format.sh21 BASE_BRANCH=${1:-main}
23 FILES_TO_CHECK=$(git diff --name-only ${BASE_BRANCH} | grep -E ".*\.(cpp|cc|c\+\+|cxx|c|h|hpp)$")
30 FORMAT_DIFF=$(git diff -U0 ${BASE_BRANCH} -- ${FILES_TO_CHECK} | python ./utils/clang-format-diff.p…
/external/swiftshader/third_party/SPIRV-Tools/utils/
Dcheck_code_format.sh21 BASE_BRANCH=${1:-main}
23 FILES_TO_CHECK=$(git diff --name-only ${BASE_BRANCH} | grep -E ".*\.(cpp|cc|c\+\+|cxx|c|h|hpp)$")
30 FORMAT_DIFF=$(git diff -U0 ${BASE_BRANCH} -- ${FILES_TO_CHECK} | python ./utils/clang-format-diff.p…
/external/deqp-deps/SPIRV-Tools/utils/
Dcheck_code_format.sh21 BASE_BRANCH=${1:-main}
23 FILES_TO_CHECK=$(git diff --name-only ${BASE_BRANCH} | grep -E ".*\.(cpp|cc|c\+\+|cxx|c|h|hpp)$")
30 FORMAT_DIFF=$(git diff -U0 ${BASE_BRANCH} -- ${FILES_TO_CHECK} | python ./utils/clang-format-diff.p…
/external/rust/crates/grpcio-sys/grpc/tools/internal_ci/linux/
Dgrpc_run_tests_matrix.sh31 …export RUN_TESTS_FLAGS="--filter_pr_tests --base_branch origin/$KOKORO_GITHUB_PULL_REQUEST_TARGET_…
/external/grpc-grpc/tools/internal_ci/linux/
Dgrpc_run_tests_matrix.sh31 …export RUN_TESTS_FLAGS="--filter_pr_tests --base_branch origin/$KOKORO_GITHUB_PULL_REQUEST_TARGET_…
/external/rust/crates/grpcio-sys/grpc/tools/internal_ci/helper_scripts/
Dprepare_build_windows.bat35 …set RUN_TESTS_FLAGS=%RUN_TESTS_FLAGS% --filter_pr_tests --base_branch origin/%KOKORO_GITHUB_PULL_R…
Dprepare_build_macos_rc57 …export RUN_TESTS_FLAGS="--filter_pr_tests --base_branch origin/$KOKORO_GITHUB_PULL_REQUEST_TARGET_…
/external/grpc-grpc/tools/internal_ci/helper_scripts/
Dprepare_build_windows.bat35 …set RUN_TESTS_FLAGS=%RUN_TESTS_FLAGS% --filter_pr_tests --base_branch origin/%KOKORO_GITHUB_PULL_R…
Dprepare_build_macos_rc57 …export RUN_TESTS_FLAGS="--filter_pr_tests --base_branch origin/$KOKORO_GITHUB_PULL_REQUEST_TARGET_…
/external/toolchain-utils/llvm_tools/patch_sync/src/
Dversion_control.rs203 fn cleanup_branch(git_path: &Path, base_branch: &str, rm_branch: &str) -> Result<()> { in cleanup_branch()
206 git_cd_cmd(git_path, ["checkout", base_branch])?; in cleanup_branch()
/external/grpc-grpc/tools/run_tests/
Drun_tests_matrix.py508 "--base_branch",
608 relevant_jobs = filter_tests(jobs, args.base_branch)
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/
Drun_tests_matrix.py452 '--base_branch',
535 relevant_jobs = filter_tests(jobs, args.base_branch)