We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4718d61 commit fde6943Copy full SHA for fde6943
scripts/getSHAs.sh
@@ -74,9 +74,11 @@ getSHAs()
74
# Get SHA for external tests by test.properties
75
if [[ "$BUILD_LIST" == *"external"* ]]; then
76
for subDir in "$TEST_ROOT"/external/*/; do
77
+ # find "$subDir" -type f -name 'Dockerfile.*'
78
if [[ $(find "$subDir" -type f -name 'Dockerfile.*') ]]; then
79
+ propertiesFile="$subDir/test.properties"
80
testDir=$(realpath "$(dirname "$subDir")")
- propertiesFile="$testDir/test.properties"
81
+ echo "testdir is ${testDir}"
82
if [[ -f "$propertiesFile" ]]; then
83
# read github_url and tag_version
84
github_url=$(grep '^github_url=' "$propertiesFile" | cut -d"=" -f2 | tr -d '"')
0 commit comments