File tree Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Expand file tree Collapse file tree 5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 9
9
- " **"
10
10
env :
11
11
CI_XCODE_14 : /Applications/Xcode_14.2.app/Contents/Developer
12
+ CI_XCODE_15 : /Applications/Xcode_15.0.app/Contents/Developer
12
13
jobs :
13
14
tests :
14
15
env :
24
25
- test:parseui:all
25
26
- test:parse_live_query:all
26
27
- build:starters
27
- fail-fast : true
28
- runs-on : macos-12
28
+ - xcode15 # runs build:starters on XCode 15
29
+ fail-fast : false
30
+ runs-on : macos-13
29
31
steps :
30
32
- uses : actions/checkout@v3
31
33
- name : Setup Ruby
65
67
run : |
66
68
carthage bootstrap --use-xcframeworks
67
69
- name : Build-Test
68
- run : set -o pipefail && env NSUnbufferedIO=YES bundle exec rake ${{ matrix.script }}
70
+ run : set -o pipefail && env NSUnbufferedIO=YES bundle exec rake ${{ matrix.script == 'xcode15' && 'build:starters' || matrix.script }}
69
71
env :
70
- DEVELOPER_DIR : ${{ env.CI_XCODE_14 }}
72
+ DEVELOPER_DIR : ${{ (matrix.script == 'xcode15' && env.CI_XCODE_15) || env.CI_XCODE_14 }}
71
73
- name : Generate Environment Variables
72
74
if : ${{ always() }}
73
75
env :
96
98
xcode : true
97
99
xcode_archive_path : ${{ env.TEST_RESULTS }}
98
100
docs :
99
- runs-on : macos-12
101
+ runs-on : macos-13
100
102
steps :
101
103
- uses : actions/checkout@v3
102
104
- name : Setup Ruby
Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
release :
10
- runs-on : macos-12
10
+ runs-on : macos-13
11
11
outputs :
12
12
current_tag : ${{ steps.tag.outputs.current_tag }}
13
13
steps :
45
45
publish-docs :
46
46
needs : release
47
47
if : needs.release.outputs.current_tag != ''
48
- runs-on : macos-12
48
+ runs-on : macos-13
49
49
steps :
50
50
- name : Checkout repository
51
51
uses : actions/checkout@v3
Original file line number Diff line number Diff line change 11
11
jobs :
12
12
publish-docs :
13
13
if : github.event.inputs.tag != ''
14
- runs-on : macos-12
14
+ runs-on : macos-13
15
15
steps :
16
16
- name : Checkout repository
17
17
uses : actions/checkout@v3
Original file line number Diff line number Diff line change @@ -54,8 +54,6 @@ - (void)testConstructors {
54
54
provider = [PFTwitterAuthenticationProvider providerWithTwitter: twitter];
55
55
XCTAssertNotNil (provider);
56
56
XCTAssertEqual (provider.twitter , twitter);
57
-
58
- PFAssertThrowsInconsistencyException ([PFTwitterAuthenticationProvider new ]);
59
57
}
60
58
61
59
- (void )testAuthData {
Original file line number Diff line number Diff line change @@ -158,10 +158,10 @@ namespace :build do
158
158
159
159
desc 'Build all starters'
160
160
task :starters do
161
- Rake ::Task [ 'build:ios_starters:all' ] . invoke
162
- Rake ::Task [ 'build:macos_starters:all' ] . invoke
163
161
Rake ::Task [ 'build:tvos_starters:all' ] . invoke
164
162
Rake ::Task [ 'build:watchos_starters:all' ] . invoke
163
+ Rake ::Task [ 'build:ios_starters:all' ] . invoke
164
+ Rake ::Task [ 'build:macos_starters:all' ] . invoke
165
165
end
166
166
end
167
167
You can’t perform that action at this time.
0 commit comments