Fork for thermals request add-json-schema-dpeq
0

Configure Feed

Select the types of activity you want to include in your feed.

remove CI workaround -- no longer what we want (#366)

-12
-12
.github/workflows/pull_request.yml
··· 89 89 90 90 - name: Build SwiftPM (Xcode, macOS) 91 91 shell: sh 92 - env: 93 - # workaround for CI failure 94 - DEVELOPER_DIR: /Applications/Xcode-latest.app 95 92 run: | 96 93 xcodebuild -version 97 94 xcrun --show-sdk-build-version ··· 101 98 102 99 - name: Run Tests SwiftPM (Xcode, macOS) 103 100 shell: sh 104 - env: 105 - # workaround for CI failure 106 - DEVELOPER_DIR: /Applications/Xcode-latest.app 107 101 run: | 108 102 xcrun xctest ~/Library/Developer/Xcode/DerivedData/mlx-swift-*/Build/Products/Debug/CmlxTests.xctest 109 103 xcrun xctest ~/Library/Developer/Xcode/DerivedData/mlx-swift-*/Build/Products/Debug/MLXTests.xctest 110 104 111 105 - name: Build xcodeproj (Xcode, macOS) 112 106 shell: sh 113 - env: 114 - # workaround for CI failure 115 - DEVELOPER_DIR: /Applications/Xcode-latest.app 116 107 run: | 117 108 rm -rf ~/Library/Developer/Xcode/DerivedData/* 118 109 cd xcode 119 110 xcodebuild build-for-testing -scheme MLX -destination 'platform=macOS' 120 111 121 112 - name: Run Tests xcodeproj (Xcode, macOS) 122 - env: 123 - # workaround for CI failure 124 - DEVELOPER_DIR: /Applications/Xcode-latest.app 125 113 working-directory: xcode 126 114 run: ../.github/scripts/run-xcode-tests.sh 127 115