Skip to content

Commit a7f5417

Browse files
committed
ulf file example
1 parent aba05d6 commit a7f5417

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

example/config.yml

+39
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,22 @@ executors:
88
docker:
99
- image: gableroux/unity3d:2019.1.0f2
1010

11+
jobs:
12+
setup:
13+
machine: true
14+
steps:
15+
- restore_cache:
16+
key: unity-license-{{ checksum "ProjectSettings/ProjectVersion.txt" }}
17+
teardown:
18+
machine: true
19+
steps:
20+
- attach_workspace:
21+
at: /activateTools
22+
- save_cache:
23+
key: unity-license-{{ checksum "ProjectSettings/ProjectVersion.txt" }}
24+
paths:
25+
- /activateTools/Unity.ulf
26+
1127
workflows:
1228
version: 2
1329
unity-ci-test:
@@ -42,3 +58,26 @@ workflows:
4258
name: Exeucte Method
4359
exec: unity_executor
4460
method: Execute.Method
61+
unity-ci-activate-ulf-file:
62+
jobs:
63+
- setup
64+
- unity-ci/outputAlf:
65+
exec: unity_executor
66+
requires:
67+
- setup
68+
- unity-ci/cloneActivateTool:
69+
requires:
70+
- unity-ci/outputAlf
71+
- unity-ci/outputUlf:
72+
requires:
73+
- unity-ci/cloneActivateTool
74+
- unity-ci/execute_method:
75+
requires:
76+
- unity-ci/outputUlf
77+
name: Exeucte Method
78+
exec: unity_executor
79+
method: Execute.Method
80+
- teardown:
81+
requires:
82+
- unity-ci-test-playmode
83+
- unity-ci-test-editmode

0 commit comments

Comments
 (0)