mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-03-10 08:11:20 +00:00
* Update versions in examples * Add more scripts to validate example on android and k/js * Add validateExamplesIos.sh * Update CHANGELOG.md for 1.3.0 * check examples with 1.3.0-rc06 * Update the versions: compose-multiplatform - 1.3.0, kotlin - 1.8.0 * Update ComposeCompilerCompatibility (1.4.0) * Update web/yarn.lock
30 lines
813 B
Bash
30 lines
813 B
Bash
#!/bin/bash
|
|
|
|
# Script to build most of the examples, to verify if they can compile.
|
|
# Don't add examples, which don't depend on maven.pkg.jetbrains.space, because they won't be able to compile.
|
|
|
|
set -euo pipefail
|
|
|
|
if [ "$#" -ne 2 ]; then
|
|
echo "Specify Compose and Kotlin version. For example: ./validateExamplesAndroid.sh 1.1.1 1.6.10"
|
|
exit 1
|
|
fi
|
|
COMPOSE_VERSION=$1
|
|
KOTLIN_VERSION=$2
|
|
|
|
|
|
runGradle() {
|
|
pushd $1
|
|
./gradlew $2 -Pcompose.version=$COMPOSE_VERSION -Pkotlin.version=$KOTLIN_VERSION --rerun-tasks
|
|
popd
|
|
}
|
|
|
|
runGradle chat-mpp installDebug
|
|
runGradle codeviewer installDebug
|
|
runGradle falling-balls-mpp installDebug
|
|
runGradle imageviewer installDebug
|
|
runGradle minesweeper installDebug
|
|
runGradle todoapp-lite installDebug
|
|
runGradle visual-effects installDebug
|
|
runGradle widgets-gallery installDebug
|