File tree Expand file tree Collapse file tree 2 files changed +48
-0
lines changed
Expand file tree Collapse file tree 2 files changed +48
-0
lines changed Original file line number Diff line number Diff line change 5757 with :
5858 name : matrix-blocks-java-21
5959 path : build/libs/*.jar
60+ if-no-files-found : error
61+
62+ build-java-24 :
63+ name : Build on Java 24
64+ runs-on : ubuntu-latest
65+ steps :
66+ - name : Checkout repository
67+ uses : actions/checkout@v4
68+ with :
69+ fetch-depth : 0
70+ - name : Validate Gradle wrapper
71+ uses : gradle/actions/wrapper-validation@v4
72+ - name : Setup JDK
73+ uses : actions/setup-java@v4
74+ with :
75+ java-version : 24
76+ distribution : microsoft
77+ - name : Make Gradle wrapper executable
78+ run : chmod +x ./gradlew
79+ - name : Build
80+ run : ./gradlew build
81+ - name : Capture build artifacts
82+ uses : actions/upload-artifact@v4
83+ with :
84+ name : matrix-blocks-java-24
85+ path : build/libs/*.jar
6086 if-no-files-found : error
Original file line number Diff line number Diff line change 4545 run : ./gradlew compileJava
4646 - name : Compile client-side Java
4747 run : ./gradlew compileClientJava
48+
49+ compile-java-24 :
50+ name : Compile on Java 24
51+ runs-on : ubuntu-latest
52+ steps :
53+ - name : Checkout repository
54+ uses : actions/checkout@v4
55+ with :
56+ fetch-depth : 0
57+ - name : Validate Gradle wrapper
58+ uses : gradle/actions/wrapper-validation@v4
59+ - name : Setup JDK
60+ uses : actions/setup-java@v4
61+ with :
62+ java-version : 24
63+ distribution : microsoft
64+ - name : Make Gradle wrapper executable
65+ run : chmod +x ./gradlew
66+ - name : Compile Java
67+ run : ./gradlew compileJava
68+ - name : Compile client-side Java
69+ run : ./gradlew compileClientJava
You can’t perform that action at this time.
0 commit comments