Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,17 @@ jobs:
# Force Mesa's software rasterizer - GitHub-hosted runners have no GPU, and LWJGL/GLFW
# need a working GL context (even offscreen) to boot the Minecraft client for gametests.
LIBGL_ALWAYS_SOFTWARE: "1"
# build.gradle.kts reads github_actor/github_token from the environment (GITHUB_ACTOR/GITHUB_TOKEN)
# for Basic Auth against the MrCrayfish GitHub Packages Maven repo (catalogue/menulogue).
# GITHUB_ACTOR is provided by the runner, but GITHUB_TOKEN is only available via expressions
# unless explicitly exported to the step environment, so Gradle runs need it set here.
# Packages 401s, even for a public package. Note this may still not be sufficient on its
# own: secrets.GITHUB_TOKEN is scoped to this repo, and cross-owner GitHub Packages reads
# commonly need a real PAT (with read:packages) that's been granted access to MrCrayfish's
# packages specifically - if this repo's actor/token combination still 401s, that's the
# next thing to check, likely needing a dedicated PAT secret instead.
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v7

Expand Down
12 changes: 11 additions & 1 deletion Archie-Test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ subprojects {
val githubToken = "github_token".localOrEnv
mavenCentral()
mavenLocal()
google {
content {
includeGroupByRegex("androidx\\..*")
includeGroupByRegex("com\\.android.*")
}
}
maven {
name = "kernelpanic releases"
url = uri("https://maven.kernelpanicsoft.net/releases")
Expand All @@ -81,7 +87,11 @@ subprojects {
maven("https://maven.isxander.dev/releases") {
name = "Xander Maven"
}
maven("https://maven.resourcefulbees.com/repository/maven-public/")
maven("https://maven.resourcefulbees.com/repository/maven-public/") {
content {
includeGroup("earth.terrarium.common_storage_lib")
}
}
maven {
url = uri("https://maven.pkg.github.com/MrCrayfish/Maven")
credentials {
Expand Down
12 changes: 11 additions & 1 deletion Archie/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ subprojects {
val githubToken = "github_token".localOrEnv
mavenCentral()
mavenLocal()
google {
content {
includeGroupByRegex("androidx\\..*")
includeGroupByRegex("com\\.android.*")
}
}
maven {
name = "kernelpanic releases"
url = uri("https://maven.kernelpanicsoft.net/releases")
Expand All @@ -87,7 +93,11 @@ subprojects {
maven("https://maven.isxander.dev/releases") {
name = "Xander Maven"
}
maven("https://maven.resourcefulbees.com/repository/maven-public/")
maven("https://maven.resourcefulbees.com/repository/maven-public/") {
content {
includeGroup("earth.terrarium.common_storage_lib")
}
}
maven {
url = uri("https://maven.pkg.github.com/MrCrayfish/Maven")
credentials {
Expand Down