Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Commit

Permalink
fixing build
Browse files Browse the repository at this point in the history
  • Loading branch information
tanderson-ld committed Nov 16, 2023
1 parent ad7a74a commit 707df89
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
ci-build:
runs-on: macos-latest
runs-on: macos-latest-large
strategy:
matrix:
dotnet-version: ['7.0.x']
Expand Down Expand Up @@ -86,7 +86,12 @@ jobs:
script: |
echo "About to sleep"
sleep 10
adb logcat mono-stdout:D AndroidRuntime:D *:S | tee test-run.log
adb install tests/LaunchDarkly.ClientSdk.Android.Tests/bin/Debug/net7.0-android/com.companyname.LaunchDarkly.ClientSdk.Android.Tests-Signed.apk
adb shell monkey -p com.launchdarkly.LaunchDarkly.ClientSdk.Android.Tests 1
"( tail -f -c+0 test-run.log & ) | grep -q 'Tests run:'"
cat test-run.log | tr -s ' ' | cut -d ' ' -f 1,2,7-
if grep '\[FAIL\]' test-run.log >/dev/null; then exit 1; fi
# TODO: update build commands to not use msbuild if possible
# TODO: make teraform PR to get repo access to ARN. Also need to update the github-sdk-release role to get access to S3 blobs from .ldrelease/secrets.properties
Expand Down

0 comments on commit 707df89

Please sign in to comment.