From 05a14ea17ac2ed143d56912032b88a3b1d55db66 Mon Sep 17 00:00:00 2001 From: BAStos525 Date: Tue, 13 Feb 2024 12:45:29 +0300 Subject: [PATCH] [ci]: Fix pprof-rs Dockerfile and workflow Signed-off-by: BAStos525 --- .github/workflows/iroha2-profiling-image.yml | 4 +++- Dockerfile.glibc | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/iroha2-profiling-image.yml b/.github/workflows/iroha2-profiling-image.yml index 2f14c841cca..11ab5b49d90 100644 --- a/.github/workflows/iroha2-profiling-image.yml +++ b/.github/workflows/iroha2-profiling-image.yml @@ -26,7 +26,9 @@ on: jobs: registry: - runs-on: [self-hosted, Linux, iroha2-dev-push] + runs-on: ubuntu-latest + container: + image: hyperledger/iroha2-ci:nightly-2023-06-25 steps: - uses: actions/checkout@v4 - uses: docker/login-action@v3 diff --git a/Dockerfile.glibc b/Dockerfile.glibc index b04428cfc0b..b83aeb8b339 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 + apt-get install -y curl build-essential mold pkg-config libssl-dev # set up Rust toolchain RUN curl https://sh.rustup.rs -sSf | bash -s -- -y