From f79b40369cd888d0c9a80e5b219d3b0a09184cfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Baran?= Date: Wed, 4 Dec 2024 16:11:29 +0100 Subject: [PATCH] Fix dind build command --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 55bcc6be1cc..3701b0c53ce 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -106,10 +106,10 @@ jobs: run: | set -e pipefail yum install -y redhat-lsb-core centos-release-scl devtoolset-7 perl-IPC-Cmd - echo "source /opt/rh/devtoolset-7/enable" >> ~/.bashrc + source /opt/rh/devtoolset-7/enable python3.9 -m pip install ninja - echo "/opt/_internal/cpython-3.9.20/bin" >> $GITHUB_PATH - echo "VCPKG_FORCE_SYSTEM_BINARIES=YES" >> $GITHUB_ENV + export PATH="${PATH}:/opt/_internal/cpython-3.9.20/bin" + export VCPKG_FORCE_SYSTEM_BINARIES=YES cmake -S /work -B /work/build \ -DCMAKE_BUILD_TYPE=Release \