Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a4c20be

Browse files
authoredFeb 21, 2022
Merge pull request #44 from appwrite/feat-enable-swift
Enable swift
2 parents 5021856 + 424148e commit a4c20be

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/Runtimes/Runtimes.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ public function __construct()
6262
// $java->addVersion('17.0', 'openjdk/17-jdk-alpine', 'openruntimes/java:17.0', [System::X86]);
6363
// $this->runtimes['java'] = $java;
6464

65-
// $swift = new Runtime('swift', 'Swift');
66-
// $swift->addVersion('5.5', 'swift:5.5-slim', 'openruntimes/swift:5.5', [System::X86]);
67-
// $this->runtimes['swift'] = $swift;
65+
$swift = new Runtime('swift', 'Swift');
66+
$swift->addVersion('5.5', 'swiftarm/swift:5.5.2-focal-multi-arch', 'openruntimes/swift:5.5', [System::X86, System::ARM]);
67+
$this->runtimes['swift'] = $swift;
6868
}
6969

7070
/**

0 commit comments

Comments
 (0)
Please sign in to comment.