├── .gitignore ├── LICENSE ├── README.md ├── master ├── buildbot.tac ├── buildslaves.py ├── github.py ├── master.cfg ├── password.py.sample ├── patches │ ├── 0001-Treat-RETRY-as-FAILURE.patch │ ├── 0002-Add-isIdle-helper.patch │ ├── 0003-Set-tags-for-latent-ec2-buildslaves.patch │ ├── 0004-Retry-on-EC2-NotFound-errors.patch │ ├── 0005-Soft-disconnect-when-build_wait_timeout-0.patch │ ├── 0006-Force-root-volumes-to-be-deleted-upon-termination-on.patch │ ├── 0007-Create-volumes.patch │ ├── 0008-Allow-slaves-to-substantiate-in-parallel.patch │ ├── 0009-Move-spot-price-historical-averaging-to-its-own-func.patch │ ├── 0010-Allow-independant-EC2-price_multiplier-or-max_spot_p.patch │ ├── 0011-Properly-handle-a-stale-broker-connection-on-ping.patch │ ├── 0012-Add-debug-logging.patch │ ├── 0013-Add-instance-id-to-build-properties.patch │ ├── 0014-Remove-default-values-for-keypair-and-security-names.patch │ ├── 0015-Add-VPC-support-to-EC2LatentBuildSlave.patch │ ├── 0016-Add-support-for-block-devices-to-EC2LatentBuildSlave.patch │ ├── 0017-Allow-control-over-environment-logging-MasterShellCo.patch │ ├── 0018-Better-handling-for-instance-termination.patch │ ├── 0019-Enable-run-time-AMI-determination.patch │ └── README.md ├── public_html │ ├── bg_gradient.jpg │ ├── default.css │ ├── favicon.ico │ └── robots.txt ├── repository.py └── templates │ └── README.txt └── scripts ├── ZTS-exceptions.md ├── bb-bootstrap.sh ├── bb-build-linux.sh ├── bb-build.sh ├── bb-cleanup.sh ├── bb-dependencies.sh ├── bb-test-cleanup.sh ├── bb-test-prepare.sh ├── bb-test-pts.sh ├── bb-test-zfstests.sh ├── bb-test-ztest.sh ├── known-issues.sh ├── openzfs-merge.sh ├── openzfs-tracking.sh ├── pts-test-profiles.tar.gz └── runurl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/README.md -------------------------------------------------------------------------------- /master/buildbot.tac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/buildbot.tac -------------------------------------------------------------------------------- /master/buildslaves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/buildslaves.py -------------------------------------------------------------------------------- /master/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/github.py -------------------------------------------------------------------------------- /master/master.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/master.cfg -------------------------------------------------------------------------------- /master/password.py.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/password.py.sample -------------------------------------------------------------------------------- /master/patches/0001-Treat-RETRY-as-FAILURE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0001-Treat-RETRY-as-FAILURE.patch -------------------------------------------------------------------------------- /master/patches/0002-Add-isIdle-helper.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0002-Add-isIdle-helper.patch -------------------------------------------------------------------------------- /master/patches/0003-Set-tags-for-latent-ec2-buildslaves.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0003-Set-tags-for-latent-ec2-buildslaves.patch -------------------------------------------------------------------------------- /master/patches/0004-Retry-on-EC2-NotFound-errors.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0004-Retry-on-EC2-NotFound-errors.patch -------------------------------------------------------------------------------- /master/patches/0005-Soft-disconnect-when-build_wait_timeout-0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0005-Soft-disconnect-when-build_wait_timeout-0.patch -------------------------------------------------------------------------------- /master/patches/0006-Force-root-volumes-to-be-deleted-upon-termination-on.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0006-Force-root-volumes-to-be-deleted-upon-termination-on.patch -------------------------------------------------------------------------------- /master/patches/0007-Create-volumes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0007-Create-volumes.patch -------------------------------------------------------------------------------- /master/patches/0008-Allow-slaves-to-substantiate-in-parallel.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0008-Allow-slaves-to-substantiate-in-parallel.patch -------------------------------------------------------------------------------- /master/patches/0009-Move-spot-price-historical-averaging-to-its-own-func.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0009-Move-spot-price-historical-averaging-to-its-own-func.patch -------------------------------------------------------------------------------- /master/patches/0010-Allow-independant-EC2-price_multiplier-or-max_spot_p.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0010-Allow-independant-EC2-price_multiplier-or-max_spot_p.patch -------------------------------------------------------------------------------- /master/patches/0011-Properly-handle-a-stale-broker-connection-on-ping.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0011-Properly-handle-a-stale-broker-connection-on-ping.patch -------------------------------------------------------------------------------- /master/patches/0012-Add-debug-logging.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0012-Add-debug-logging.patch -------------------------------------------------------------------------------- /master/patches/0013-Add-instance-id-to-build-properties.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0013-Add-instance-id-to-build-properties.patch -------------------------------------------------------------------------------- /master/patches/0014-Remove-default-values-for-keypair-and-security-names.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0014-Remove-default-values-for-keypair-and-security-names.patch -------------------------------------------------------------------------------- /master/patches/0015-Add-VPC-support-to-EC2LatentBuildSlave.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0015-Add-VPC-support-to-EC2LatentBuildSlave.patch -------------------------------------------------------------------------------- /master/patches/0016-Add-support-for-block-devices-to-EC2LatentBuildSlave.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0016-Add-support-for-block-devices-to-EC2LatentBuildSlave.patch -------------------------------------------------------------------------------- /master/patches/0017-Allow-control-over-environment-logging-MasterShellCo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0017-Allow-control-over-environment-logging-MasterShellCo.patch -------------------------------------------------------------------------------- /master/patches/0018-Better-handling-for-instance-termination.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0018-Better-handling-for-instance-termination.patch -------------------------------------------------------------------------------- /master/patches/0019-Enable-run-time-AMI-determination.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/0019-Enable-run-time-AMI-determination.patch -------------------------------------------------------------------------------- /master/patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/patches/README.md -------------------------------------------------------------------------------- /master/public_html/bg_gradient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/public_html/bg_gradient.jpg -------------------------------------------------------------------------------- /master/public_html/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/public_html/default.css -------------------------------------------------------------------------------- /master/public_html/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/public_html/favicon.ico -------------------------------------------------------------------------------- /master/public_html/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/public_html/robots.txt -------------------------------------------------------------------------------- /master/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/repository.py -------------------------------------------------------------------------------- /master/templates/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/master/templates/README.txt -------------------------------------------------------------------------------- /scripts/ZTS-exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/scripts/ZTS-exceptions.md -------------------------------------------------------------------------------- /scripts/bb-bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/scripts/bb-bootstrap.sh -------------------------------------------------------------------------------- /scripts/bb-build-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/scripts/bb-build-linux.sh -------------------------------------------------------------------------------- /scripts/bb-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/scripts/bb-build.sh -------------------------------------------------------------------------------- /scripts/bb-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/scripts/bb-cleanup.sh -------------------------------------------------------------------------------- /scripts/bb-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/scripts/bb-dependencies.sh -------------------------------------------------------------------------------- /scripts/bb-test-cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/scripts/bb-test-cleanup.sh -------------------------------------------------------------------------------- /scripts/bb-test-prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/scripts/bb-test-prepare.sh -------------------------------------------------------------------------------- /scripts/bb-test-pts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/scripts/bb-test-pts.sh -------------------------------------------------------------------------------- /scripts/bb-test-zfstests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/scripts/bb-test-zfstests.sh -------------------------------------------------------------------------------- /scripts/bb-test-ztest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/scripts/bb-test-ztest.sh -------------------------------------------------------------------------------- /scripts/known-issues.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/scripts/known-issues.sh -------------------------------------------------------------------------------- /scripts/openzfs-merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/scripts/openzfs-merge.sh -------------------------------------------------------------------------------- /scripts/openzfs-tracking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/scripts/openzfs-tracking.sh -------------------------------------------------------------------------------- /scripts/pts-test-profiles.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/scripts/pts-test-profiles.tar.gz -------------------------------------------------------------------------------- /scripts/runurl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openzfs/zfs-buildbot/HEAD/scripts/runurl --------------------------------------------------------------------------------