From 6ef5e7c5e66bcc63664a16634a5032a4eab0e396 Mon Sep 17 00:00:00 2001 From: MADELA Patrick <patrick.madela@synchrotron-soleil.fr> Date: Fri, 17 Mar 2023 23:10:34 +0100 Subject: [PATCH] Install zlib-devel as prerequisites for conan pyinstaller --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c2eb53c..1e3717f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,6 +16,8 @@ stages: .build: stage: build script: + # Install prerequisites for pyinstaller + - yum install -y zlib-devel # Install python 3 - curl -s -L -o ${PYTHON_ROOT}.zip https://gitlab.synchrotron-soleil.fr/software-control-system/devtools/python3/-/jobs/artifacts/3.6.13/download?job=${PLATFORM} - unzip -q ${PYTHON_ROOT}.zip -d ${CI_PROJECT_DIR} -- GitLab