00_setup_env_native_nowallet_liblimenkakernel.sh raw

   1  #!/usr/bin/env bash
   2  #
   3  # Copyright (c) 2019-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_nowallet_liblimenkakernel
  10  export CI_IMAGE_NAME_TAG="mirror.gcr.io/debian:bookworm"
  11  # Use minimum supported python3.10 (or best-effort 3.11) and clang-16, see doc/dependencies.md
  12  export PACKAGES="python3-zmq clang-16 llvm-16 libc++abi-16-dev libc++-16-dev"
  13  export DEP_OPTS="NO_WALLET=1 CC=clang-16 CXX='clang++-16 -stdlib=libc++'"
  14  export GOAL="install"
  15  export LIMENKA_CONFIG="-DREDUCE_EXPORTS=ON -DBUILD_UTIL_CHAINSTATE=ON -DBUILD_KERNEL_LIB=ON -DBUILD_SHARED_LIBS=ON"
  16