Skip to content

Commit

Permalink
Update Github workflows due to changes in the hosted runner images
Browse files Browse the repository at this point in the history
  • Loading branch information
mikenachbaur-okta committed Apr 30, 2024
1 parent 25acdc9 commit e025705
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/documentation-ghpages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- master

env:
DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer
DEVELOPER_DIR: /Applications/Xcode_15.3.app/Contents/Developer
NSUnbufferedIO: YES

# NOTE: The DocC `generate-documentation` plugin does not handle the
Expand All @@ -20,7 +20,7 @@ env:
jobs:
ExportToGHPages:
name: Export to Github Pages
runs-on: macos-12
runs-on: macos-latest-large
steps:
- uses: actions/checkout@master
- name: Build Documentation
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ on:
- 'Sources/**/*.md'

env:
DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer
DEVELOPER_DIR: /Applications/Xcode_15.3.app/Contents/Developer
NSUnbufferedIO: YES

jobs:
BuildDocumentation:
name: Build Documentation Archives
runs-on: macos-12
runs-on: macos-latest-large
steps:
- uses: actions/checkout@master
- name: AuthFoundation
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:

jobs:
SwiftLint:
runs-on: macos-latest
runs-on: macos-latest-large
steps:
- uses: actions/checkout@v1
- name: Lint code using SwiftLint
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ on:
- 'Tests/**/*.swift'

env:
DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer
DEVELOPER_DIR: /Applications/Xcode_15.3.app/Contents/Developer
NSUnbufferedIO: YES
iOS_DESTINATION: "platform=iOS Simulator,OS=16.2,name=iPhone 14 Pro Max"
tvOS_DESTINATION: "platform=tvOS Simulator,OS=16.1,name=Apple TV"
iOS_DESTINATION: "platform=iOS Simulator,OS=17.4,name=iPhone 15 Pro Max"
tvOS_DESTINATION: "platform=tvOS Simulator,OS=17.4,name=Apple TV"

jobs:
SwiftBuild:
name: Swift Unit Tests
runs-on: macos-12
runs-on: macos-latest-large
timeout-minutes: 10
steps:
- name: Get swift version
Expand All @@ -42,7 +42,7 @@ jobs:

Cocoapods:
name: CocoaPods Build
runs-on: macos-12
runs-on: macos-latest-large
timeout-minutes: 10
needs:
- SwiftBuild
Expand All @@ -60,7 +60,7 @@ jobs:

XcodeBuild:
name: Xcode Unit Tests
runs-on: macos-12
runs-on: macos-latest-large
timeout-minutes: 25
steps:
- uses: actions/checkout@master
Expand Down

0 comments on commit e025705

Please sign in to comment.