Revision control
Copy as Markdown
Other Tools
# This file contains configurations that are relevant for the entire repository
#
# The variables defined in this file are made available as environment variables
# in the CI jobs.
#
# If one needs to read these variables in a script, they can be accessed via
# src/scripts/repo_config.py. For example, to read the value of BORINGSSL_REPO,
# one can use the following command:
#
# python3 src/scripts/repo_config.py get BORINGSSL_REPO
#
# The settings in this file _explicitly do not_ affect the build of the shipped
# production code or library. Such settings may be found in src/build-data.
# The fork of boringssl that should be used for BoGo tests
BORINGSSL_REPO="randombit/boringssl"
# The branch in our fork of boringssl that should be used for BoGo tests
BORINGSSL_BRANCH="rene/runner-20241016"
# The Android NDK to for the cross platform builds to Android
ANDROID_NDK="android-ndk-r28"
# Jitterentropy library version to be used for testing the 'jitter_rng' module
JITTERENTROPY_VERSION="3.6.2"
# Entropy Source and DRNG Manager (ESDM) bundle version used to test the ESDM adapter
ESDM_VERSION="1.2.0"
# The version of the Intel SDE tool to use for running the Intel SDE tests
INTEL_SDE_VERSION="sde-external-9.38.0-2024-04-18-lin"
# Limbo test suite revision to be used in run_limbo_tests.py
LIMBO_TEST_SUITE_REVISION="ec604cf2b1eebe22c6ffc40e380517c6d49c78cc"
# The maximum size of the compiler cache in CI
# Those variables are directly consumed by ccache and sccache respectively
CCACHE_MAXSIZE="300M"
SCCACHE_CACHE_SIZE="300M"