-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update nflow-examples version numbers after release and check that th…
…eir build works
- Loading branch information
Showing
2 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#!/bin/bash | ||
|
||
cd spring-boot/bare-minimum/maven | ||
|
||
if mvn install; then | ||
echo "Spring Boot bare minimum Maven builds ok" | ||
else | ||
echo "Spring Boot bare minimum Maven build failed" | ||
exit 1 | ||
fi | ||
|
||
cd ../gradle | ||
|
||
if ./gradlew build; then | ||
echo "Spring Boot bare minimum Gradle builds ok" | ||
else | ||
echo "Spring Boot bare minimum Gradle build failed" | ||
exit 1 | ||
fi | ||
|
||
cd ../../full-stack/maven | ||
|
||
if mvn install; then | ||
echo "Spring Boot full stack Maven builds ok" | ||
else | ||
echo "Spring Boot full stack Maven build failed" | ||
exit 1 | ||
fi | ||
|
||
cd ../gradle | ||
|
||
if ./gradlew build; then | ||
echo "Spring Boot full stack Gradle builds ok" | ||
else | ||
echo "Spring Boot full stack Gradle build failed" | ||
exit 1 | ||
fi | ||
|
||
cd ../../full-stack-kotlin | ||
|
||
if ./gradlew build; then | ||
echo "Spring Boot Kotlin Gradle builds ok" | ||
else | ||
echo "Spring Boot Kotlin Gradle build failed" | ||
exit 1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters