Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrandonw committed Sep 11, 2024
1 parent 58601b4 commit 5d6e35b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,34 +37,34 @@ jobs:
uses: chetan/git-restore-mtime-action@v2

- name: Build iOS (Debug)
run: make CONFIG=Debug PLATFORM=iOS xcodebuild
run: make CONFIG=Debug PLATFORM=iOS TEST_PLAN=ComposableArchitecture xcodebuild
- name: Build iOS (Release)
run: make CONFIG=Release PLATFORM=iOS xcodebuild
run: make CONFIG=Release PLATFORM=iOS TEST_PLAN=ComposableArchitecture xcodebuild

- name: Build macOS (Debug)
run: make CONFIG=Debug PLATFORM=macOS xcodebuild
run: make CONFIG=Debug PLATFORM=macOS TEST_PLAN=ComposableArchitecture xcodebuild
- name: Build macOS (Release)
run: make CONFIG=Release PLATFORM=macOS xcodebuild
run: make CONFIG=Release PLATFORM=macOS TEST_PLAN=ComposableArchitecture xcodebuild

- name: Build macCatalyst (Debug)
run: make CONFIG=Debug PLATFORM=macCatalyst xcodebuild
run: make CONFIG=Debug PLATFORM=macCatalyst TEST_PLAN=ComposableArchitecture xcodebuild
- name: Build macCatalyst (Release)
run: make CONFIG=Release PLATFORM=macCatalyst xcodebuild
run: make CONFIG=Release PLATFORM=macCatalyst TEST_PLAN=ComposableArchitecture xcodebuild

- name: Build watchOS (Debug)
run: make CONFIG=Debug PLATFORM=watchOS xcodebuild
run: make CONFIG=Debug PLATFORM=watchOS TEST_PLAN=ComposableArchitecture xcodebuild
- name: Build watchOS (Release)
run: make CONFIG=Release PLATFORM=watchOS xcodebuild
run: make CONFIG=Release PLATFORM=watchOS TEST_PLAN=ComposableArchitecture xcodebuild

- name: Build tvOS (Debug)
run: make CONFIG=Debug PLATFORM=tvOS xcodebuild
run: make CONFIG=Debug PLATFORM=tvOS TEST_PLAN=ComposableArchitecture xcodebuild
- name: Build tvOS (Release)
run: make CONFIG=Release PLATFORM=tvOS xcodebuild
run: make CONFIG=Release PLATFORM=tvOS TEST_PLAN=ComposableArchitecture xcodebuild

- name: Build visionOS (Debug)
run: make CONFIG=Debug PLATFORM=visionOS xcodebuild
run: make CONFIG=Debug PLATFORM=visionOS TEST_PLAN=ComposableArchitecture xcodebuild
- name: Build visionOS (Release)
run: make CONFIG=Release PLATFORM=visionOS xcodebuild
run: make CONFIG=Release PLATFORM=visionOS TEST_PLAN=ComposableArchitecture xcodebuild

- name: Build Todos
run: make CONFIG=Debug SCHEME=GitHub TEST_PLAN=Todos xcodebuild
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ jobs:
path: |
~/.derivedData
key: |
deriveddata-xcodebuild-${{ matrix.platform }}-${{ matrix.xcode }}-${{ matrix.command }}-${{ hashFiles('**/Sources/**/*.swift', '**/Tests/**/*.swift') }}
deriveddata-xcodebuild
restore-keys: |
deriveddata-xcodebuild-${{ matrix.platform }}-${{ matrix.xcode }}-${{ matrix.command }}-
deriveddata-xcodebuild
- name: Set IgnoreFileSystemDeviceInodeChanges flag
run: defaults write com.apple.dt.XCBuild IgnoreFileSystemDeviceInodeChanges -bool YES
- name: Update mtime for incremental builds
Expand Down

0 comments on commit 5d6e35b

Please sign in to comment.