Create ios.yml
This commit is contained in:
parent
cd1b81d67e
commit
33ccfd976c
35
.github/workflows/ios.yml
vendored
Normal file
35
.github/workflows/ios.yml
vendored
Normal file
|
|
@ -0,0 +1,35 @@
|
||||||
|
name: iOS
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- 'src/**'
|
||||||
|
- 'examples/**'
|
||||||
|
- '.github/workflows/android.yml'
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- 'src/**'
|
||||||
|
- 'examples/**'
|
||||||
|
- '.github/workflows/android.yml'
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: macos-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@master
|
||||||
|
- name: Build Xcode15 project
|
||||||
|
run: |
|
||||||
|
cd projects/Xcode15
|
||||||
|
curl -L https://github.com/raysan5/raylib/files/14743869/libEGL.xcframework.zip --output libEGL.xcframework.zip
|
||||||
|
curl -L https://github.com/raysan5/raylib/files/14743873/libGLESv2.xcframework.zip --output libGLESv2.xcframework.zip
|
||||||
|
unzip libEGL.xcframework.zip -d libEGL.xcframework
|
||||||
|
unzip libGLESv2.xcframework.zip -d libGLESv2.xcframework
|
||||||
|
rm libEGL.xcframework.zip
|
||||||
|
rm libGLESv2.xcframework.zip
|
||||||
|
ls
|
||||||
|
xcodebuild -project raylib.xcodeproj -scheme raylib -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 12,OS=15.0' build
|
||||||
|
|
||||||
Loading…
Reference in New Issue
Block a user