We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51883a5 commit 427b18bCopy full SHA for 427b18b
2 files changed
.github/workflows/scripts/android/android-emulator-tests.sh
@@ -25,7 +25,7 @@ ANDROID_PROFILE="Pixel 6"
25
26
# see if the Android SDK is even installed
27
echo "CHECKING FOR ANDROID SDK"
28
-find / -name sdkmanager || true
+find / -type f -name sdkmanager || true
29
echo "DONE CHECKING FOR ANDROID SDK"
30
31
# install and start an Android emulator
.github/workflows/swift_package_test.yml
@@ -630,6 +630,8 @@ jobs:
630
run: |
631
if [ "${{ github.repository }}" = "swiftlang/github-workflows" ]; then
632
echo "root=$GITHUB_WORKSPACE" >> $GITHUB_OUTPUT
633
+ elif [ "${{ github.repository }}" = "swift-android-sdk/github-workflows" ]; then
634
+ echo "root=$GITHUB_WORKSPACE" >> $GITHUB_OUTPUT
635
else
636
echo "root=$GITHUB_WORKSPACE/github-workflows" >> $GITHUB_OUTPUT
637
fi
0 commit comments