Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Last Talk #132

Merged
merged 3 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
container: swift:5.10
steps:
- uses: actions/checkout@v3
- name: Build
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 6 additions & 1 deletion Sources/Conference/Models/Talk.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -201,6 +202,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,
Expand Down
Loading