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/**/* - units/**/*
documentation: documentation:
- NEWS - NEWS
- man/*
- docs/* - docs/*
network: network:
- src/libsystemd-network/**/* - src/libsystemd-network/**/*
@ -16,10 +17,8 @@ selinux:
apparmor: apparmor:
- '**/*apparmor*' - '**/*apparmor*'
meson: meson:
- '**/meson.build'
- meson_option.txt - meson_option.txt
mkosi:
- .mkosi/*
- mkosi.build
busctl: busctl:
- src/busctl/* - src/busctl/*
systemctl: systemctl:
@ -28,12 +27,3 @@ journal:
- src/journal/* - src/journal/*
journal-remote: journal-remote:
- src/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= Packages=
gdb gdb
libidn2 libidn2
nano
qrencode qrencode
strace strace
vi
[Host] [Host]
QemuHeadless=yes 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 # 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 libtss2-dev
locales locales
nano
strace strace
vim-tiny
[Host] [Host]
QemuHeadless=yes 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 can be dropped once the Fedora RPM gets a dependency on them
libfido2 libfido2
libzstd libzstd
nano
# procps-ng provides a set of useful utilies (ps, free, etc) # procps-ng provides a set of useful utilies (ps, free, etc)
procps-ng procps-ng
strace strace
tpm2-tss tpm2-tss
vi
BuildDirectory=mkosi.builddir BuildDirectory=mkosi.builddir
Cache=mkosi.cache Cache=mkosi.cache

View File

@ -76,10 +76,8 @@ Packages=
libqrencode4 libqrencode4
libseccomp2 libseccomp2
pam pam
nano
strace strace
util-linux util-linux
vi
[Host] [Host]
QemuHeadless=yes 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 # 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 libtss2-dev
locales locales
nano
strace strace
vim-tiny
[Host] [Host]
QemuHeadless=yes QemuHeadless=yes

View File

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