-
Notifications
You must be signed in to change notification settings - Fork 569
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4422 from Rohde-Schwarz/chore/repo_config
- Loading branch information
Showing
10 changed files
with
237 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
# (C) 2024 Jack Lloyd | ||
# (C) 2024 René Meusel, Rohde & Schwarz Cybersecurity | ||
# | ||
# Botan is released under the Simplified BSD License (see license.txt) | ||
|
||
name: Read Repository Configuration | ||
description: Reads the repository configuration file and makes it available as environment variables | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Read Repository Configuration into Environment Variables | ||
run: | | ||
python3 ${{ github.action_path }}/../../../src/scripts/repo_config.py all >> $GITHUB_ENV | ||
echo "REPO_CONFIG_LOADED=true" >> $GITHUB_ENV | ||
shell: bash | ||
if: runner.os != 'Windows' | ||
|
||
- name: Read Repository Configuration into Environment Variables | ||
run: | | ||
python3 ${{ github.action_path }}/../../../src/scripts/repo_config.py all >> $GITHUB_ENV | ||
echo "REPO_CONFIG_LOADED=true" >> $GITHUB_ENV | ||
shell: pwsh | ||
if: runner.os == 'Windows' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# 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-r26" | ||
|
||
# Jitterentropy library version to be used for testing the 'jitter_rng' module | ||
JITTERENTROPY_VERSION="3.6.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="f98aa03f45d108ae4e1bc5a61ec4bd0b8d137559" | ||
|
||
# The maximum size of the compiler cache in CI | ||
# Those variables are directly consumed by ccache and sccache respectively | ||
CCACHE_MAXSIZE="200M" | ||
SCCACHE_CACHE_SIZE="200M" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.