Skip to content

Commit

Permalink
updated validation workflows (#49)
Browse files Browse the repository at this point in the history
- removed 2020.x and 2021.x from build validation
  • Loading branch information
StephenHodgson authored Jan 27, 2025
1 parent f8627a9 commit 233767c
Showing 1 changed file with 30 additions and 6 deletions.
36 changes: 30 additions & 6 deletions .github/workflows/unity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,51 @@ jobs:
env:
UNITY_PROJECT_PATH: ''
runs-on: ${{ matrix.os }}
name: build (${{ matrix.os }}, ${{ matrix.unity-version }}, ${{ matrix.build-target }})
name: ${{ matrix.os }} ${{ matrix.unity-version }} ${{ matrix.build-target }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-15]
unity-version: [2020.x, 2021.x, 2022.x, 6000.x]
build-target: [Android]
include: # for each os specify the build targets
- os: ubuntu-latest
unity-version: 2022.x
build-target: Android
- os: ubuntu-latest
unity-version: 6000.x
build-target: Android
- os: ubuntu-latest
unity-version: 2022.x
build-target: StandaloneLinux64
- os: ubuntu-latest
unity-version: 6000.x
build-target: StandaloneLinux64
- os: ubuntu-latest
unity-version: 2022.x
build-target: WebGL
- os: ubuntu-latest
unity-version: 6000.x
build-target: WebGL
- os: windows-latest
unity-version: 2022.x
build-target: StandaloneWindows64
- os: windows-latest
unity-version: 6000.x
build-target: StandaloneWindows64
- os: windows-latest
unity-version: 2022.x
build-target: WSAPlayer
- os: windows-latest
unity-version: 6000.x
build-target: WSAPlayer
- os: macos-15
- os: macos-latest
unity-version: 2022.x
build-target: iOS
- os: macos-latest
unity-version: 6000.x
build-target: iOS
- os: macos-15
- os: macos-latest
unity-version: 2022.x
build-target: StandaloneOSX
- os: macos-latest
unity-version: 6000.x
build-target: StandaloneOSX
steps:
Expand Down

0 comments on commit 233767c

Please sign in to comment.