Searched refs:check_output (Results 1 – 16 of 16) sorted by relevance
| /petsc/lib/petsc/bin/maint/ |
| H A D | runjobs.py | 4 from subprocess import check_output 33 check_output(r'git diff-index --quiet HEAD --', shell=True) 40 check_output('git fetch', shell=True).decode('utf-8') 41 branch = check_output('git rev-parse --abbrev-ref HEAD', shell=True).decode('utf-8').strip() 42 …base = check_output('git merge-base ' + branch + ' remotes/origin/' + branch, shell=True).decode… 43 aref = check_output('git rev-parse ' + branch, shell=True).decode('utf-8').strip() 44 …bref = check_output('git rev-parse remotes/origin/' + branch, shell=True).decode('utf-8').strip() 61 …try: commit = check_output('git rev-list -1 HEAD .gitlab-ci.yml', shell=True).decode('utf-8').stri… 119 output = check_output('git add .gitlab-ci.yml', shell=True) 121 …output = check_output('git commit -m"DRAFT: CI: Temporary commit, remove before merge! Runs only j… [all …]
|
| H A D | abicheck.py | 22 output = subprocess.check_output([compiler,'--help'], stderr=subprocess.STDOUT) 48 branch = subprocess.check_output(['grep', '^#define PETSC_VERSION_BRANCH_GIT', petscconf]) 50 hash = subprocess.check_output(['grep', '^#define PETSC_VERSION_GIT', petscconf]) 135 ccstring = subprocess.check_output(['grep', '^CC =', petscvariables])
|
| H A D | generateetags.py | 17 from subprocess import check_output 19 def check_output(*popenargs, **kwargs): function 183 …output = check_output(r'git ls-files | grep -E -v \(^\(systems/\|share/petsc/datafiles/\)\|/output…
|
| H A D | check-each-commit.sh | 13 make -f gmakefile check_output
|
| H A D | gcov.py | 227 return call_subprocess(subprocess.check_output, *args, **kwargs)
|
| /petsc/lib/petsc/bin/ |
| H A D | extract.py | 32 root = subprocess.check_output(["git", "rev-parse", "--show-toplevel"]).splitlines() 33 files = subprocess.check_output(["git", "ls-files", "--full-name", "../../.."]).splitlines()
|
| H A D | generatefortranbindings.py | 31 from subprocess import check_output 437 output = check_output('git add ' + os.path.join(dir,'makefile'), shell=True).decode('utf-8') 439 …output = check_output('git add ' + os.path.join(dir,filename.replace('.c','f.c')), shell=True).dec… 892 …output = check_output('find src -type f -path "*/ftn-custom/*.c" | xargs grep "[ ]*#define [a-z0-9…
|
| H A D | getAPI.py | 20 from subprocess import check_output 434 …output = check_output('grep -F -e "' + pkgname.upper() + '_EXTERN PetscErrorCode" -e "static inlin… 445 …output = check_output('grep "' + pkgname.upper() + '_EXTERN [a-zA-Z]* *[a-zA-Z]*;" include/*.h', s…
|
| /petsc/doc/ |
| H A D | build_man_impls_links.py | 47 …implsClassAll = subprocess.check_output(['git', 'grep', '-E', r'struct[[:space:]]+_[pn]_[^[:space:… 50 …subimplsClassAll = subprocess.check_output(['git', 'grep', '-E', '} [A-Z][A-Za-z]*_[A-Za-z]*;', '-… 53 …implsFuncAll = subprocess.check_output(['git', 'grep', '-nE', r'^(static )?(PETSC_EXTERN )?(PETSC_…
|
| H A D | conf.py | 51 …git_describe_version = subprocess.check_output(['git', 'describe', '--always']).strip().decode('ut… 131 git_ref = subprocess.check_output(["git", "rev-parse", "HEAD"]).rstrip() 132 git_ref_release = subprocess.check_output(["git", "rev-parse", "origin/release"]).rstrip()
|
| H A D | build_man_index.py | 234 git_ref = subprocess.check_output(['git', 'rev-parse', 'HEAD']).rstrip() 236 git_ref_release = subprocess.check_output(['git', 'rev-parse', 'origin/release']).rstrip()
|
| H A D | build_c2html_file.py | 20 txt = subprocess.check_output(cmd, text=True, input=txt, shell = True)
|
| H A D | build_c2html.py | 90 git_sha = subprocess.check_output(['git', 'rev-parse', 'HEAD'], text=True).rstrip()
|
| /petsc/config/ |
| H A D | gmakegentest.py | 95 self.check_output=check 911 if self.check_output: 923 if self.check_output: 940 if self.check_output: 1074 if not pEx.check_output: 1106 testdir=opts.testdir, check=opts.check_output)
|
| /petsc/src/binding/petsc4py/docs/source/ |
| H A D | conf.py | 425 …subprocess.check_output(['git', 'describe', '--always']).strip().decode('utf-8') # noqa: S603, S6…
|
| /petsc/ |
| H A D | gmakefile.test | 433 check_output:
|