Skip to content

Commit

Permalink
Fix derived data path for Xcode build and test
Browse files Browse the repository at this point in the history
Previously, the Xcode builds in the workflows were not generating the derived data path correctly. This commit updates the commands to include the correct derived data path flag, ensuring the build and test processes work properly.
  • Loading branch information
ChinChangYang committed Nov 11, 2023
1 parent fafd843 commit 0a11b6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Run Xcode build
run: |
cd cpp/xcode
/Applications/Xcode_15.0.1.app/Contents/Developer/usr/bin/xcodebuild -scheme katago -configuration Release build
/Applications/Xcode_15.0.1.app/Contents/Developer/usr/bin/xcodebuild -derivedDataPath DerivedData -scheme katago -configuration Release build
- name: Setup network
run: |
Expand All @@ -40,4 +40,4 @@ jobs:
- name: Run Xcode test
run: |
cd cpp/xcode
/Applications/Xcode_15.0.1.app/Contents/Developer/usr/bin/xcodebuild -scheme katago -configuration Release test
/Applications/Xcode_15.0.1.app/Contents/Developer/usr/bin/xcodebuild -derivedDataPath DerivedData -scheme katago -configuration Release test

0 comments on commit 0a11b6d

Please sign in to comment.