master
Yoshifumi Kawai 2019-05-20 01:34:37 +09:00
parent 826864d716
commit 5b08131528
1 changed files with 6 additions and 1 deletions

View File

@ -6,8 +6,10 @@ executors:
- image: gableroux/unity3d:2018.3.12f1 - image: gableroux/unity3d:2018.3.12f1
commands: commands:
unity_activate: unity_activate:
parameters:
unity_version: {type: string}
unity_license: {type: string}
steps: steps:
# requires: parameters.unity_version and parameters.unity_license.
# get activation file, if fail to activate unity, use this key and activate from https://license.unity3d.com/manual # get activation file, if fail to activate unity, use this key and activate from https://license.unity3d.com/manual
- run: apt update && apt install libunwind8 -y - run: apt update && apt install libunwind8 -y
- run: /opt/Unity/Editor/Unity -quit -batchmode -nographics -logFile -createManualActivationFile || exit 0 - run: /opt/Unity/Editor/Unity -quit -batchmode -nographics -logFile -createManualActivationFile || exit 0
@ -17,6 +19,9 @@ commands:
- run: /opt/Unity/Editor/Unity -quit -batchmode -nographics -silent-crashes -logFile -manualLicenseFile .circleci/Unity.ulf || exit 0 - run: /opt/Unity/Editor/Unity -quit -batchmode -nographics -silent-crashes -logFile -manualLicenseFile .circleci/Unity.ulf || exit 0
jobs: jobs:
build-and-test: build-and-test:
parameters:
unity_version: {type: string}
unity_license: {type: string}
executor: unity_<< parameters.unity_version >> executor: unity_<< parameters.unity_version >>
steps: steps:
- checkout - checkout