From 16f837ea8007b52516798e673160e3bcc038091c Mon Sep 17 00:00:00 2001 From: Tim <0xtimc@gmail.com> Date: Thu, 3 Oct 2024 10:52:57 +0100 Subject: [PATCH 1/3] Update Euan description --- Sources/Conference/Models/Talk.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Sources/Conference/Models/Talk.swift b/Sources/Conference/Models/Talk.swift index 455e27b..95dc825 100644 --- a/Sources/Conference/Models/Talk.swift +++ b/Sources/Conference/Models/Talk.swift @@ -201,6 +201,10 @@ struct AllTalks { ListItem("A Swift Package Manager command plugin can build any target in Package.swift, wrap it in a container and upload it to the cloud. A Dockerfile isn’t needed because the plugin already knows what to do.") } Paragraph("We’ll see how Swift SDKs can help us to build binaries for several popular Linux distributions, and even build statically-linked binaries with no runtime dependencies. We’ll take a quick look at the contents of the generated container image.Finally, we’ll show how a command plugin ties the whole process together into a single command.") + Paragraph { + Text("🧑‍💻 Check out Swift Container Plugin on GitHub. Contributions welcome! - ") + Link("https://github.com/apple/swift-container-plugin", url: "https://github.com/apple/swift-container-plugin") + } }, speakerNames: ["Euan Harris"], order: 12, From 0234a184578c65cbeef1333282840a75e5d090f7 Mon Sep 17 00:00:00 2001 From: Tim <0xtimc@gmail.com> Date: Thu, 3 Oct 2024 10:53:29 +0100 Subject: [PATCH 2/3] Add Cultured Code talk ID --- Sources/Conference/Models/Talk.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sources/Conference/Models/Talk.swift b/Sources/Conference/Models/Talk.swift index 95dc825..c25731e 100644 --- a/Sources/Conference/Models/Talk.swift +++ b/Sources/Conference/Models/Talk.swift @@ -100,7 +100,8 @@ struct AllTalks { Paragraph("We’ve been using Swift on server for past two years. In this talk we’ll describe our modest architecture, based on AWS.") }, speakerNames: ["Vojtech Rylko"], - order: 13 + order: 13, + youtubeVideoID: "oJArLZIQF8w" ), Talk( id: 6, From 70ae9c58a5639e0b1c4391377eea6e98f951e1b2 Mon Sep 17 00:00:00 2001 From: Tim <0xtimc@gmail.com> Date: Thu, 3 Oct 2024 11:44:15 +0100 Subject: [PATCH 3/3] Workaround Swift 6 bug --- .github/workflows/build.yml | 1 + .github/workflows/ci.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4ee5d42..3da72da 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,6 +7,7 @@ on: jobs: build: runs-on: ubuntu-latest + container: swift:5.10 steps: - uses: actions/checkout@v3 - name: Build diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 816ddfa..faa7522 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,7 @@ jobs: build: name: Build and deploy runs-on: ubuntu-latest + container: swift:5.10 steps: - name: Checkout uses: actions/checkout@v3