Skip to content

Commit

Permalink
Bump GitHub Actions CI to Xcode 16.2
Browse files Browse the repository at this point in the history
16.0 was EOL'd on January 6.
  • Loading branch information
stephencelis committed Jan 9, 2025
1 parent eab3982 commit e0f637b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
matrix:
command: [test, '']
platform: [IOS, MACOS]
xcode: ['16.0']
xcode: ['16.2']
steps:
- uses: actions/checkout@v4
- name: Select Xcode ${{ matrix.xcode }}
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
restore-keys: |
deriveddata-examples-
- name: Select Xcode 16
run: sudo xcode-select -s /Applications/Xcode_16.0.app
run: sudo xcode-select -s /Applications/Xcode_16.2.app
- name: Set IgnoreFileSystemDeviceInodeChanges flag
run: defaults write com.apple.dt.XCBuild IgnoreFileSystemDeviceInodeChanges -bool YES
- name: Update mtime for incremental builds
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ concurrency:

jobs:
build:
runs-on: macos-14
runs-on: macos-15
steps:
- name: Select Xcode 16.0
run: sudo xcode-select -s /Applications/Xcode_16.0.app
- name: Select Xcode 16.2
run: sudo xcode-select -s /Applications/Xcode_16.2.app

- name: Checkout Package
uses: actions/checkout@v4
Expand All @@ -41,10 +41,10 @@ jobs:
for tag in $(echo "main"; git tag -l --sort=-v:refname | grep -e "\d\+\.\d\+.0" | head -6);
do
if [ -d "docs-out/$tag/data/documentation/composablearchitecture" ]
then
if [ -d "docs-out/$tag/data/documentation/composablearchitecture" ]
then
echo "✅ Documentation for "$tag" already exists.";
else
else
echo "⏳ Generating documentation for ComposableArchitecture @ "$tag" release.";
rm -rf "docs-out/$tag";
Expand Down

0 comments on commit e0f637b

Please sign in to comment.