c5e45803e9
* Update lib/rocprofiler-sdk/counters/{tests,parser/tests}/CMakeLists.txt
- use rocprofiler-static-library instead of rocprofiler-object-library
* Update scripts/run-ci.py
- support gcovr and pycobertura
* Update CI workflow for code coverage
- load/save cache for XML code coverage (via gcovr)
- generate and write code coverage comment
- archive code coverage HTML report
- fix name for sanitizer jobs
* Update CI workflow
- tweaks to env for PATH and LD_LIBRARY_PATH
* Add scripts/upload-image-to-github.py
- script for saving images to orphan branches to be used in markdown links
* Update CI workflow
- fix upload artifact conflict
- use upload-image-to-github.py
* Update CI workflow
- install extra packages for wkhtmltopdf/wkhtmltoimage
* Update CI workflow (code coverage)
- install more recent git
- tweak package installs for wkhtmltopdf/wkhtmltoimage
* Update CI workflow (code coverage)
- remove duplicate --cap-add=SYS_PTRACE
* Update CI and upload-image-to-github.py
- print versions
* Update upload-image-to-github.py
- check exit code of some subprocesses
* Update CI workflow
- fix GITHUB_PATH ordering
- fix LD_LIBRARY_PATH
* Update CI workflow
- fix code coverage cache keys (use SHAs)
- copy .codecov to .codecov.ref if a cached .codecov exists
* Update upload-image-to-github.py
- Update git pull/push commands
* Update upload-image-to-github.py
- git fetch before pulling
- git pull before committing
* Update upload-image-to-github.py
- git fetch after committing
- git pull after committing
* Update CI workflow
- list files before cat
* Update upload-image-to-github.py
- output messages
* Update CI workflow and upload-image-to-github.py
- fix output directory path for script to work with CI workflow
* Update CI workflow
- finishing touches/fixes on the code coverage comment generation
* Reproducible filenames
* Update CI workflow
- fix archive of code coverage data
* Fix relative path of reproducible file loc
* Update upload-image-to-github.py
- change update method
* rocprofiler-v2-internal -> rocprofiler-sdk-internal
173 righe
4.9 KiB
Python
Executable File
173 righe
4.9 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import os
|
|
import tempfile
|
|
import subprocess
|
|
import shutil
|
|
|
|
|
|
def which(cmd, require):
|
|
v = shutil.which(cmd)
|
|
if require and v is None:
|
|
raise RuntimeError(f"{cmd} not found")
|
|
return v if v is not None else ""
|
|
|
|
|
|
def run(*args, **kwargs):
|
|
if "sensitive" not in kwargs.keys() or not kwargs["sensitive"]:
|
|
print("\n### Executing '{}'... ###\n".format(" ".join(*args)))
|
|
|
|
if "sensitive" in kwargs:
|
|
del kwargs["sensitive"]
|
|
|
|
return subprocess.run(*args, **kwargs)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import argparse
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument(
|
|
"-f",
|
|
"--files",
|
|
nargs="+",
|
|
help="Image files to create markdown links for",
|
|
type=str,
|
|
required=True,
|
|
default=[],
|
|
)
|
|
parser.add_argument(
|
|
"-n",
|
|
"--name",
|
|
help="Name of the PR",
|
|
type=str,
|
|
required=True,
|
|
)
|
|
parser.add_argument(
|
|
"--repo-url",
|
|
help="Base GitHub repo URL",
|
|
type=str,
|
|
default="https://github.com/ROCm/rocprofiler-sdk-internal",
|
|
)
|
|
parser.add_argument(
|
|
"-o",
|
|
"--output-dir",
|
|
help="Output directory containing the generated markdown files and the list of these files",
|
|
type=str,
|
|
default=".codecov",
|
|
)
|
|
parser.add_argument(
|
|
"--token",
|
|
type=str,
|
|
help="Personal access token or GitHub actions token",
|
|
required=True,
|
|
)
|
|
parser.add_argument(
|
|
"--bot",
|
|
action="store_true",
|
|
help="Configure git user.name and user.email to GitHub Actions Bot",
|
|
)
|
|
|
|
args = parser.parse_args()
|
|
|
|
inidir = os.getcwd()
|
|
|
|
if os.path.exists(args.token):
|
|
with open(args.token, "r") as f:
|
|
token = f.readline().strip()
|
|
else:
|
|
token = args.token
|
|
|
|
repo_url = args.repo_url
|
|
repo_url_protocol = args.repo_url.split("//")[0]
|
|
repo_url_addr = args.repo_url.split("//", maxsplit=1)[-1]
|
|
repo_url_secure = f"{repo_url_protocol}//oauth2:{token}@{repo_url_addr}.git"
|
|
files = [os.path.abspath(itr) for itr in args.files]
|
|
|
|
with tempfile.TemporaryDirectory() as tmpdir:
|
|
print(f"Working directory: {tmpdir}")
|
|
|
|
git_cmd = which("git", require=True)
|
|
print(f"git executable: {git_cmd}")
|
|
|
|
run([git_cmd, "--version"])
|
|
|
|
run(
|
|
[
|
|
git_cmd,
|
|
"clone",
|
|
repo_url_secure,
|
|
tmpdir,
|
|
],
|
|
sensitive=True,
|
|
check=True,
|
|
)
|
|
|
|
os.chdir(tmpdir)
|
|
|
|
if args.bot:
|
|
run(
|
|
[git_cmd, "config", "--local", "user.name", "github-actions[bot]"],
|
|
check=True,
|
|
)
|
|
run(
|
|
[
|
|
git_cmd,
|
|
"config",
|
|
"--local",
|
|
"user.email",
|
|
"41898282+github-actions[bot]@users.noreply.github.com",
|
|
],
|
|
check=True,
|
|
)
|
|
|
|
run(["pwd"])
|
|
run([git_cmd, "switch", "--orphan", "images"], check=True)
|
|
run([git_cmd, "commit", "--allow-empty", "-m", "Empty commit"], check=True)
|
|
run([git_cmd, "fetch", "origin", "refs/images/image-ref"], check=True)
|
|
run([git_cmd, "pull", "--rebase", "origin", "refs/images/image-ref"], check=True)
|
|
run([git_cmd, "reset", "--hard", "HEAD^"], check=True)
|
|
|
|
if not os.path.exists(args.name):
|
|
os.makedirs(args.name)
|
|
|
|
filenames = {}
|
|
for itr in files:
|
|
bname = os.path.basename(itr)
|
|
_, ext = os.path.splitext(bname)
|
|
oname = os.path.join(args.name, bname)
|
|
filenames[bname] = oname
|
|
shutil.copy2(itr, os.path.join(tmpdir, oname))
|
|
|
|
run([git_cmd, "add", args.name])
|
|
run([git_cmd, "status"])
|
|
run([git_cmd, "commit", "-m", "code coverage files"])
|
|
run(
|
|
[git_cmd, "push", "--force", "origin", "HEAD:refs/images/image-ref"],
|
|
check=True,
|
|
)
|
|
|
|
log = run([git_cmd, "log", "-n", "1", "--format=%H"], capture_output=True)
|
|
hash = log.stdout.decode("utf-8").strip()
|
|
info = {}
|
|
for bitr, titr in filenames.items():
|
|
info[
|
|
bitr
|
|
] = f""
|
|
|
|
os.chdir(inidir)
|
|
|
|
if not os.path.exists(args.output_dir):
|
|
os.makedirs(args.output_dir)
|
|
|
|
metafname = os.path.join(args.output_dir, "gh-md-image-links.txt")
|
|
with open(metafname, "w") as mofs:
|
|
print(f"\n### Writing '{metafname}'... ###\n")
|
|
for lbl, msg in info.items():
|
|
mdfname = os.path.join(args.output_dir, f"{lbl}.md")
|
|
with open(mdfname, "w") as ofs:
|
|
print(f"\n### Writing '{mdfname}'... ###\n")
|
|
ofs.write(f"\n{msg}\n\n")
|
|
mofs.write(f"{mdfname}\n")
|