We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f763daa commit 95482d6Copy full SHA for 95482d6
1 file changed
scripts/update-libs.sh
@@ -99,4 +99,10 @@ CODEONTHEGO_SHA="$(git -C "$CODEONTHEGO_PATH" rev-parse --short HEAD 2>/dev/null
99
echo ""
100
echo "Updated libs/ from CodeOnTheGo@$CODEONTHEGO_SHA"
101
printf " %-20s %s\n" "plugin-api.jar" "$(du -h "$LIBS_DIR/plugin-api.jar" | cut -f1)"
102
-printf " %-20s %s\n" "gradle-plugin.jar" "$(du -h "$LIBS_DIR/gradle-plugin.jar" | cut -f1)"
+printf " %-20s %s\n" "gradle-plugin.jar" "$(du -h "$LIBS_DIR/gradle-plugin.jar" | cut -f1)"
103
+
104
+SMOKE_TEST_PLUGIN="keystore-generator"
105
+echo ""
106
+echo "Smoke test: building $SMOKE_TEST_PLUGIN against the refreshed libs..."
107
+(cd "$REPO_ROOT/$SMOKE_TEST_PLUGIN" && ./gradlew --console=plain assemblePlugin)
108
+echo "Smoke test passed."
0 commit comments