diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77704e6d6..a4a4c4293 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }} @@ -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 @@ -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 }} @@ -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 @@ -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 }} @@ -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: @@ -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 % @@ -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 @@ -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: diff --git a/scripts/ci-env.ps1 b/scripts/ci-env.ps1 index 6a5550144..f37488e54 100644 --- a/scripts/ci-env.ps1 +++ b/scripts/ci-env.ps1 @@ -22,6 +22,9 @@ switch ($name) { "unity6000" { return "6000.0.48f1" } + "unity6100" { + return "6000.1.8f1" + } Default { throw "Unkown variable '$name'" }