We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5aed0f commit fd91a2cCopy full SHA for fd91a2c
.github/workflows/firebaseai.yml
@@ -42,6 +42,7 @@ jobs:
42
SPM: true
43
DIR: firebaseai
44
OS: ${{ matrix.platform }}
45
+ VERSION: ${{ matrix.ios_version }}
46
DEVICE: ${{ matrix.device }}
47
TEST: false
48
steps:
scripts/test.sh
@@ -98,6 +98,9 @@ flags+=( -scheme "$SCHEME" )
98
# Set destination
99
if [[ "$OS" == iOS ]]; then
100
DESTINATION="platform=iOS Simulator,name=${DEVICE}"
101
+ if [[ -n "${VERSION:-}" ]]; then
102
+ DESTINATION+=",OS=${VERSION}"
103
+ fi
104
flags+=( -destination "$DESTINATION" )
105
elif [[ "$OS" == tvOS ]]; then
106
DESTINATION="platform=tvOS Simulator,name=${DEVICE}"
0 commit comments