-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enh(bam): sometimes kpi creation may break BA's consistency
REFS: MON-34895
- Loading branch information
Showing
6 changed files
with
195 additions
and
4 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
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,22 @@ | ||
#!/bin/bash | ||
# A little script to source before compiling. | ||
# It just sets VCPKG_ROOT and PATH so that make/ninja won't fail. | ||
|
||
# To be sure the script is sourced. | ||
(return 0 2>/dev/null) && sourced=1 || sourced=0 | ||
|
||
if (( sourced == 0 )) ; then | ||
echo "Please execute this script with:" | ||
echo ". init.sh" | ||
exit 1 | ||
fi | ||
|
||
# To be sure the script has not already been launched. | ||
if [[ "$PATH" =~ "vcpkg" ]] ; then | ||
echo "Already initialized" | ||
exit 2 | ||
fi | ||
|
||
# The main purpose. | ||
export VCPKG_ROOT=$PWD/vcpkg | ||
export PATH=$VCPKG_ROOT:$PATH |
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
303887d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Robot Results
Failed Tests
Bench
303887d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Robot Results
Failed Tests
networkFailure