00_setup_env_native_centos.sh raw

   1  #!/usr/bin/env bash
   2  #
   3  # Copyright (c) 2020-present The Limenka developers
   4  # Distributed under the MIT software license, see the accompanying
   5  # file COPYING or http://www.opensource.org/licenses/mit-license.php.
   6  
   7  export LC_ALL=C.UTF-8
   8  
   9  export CONTAINER_NAME=ci_native_centos
  10  export CI_IMAGE_NAME_TAG="quay.io/centos/centos:stream10"
  11  export CI_BASE_PACKAGES="gcc-c++ glibc-devel libstdc++-devel ccache make git python3 python3-pip which patch xz procps-ng rsync coreutils bison e2fsprogs cmake dash libicns-utils librsvg2-tools ImageMagick"
  12  export PIP_PACKAGES="pyzmq"
  13  export DEP_OPTS="DEBUG=1"  # Temporarily enable a DEBUG=1 build to check for GCC-bug-117966 regressions. This can be removed once the minimum GCC version is bumped to 12 in the previous releases task, see https://github.com/limenka/limenka/issues/31436#issuecomment-2530717875
  14  export GOAL="install"
  15  export LIMENKA_CONFIG="-DWITH_ZMQ=ON -DBUILD_GUI=ON -DREDUCE_EXPORTS=ON -DCMAKE_BUILD_TYPE=Debug"
  16