Files
SwiftFormat/Scripts/spm-artifact-bundle-info.template
T
Chris 74a534976f Add AArch64 variant to Artifact Bundle (#1922)
* Add AArch64 variant to Artifact Bundle
* Use Docker to build executable
* Update x64 Linux build
* Share build dependencies between architectures
2024-11-20 23:22:41 +00:00

24 lines
798 B
Plaintext

{
"schemaVersion": "1.0",
"artifacts": {
"swiftformat": {
"version": "__VERSION__",
"type": "executable",
"variants": [
{
"path": "swiftformat-__VERSION__-macos/bin/swiftformat",
"supportedTriples": ["x86_64-apple-macosx", "arm64-apple-macosx"]
},
{
"path": "swiftformat-__VERSION__-linux-gnu/bin/swiftformat_linux",
"supportedTriples": ["x86_64-unknown-linux-gnu"]
},
{
"path": "swiftformat-__VERSION__-linux-gnu/bin/swiftformat_linux_aarch64",
"supportedTriples": ["aarch64-unknown-linux-gnu"]
}
]
}
}
}