Add license and test step

This commit is contained in:
Webber
2019-11-03 22:30:25 +01:00
parent 8b47454028
commit 2bed37b87a
5 changed files with 84 additions and 39 deletions

14
activate/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM gableroux/unity3d:2019.2.11f1-webgl
LABEL "com.github.actions.name"="Activate Unity"
LABEL "com.github.actions.description"="Activate license for Unity editor"
LABEL "com.github.actions.icon"="box"
LABEL "com.github.actions.color"="gray-dark"
LABEL "repository"="http://github.com/webbertakken/unity-actions"
LABEL "homepage"="http://github.com/webbertakken/unity-actions"
LABEL "maintainer"="Webber Takken <webber@takken.io>"
ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]

40
activate/README.md Normal file
View File

@@ -0,0 +1,40 @@
# Activate Unity
Activates personal of professional license of unity.
## Usage
#### Personal license example
1. Goto `Repository` > `Settings` > `Secrets`
2. Create a new secret called `UNITY_LICENSE`
3. Find the license file:
- Windows: `C:/ProgramData/Unity/Unity_lic.ulf`
- MacOS: `/Library/Application Support/Unity/Unity_lic.ulf`
4. Copy the contents into the value field of the secret `UNITY_LICENSE`
5. Use the action as follows:
```yaml
- name: Activate Unity
uses: webbertakken/unity-actions/activate@master
env:
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
```
#### Professional license example
1. Goto `Repository` > `Settings` > `Secrets`
2. Set the following secrets:
- `UNITY_EMAIL`: &lt;your_unity_login_email_address&gt;
- `UNITY_PASSWORD`: &lt;your_unity_login_password&gt;
- `UNITY_SERIAL`: &lt;your_unity_serial&gt;
3. Use the action as follows:
```yaml
- name: Activate Unity
uses: webbertakken/unity-actions/activate@master
env:
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}
```

38
activate/entrypoint.sh Normal file
View File

@@ -0,0 +1,38 @@
#!/usr/bin/env bash
set -e
if [[ ! -z "$UNITY_LICENSE" ]]; then
#
# PERSONAL LICENSE MODE
#
# This will activate Unity, using a license file
#
# Note that this is the ONLY WAY for PERSONAL LICENSES in 2019.
# * See for more details: https://gitlab.com/gableroux/unity3d-gitlab-ci-example/issues/5#note_72815478
#
# The license file can be found here:
# * Windows: C:/ProgramData/Unity/Unity_lic.ulf
# * MacOS: /Library/Application Support/Unity/Unity_lic.ulf
#
echo "$UNITY_LICENSE" > /root/.local/share/unity3d/Unity/Unity_lic.ulf
else
#
# PROFESSIONAL (SERIAL) LICENSE MODE
#
# This will activate unity, using the activating process.
#
# Note: This is the preferred way for PROFESSIONAL LICENSES.
#
xvfb-run --auto-servernum --server-args='-screen 0 640x480x24' \
/opt/Unity/Editor/Unity \
-logFile /dev/stdout \
-batchmode \
-username "$UNITY_EMAIL" \
-password "$UNITY_PASSWORD" \
-serial "$UNITY_SERIAL" \
-nographics \
-verbose \
-quit \
-projectPath "$(pwd)"
fi