Skip to content
This repository was archived by the owner on Jul 18, 2023. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 33bfa1e

Browse files
committedAug 30, 2022
change: move tests into default test source set
update machinelib add more manifest attributes
1 parent 17cb514 commit 33bfa1e

File tree

12 files changed

+51
-29
lines changed

12 files changed

+51
-29
lines changed
 

‎.github/workflows/build.yml

+13-1
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,20 @@ jobs:
2222
java-version: 17
2323
distribution: temurin
2424

25+
- name: License headers
26+
id: license_headers
27+
uses: gradle/gradle-build-action@v2
28+
with:
29+
arguments: checkLicenses
30+
2531
- name: Build
2632
id: build
2733
uses: gradle/gradle-build-action@v2
2834
with:
29-
arguments: checkLicenses build runGametest
35+
arguments: build
36+
37+
- name: Gametest
38+
id: gametest
39+
uses: gradle/gradle-build-action@v2
40+
with:
41+
arguments: runGametest

‎.github/workflows/codeql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Build
3737
uses: gradle/gradle-build-action@v2
3838
with:
39-
arguments: checkLicenses build
39+
arguments: build
4040

4141
- name: Perform CodeQL Analysis
4242
uses: github/codeql-action/analyze@v2

‎.github/workflows/pr_check.yml

+16-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Pull Request Check
33
on:
44
pull_request:
55
types: [ synchronize, opened ]
6+
branches:
7+
- main
68

79
jobs:
810
Build:
@@ -21,7 +23,20 @@ jobs:
2123
java-version: 17
2224
distribution: temurin
2325

26+
- name: License headers
27+
id: license_headers
28+
uses: gradle/gradle-build-action@v2
29+
with:
30+
arguments: checkLicenses
31+
2432
- name: Build
33+
id: build
34+
uses: gradle/gradle-build-action@v2
35+
with:
36+
arguments: build
37+
38+
- name: Gametest
39+
id: gametest
2540
uses: gradle/gradle-build-action@v2
2641
with:
27-
arguments: checkLicenses build runGametest
42+
arguments: runGametest

‎build.gradle.kts

+19-24
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,21 @@
2020
* SOFTWARE.
2121
*/
2222

23+
import java.time.LocalDateTime
2324
import java.time.format.DateTimeFormatter
2425

2526
plugins {
2627
java
2728
`maven-publish`
28-
id("fabric-loom") version "0.12-SNAPSHOT"
29-
id("org.cadixdev.licenser") version "0.6.1"
29+
id("fabric-loom") version("1.0-SNAPSHOT")
30+
id("org.cadixdev.licenser") version("0.6.1")
3031
id("io.github.juuxel.loom-quiltflower") version("1.7.3")
3132
}
3233

34+
val buildNumber = System.getenv("BUILD_NUMBER") ?: ""
35+
val commitHash = (System.getenv("GITHUB_SHA") ?: grgit.head().id)!!
36+
val prerelease = (System.getenv("PRE_RELEASE") ?: "false") == "true"
37+
3338
val modId = project.property("mod.id").toString()
3439
val modVersion = project.property("mod.version").toString()
3540
val modName = project.property("mod.name").toString()
@@ -50,16 +55,10 @@ java {
5055
targetCompatibility = JavaVersion.VERSION_17
5156
sourceCompatibility = JavaVersion.VERSION_17
5257

58+
withSourcesJar()
5359
withJavadocJar()
5460
}
5561

56-
sourceSets {
57-
create("gametest") {
58-
compileClasspath += main.get().compileClasspath + main.get().output;
59-
runtimeClasspath += main.get().runtimeClasspath + main.get().output;
60-
}
61-
}
62-
6362
loom {
6463
accessWidenerPath.set(project.file("src/main/resources/${modId}.accesswidener"))
6564
mixin {
@@ -71,21 +70,21 @@ loom {
7170
sourceSet(sourceSets.main.get())
7271
}
7372
create("gc-api-test") {
74-
sourceSet(sourceSets.getByName("gametest"))
73+
sourceSet(sourceSets.test.get())
7574
}
7675
}
7776

7877
runs {
7978
register("gametest") {
8079
server()
8180
name("Game Test")
82-
source(sourceSets.getByName("gametest"))
81+
source(sourceSets.test.get())
8382
vmArgs("-Dfabric-api.gametest", "-Dfabric-api.gametest.report-file=${project.buildDir}/junit.xml", "-ea")
8483
}
8584
register("gametestClient") {
8685
server()
8786
name("Game Test Client")
88-
source(sourceSets.getByName("gametest"))
87+
source(sourceSets.test.get())
8988
vmArgs("-Dfabric-api.gametest", "-Dfabric-api.gametest.report-file=${project.buildDir}/junit.xml", "-ea")
9089
}
9190
}
@@ -138,12 +137,14 @@ tasks.jar {
138137
from("LICENSE")
139138
manifest {
140139
attributes(
141-
"Implementation-Title" to modName,
142-
"Implementation-Version" to "${project.version}",
143-
"Implementation-Vendor" to "Team Galacticraft",
144-
"Implementation-Timestamp" to DateTimeFormatter.ISO_DATE_TIME,
145-
"Maven-Artifact" to "${project.group}:${modName}:${project.version}",
146-
"ModSide" to "BOTH"
140+
"Specification-Title" to modName,
141+
"Specification-Vendor" to "Team Galacticraft",
142+
"Specification-Version" to modVersion,
143+
"Implementation-Title" to project.name,
144+
"Implementation-Version" to "${project.version}",
145+
"Implementation-Vendor" to "Team Galacticraft",
146+
"Implementation-Timestamp" to LocalDateTime.now().format(DateTimeFormatter.ISO_DATE_TIME),
147+
"Built-On-Java" to "${System.getProperty("java.vm.version")} (${System.getProperty("java.vm.vendor")})"
147148
)
148149
}
149150
}
@@ -185,9 +186,3 @@ license {
185186
set("company", "Team Galacticraft")
186187
}
187188
}
188-
189-
tasks.named<ProcessResources>("processGametestResources") {
190-
duplicatesStrategy = DuplicatesStrategy.WARN
191-
}
192-
193-
tasks.getByName("gametestClasses").dependsOn("classes")

‎gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx3G
33
# Mod Information
44
mod.id=galacticraft-api
55
mod.name=GalacticraftAPI
6-
mod.version=0.4.0-prealpha.24
6+
mod.version=0.4.0-prealpha.25
77
mod.group=dev.galacticraft
88

99
# Minecraft and Fabric Loader
@@ -12,5 +12,5 @@ loader.version=0.14.9
1212

1313
# Mod Dependencies
1414
fabric.version=0.60.0+1.19.2
15-
machinelib.version=0.1.0+1.19.2
15+
machinelib.version=0.1.0+eaeb4e6f
1616
dyndims.version=0.3.0
File renamed without changes.

0 commit comments

Comments
 (0)