Skip to content

[CI] Upgrade jobs to java 17 and macOS 15 #191

[CI] Upgrade jobs to java 17 and macOS 15

[CI] Upgrade jobs to java 17 and macOS 15 #191

Workflow file for this run

name: iOS
# Note: using the `branches` selector excludes all tags
on:
push:
branches:
- '**'
jobs:
build-custom-demo:
runs-on: macos-15
defaults:
run:
working-directory: ios/GSSDKCustomDemo
steps:
- uses: actions/checkout@v4
- run: xcodebuild build -scheme GSSDKCustomDemo -workspace GSSDKCustomDemo.xcworkspace -configuration Debug -sdk iphoneos \
ONLY_ACTIVE_ARCH=YES \
CODE_SIGNING_ALLOWED="NO"
build-simple-demo:
runs-on: macos-15
defaults:
run:
working-directory: ios/GSSDKSimpleDemo
steps:
- uses: actions/checkout@v4
- run: xcodebuild build -scheme GSSDKSimpleDemo -workspace GSSDKSimpleDemo.xcworkspace -configuration Debug -sdk iphoneos \
ONLY_ACTIVE_ARCH=YES \
CODE_SIGNING_ALLOWED="NO"