From dede8489d863c86c0d3b0a90b672d7088829b8fd Mon Sep 17 00:00:00 2001 From: BAStos525 Date: Tue, 13 Feb 2024 11:59:23 +0300 Subject: [PATCH] update profiler workflow 5 Signed-off-by: BAStos525 --- .github/workflows/iroha2-profiling-image.yml | 2 +- Dockerfile.glibc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/iroha2-profiling-image.yml b/.github/workflows/iroha2-profiling-image.yml index 11ab5b49d90..4ea8990332d 100644 --- a/.github/workflows/iroha2-profiling-image.yml +++ b/.github/workflows/iroha2-profiling-image.yml @@ -26,7 +26,7 @@ on: jobs: registry: - runs-on: ubuntu-latest + runs-on: [self-hosted] container: image: hyperledger/iroha2-ci:nightly-2023-06-25 steps: diff --git a/Dockerfile.glibc b/Dockerfile.glibc index 0ce19068951..cdd8ace0276 100644 --- a/Dockerfile.glibc +++ b/Dockerfile.glibc @@ -3,7 +3,7 @@ FROM debian:bookworm-slim AS builder # install required packages RUN apt-get update -y && \ - apt-get install -y curl build-essential mold libssl-dev + apt-get install -y curl build-essential mold libssl-dev pkg-config cmake-data # set up Rust toolchain RUN curl https://sh.rustup.rs -sSf | bash -s -- -y @@ -40,7 +40,7 @@ ENV GID=1001 RUN set -ex && \ apt-get update -y && \ - apt-get install -y curl ca-certificates libssl-dev && \ + apt-get install -y curl ca-certificates libssl-dev pkg-config cmake-data && \ addgroup --gid $GID $USER && \ adduser \ --disabled-password \