We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba4f104 commit 57afbd7Copy full SHA for 57afbd7
Tools/Release/Sources/Release.swift
@@ -47,7 +47,8 @@ struct Release: AsyncParsableCommand {
47
Log.info("Building \(branch) at \(commitHash)")
48
49
// unset fixes an issue where swift compilation prevents building for targets other than macOS
50
- try Zsh.run(command: "unset SDKROOT && cargo xtask swift build-framework --release", directory: buildDirectory)
+ let cargoCommand = "cargo xtask swift build-framework --release --target aarch64-apple-ios --target aarch64-apple-ios-sim --target x86_64-apple-ios"
51
+ try Zsh.run(command: "unset SDKROOT && \(cargoCommand)", directory: buildDirectory)
52
53
return BuildProduct(sourceRepo: sourceRepo,
54
version: version,
0 commit comments