Skip to content

Commit

Permalink
ci.yml updated to use Xcode 11
Browse files Browse the repository at this point in the history
base iOS SDK changed to 13.0
  • Loading branch information
vovasty committed Oct 1, 2019
1 parent ee18b9c commit 8e02d00
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on: [push, pull_request]

jobs:
buildsh:
env: DEVELOPER_DIR: /Applications/Xcode_11.0.app/Contents/Developer
strategy:
matrix:
mode: [tests, framework, life-without-cocoapods, carthage, examples-pt1, examples-pt2, examples-pt3, examples-pt4]
Expand All @@ -25,7 +26,7 @@ jobs:
- mode: examples-pt4
name: Build examples (examples-pt4)
name: ${{ matrix.name }}
runs-on: macOS-10.14
runs-on: macOS-latest
steps:
- name: Checkout the Git repository
uses: actions/checkout@v1
Expand Down
10 changes: 8 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
#!/bin/bash

PLATFORM="${TEXTURE_BUILD_PLATFORM:-platform=iOS Simulator,OS=10.2,name=iPhone 7}"
SDK="${TEXTURE_BUILD_SDK:-iphonesimulator12.2}"
echo !!!!
xcodebuild -version
xcodebuild -showsdks
echo !!!!


PLATFORM="${TEXTURE_BUILD_PLATFORM:-platform=iOS Simulator,OS=13.0,name=iPhone 7}"
SDK="${TEXTURE_BUILD_SDK:-iphonesimulator13.0}"
DERIVED_DATA_PATH="~/ASDKDerivedData"

# It is pitch black.
Expand Down

0 comments on commit 8e02d00

Please sign in to comment.