From 6e1fb6e7f3fccfe777d2a4cd67024e6cfaf7b14c Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Wed, 3 Apr 2024 21:24:26 +0200 Subject: [PATCH] remove libprotobuf (#3505) * remove pb * remove pb * dockerfile restart image * dockerfile restart image --- .github/workflows/docker-image.yml | 4 ++++ Dockerfile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 18651f4fec..bedb1d3969 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -149,6 +149,7 @@ jobs: org.opencontainers.image.licenses=Windmill-Enterprise-License build_ee_reports_privately: + if: github.event_name != 'pull_request' needs: [build_ee] runs-on: ubicloud steps: @@ -389,6 +390,7 @@ jobs: tag_latest: runs-on: ubicloud + if: github.event_name != 'pull_request' needs: [run_integration_test] steps: - uses: actions/checkout@v3 @@ -408,6 +410,8 @@ jobs: tag_latest_ee: runs-on: ubicloud needs: [run_integration_test] + if: github.event_name != 'pull_request' + steps: - uses: actions/checkout@v3 with: diff --git a/Dockerfile b/Dockerfile index ccfc84c0c0..49ff4b60be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -120,7 +120,7 @@ ARG WITH_HELM=true RUN apt-get update \ - && apt-get install -y ca-certificates wget curl git jq libprotobuf-dev libnl-route-3-dev unzip build-essential unixodbc xmlsec1 \ + && apt-get install -y ca-certificates wget curl git jq libnl-route-3-dev unzip build-essential unixodbc xmlsec1 \ && rm -rf /var/lib/apt/lists/* RUN if [ "$WITH_POWERSHELL" = "true" ]; then \