Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test PR #1

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
164 changes: 93 additions & 71 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,37 +20,29 @@ jobs:
strategy:
matrix:
command: [test, '']
platform: [IOS, MACOS]
platform: [iOS, macOS]
xcode: ['16.2']
steps:
- uses: actions/checkout@v4
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: List available devices
run: xcrun simctl list devices available
- name: Cache derived data
uses: actions/cache@v3
with:
path: |
~/.derivedData
key: |
deriveddata-xcodebuild-${{ matrix.platform }}-${{ matrix.xcode }}-${{ matrix.command }}-${{ hashFiles('**/Sources/**/*.swift', '**/Tests/**/*.swift') }}
restore-keys: |
deriveddata-xcodebuild-${{ matrix.platform }}-${{ matrix.xcode }}-${{ matrix.command }}-
- name: Set IgnoreFileSystemDeviceInodeChanges flag
run: defaults write com.apple.dt.XCBuild IgnoreFileSystemDeviceInodeChanges -bool YES
- name: Update mtime for incremental builds
uses: chetan/git-restore-mtime-action@v2
- name: Debug
run: make XCODEBUILD_ARGUMENT="${{ matrix.command }}" CONFIG=Debug PLATFORM="${{ matrix.platform }}" WORKSPACE=.github/package.xcworkspace xcodebuild
uses: capturecontext/[email protected]
with:
xcode: ${{ matrix.xcode }}
cache-derived-data: true
command: xcodebuild
subcommand: ${{ matrix.command }}
platform: ${{ matrix.platform }}
workspace: .github/package.xcworkspace
scheme: ComposableArchitecture
config: Debug

xcodebuild:
name: xcodebuild (15)
runs-on: macos-14
strategy:
matrix:
command: [test, '']
platform: [IOS, MAC_CATALYST, MACOS, TVOS, VISIONOS, WATCHOS]
platform: [iOS, macOS, macCatalyst, tvOS, visionOS, watchOS]
xcode: [15.2, 15.4]
exclude:
- {xcode: 15.2, command: test}
Expand All @@ -63,81 +55,111 @@ jobs:
- {xcode: 15.2, skip_release: 1}
steps:
- uses: actions/checkout@v4
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Install visionOS runtime
if: matrix.platform == 'visionOS'
run: |
sudo xcodebuild -runFirstLaunch
sudo xcrun simctl list
sudo xcodebuild -downloadPlatform visionOS
sudo xcodebuild -runFirstLaunch
- name: List available devices
run: xcrun simctl list devices available
- name: Cache derived data
uses: actions/cache@v3
with:
path: |
~/.derivedData
key: |
deriveddata-xcodebuild-${{ matrix.platform }}-${{ matrix.xcode }}-${{ matrix.command }}-${{ hashFiles('**/Sources/**/*.swift', '**/Tests/**/*.swift') }}
restore-keys: |
deriveddata-xcodebuild-${{ matrix.platform }}-${{ matrix.xcode }}-${{ matrix.command }}-
- name: Set IgnoreFileSystemDeviceInodeChanges flag
run: defaults write com.apple.dt.XCBuild IgnoreFileSystemDeviceInodeChanges -bool YES
- name: Update mtime for incremental builds
uses: chetan/git-restore-mtime-action@v2
- name: Debug
run: make XCODEBUILD_ARGUMENT="${{ matrix.command }}" CONFIG=Debug PLATFORM="${{ matrix.platform }}" WORKSPACE=.github/package.xcworkspace xcodebuild
uses: capturecontext/[email protected]
with:
xcode: ${{ matrix.xcode }}
cache-derived-data: true
command: xcodebuild
subcommand: ${{ matrix.command }}
platform: ${{ matrix.platform }}
workspace: .github/package.xcworkspace
scheme: ComposableArchitecture
config: Debug
- name: Release
if: matrix.skip_release != '1'
run: make XCODEBUILD_ARGUMENT="${{ matrix.command }}" CONFIG=Release PLATFORM="${{ matrix.platform }}" WORKSPACE=.github/package.xcworkspace xcodebuild
uses: capturecontext/[email protected]
with:
xcode: ${{ matrix.xcode }}
cache-derived-data: true
command: xcodebuild
subcommand: ${{ matrix.command }}
platform: ${{ matrix.platform }}
workspace: .github/package.xcworkspace
scheme: ComposableArchitecture
config: Release

library-evolution:
name: Library (evolution)
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- name: Select Xcode 15.4
run: sudo xcode-select -s /Applications/Xcode_15.4.app
- name: Build for library evolution
run: make build-for-library-evolution
uses: capturecontext/[email protected]
with:
xcode: 15.4
command: build-for-library-evolution
scheme: ComposableArchitecture

examples:
name: Examples
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Cache derived data
uses: actions/cache@v3
with:
path: ~/.derivedData
key: |
deriveddata-examples-${{ hashFiles('**/Sources/**/*.swift', '**/Tests/**/*.swift', '**/Examples/**/*.swift') }}
restore-keys: |
deriveddata-examples-
- name: Select Xcode 16
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
uses: chetan/git-restore-mtime-action@v2
- name: CaseStudies (SwiftUI)
run: make DERIVED_DATA_PATH=~/.derivedData SCHEME="CaseStudies (SwiftUI)" xcodebuild
uses: capturecontext/[email protected]
with:
command: xcodebuild-raw
cache-derived-data: true
workspace: ComposableArchitecture.xcworkspace
scheme: CaseStudies (SwiftUI)
platform: iOS
- name: CaseStudies (UIKit)
run: make DERIVED_DATA_PATH=~/.derivedData SCHEME="CaseStudies (UIKit)" xcodebuild
uses: capturecontext/[email protected]
with:
command: xcodebuild-raw
cache-derived-data: true
workspace: ComposableArchitecture.xcworkspace
scheme: CaseStudies (UIKit)
platform: iOS
- name: Search
run: make DERIVED_DATA_PATH=~/.derivedData SCHEME="Search" xcodebuild
uses: capturecontext/[email protected]
with:
command: xcodebuild-raw
cache-derived-data: true
workspace: ComposableArchitecture.xcworkspace
scheme: Search
platform: iOS
- name: SyncUps
run: make DERIVED_DATA_PATH=~/.derivedData SCHEME="SyncUps" xcodebuild
uses: capturecontext/[email protected]
with:
command: xcodebuild-raw
cache-derived-data: true
workspace: ComposableArchitecture.xcworkspace
scheme: SyncUps
platform: iOS
- name: SpeechRecognition
run: make DERIVED_DATA_PATH=~/.derivedData SCHEME="SpeechRecognition" xcodebuild
uses: capturecontext/[email protected]
with:
command: xcodebuild-raw
cache-derived-data: true
workspace: ComposableArchitecture.xcworkspace
scheme: SpeechRecognition
platform: iOS
- name: TicTacToe
run: make DERIVED_DATA_PATH=~/.derivedData SCHEME="TicTacToe" xcodebuild
uses: capturecontext/[email protected]
with:
command: xcodebuild-raw
cache-derived-data: true
workspace: ComposableArchitecture.xcworkspace
scheme: TicTacToe
platform: iOS
- name: Todos
run: make DERIVED_DATA_PATH=~/.derivedData SCHEME="Todos" xcodebuild
uses: capturecontext/[email protected]
with:
command: xcodebuild-raw
cache-derived-data: true
workspace: ComposableArchitecture.xcworkspace
scheme: Todos
platform: iOS
- name: VoiceMemos
run: make DERIVED_DATA_PATH=~/.derivedData SCHEME="VoiceMemos" xcodebuild
uses: capturecontext/[email protected]
with:
command: xcodebuild-raw
cache-derived-data: true
workspace: ComposableArchitecture.xcworkspace
scheme: VoiceMemos
platform: iOS

check-macro-compatibility:
name: Check Macro Compatibility
Expand Down
74 changes: 0 additions & 74 deletions .github/workflows/documentation.yml

This file was deleted.

83 changes: 0 additions & 83 deletions .github/workflows/release.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# The Composable Architecture
# The Composable Architecture [test-pr]

[![CI](https://github.com/pointfreeco/swift-composable-architecture/workflows/CI/badge.svg)](https://github.com/pointfreeco/swift-composable-architecture/actions?query=workflow%3ACI)
[![Slack](https://img.shields.io/badge/slack-chat-informational.svg?label=Slack&logo=slack)](https://www.pointfree.co/slack-invite)
Expand Down
Loading