Fix formatting of talks and add QEcamp23 (#9)

This commit is contained in:
Matej Focko 2023-11-29 16:18:44 +01:00 committed by GitHub
commit b8ae08bb37
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,16 +4,52 @@ import Layout from "@theme/Layout";
import Talk, { TalkMetadata } from "../components/talks/Talk"; import Talk, { TalkMetadata } from "../components/talks/Talk";
const talks: TalkMetadata[] = [ const talks: TalkMetadata[] = [
{
title: "Shift Left Testing with Packit and Testing Farm",
description: (
<>
<p>
In today's fast-paced software development landscape, ensuring the
quality and reliability of upstream contributions is crucial. The
traditional approach of testing at the end of the development cycle is
no longer sufficient. To address this challenge, we present "Shift
Left Your Testing with Packit and Testing Farm", a talk that
introduces two powerful tools designed to simplify and enhance the
testing process for the upstream contributions.
</p>
<p>
Packit and Testing Farm provide a dead simple way to build and test
your upstream contributions against both public or internal Red Hat
testing infrastructure. In this talk, we will explore the capabilities
of both tools and demonstrate how they can be seamlessly integrated
into your development workflow.
</p>
<p>
In addition to the current capabilities, we will share our plans for
Packit and Testing.
</p>
</>
),
events: [
{
name: "QEcamp23",
location: "virtual",
date: new Date(2023, 10, 19),
},
],
},
{ {
title: "Packit: RPM integration, all in one", title: "Packit: RPM integration, all in one",
description: ( description: (
<> <>
Do you want to automate how you build and test your RPM packages? Do you want to automate how you build and test your RPM packages? Do you
Do you maintain any package in Fedora and want to automate the maintain any package in Fedora and want to automate the releases? Or are
releases? Or are you just interested in CI/CD on GitHub or GitLab, you just interested in CI/CD on GitHub or GitLab, Fedora and integration
Fedora and integration of upstream projects with RPM-based Linux of upstream projects with RPM-based Linux distributions? In this
distributions? In this session, we are going to deep-dive into session, we are going to deep-dive into features of Packit that can help
features of Packit that can help you do your day-to-day job. you do your day-to-day job.
</> </>
), ),
events: [ events: [
@ -29,7 +65,8 @@ const talks: TalkMetadata[] = [
}, },
], ],
recordingURL: "https://www.youtube.com/watch?v=FxhXzgxWO18", recordingURL: "https://www.youtube.com/watch?v=FxhXzgxWO18",
slidesURL: "https://static.sched.com/hosted_files/devconfcz2023/37/DevConf.cz%20June%202023%20Packit%20talk-1.pdf", slidesURL:
"https://static.sched.com/hosted_files/devconfcz2023/37/DevConf.cz%20June%202023%20Packit%20talk-1.pdf",
}, },
]; ];
@ -49,11 +86,13 @@ export default function Talks(): JSX.Element {
))} ))}
</div> </div>
<hr/> <hr />
<p> <p>
Credits to <a href="https://kosiec.dev/" target="_blank"> Credits to{" "}
Paweł Kosiec</a> for implementing his own React components <a href="https://kosiec.dev/" target="_blank">
for talks. Paweł Kosiec
</a>{" "}
for implementing his own React components for talks.
</p> </p>
</main> </main>
</Layout> </Layout>