forked from openzfs/zfs
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the GitHub actions workflows using a subset of the changes from the master branch, commit 620a977. Cherry-picking each relevant commit would have resulted in a large number of conflicts so this change only applies a minimal set of useful updates. - Added build-dependencies.txt and checkstyle-dependencies.txt - Added reclaim_disk_space.sh script - Minor changes to build steps - Reduced ztest run time - checkbashisms, mandoc, and cppcheck were not included to avoid additional backports - Add exceptions for shellcheck Signed-off-by: Brian Behlendorf <[email protected]>
- Loading branch information
1 parent
1d2aea7
commit 4f6e0ca
Showing
10 changed files
with
127 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
acl | ||
alien | ||
attr | ||
autoconf | ||
bc | ||
build-essential | ||
curl | ||
dbench | ||
debhelper-compat | ||
dh-python | ||
dkms | ||
fakeroot | ||
fio | ||
gdb | ||
gdebi | ||
git | ||
ksh | ||
lcov | ||
libacl1-dev | ||
libaio-dev | ||
libattr1-dev | ||
libblkid-dev | ||
libcurl4-openssl-dev | ||
libdevmapper-dev | ||
libelf-dev | ||
libffi-dev | ||
libmount-dev | ||
libpam0g-dev | ||
libselinux1-dev | ||
libssl-dev | ||
libtool | ||
libudev-dev | ||
linux-headers-generic | ||
lsscsi | ||
mdadm | ||
nfs-kernel-server | ||
pamtester | ||
parted | ||
po-debconf | ||
python3 | ||
python3-all-dev | ||
python3-cffi | ||
python3-dev | ||
python3-packaging | ||
python3-pip | ||
python3-setuptools | ||
python3-sphinx | ||
rng-tools-debian | ||
rsync | ||
samba | ||
sysstat | ||
uuid-dev | ||
watchdog | ||
wget | ||
xfslibs-dev | ||
xz-utils | ||
zlib1g-dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
pax-utils | ||
shellcheck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/sh | ||
|
||
set -eu | ||
|
||
# remove 4GiB of images | ||
sudo systemd-run docker system prune --force --all --volumes | ||
|
||
# remove unused software | ||
sudo systemd-run --wait rm -rf \ | ||
"$AGENT_TOOLSDIRECTORY" \ | ||
/opt/* \ | ||
/usr/local/* \ | ||
/usr/share/az* \ | ||
/usr/share/dotnet \ | ||
/usr/share/gradle* \ | ||
/usr/share/miniconda \ | ||
/usr/share/swift \ | ||
/var/lib/gems \ | ||
/var/lib/mysql \ | ||
/var/lib/snapd | ||
|
||
# trim the cleaned space | ||
sudo fstrim / |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters