Skip to content

Commit

Permalink
Try macOS-13-xlarge image
Browse files Browse the repository at this point in the history
  • Loading branch information
scannillo committed Oct 6, 2023
1 parent 8c72b40 commit e494c5b
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ concurrency:
jobs:
cocoapods:
name: CocoaPods (Xcode 14.3)
runs-on: macOS-13-arm64
runs-on: macOS-13-xlarge
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand All @@ -21,7 +21,7 @@ jobs:
run: pod lib lint
carthage:
name: Carthage (Xcode 14.3)
runs-on: macOS-13-arm64
runs-on: macOS-13-xlarge
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand All @@ -48,7 +48,7 @@ jobs:
run: xcodebuild -project 'SampleApps/CarthageTest/CarthageTest.xcodeproj' -scheme 'CarthageTest' clean build CODE_SIGNING_ALLOWED=NO
spm:
name: SPM (Xcode 14.3)
runs-on: macOS-13-arm64
runs-on: macOS-13-xlarge
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
release:
name: Release
runs-on: macOS-13-arm64
runs-on: macOS-13-xlarge
steps:
- name: Check out repository
uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ concurrency:
jobs:
unit_test_job:
name: Unit
runs-on: macOS-13-arm64
runs-on: macOS-13-xlarge
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand All @@ -23,7 +23,7 @@ jobs:
run: set -o pipefail && xcodebuild -workspace 'Braintree.xcworkspace' -sdk 'iphonesimulator' -configuration 'Debug' -scheme 'UnitTests' -destination 'name=iPhone 14,OS=16.4,platform=iOS Simulator' test | ./Pods/xcbeautify/xcbeautify
ui_test_job:
name: UI
runs-on: macOS-13-arm64
runs-on: macOS-13-xlarge
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand All @@ -38,7 +38,7 @@ jobs:
run: set -o pipefail && xcodebuild -workspace 'Braintree.xcworkspace' -sdk 'iphonesimulator' -configuration 'Release' -scheme 'UITests' -destination 'name=iPhone 14,OS=16.4,platform=iOS Simulator' test | ./Pods/xcbeautify/xcbeautify
integration_test_job:
name: Integration
runs-on: macOS-13-arm64
runs-on: macOS-13-xlarge
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//
// BTPayPalCheckoutMock.h
// BraintreePayPalNativeCheckout
//
// Created by Samantha Cannillo on 10/6/23.
//

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

@interface BTPayPalCheckoutMock : NSObject

@end

NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
//
// BTPayPalCheckoutMock.m
// BraintreePayPalNativeCheckout
//
// Created by Samantha Cannillo on 10/6/23.
//

#import "BTPayPalCheckoutMock.h"

@implementation BTPayPalCheckoutMock

@end
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#import "BTPayPalCheckoutMock.h"

0 comments on commit e494c5b

Please sign in to comment.