From 8b2c1e73f2218a37e714567099ecceb96829e359 Mon Sep 17 00:00:00 2001 From: Alexander Samusev <41779041+alvicsam@users.noreply.github.com> Date: Thu, 7 May 2026 17:55:41 +0200 Subject: [PATCH 1/5] Update RESOLC_VERSION to v1.0.0 in Dockerfile --- ci-unified/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-unified/Dockerfile b/ci-unified/Dockerfile index 3fad678..ed1224d 100644 --- a/ci-unified/Dockerfile +++ b/ci-unified/Dockerfile @@ -306,7 +306,7 @@ COPY ci-unified/download-bin.sh download-bin.sh ARG SOLC_VERSION="v0.8.30" RUN bash download-bin.sh solc ${SOLC_VERSION} -ARG RESOLC_VERSION="v0.5.0" +ARG RESOLC_VERSION="v1.0.0" RUN bash download-bin.sh resolc ${RESOLC_VERSION} ### codecov From 6196f546bf5b87c9c15f6991e11864feab7eb178 Mon Sep 17 00:00:00 2001 From: Evgeny Snitko Date: Thu, 7 May 2026 22:51:26 +0400 Subject: [PATCH 2/5] Update FORKLIFT_VERSION to 0.17.0 --- .github/workflows/ci-unified.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-unified.yml b/.github/workflows/ci-unified.yml index 540e228..1cea2fa 100644 --- a/.github/workflows/ci-unified.yml +++ b/.github/workflows/ci-unified.yml @@ -24,7 +24,7 @@ env: IMAGE_NAME: "ci-unified" RUST_STABLE_VERSION: "1.93.0" RUST_NIGHTLY_VERSION: "2026-01-27" - FORKLIFT_VERSION: "0.16.0" + FORKLIFT_VERSION: "0.17.0" CODECOV_UPLOADER_VERSION: "v0.7.3" CODECOV_CLI_VERSION: "v0.6.0" DISTRO_CODENAME: "bullseye" From 9408b62e6b9214d676dac261e8043d2d4c0719fc Mon Sep 17 00:00:00 2001 From: Evgeny Snitko Date: Fri, 8 May 2026 01:06:01 +0400 Subject: [PATCH 3/5] Create directory for Docker configuration --- .github/actions/build-push-image/action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/build-push-image/action.yml b/.github/actions/build-push-image/action.yml index d0ba119..e941788 100644 --- a/.github/actions/build-push-image/action.yml +++ b/.github/actions/build-push-image/action.yml @@ -44,6 +44,9 @@ runs: - run: mkdir -p /root/.docker/ || true shell: bash + - run: mkdir -p /home/runner/.docker + shell: bash + - name: Log in uses: redhat-actions/podman-login@v1 with: From f67f84be96ff19c32ff8a13ec9006fb22d424538 Mon Sep 17 00:00:00 2001 From: Evgeny Snitko Date: Fri, 8 May 2026 01:46:48 +0400 Subject: [PATCH 4/5] test --- ci-unified/Dockerfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/ci-unified/Dockerfile b/ci-unified/Dockerfile index ed1224d..4633361 100644 --- a/ci-unified/Dockerfile +++ b/ci-unified/Dockerfile @@ -11,6 +11,21 @@ ENV RESTIC_VERSION="0.16.1" \ WORKDIR /builds +### TEMP DEBUG: probe resolc versions early — remove after diagnosis +RUN set +e; \ + apt-get -y update >/dev/null 2>&1; \ + apt-get install -y --no-install-recommends curl ca-certificates >/dev/null 2>&1; \ + echo "=== cpu flags ==="; \ + grep -m1 flags /proc/cpuinfo; \ + for V in v0.5.0 v0.6.0 v1.0.0 v1.1.0; do \ + echo "=== resolc ${V} ==="; \ + curl -Lsf -o /tmp/resolc "https://github.com/paritytech/revive/releases/download/${V}/resolc-x86_64-unknown-linux-musl" || { echo "download failed"; continue; }; \ + chmod +x /tmp/resolc; \ + /tmp/resolc --version; \ + echo "exit: $?"; \ + done; \ + rm -f /tmp/resolc + ENV SHELL=/bin/bash \ DEBIAN_FRONTEND=noninteractive \ RUSTUP_HOME=/usr/local/rustup \ From ae0809444e858849de5297573110e2824ba69607 Mon Sep 17 00:00:00 2001 From: Evgeny Snitko Date: Fri, 8 May 2026 01:57:27 +0400 Subject: [PATCH 5/5] remove test --- ci-unified/Dockerfile | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/ci-unified/Dockerfile b/ci-unified/Dockerfile index 4633361..ed1224d 100644 --- a/ci-unified/Dockerfile +++ b/ci-unified/Dockerfile @@ -11,21 +11,6 @@ ENV RESTIC_VERSION="0.16.1" \ WORKDIR /builds -### TEMP DEBUG: probe resolc versions early — remove after diagnosis -RUN set +e; \ - apt-get -y update >/dev/null 2>&1; \ - apt-get install -y --no-install-recommends curl ca-certificates >/dev/null 2>&1; \ - echo "=== cpu flags ==="; \ - grep -m1 flags /proc/cpuinfo; \ - for V in v0.5.0 v0.6.0 v1.0.0 v1.1.0; do \ - echo "=== resolc ${V} ==="; \ - curl -Lsf -o /tmp/resolc "https://github.com/paritytech/revive/releases/download/${V}/resolc-x86_64-unknown-linux-musl" || { echo "download failed"; continue; }; \ - chmod +x /tmp/resolc; \ - /tmp/resolc --version; \ - echo "exit: $?"; \ - done; \ - rm -f /tmp/resolc - ENV SHELL=/bin/bash \ DEBIAN_FRONTEND=noninteractive \ RUSTUP_HOME=/usr/local/rustup \