mirror of
https://github.com/reactivecircus/android-emulator-runner.git
synced 2026-09-01 10:09:33 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bdf1f83901 | |||
| d3a226f97f | |||
| 4082c705ad |
@@ -46,5 +46,6 @@ jobs:
|
||||
emulator-options: -no-window -gpu swiftshader_indirect -no-snapshot -noaudio -no-boot-anim -camera-back none
|
||||
disable-animations: true
|
||||
script: |
|
||||
echo $GITHUB_REPOSITORY
|
||||
./gradlew help
|
||||
./gradlew connectedDebugAndroidTest
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
# Change Log
|
||||
|
||||
## v2.3.2
|
||||
|
||||
* Fixed an issue where environment variables are escaped in script.
|
||||
|
||||
## v2.3.1
|
||||
|
||||
* Bumped Android Build tools to 29.0.3.
|
||||
|
||||
+1
-1
@@ -84,7 +84,7 @@ function run() {
|
||||
// execute the custom script
|
||||
try {
|
||||
for (const script of scripts) {
|
||||
yield exec.exec(`${script}`);
|
||||
yield exec.exec(`sh -c \\"${script}"`);
|
||||
}
|
||||
}
|
||||
catch (error) {
|
||||
|
||||
+1
-1
@@ -79,7 +79,7 @@ async function run() {
|
||||
// execute the custom script
|
||||
try {
|
||||
for (const script of scripts) {
|
||||
await exec.exec(`${script}`);
|
||||
await exec.exec(`sh -c \\"${script}"`);
|
||||
}
|
||||
} catch (error) {
|
||||
core.setFailed(error.message);
|
||||
|
||||
Reference in New Issue
Block a user