Compare commits

..

2 Commits

Author SHA1 Message Date
Palash Tyagi
aec6278a50 Add debugging output for benchmark report extraction in CI workflow 2025-05-05 22:22:50 +01:00
Palash Tyagi
054b3c828e Add 'unzip' to the list of installed packages in Dockerfile 2025-05-05 22:00:23 +01:00
2 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,7 @@ ARG DEBIAN_FRONTEND=noninteractive
RUN apt update -y && apt upgrade -y && useradd -m docker RUN apt update -y && apt upgrade -y && useradd -m docker
RUN apt install -y --no-install-recommends \ RUN apt install -y --no-install-recommends \
curl jq git \ curl jq git unzip \
# dev dependencies # dev dependencies
build-essential libssl-dev libffi-dev python3 python3-venv python3-dev python3-pip \ build-essential libssl-dev libffi-dev python3 python3-venv python3-dev python3-pip \
# dot net core dependencies # dot net core dependencies

View File

@ -119,6 +119,8 @@ jobs:
-o benchmark-report.zip "$artifact_url" -o benchmark-report.zip "$artifact_url"
mkdir -p benchmark-report mkdir -p benchmark-report
# print ls -a
echo "$( ls -a benchmark-report )"
unzip benchmark-report.zip -d benchmark-report unzip benchmark-report.zip -d benchmark-report
# there will be a tar file in the benchmark-report directory # there will be a tar file in the benchmark-report directory
# called artifact.tar. unzip it into the benchmark-report # called artifact.tar. unzip it into the benchmark-report