Compare commits

...
2 Commits
Author SHA1 Message Date
omgitsalexl 411c79e8b5 Specified platform version
Swift Testing / Windows (push) Successful in 6m55s
Swift Testing / Ubuntu (push) Successful in 1m13s
Swift Testing / macOS (push) Successful in 1m15s
2026-08-24 10:16:40 -07:00
omgitsalexl 8067bdf45d Updated Docker container 2026-08-24 10:16:01 -07:00
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ jobs:
name: Ubuntu name: Ubuntu
runs-on: ubuntu-24.04 runs-on: ubuntu-24.04
container: container:
image: swift:6.3.3 image: git.omgitsalexl.me/omgitsalexl/ci-swift:6.3.3
steps: steps:
- name: Checkout - name: Checkout
+4
View File
@@ -4,7 +4,11 @@
import PackageDescription import PackageDescription
let package = Package( let package = Package(
name: "SwiftRunnerTesting", name: "SwiftRunnerTesting",
platforms: [
.macOS(.v14)
],
products: [ products: [
.executable(name: "SwiftRunnerTesting", targets: ["SwiftRunnerTesting"]), .executable(name: "SwiftRunnerTesting", targets: ["SwiftRunnerTesting"]),
], ],