im a dumb juice

This commit is contained in:
Lachee 2025-05-07 15:23:50 +10:00
parent 0dd2cafff2
commit 7d249ff53a
2 changed files with 6 additions and 5 deletions

View File

@ -20,10 +20,10 @@ jobs:
strategy: strategy:
matrix: matrix:
platform: platform:
- webgl # - webgl
- android # - android
- mac-mono # - mac-mono
- windows-mono # - windows-mono
- windows-il2cpp - windows-il2cpp
steps: steps:

View File

@ -36,11 +36,12 @@ fi
# Ensure IMAGE_OS is set, default to ubuntu if not # Ensure IMAGE_OS is set, default to ubuntu if not
if [ -z "${GAMECI_OS}" ]; then if [ -z "${GAMECI_OS}" ]; then
GAMECI_OS="ubuntu"
# windows-il2cpp requires windows OS # windows-il2cpp requires windows OS
if [ "${GAMECI_OS}" = "windows-il2cpp" ]; then if [ "${GAMECI_OS}" = "windows-il2cpp" ]; then
GAMECI_OS="windows" GAMECI_OS="windows"
else
GAMECI_OS="ubuntu"
fi fi
# TODO: MacOS probably requires a mac image. # TODO: MacOS probably requires a mac image.