Skip to content

Commit

Permalink
android_test: Fix sleep argument
Browse files Browse the repository at this point in the history
The CI fails with:

    + sleep 30s
    usage: sleep seconds
    Error: The process '/bin/sh' failed with exit code 1

There should be no `s` suffix on the newer macOS runner images.
  • Loading branch information
MarijnS95 committed Jun 27, 2023
1 parent 4b408a3 commit 4786350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/android_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ else
adb shell am start -a android.intent.action.MAIN -n "rust.example.hello_world/android.app.NativeActivity"
fi

sleep 30s
sleep 30

adb logcat *:E hello_world:V -d | tee ~/logcat.log

Expand Down

0 comments on commit 4786350

Please sign in to comment.