Skip to content

Commit ed539f6

Browse files
authored
Create ci-entry-point
1 parent 0225109 commit ed539f6

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

.github/workflows/ci-entry-point

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: CI - Run Tests & Build Sample App
2+
3+
on:
4+
pull_request:
5+
branches: [ main, develop ]
6+
push:
7+
branches: [ main, develop ]
8+
workflow_dispatch:
9+
10+
concurrency:
11+
group: ${{ github.ref }}
12+
cancel-in-progress: true
13+
14+
jobs:
15+
testRunner-macos:
16+
uses: ./.github/workflows/ci-internal.yml
17+
with:
18+
os: macos-latest
19+
unity_version: 2021.3.0
20+
dotnet_version: NET_4_x
21+
compiler: il2cpp
22+
target_platform: standalone
23+
24+
testRunner-linux:
25+
strategy:
26+
fail-fast: false
27+
matrix:
28+
unity_version: [2021.3.0, 2020.3.0]
29+
dotnet_version: [NET_4_x, STANDARD_2_x]
30+
compiler: [mono, il2cpp]
31+
target_platform: [standalone, mobile]
32+
uses: ./.github/workflows/ci-internal.yml
33+
with:
34+
os: ubuntu-latest
35+
unity_version: ${{ matrix.unity_version }}
36+
dotnet_version: ${{ matrix.dotnet_version }}
37+
compiler: ${{ matrix.compiler }}
38+
target_platform: ${{ matrix.target_platform }}

0 commit comments

Comments
 (0)