-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit eb35e8a
Showing
8 changed files
with
497 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,49 @@ | ||
name: Java CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
buildJar: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up PATH | ||
run: echo "${ANDROID_HOME}/build-tools/30.0.1" >> $GITHUB_PATH | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 17 | ||
distribution: temurin | ||
|
||
- name: Build mod jar | ||
run: ./gradlew deploy | ||
|
||
- name: Upload built jar file | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ github.event.repository.name }} | ||
path: build/libs/${{ github.event.repository.name }}.jar | ||
|
||
- name: Create Release | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{github.run_number}} | ||
release_name: ${{github.run_number}} | ||
draft: false | ||
prerelease: false | ||
|
||
- name: Upload Release Asset | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: build/libs/fooKotlinScriptSupport.jar | ||
asset_name: ${{ github.event.repository.name }}.jar | ||
asset_content_type: application/zip |
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,157 @@ | ||
logs/ | ||
/core/assets/mindustry-saves/ | ||
/core/assets/mindustry-maps/ | ||
/core/assets/bundles/output/ | ||
/core/assets/.gifimages/ | ||
/deploy/ | ||
/desktop/packr-out/ | ||
/desktop/packr-export/ | ||
/desktop/mindustry-saves/ | ||
/desktop/mindustry-maps/ | ||
/desktop/gifexport/ | ||
/core/lib/ | ||
/ios/assets/ | ||
/core/assets-raw/sprites/generated/ | ||
/core/assets-raw/sprites_out/ | ||
/annotations/build/ | ||
/annotations/out/ | ||
/net/build/ | ||
/tools/build/ | ||
/tests/build/ | ||
/server/build/ | ||
/test_files/ | ||
/annotations/build/ | ||
/desktop-sdl/build/ | ||
desktop-sdl/build/ | ||
/android/assets/mindustry-maps/ | ||
/android/assets/mindustry-saves/ | ||
/core/assets/gifexport/ | ||
/core/assets/version.properties | ||
/core/assets/locales | ||
/ios/src/io/anuke/mindustry/gen/ | ||
/core/src/io/anuke/mindustry/gen/ | ||
ios/robovm.properties | ||
packr-out/ | ||
config/ | ||
*.gif | ||
|
||
version.properties | ||
|
||
.attach_* | ||
## Java | ||
|
||
*.class | ||
*.war | ||
*.ear | ||
hs_err_pid* | ||
crash-report-* | ||
replay_pid* | ||
|
||
## Robovm | ||
/ios/robovm-build/ | ||
|
||
## GWT | ||
/html/war/ | ||
/html/gwt-unitCache/ | ||
.apt_generated/ | ||
.gwt/ | ||
gwt-unitCache/ | ||
www-test/ | ||
.gwt-tmp/ | ||
|
||
## Android Studio and Intellij and Android in general | ||
/android/libs/armeabi/ | ||
/android/libs/armeabi-v7a/ | ||
/android/libs/arm64-v8a/ | ||
/android/libs/x86/ | ||
/android/libs/x86_64/ | ||
/android/gen/ | ||
.idea/ | ||
*.ipr | ||
*.iws | ||
*.iml | ||
/android/out/ | ||
com_crashlytics_export_strings.xml | ||
|
||
## Eclipse | ||
|
||
.classpath | ||
.project | ||
.metadata/ | ||
/android/bin/ | ||
/core/bin/ | ||
/desktop/bin/ | ||
/html/bin/ | ||
/ios/bin/ | ||
/ios-moe/bin/ | ||
*.tmp | ||
*.bak | ||
*.swp | ||
*~.nib | ||
.settings/ | ||
.loadpath | ||
.externalToolBuilders/ | ||
*.launch | ||
|
||
## NetBeans | ||
|
||
/nbproject/private/ | ||
/android/nbproject/private/ | ||
/core/nbproject/private/ | ||
/desktop/nbproject/private/ | ||
/html/nbproject/private/ | ||
/ios/nbproject/private/ | ||
/ios-moe/nbproject/private/ | ||
|
||
/build/ | ||
/android/build/ | ||
/core/build/ | ||
/desktop/build/ | ||
/html/build/ | ||
/ios/build/ | ||
/ios-moe/build/ | ||
|
||
/nbbuild/ | ||
/android/nbbuild/ | ||
/core/nbbuild/ | ||
/desktop/nbbuild/ | ||
/html/nbbuild/ | ||
/ios/nbbuild/ | ||
/ios-moe/nbbuild/ | ||
|
||
/dist/ | ||
/android/dist/ | ||
/core/dist/ | ||
/desktop/dist/ | ||
/html/dist/ | ||
/ios/dist/ | ||
/ios-moe/dist/ | ||
|
||
/nbdist/ | ||
/android/nbdist/ | ||
/core/nbdist/ | ||
/desktop/nbdist/ | ||
/html/nbdist/ | ||
/ios/nbdist/ | ||
/ios-moe/nbdist/ | ||
|
||
nbactions.xml | ||
nb-configuration.xml | ||
|
||
## Gradle | ||
|
||
/local.properties | ||
.gradle/ | ||
gradle-app.setting | ||
/build/ | ||
/android/build/ | ||
/core/build/ | ||
/desktop/build/ | ||
/html/build/ | ||
/ios/build/ | ||
/ios-moe/build/ | ||
|
||
## OS Specific | ||
.DS_Store | ||
Thumbs.db | ||
android/libs/ |
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,17 @@ | ||
plugins { | ||
id 'java' | ||
} | ||
|
||
repositories{ | ||
mavenCentral() | ||
} | ||
|
||
dependencies{ | ||
implementation "org.jetbrains.kotlin:kotlin-scripting-jsr223:2.0.10" | ||
} | ||
|
||
jar{ | ||
archiveFileName = "fooKotlinScriptSupport.jar" | ||
from configurations.runtimeClasspath.collect{ it.isDirectory() ? it : zipTree(it) } | ||
duplicatesStrategy = DuplicatesStrategy.EXCLUDE | ||
} |
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,13 @@ | ||
org.gradle.jvmargs=--illegal-access=permit \ | ||
--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \ | ||
--add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED \ | ||
--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED \ | ||
--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED \ | ||
--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED \ | ||
--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED \ | ||
--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \ | ||
--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED \ | ||
--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED \ | ||
--add-exports=jdk.compiler/com.sun.tools.javac.jvm=ALL-UNNAMED \ | ||
--add-exports=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED \ | ||
--add-exports=java.base/sun.reflect.annotation=ALL-UNNAMED |
Binary file not shown.
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,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.