Home
last modified time | relevance | path

Searched +full:- +full:- +full:unshallow (Results 1 – 7 of 7) sorted by relevance

/external/crosvm/infra/recipes/
Dbuild_chromeos_hatch.py2 # Use of this source code is governed by a BSD-style license that can be
28 "-j8",
39 # Ignore errors from unshallow as repo sync sometimes resulted in full git history
41 "Unshallow crosvm as needed",
43 …for i in $(seq 1 5);do if [[ $(git rev-parse --is-shallow-repository) == 'true' ]]; then git fetch…
56 "Cherry-pick from upstream revision", ["git", "cherry-pick", ".." + revision], cros=True
60 "cros-workon-hatch crosvm",
61 ["cros_sdk", "cros-workon-hatch", "start", "crosvm"],
70 "--board=hatch",
/external/expat/.github/workflows/
Dcoverage.yml8 # Copyright (c) 2021-2022 Sebastian Pipping <sebastian@pipping.org>
36 - cron: '0 2 * * 5' # Every Friday at 2am
41 runs-on: ubuntu-22.04
43 CFLAGS: -g3 -pipe
45 - uses: actions/checkout@v3.1.0
46 - name: Install build dependencies
47 run: |-
48 set -x -u -o pipefail
49 source /etc/os-release
51 sudo apt-get update
[all …]
/external/python/bumble/.github/workflows/
Dcode-check.yml16 runs-on: ubuntu-latest
19 - name: Check out from Git
21 - name: Get history and tags for SCM versioning to work
23 git fetch --prune --unshallow
24 git fetch --depth=1 origin +refs/tags/*:refs/tags/*
25 - name: Set up Python
26 uses: actions/setup-python@v3
28 python-version: '3.10'
29 - name: Install dependencies
31 python -m pip install --upgrade pip
[all …]
Dpython-publish.yml13 runs-on: ubuntu-latest
16 - name: Check out from Git
18 - name: Get history and tags for SCM versioning to work
20 git fetch --prune --unshallow
21 git fetch --depth=1 origin +refs/tags/*:refs/tags/*
22 - name: Set up Python
23 uses: actions/setup-python@v3
25 python-version: '3.10'
26 - name: Install dependencies
28 python -m pip install --upgrade pip
[all …]
Dpython-build-test.yml16 runs-on: ubuntu-latest
19 python-version: ["3.8", "3.9", "3.10"]
20 fail-fast: false
23 - name: Check out from Git
25 - name: Get history and tags for SCM versioning to work
27 git fetch --prune --unshallow
28 git fetch --depth=1 origin +refs/tags/*:refs/tags/*
29 - name: Set up Python ${{ matrix.python-version }}
30 uses: actions/setup-python@v4
32 python-version: ${{ matrix.python-version }}
[all …]
/external/oss-fuzz/infra/
Drepo_manager.py7 # http://www.apache.org/licenses/LICENSE-2.0
21 r_man = RepoManager('https://github.com/google/oss-fuzz.git')
73 _, _, err_code = self.git(['cat-file', '-e', commit])
85 out, _, _ = self.git(['show', '-s', '--format=%ct', commit],
96 # Add '--' so that git knows we aren't talking about files.
97 command = ['diff', '--name-only', base, '--']
113 out, _, _ = self.git(['rev-parse', 'HEAD'], check_result=True)
123 out, _, err_code = self.git(['rev-parse', commit + '~' + str(count)],
167 limit_args.append(f'--max-count={limit}')
169 out, _, err_code = self.git(['rev-list', commit_range] + limit_args)
[all …]
/external/oss-fuzz/infra/base-images/base-builder/
Ddetect_repo.py7 # http://www.apache.org/licenses/LICENSE-2.0
15 inside of an OSS-Fuzz project.
19 python detect_repo.py --src_dir /src --example_commit
37 """Function to get a git repo's url and name referenced by OSS-Fuzz
45 'Finds a specific git repo in an oss-fuzz project\'s docker file.')
46 parser.add_argument('--repo_name', help='The name of the git repo.')
47 parser.add_argument('--src_dir', help='The location of the possible repo.')
48 parser.add_argument('--example_commit',
102 output, return_code = execute(['git', 'config', '--get', 'remote.origin.url'],
121 repo_url, _ = execute(['git', 'config', '--get', 'remote.origin.url'],
[all …]