From f73b7cfe7e14bd2cb6678bc21c0de0ceccea2daf Mon Sep 17 00:00:00 2001 From: OatmealDome Date: Tue, 2 Jul 2024 00:13:36 -0400 Subject: [PATCH] remove outdated references to wip builders --- Buildbot-Overview.md | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/Buildbot-Overview.md b/Buildbot-Overview.md index 481c930..4d942b1 100644 --- a/Buildbot-Overview.md +++ b/Buildbot-Overview.md @@ -1,27 +1,7 @@ -Buildbot is a continuous integration framework that we use to build Dolphin patches on different platforms. Builds can be triggered automatically (e.g., when a whitelisted GitHub user creates/updates a pull request) or manually (e.g., using the Tools/buildbot-try.sh helper script). Ping delroth on IRC to get access. - -## Configuration File - -Use this template to create a `~/.buildbot/options` file: - -``` -try_connect = 'pb' -try_master = 'buildbot.dolphin-emu.org:8031' -try_username = '' -try_password = '' -try_who = '' -try_builders = ['wip-win-x86', 'wip-win-x64', 'wip-osx-x64', 'wip-deb-x64', 'wip-ubu-x64', 'wip-android'] -try_vc = 'git' - -from twisted.spread import banana -banana.SIZE_LIMIT = 100 * 1024 * 1024 -``` - -To override the `try_builders` setting use one or more `--builder` parameters. +Buildbot is a continuous integration framework that we use to build Dolphin patches on different platforms. Builds are triggered automatically (e.g., when a whitelisted GitHub user creates/updates a pull request). ## Links - [Dolphin Buildbot](https://buildbot.dolphin-emu.org/) - [Waterfall view of recent builds](https://buildbot.dolphin-emu.org/#/waterfall) -- [Directory with built packages](https://dl.dolphin-emu.org/wips/) - [Buildbot homepage](https://buildbot.net/)