diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index c12d6ff..cc2f570 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -16,6 +16,6 @@ jobs: uses: actions/checkout@v4 - name: Build debug version run: | - swift build --target Blocks + swift build # TODO: Find a way for tests to work in spite of `ObjectiveBlocks` diff --git a/Makefile b/Makefile index 9b17faa..cec1e77 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,8 @@ cli: swift build --package-path Examples/BlocksCLI/ build-ios: - xcodebuild -verbose -scheme Blocks -destination "platform=iOS Simulator,OS=17.0.1" -derivedDataPath "/tmp/" clean build + xcrun xcodebuild -skipMacroValidation -skipPackagePluginValidation clean build -scheme Blocks -destination generic/platform=ios + xcrun xcodebuild -skipMacroValidation -skipPackagePluginValidation clean build -scheme ObjectiveBlocks -destination generic/platform=ios test-debug: swift package clean