add compose/scripts to run presubmit workflow for CLs in our androidx fork (#1273)

* add scripts to test compose modules (from androidx fork)

* add scripts to test compose modules (from androidx fork)

* add scripts to test compose modules (from androidx fork)

Co-authored-by: Oleksandr Karpovich <oleksandr.karpovich@jetbrains.com>
This commit is contained in:
Oleksandr Karpovich
2021-10-19 10:53:50 +02:00
committed by GitHub
parent f4ca94af8d
commit b1f427be54
2 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/bash
cd "$(dirname "$0")"
. ./prepare
pushd ..
# used in https://github.com/JetBrains/androidx/tree/jb-main/.github/workflows
./gradlew testComposeModules testComposeJbDesktop $COMPOSE_DEFAULT_GRADLE_ARGS "$@" || exit 1
popd