Do not fail if VERSION.sha not found (#579)

* Create VERSION.sha file while creating standalone binary

* Do not fail on VERSION.sha not found

* Add git to docker container for testing

[ROCm/rocprofiler-compute commit: 19a9365bb9]
This commit is contained in:
vedithal-amd
2025-02-26 11:39:37 -05:00
committed by GitHub
parent 4a890ce8d0
commit 2fc811bbbd
4 changed files with 23 additions and 20 deletions
@@ -2,7 +2,10 @@ FROM redhat/ubi8:8.10-1184
WORKDIR /app
RUN yum install -y curl gcc cmake
RUN yum install -y curl gcc cmake git
# Allows running git commands in /app
RUN git config --global --add safe.directory /app
RUN yum install -y python38 python38-devel && \
yum clean all && \