Skip to content

Commit 4a0a918

Browse files
committed
feat(//py): Add the git revision to non release builds
Signed-off-by: Naren Dasan <naren@narendasan.com> Signed-off-by: Naren Dasan <narens@nvidia.com>
1 parent ce45444 commit 4a0a918

File tree

5 files changed

+23
-7
lines changed

5 files changed

+23
-7
lines changed

.github/workflows/docgen.yml

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
- name: Generate New Docs
3737
run: |
3838
cd docsrc
39+
python3 -c "import trtorch; print(trtorch.__version__)"
3940
make html
4041
- uses: stefanzweifel/git-auto-commit-action@v4
4142
with:

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ __pycache__
3636
dist
3737
bdist
3838
py/trtorch/_version.py
39+
py/trtorch/lib
40+
py/trtorch/include
41+
py/trtorch/bin
42+
py/trtorch/BUILD
43+
py/trtorch/LICENSE
44+
py/trtorch/WORKSPACE
3945
py/wheelhouse
4046
py/.eggs
4147
notebooks/.ipynb_checkpoints/

docker/Dockerfile.docs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM nvcr.io/nvidia/tensorrt:21.02-py3
33
RUN curl https://bazel.build/bazel-release.pub.gpg | apt-key add -
44
RUN echo "deb [arch=amd64] https://storage.googleapis.com/bazel-apt stable jdk1.8" | tee /etc/apt/sources.list.d/bazel.list
55

6-
RUN apt-get update && apt-get install -y bazel-4.0.0 clang-format-9
6+
RUN apt-get update && apt-get install -y bazel-4.0.0 clang-format-9 libjpeg9 libjpeg9-dev
77
RUN ln -s /usr/bin/bazel-4.0.0 /usr/bin/bazel
88
RUN ln -s $(which clang-format-9) /usr/bin/clang-format
99

py/build_whl.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,25 @@ export CXX=g++
88

99
build_py36() {
1010
/opt/python/cp36-cp36m/bin/python -m pip install -r requirements.txt
11-
/opt/python/cp36-cp36m/bin/python setup.py bdist_wheel
11+
/opt/python/cp36-cp36m/bin/python setup.py bdist_wheel --release
1212
#auditwheel repair --plat manylinux2014_x86_64
1313
}
1414

1515
build_py37() {
1616
/opt/python/cp37-cp37m/bin/python -m pip install -r requirements.txt
17-
/opt/python/cp37-cp37m/bin/python setup.py bdist_wheel
17+
/opt/python/cp37-cp37m/bin/python setup.py bdist_wheel --release
1818
#auditwheel repair --plat manylinux2014_x86_64
1919
}
2020

2121
build_py38() {
2222
/opt/python/cp38-cp38/bin/python -m pip install -r requirements.txt
23-
/opt/python/cp38-cp38/bin/python setup.py bdist_wheel
23+
/opt/python/cp38-cp38/bin/python setup.py bdist_wheel --release
2424
#auditwheel repair --plat manylinux2014_x86_64
2525
}
2626

2727
build_py39() {
2828
/opt/python/cp39-cp39/bin/python -m pip install -r requirements.txt
29-
/opt/python/cp39-cp39/bin/python setup.py bdist_wheel
29+
/opt/python/cp39-cp39/bin/python setup.py bdist_wheel --release
3030
#auditwheel repair --plat manylinux2014_x86_64
3131
}
3232

py/setup.py

+11-2
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,21 @@
1818

1919
dir_path = os.path.dirname(os.path.realpath(__file__))
2020

21-
__version__ = '0.5.0a0'
22-
2321
CXX11_ABI = False
2422

2523
JETPACK_VERSION = None
2624

25+
__version__ = '0.5.0a0'
26+
27+
def get_git_revision_short_hash() -> str:
28+
return subprocess.check_output(['git', 'rev-parse', '--short', 'HEAD']).decode('ascii').strip()
29+
30+
if "--release" not in sys.argv:
31+
__version__ = __version__ + "+" + get_git_revision_short_hash()
32+
else:
33+
sys.argv.remove("--release")
34+
35+
2736
if "--use-cxx11-abi" in sys.argv:
2837
sys.argv.remove("--use-cxx11-abi")
2938
CXX11_ABI = True

0 commit comments

Comments
 (0)