Skip to content

Commit

Permalink
tree: promote changes from testing-devel at d74306d
Browse files Browse the repository at this point in the history
  • Loading branch information
coreosbot committed Sep 4, 2023
1 parent 7d6d78c commit f3856bb
Show file tree
Hide file tree
Showing 160 changed files with 851 additions and 387 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/find-whitespace.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Find whitespace

on:
pull_request:
branches: [testing-devel]

permissions:
contents: read

jobs:
find-whitespace:
name: Find whitespace
runs-on: ubuntu-latest
container: quay.io/coreos-assembler/fcos-buildroot:testing-devel
steps:
- name: Check out repository
uses: actions/checkout@v3
# https://github.com/actions/checkout/issues/760
- name: Mark git checkout as safe
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Look for whitespace at the end of line
run: ci/find-whitespace
3 changes: 2 additions & 1 deletion ci/buildroot/buildroot-reqs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ util-linux
which
xz

# For rust projects like rpm-ostree
# For rust projects
rustfmt
clippy

# For unit tests at least.
ostree
Expand Down
19 changes: 19 additions & 0 deletions ci/find-whitespace
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#!/bin/bash

set -euo pipefail

main() {
local files_with_whitespace
files_with_whitespace="$(find manifests overlay.d tests -type f -exec grep -El " +$" {} \;)"

if [[ -n "${files_with_whitespace}" ]]; then
echo "[+] Found files with whitespace at the end of line"
echo "${files_with_whitespace}"
exit 1
fi

echo "[+] No files with whitespace at the end of line"
exit 0
}

main "${@}"
46 changes: 37 additions & 9 deletions kola-denylist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,62 +15,90 @@
- ppc64le
- pattern: ext.config.kdump.crash
tracker: https://github.com/coreos/fedora-coreos-tracker/issues/1430
# snooze: 2023-08-31 (disabled on promotion)
# snooze: 2023-09-13 (disabled on promotion)
# warn: true (disabled on promotion)
arches:
- aarch64
streams:
- stable
- testing
- next
- testing-devel
- next-devel
- branched
- pattern: ext.config.networking.nameserver
tracker: https://github.com/coreos/fedora-coreos-tracker/issues/1542
# snooze: 2023-08-28 (disabled on promotion)
# snooze: 2023-09-13 (disabled on promotion)
# warn: true (disabled on promotion)
streams:
- rawhide
- branched
- next-devel
- pattern: ext.config.networking.no-persist-ip
tracker: https://github.com/coreos/fedora-coreos-tracker/issues/1542
# snooze: 2023-08-28 (disabled on promotion)
# snooze: 2023-09-13 (disabled on promotion)
# warn: true (disabled on promotion)
streams:
- rawhide
- branched
- next-devel
- pattern: ext.config.networking.prefer-ignition-networking
tracker: https://github.com/coreos/fedora-coreos-tracker/issues/1542
# snooze: 2023-08-28 (disabled on promotion)
# snooze: 2023-09-13 (disabled on promotion)
# warn: true (disabled on promotion)
streams:
- rawhide
- branched
- next-devel
- pattern: ext.config.networking.ifname-karg.everyboot-systemd-link-file
tracker: https://github.com/coreos/fedora-coreos-tracker/issues/1542
# snooze: 2023-08-28 (disabled on promotion)
# snooze: 2023-09-13 (disabled on promotion)
# warn: true (disabled on promotion)
streams:
- rawhide
- branched
- next-devel
- pattern: ext.config.networking.force-persist-ip
tracker: https://github.com/coreos/fedora-coreos-tracker/issues/1542
# snooze: 2023-08-28 (disabled on promotion)
# snooze: 2023-09-13 (disabled on promotion)
# warn: true (disabled on promotion)
streams:
- rawhide
- branched
- next-devel
- pattern: ext.config.networking.bridge-static-via-kargs
tracker: https://github.com/coreos/fedora-coreos-tracker/issues/1542
# snooze: 2023-08-28 (disabled on promotion)
# snooze: 2023-09-13 (disabled on promotion)
# warn: true (disabled on promotion)
streams:
- rawhide
- branched
- next-devel
- pattern: ext.config.networking.ifname-karg.udev-rule-firstboot-propagation
tracker: https://github.com/coreos/fedora-coreos-tracker/issues/1542
# snooze: 2023-08-28 (disabled on promotion)
# snooze: 2023-09-13 (disabled on promotion)
# warn: true (disabled on promotion)
streams:
- rawhide
- branched
- next-devel
- pattern: ext.config.networking.mtu-on-bond-kargs
tracker: https://github.com/coreos/fedora-coreos-tracker/issues/1542
# snooze: 2023-08-28 (disabled on promotion)
# snooze: 2023-09-13 (disabled on promotion)
# warn: true (disabled on promotion)
streams:
- rawhide
- branched
- next-devel
- pattern: coreos.ignition.ssh.key
tracker: https://github.com/coreos/fedora-coreos-tracker/issues/1553
# snooze: 2023-09-04 (disabled on promotion)
# warn: true (disabled on promotion)
platforms:
- azure
- pattern: ext.config.kdump.crash
tracker: https://github.com/coreos/fedora-coreos-tracker/issues/1560
# snooze: 2023-09-30 (disabled on promotion)
# warn: true (disabled on promotion)
streams:
- rawhide
Loading

0 comments on commit f3856bb

Please sign in to comment.