Skip to content

Commit 16900a0

Browse files
committed
upgrade IntelliJ SDK to Java 21, enhance build scripts, and update actions/checkout version
1 parent 8149579 commit 16900a0

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
TOKEN: "${{secrets.ALLREP_TOKEN}}"
1212
CI: "true"
1313
steps:
14-
- uses: actions/checkout@v3.5.3
14+
- uses: actions/checkout@v6
1515

1616
################################################################################
1717
- name: "build"

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

all-projects.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -420,6 +420,7 @@ cleanAll() {
420420
for repo in "${repoSeq[@]}"; do
421421
( cd ../$repo
422422
printf ">>>>=========================== CLEAN : %s ===========================\n" "$(basename "$(pwd)")"
423+
printf " _-_-_ (cd %s; ./gradlew clean)\n" "$(pwd)"
423424
./gradlew clean || :
424425
find . -type d -name classes_gen -exec rm -rf {} +
425426
find . -type d -name source_gen -exec rm -rf {} +
@@ -455,13 +456,11 @@ publishAll() {
455456
( cd ../$repo
456457
printf ">>>>=========================== PUBLISH: %s ===========================\n" "$(basename "$(pwd)")"
457458
if [[ -f mps_build.xml ]]; then
459+
printf " _-_-_ (cd %s; ./gradlew download-MPS)\n" "$(pwd)"
458460
./gradlew download-MPS
459461
fi
462+
printf " _-_-_ (cd %s; ./gradlew publish)\n" "$(pwd)"
460463
./gradlew publish
461-
for d in $(find * -name '*.kts' -exec egrep -q "register.*gatherRuntimeJars" {} \; -print | sed 's|/[^/]*$||'); do
462-
printf " =========================== GATHER: %s ==========================\n" "$d:gatherRuntimeJars"
463-
./gradlew ${d/*.kts/}:gatherRuntimeJars
464-
done
465464
printf "<<<<=========================== PUBLISH: %s ===========================\n" "$(basename "$(pwd)")"
466465
)
467466
done

0 commit comments

Comments
 (0)