Skip to content

Commit 82d1ebe

Browse files
committed
[wip] Working on CI
* Don’t build the examples as part of a commit.
1 parent 923901a commit 82d1ebe

File tree

4 files changed

+6
-14
lines changed

4 files changed

+6
-14
lines changed

.github/workflows/ci-master-only.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
cocoapods-lint:
1010
env:
11-
DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer
11+
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app/Contents/Developer
1212
name: Verify that podspec lints
1313
runs-on: macOS-latest
1414
steps:

.github/workflows/ci-pull-requests-only.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
buildsh:
1010
env:
11-
DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer
11+
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app/Contents/Developer
1212
strategy:
1313
matrix:
1414
mode: [cocoapods-lint-default-subspecs, cocoapods-lint-other-subspecs]

.github/workflows/ci.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ on: [push, pull_request]
55
jobs:
66
buildsh:
77
env:
8-
DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer
8+
DEVELOPER_DIR: /Applications/Xcode_15.0.1.app/Contents/Developer
99
strategy:
1010
matrix:
11-
mode: [tests, framework, life-without-cocoapods, carthage, examples-pt1, examples-pt2, examples-pt3, examples-pt4]
11+
mode: [tests, framework, life-without-cocoapods, carthage]
1212
include:
1313
- mode: tests
1414
name: Build and run tests
@@ -18,14 +18,6 @@ jobs:
1818
name: Build Texture as a static library
1919
- mode: carthage
2020
name: Verify that Carthage works
21-
- mode: examples-pt1
22-
name: Build examples (examples-pt1)
23-
- mode: examples-pt2
24-
name: Build examples (examples-pt2)
25-
- mode: examples-pt3
26-
name: Build examples (examples-pt3)
27-
- mode: examples-pt4
28-
name: Build examples (examples-pt4)
2921
name: ${{ matrix.name }}
3022
runs-on: macOS-latest
3123
steps:

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
# echo ************* diagnostics end
1010

1111
# run this on a 2x device until we've updated snapshot images to 3x
12-
PLATFORM="${TEXTURE_BUILD_PLATFORM:-platform=iOS Simulator,OS=16.2,name=iPhone SE (3rd generation)}"
13-
SDK="${TEXTURE_BUILD_SDK:-iphonesimulator16.2}"
12+
PLATFORM="${TEXTURE_BUILD_PLATFORM:-platform=iOS Simulator,OS=17.2,name=iPhone SE (3rd generation)}"
13+
SDK="${TEXTURE_BUILD_SDK:-iphonesimulator17.2}"
1414
DERIVED_DATA_PATH="~/ASDKDerivedData"
1515

1616
# It is pitch black.

0 commit comments

Comments
 (0)