From c8c57a986005863765150f40d7367448f6393257 Mon Sep 17 00:00:00 2001 From: Ejnar Arechavala Date: Wed, 7 Aug 2024 15:05:24 -0700 Subject: [PATCH] update docs around licensing configs --- docs/03-github/02-activation.mdx | 14 ++++++++++++++ docs/03-github/03-test-runner.mdx | 27 +++++++++++++++++++++++++++ docs/03-github/04-builder.mdx | 21 +++++++++++++++++++++ 3 files changed, 62 insertions(+) diff --git a/docs/03-github/02-activation.mdx b/docs/03-github/02-activation.mdx index 22319313..86e69072 100644 --- a/docs/03-github/02-activation.mdx +++ b/docs/03-github/02-activation.mdx @@ -85,6 +85,20 @@ Example of use: unityLicensingServer: [url to your license server] ``` +Additionally, if your licensing server has multiple product licenses configured, you can specify the +product identifier(s) that will be requested. More information about multiple products can be found +[here](https://docs.unity.com/licensing/en-us/manual/ServerSetup-test#Support_for_multiple_product_licenses). + +Example of use: + +```yaml +- uses: game-ci/unity-builder@v4 + with: + targetPlatform: WebGL + unityLicensingServer: [url to your license server] + unityLicensingProductIds: [comma separated product ids] +``` + ## Optional steps - Verify your license using [Activate](https://github.com/marketplace/actions/unity-activate). diff --git a/docs/03-github/03-test-runner.mdx b/docs/03-github/03-test-runner.mdx index 5b9733b9..beac25db 100644 --- a/docs/03-github/03-test-runner.mdx +++ b/docs/03-github/03-test-runner.mdx @@ -74,6 +74,20 @@ Example of use: unityLicensingServer: [url to your license server] ``` +Additionally, if your licensing server has multiple product licenses configured, you can specify the +product identifier(s) that will be requested. More information about multiple products can be found +[here](https://docs.unity.com/licensing/en-us/manual/ServerSetup-test#Support_for_multiple_product_licenses). + +Example of use: + +```yaml +- uses: game-ci/unity-test-runner@v4 + with: + projectPath: path/to/your/project + unityLicensingServer: [url to your license server] + unityLicensingProductIds: [comma separated product ids] +``` + That is all you need to test your project. ## Testing Projects with a private scoped registry @@ -559,6 +573,19 @@ artifacts. _**required:** `false`_ _**default:** `""`_ +#### unityLicensingServer + +Sets the url to a unity license server for acquiring floating licenses. + +_**required:** `false`_ _**default:** `""`_ + +#### unityLicensingProductIds + +Comma separated list of license product identifiers to request licenses for from the unity license +server. + +_**required:** `false`_ _**default:** `""`_ + ## Complete example A complete workflow that tests all modes separately could look like this: diff --git a/docs/03-github/04-builder.mdx b/docs/03-github/04-builder.mdx index 0a739c67..50d21c3c 100644 --- a/docs/03-github/04-builder.mdx +++ b/docs/03-github/04-builder.mdx @@ -83,6 +83,20 @@ Example of use: unityLicensingServer: [url to your license server] ``` +Additionally, if your licensing server has multiple product licenses configured, you can specify the +product identifier(s) that will be requested. More information about multiple products can be found +[here](https://docs.unity.com/licensing/en-us/manual/ServerSetup-test#Support_for_multiple_product_licenses). + +Example of use: + +```yaml +- uses: game-ci/unity-builder@v4 + with: + targetPlatform: WebGL + unityLicensingServer: [url to your license server] + unityLicensingProductIds: [comma separated product ids] +``` + That is all you need to build your project. By default, the enabled scenes from the project's settings will be built. @@ -437,6 +451,13 @@ Sets the url to a unity license server for acquiring floating licenses. _**required:** `false`_ _**default:** `""`_ +#### unityLicensingProductIds + +Comma separated list of license product identifiers to request licenses for from the unity license +server. + +_**required:** `false`_ _**default:** `""`_ + #### cacheUnityInstallationOnMac Enables caching the Unity Hub and Editor installation for MacOS runners. This can significantly