Skip to content

chore: Added Unity 6.1 to CI #2130

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 8 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
strategy:
fail-fast: false
matrix:
unity-version: ["2019", "2022", "6000"]
unity-version: ["2019", "2022", "6000", "6100"]
uses: ./.github/workflows/smoke-test-create.yml
with:
unity-version: ${{ matrix.unity-version }}
Expand All @@ -97,7 +97,7 @@ jobs:
strategy:
fail-fast: false
matrix:
unity-version: ["2019", "2022", "6000"]
unity-version: ["2019", "2022", "6000", "6100"]
platform: ["WebGL", "Linux"]
include:
- platform: WebGL
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
strategy:
fail-fast: false
matrix:
unity-version: ["2019", "2022", "6000"]
unity-version: ["2019", "2022", "6000", "6100"]
uses: ./.github/workflows/smoke-test-build-android.yml
with:
unity-version: ${{ matrix.unity-version }}
Expand All @@ -228,7 +228,7 @@ jobs:
matrix:
api-level: [30, 31, 34] # last updated January 2025
init-type: ["runtime", "buildtime"]
unity-version: ["2019", "2022", "6000"]
unity-version: ["2019", "2022", "6000", "6100"]

smoke-test-build-ios:
name: Build iOS ${{ matrix.unity-version }} Smoke Test
Expand All @@ -238,7 +238,7 @@ jobs:
strategy:
fail-fast: false
matrix:
unity-version: ["2019", "2022", "6000"]
unity-version: ["2019", "2022", "6000", "6100"]
uses: ./.github/workflows/smoke-test-build-ios.yml
with:
unity-version: ${{ matrix.unity-version }}
Expand All @@ -251,7 +251,7 @@ jobs:
strategy:
fail-fast: false
matrix:
unity-version: ["2019", "2022", "6000"]
unity-version: ["2019", "2022", "6000", "6100"]
init-type: ["runtime", "buildtime"]
uses: ./.github/workflows/smoke-test-compile-ios.yml
with:
Expand All @@ -270,7 +270,7 @@ jobs:
strategy:
fail-fast: false
matrix:
unity-version: ["2019", "2022", "6000"]
unity-version: ["2019", "2022", "6000", "6100"]
# Check https://support.apple.com/en-us/HT201222 for the latest minor version for a given major one.
# https://developer.apple.com/support/app-store/ shows that of all iOS devices
# - `iOS 17`: 86 %
Expand All @@ -291,7 +291,7 @@ jobs:
strategy:
fail-fast: false
matrix:
unity-version: ["2019", "2022", "6000"]
unity-version: ["2019", "2022", "6000", "6100"]
platform: ["WebGL", "Linux"]
steps:
- name: Checkout
Expand Down Expand Up @@ -329,7 +329,7 @@ jobs:
strategy:
fail-fast: false
matrix:
unity-version: ["2019", "2022", "6000"]
unity-version: ["2019", "2022", "6000", "6100"]
# os: ["windows", "macos"]
os: ["windows"]
include:
Expand Down
3 changes: 3 additions & 0 deletions scripts/ci-env.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ switch ($name) {
"unity6000" {
return "6000.0.48f1"
}
"unity6100" {
return "6000.1.2f1"
}
Default {
throw "Unkown variable '$name'"
}
Expand Down
Loading