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 blog post for week 46 in 2024 #972

Merged
merged 1 commit into from
Nov 19, 2024
Merged
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
36 changes: 36 additions & 0 deletions weekly/2024/week-46.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
title: Week 46 in Packit
date: 2024-11-18
authors: lbarczio
tags:
- 2024-November
- 2024
- November
---

## Week 46 (November 12th – November 18th)

- The Packit configuration file now supports a top-level placeholder key, `_`, which is ignored when parsing the file.
This is useful for storing YAML anchors in complex config files, e.g.:

```yaml
_:
base-test: &base-test
job: tests
fmf_path: .distro
jobs:
- <<: *base-test
trigger: pull_request
manual_trigger: true
- <<: *internal-test
trigger: commit
use_internal_tf: true
```

([packit#2378](https://github.com/packit/packit/pull/2378))

- You can now define `with_opts` and `without_opts` in target-specific configuration of `copr_build` job to build with `--with` and `--without` rpmbuild options. ([packit#2463](https://github.com/packit/packit/pull/2463))
- We have made several improvements to our dashboard:
- The Copr installation instructions have been updated. ([dashboard#487](https://github.com/packit/dashboard/pull/487))
- You can now view the number of new findings from OpenScanHub scans. ([dashboard#489](https://github.com/packit/dashboard/pull/489))
- Displaying of Copr builds in Testing Farm run views was improved as well. ([dashboard#481](https://github.com/packit/dashboard/pull/481))
Loading