Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jrhee17 committed Jun 7, 2023
1 parent 4c9dccf commit eef3d40
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/actions_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ concurrency:
env:
LC_ALL: "en_US.UTF-8"
BUILD_JDK_VERSION: "19"
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}

jobs:
build:
Expand Down
13 changes: 13 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ plugins {
// automatically download one based on the foojay Disco API.
// https://docs.gradle.org/8.1.1/userguide/toolchains.html#sec:provisioning
id("org.gradle.toolchains.foojay-resolver") version "0.5.0"
id "com.gradle.enterprise" version "3.13.3"

}
toolchainManagement {
jvm {
Expand All @@ -16,6 +18,17 @@ toolchainManagement {
}
}
}
gradleEnterprise {
server = "https://ge.armeria.dev"
buildScan {
// publish build scans if the access key is provided
publishAlwaysIf(System.getenv("GRADLE_ENTERPRISE_ACCESS_KEY") != null)
uploadInBackground = false
capture {
taskInputFiles = true
}
}
}

rootProject.name = 'armeria'

Expand Down

0 comments on commit eef3d40

Please sign in to comment.