fix Windows build. [skip Android][skip iOS][skip macOS][skip Linux] #834
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: iOS | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-13 | |
if: "!contains(github.event.head_commit.message, '[skip CI]') && !contains(github.event.head_commit.message, '[skip iOS]')" | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.0.1' | |
- name: iOS build | |
run: | | |
Tools/tolua++/build.sh | |
xcodebuild -project Projects/iOS/Dora.xcodeproj -configuration Debug -target Simulator -arch x86_64 -sdk iphonesimulator | |