-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed wrong import on StringUtils, tested building distributions
- Loading branch information
Peter Vanusanik
committed
Jan 14, 2023
1 parent
7ef69a4
commit 4681185
Showing
9 changed files
with
58 additions
and
11 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
signcerts/ | ||
distributions/ | ||
.gradle | ||
build/ | ||
!gradle/wrapper/gradle-wrapper.jar | ||
|
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
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
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,25 @@ | ||
#!/bin/bash | ||
|
||
rm distributions/* | ||
|
||
echo -n Private key password: | ||
read -s PASSWORD | ||
export PRIVATE_KEY_PASSWORD=$PASSWORD | ||
|
||
expandedName() ( | ||
# shellcheck disable=SC2125 | ||
UNEXPANDED=build/distributions/slt-*-signed.zip | ||
set +f | ||
echo $UNEXPANDED | ||
) | ||
|
||
DISTRIBUTIONS="CL GO IC IU PY PC RD" | ||
for TARGET_IDE in ${DISTRIBUTIONS}; do | ||
echo Trying to build $TARGET_IDE | ||
export TARGET_IDE=$TARGET_IDE | ||
./gradlew clean signPlugin verifyPlugin buildPlugin || ./gradlew signPlugin verifyPlugin buildPlugin || exit | ||
FILE=$(expandedName) | ||
NEW_FILE=$(basename ${FILE%.*}-$TARGET_IDE.zip) | ||
cp "$FILE" distributions/$NEW_FILE | ||
echo Built $NEW_FILE | ||
done |
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
org.gradle.jvmargs=-XX:MaxHeapSize=512m -Xms512m -Xmx1g | ||
|
||
# IU, IC, CL, PY, GO | ||
targetIDE=IU | ||
# CL GO IC IU PS PY PC RD | ||
targetIDE=IC |
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
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
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