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 17, 2023
1 parent a4af987 commit ccb8d99
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ jobs:
with:
fetch-depth: 0 #If you only need the current version keep this.

- name: Test Grep
run: grep -rsi "test"

- name: Setup dotnet ${{ matrix.dotnet-version }} build tools
uses: actions/setup-dotnet@v3
with:
Expand Down Expand Up @@ -87,9 +84,9 @@ jobs:
with:
api-level: 27
script: |
adb logcat mono-stdout:D AndroidRuntime:D *:S | tee test-run.log &
adb logcat mono-stdout:D AndroidRuntime:D | tee test-run.log &
adb install tests/LaunchDarkly.ClientSdk.Android.Tests/bin/Debug/net7.0-android/com.launchdarkly.androidtests-Signed.apk
adb shell monkey -p com.launchdarkly.androidtests -c android.intent.category.LAUNCHER 1
( tail -f -c+0 test-run.log & ) | grep -q 'Tests run:'
tail -f 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

0 comments on commit ccb8d99

Please sign in to comment.