Browse Source

Script for validating examples on CI

pull/1567/head
Igor Demin 3 years ago
parent
commit
a05d9b2ee1
  1. 25
      examples/validateExamples.sh

25
examples/validateExamples.sh

@ -0,0 +1,25 @@
#!/bin/bash
# Script to build all examples, to verify if they can compile
set -euo pipefail
runGradle() {
pushd $1
./gradlew $2
popd
}
runGradle codeviewer package
runGradle falling-balls package
runGradle falling-balls-web build
runGradle imageviewer package
runGradle intellij-plugin build
runGradle issues package
runGradle notepad package
runGradle todoapp-lite package
runGradle visual-effects package
runGradle web-compose-bird build
runGradle web-landing build
runGradle web-with-react build
runGradle widgets-gallery package
Loading…
Cancel
Save