From eef3d4006aa651e2f3c7684f2c54852b55f8a703 Mon Sep 17 00:00:00 2001 From: Hannam Rhee Date: Mon, 5 Jun 2023 11:35:57 +0900 Subject: [PATCH] initial commit --- .github/workflows/actions_build.yml | 1 + settings.gradle | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/.github/workflows/actions_build.yml b/.github/workflows/actions_build.yml index 5df8b5633a0..bcf7c41ffae 100644 --- a/.github/workflows/actions_build.yml +++ b/.github/workflows/actions_build.yml @@ -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: diff --git a/settings.gradle b/settings.gradle index f56e10a7684..dfbd6e2acbf 100644 --- a/settings.gradle +++ b/settings.gradle @@ -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 { @@ -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'