mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-28 15:05:53 +00:00
13
.github/actions/build-deps/action.yml
vendored
13
.github/actions/build-deps/action.yml
vendored
@@ -37,10 +37,17 @@ runs:
|
||||
BUILD_OPTION: ${{ inputs.force_build == 'true' && '*' || 'missing' }}
|
||||
BUILD_TYPE: ${{ inputs.build_type }}
|
||||
LOG_VERBOSITY: ${{ inputs.log_verbosity }}
|
||||
ASAN_OPTIONS: suppressions="$GITHUB_WORKSPACE"/external/asan_suppressions.txt
|
||||
TSAN_OPTIONS: suppressions="$GITHUB_WORKSPACE"/external/tsan_suppressions.txt
|
||||
ASAN_OPTIONS: 'suppressions="$GITHUB_WORKSPACE"/external/asan_suppressions.txt'
|
||||
TRY_A: "suppressions=$GITHUB_WORKSPACE/external/asan_suppressions.txt"
|
||||
TRY_B: "suppressions=$GITHUB_WORKSPACE/external/asan_suppressions.txt"
|
||||
TRY_C: "suppressions=${GITHUB_WORKSPACE}/external/asan_suppressions.txt"
|
||||
TSAN_OPTIONS: suppressions='$GITHUB_WORKSPACE'/external/tsan_suppressions.txt
|
||||
run: |
|
||||
echo "$ASAN_OPTIONS $TSAN_OPTIONS"
|
||||
echo "$ASAN_OPTIONS $TSAN_OPTIONS $TRY_A $TRY_B $TRY_C"
|
||||
set TRY_D="suppressions=$GITHUB_WORKSPACE/external/asan_suppressions.txt"
|
||||
echo "TRY_D = $TRY_D"
|
||||
export TRY_E="suppressions=$GITHUB_WORKSPACE/external/asan_suppressions.txt"
|
||||
echo "TRY_E = $TRY_E"
|
||||
echo 'Installing dependencies.'
|
||||
echo 'github.workspace === ${{ github.workspace }}'
|
||||
echo "GITHUB_WORKSPACE === $GITHUB_WORKSPACE"
|
||||
|
||||
Reference in New Issue
Block a user