Skip to content

Commit

Permalink
Add Swift 6.0 CI for Linux (#482)
Browse files Browse the repository at this point in the history
* adaptive default toolchain with buidler of carton

* add Linux CI

* --enable-sign-ext

* elseif
  • Loading branch information
omochi committed Jun 11, 2024
1 parent 79b686c commit 193722e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ jobs:
strategy:
matrix:
include:
- swift:
dir: "swift-6.0-branch/ubuntu2204"
version: "swift-6.0-DEVELOPMENT-SNAPSHOT-2024-06-08-a"
- swift:
dir: "swift-5.10-release/ubuntu2204"
version: "swift-5.10-RELEASE"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ struct CartonFrontendBundleCommand: AsyncParsableCommand {
async throws
{
var wasmOptArgs = [
"wasm-opt", "-Os", "--enable-bulk-memory", inputPath.pathString, "-o", outputPath.pathString,
"wasm-opt", "-Os", "--enable-bulk-memory", "--enable-sign-ext",
inputPath.pathString, "-o", outputPath.pathString,
]
if debugInfo {
wasmOptArgs.append("--debuginfo")
Expand Down

0 comments on commit 193722e

Please sign in to comment.