Skip to content

Commit 5d6e35b

Browse files
committed
wip
1 parent 58601b4 commit 5d6e35b

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/cache.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -37,34 +37,34 @@ jobs:
3737
uses: chetan/git-restore-mtime-action@v2
3838

3939
- name: Build iOS (Debug)
40-
run: make CONFIG=Debug PLATFORM=iOS xcodebuild
40+
run: make CONFIG=Debug PLATFORM=iOS TEST_PLAN=ComposableArchitecture xcodebuild
4141
- name: Build iOS (Release)
42-
run: make CONFIG=Release PLATFORM=iOS xcodebuild
42+
run: make CONFIG=Release PLATFORM=iOS TEST_PLAN=ComposableArchitecture xcodebuild
4343

4444
- name: Build macOS (Debug)
45-
run: make CONFIG=Debug PLATFORM=macOS xcodebuild
45+
run: make CONFIG=Debug PLATFORM=macOS TEST_PLAN=ComposableArchitecture xcodebuild
4646
- name: Build macOS (Release)
47-
run: make CONFIG=Release PLATFORM=macOS xcodebuild
47+
run: make CONFIG=Release PLATFORM=macOS TEST_PLAN=ComposableArchitecture xcodebuild
4848

4949
- name: Build macCatalyst (Debug)
50-
run: make CONFIG=Debug PLATFORM=macCatalyst xcodebuild
50+
run: make CONFIG=Debug PLATFORM=macCatalyst TEST_PLAN=ComposableArchitecture xcodebuild
5151
- name: Build macCatalyst (Release)
52-
run: make CONFIG=Release PLATFORM=macCatalyst xcodebuild
52+
run: make CONFIG=Release PLATFORM=macCatalyst TEST_PLAN=ComposableArchitecture xcodebuild
5353

5454
- name: Build watchOS (Debug)
55-
run: make CONFIG=Debug PLATFORM=watchOS xcodebuild
55+
run: make CONFIG=Debug PLATFORM=watchOS TEST_PLAN=ComposableArchitecture xcodebuild
5656
- name: Build watchOS (Release)
57-
run: make CONFIG=Release PLATFORM=watchOS xcodebuild
57+
run: make CONFIG=Release PLATFORM=watchOS TEST_PLAN=ComposableArchitecture xcodebuild
5858

5959
- name: Build tvOS (Debug)
60-
run: make CONFIG=Debug PLATFORM=tvOS xcodebuild
60+
run: make CONFIG=Debug PLATFORM=tvOS TEST_PLAN=ComposableArchitecture xcodebuild
6161
- name: Build tvOS (Release)
62-
run: make CONFIG=Release PLATFORM=tvOS xcodebuild
62+
run: make CONFIG=Release PLATFORM=tvOS TEST_PLAN=ComposableArchitecture xcodebuild
6363

6464
- name: Build visionOS (Debug)
65-
run: make CONFIG=Debug PLATFORM=visionOS xcodebuild
65+
run: make CONFIG=Debug PLATFORM=visionOS TEST_PLAN=ComposableArchitecture xcodebuild
6666
- name: Build visionOS (Release)
67-
run: make CONFIG=Release PLATFORM=visionOS xcodebuild
67+
run: make CONFIG=Release PLATFORM=visionOS TEST_PLAN=ComposableArchitecture xcodebuild
6868

6969
- name: Build Todos
7070
run: make CONFIG=Debug SCHEME=GitHub TEST_PLAN=Todos xcodebuild

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ jobs:
4646
path: |
4747
~/.derivedData
4848
key: |
49-
deriveddata-xcodebuild-${{ matrix.platform }}-${{ matrix.xcode }}-${{ matrix.command }}-${{ hashFiles('**/Sources/**/*.swift', '**/Tests/**/*.swift') }}
49+
deriveddata-xcodebuild
5050
restore-keys: |
51-
deriveddata-xcodebuild-${{ matrix.platform }}-${{ matrix.xcode }}-${{ matrix.command }}-
51+
deriveddata-xcodebuild
5252
- name: Set IgnoreFileSystemDeviceInodeChanges flag
5353
run: defaults write com.apple.dt.XCBuild IgnoreFileSystemDeviceInodeChanges -bool YES
5454
- name: Update mtime for incremental builds

0 commit comments

Comments
 (0)