-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
115 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: test ubuntu | ||
on: | ||
push: | ||
branches: | ||
- "**" | ||
paths-ignore: | ||
- "**.md" | ||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- ubuntu-18.04 | ||
- ubuntu-20.04 | ||
unity-version: | ||
- 2018.4.1f1 | ||
- 2019.4.1f1 | ||
- 2020.1.0f1 | ||
- 2020.2.0b10 | ||
unity-module: | ||
- android | ||
- ios | ||
- webgl | ||
- linux-il2cpp | ||
- mac-mono | ||
- windows-mono | ||
exclude: | ||
- unity-version: 2018.4.1f1 | ||
unity-module: linux-il2cpp | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Check free space | ||
run: df -h | ||
- name: Setup unity | ||
id: setup-unity | ||
uses: ./ | ||
timeout-minutes: 60 | ||
with: | ||
unity-version: ${{ matrix.unity-version }} | ||
unity-modules: ${{ matrix.unity-module }} | ||
- name: Check free space | ||
run: df -h | ||
- name: Print output | ||
run: | | ||
echo unity-version: ${{ steps.setup-unity.outputs.unity-version }} | ||
echo unity-path: ${{ steps.setup-unity.outputs.unity-path }} | ||
echo env UNITY_PATH: ${{ env.UNITY_PATH }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: test windows | ||
on: | ||
push: | ||
branches: | ||
- "**" | ||
paths-ignore: | ||
- "**.md" | ||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- windows-2019 | ||
unity-version: | ||
- 2018.4.1f1 | ||
- 2019.4.1f1 | ||
- 2020.1.0f1 | ||
- 2020.2.0b10 | ||
unity-module: | ||
- android | ||
- ios | ||
- appletv | ||
- webgl | ||
- windows-il2cpp | ||
- linux-mono | ||
- mac-mono | ||
exclude: | ||
- unity-version: 2018.4.1f1 | ||
unity-module: linux-mono | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Check free space | ||
run: df -h | ||
- name: Setup unity | ||
id: setup-unity | ||
uses: ./ | ||
timeout-minutes: 60 | ||
with: | ||
unity-version: ${{ matrix.unity-version }} | ||
unity-modules: ${{ matrix.unity-module }} | ||
- name: Check free space | ||
run: df -h | ||
- name: Print output | ||
run: | | ||
echo unity-version: ${{ steps.setup-unity.outputs.unity-version }} | ||
echo unity-path: ${{ steps.setup-unity.outputs.unity-path }} | ||
echo env UNITY_PATH: ${{ env.UNITY_PATH }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters