mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-05-08 15:51:08 +00:00
* 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>
10 lines
234 B
Bash
Executable File
10 lines
234 B
Bash
Executable File
#!/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
|