I’m following Quick start + getting help from AI Pipeline Editor to build Unity for Android. First tried Windows machine but seems like this combination is not supported, then Ubuntu. Config is dead simple:
version: 2.1
orbs:
unity: game-ci/unity@1.7.1
workflows:
build-unity-project:
jobs:
- unity/build:
name: 'build-android-release'
step-name: 'Build Android Release'
unity-license-var-name: 'UNITY_ENCODED_LICENSE'
unity-username-var-name: 'UNITY_USERNAME'
unity-password-var-name: 'UNITY_PASSWORD'
executor:
name: 'unity/ubuntu'
target_platform: 'android'
editor_version: '2022.3.61f1'
resource_class: 'large'
build-target: Android
compress: true
context: unity
The problem is build fails immediately by not finding docker tag:
Error pulling image unityci/editor:ubuntu-2022.3.61f1-android-2
I see there are latest images with suffix “android-3.1.0”. Not sure where this 2 comes from. This page does not talk about that hence asking the community.