1
0
mirror of https://github.com/systemd/systemd synced 2026-03-07 13:44:46 +01:00

Compare commits

..

No commits in common. "87cc47ba1d3a4016e84eb1b3f6bddf76266bf978" and "2234c6a094bb665b69c96f713e313373ec76e377" have entirely different histories.

7 changed files with 7 additions and 27 deletions

14
.github/labeler.yml vendored
View File

@ -4,6 +4,7 @@ units:
- units/**/*
documentation:
- NEWS
- man/*
- docs/*
network:
- src/libsystemd-network/**/*
@ -16,10 +17,8 @@ selinux:
apparmor:
- '**/*apparmor*'
meson:
- '**/meson.build'
- meson_option.txt
mkosi:
- .mkosi/*
- mkosi.build
busctl:
- src/busctl/*
systemctl:
@ -28,12 +27,3 @@ journal:
- src/journal/*
journal-remote:
- src/journal-remote/*
portable:
- src/portable/**/*
resolve:
- src/resolve/*
timedate:
- src/timedate/*
timesync:
- src/timesync/*
- src/time-wait-sync/*

View File

@ -56,10 +56,8 @@ BuildPackages=
Packages=
gdb
libidn2
nano
qrencode
strace
vi
[Host]
QemuHeadless=yes

View File

@ -73,9 +73,7 @@ Packages=
# We pull in the -dev package here, since the binary ones appear to change names too often, and the -dev package pulls the right deps in automatically
libtss2-dev
locales
nano
strace
vim-tiny
[Host]
QemuHeadless=yes

View File

@ -77,12 +77,10 @@ Packages=
# libfido2 + libzstd can be dropped once the Fedora RPM gets a dependency on them
libfido2
libzstd
nano
# procps-ng provides a set of useful utilies (ps, free, etc)
procps-ng
strace
tpm2-tss
vi
BuildDirectory=mkosi.builddir
Cache=mkosi.cache

View File

@ -76,10 +76,8 @@ Packages=
libqrencode4
libseccomp2
pam
nano
strace
util-linux
vi
[Host]
QemuHeadless=yes

View File

@ -76,9 +76,7 @@ Packages=
# We pull in the -dev package here, since the binary ones appear to change names too often, and the -dev package pulls the right deps in automatically
libtss2-dev
locales
nano
strace
vim-tiny
[Host]
QemuHeadless=yes

View File

@ -7,7 +7,7 @@ if [ $# -gt 0 ]; then
else
args="setup run clean-again"
fi
args_no_clean=$(sed -r 's/\bclean.*\b//g' <<<$args)
args_no_clean=$(sed -r 's/\bclean\b//g' <<<$args)
do_clean=$( [ "$args" = "$args_no_clean" ]; echo $? )
ninja -C "$BUILD_DIR"
@ -30,10 +30,10 @@ if [ $do_clean = 1 ]; then
[ -n "$args_no_clean" ] || exit 0
fi
pass_deny_list() {
for marker in $DENY_LIST_MARKERS $BLACKLIST_MARKERS; do
pass_blacklist() {
for marker in $BLACKLIST_MARKERS; do
if [ -f "$1/$marker" ]; then
echo "========== DENY-LISTED: $1 ($marker) =========="
echo "========== BLACKLISTED: $1 ($marker) =========="
return 1
fi
done
@ -43,7 +43,7 @@ pass_deny_list() {
for TEST in TEST-??-* ; do
COUNT=$(($COUNT+1))
pass_deny_list $TEST || continue
pass_blacklist $TEST || continue
start=$(date +%s)
echo -e "\n--x-- Running $TEST --x--"