Difference between revisions of "Director buildbot"
Jump to navigation
Jump to search
(The director buildbot is now on john.scummvm.net) |
(→Adding new targets: added alternative) |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 3: | Line 3: | ||
== Updating buildbot == | == Updating buildbot == | ||
ssh john.scummvm.net | ssh john.scummvm.net | ||
sudo /usr/local/bin/stop_buildbot.sh | |||
sudo -u director-buildbot -i | sudo -u director-buildbot -i | ||
cd | |||
cd buildbot-code | |||
git pull | git pull | ||
poetry install --only main | |||
exit | |||
sudo /usr/local/bin/start_buildbot.sh | |||
== Adding new targets == | == Adding new targets == | ||
scp GAME_DIR targets.json john.scummvm.net:/storage/ | scp GAME_DIR targets.json john.scummvm.net:/storage/ | ||
or | |||
sudo cp ~director-buildbot/buildbot-code/targets.json /storage/ | |||
Restart buildbot on john: | Restart buildbot on john: | ||
sudo /usr/local/bin/stop_buildbot.sh | |||
sudo /usr/local/bin/start_buildbot.sh |
Latest revision as of 23:29, 2 April 2023
Buildbot used for Director CI
Updating buildbot
ssh john.scummvm.net
sudo /usr/local/bin/stop_buildbot.sh
sudo -u director-buildbot -i
cd buildbot-code
git pull
poetry install --only main
exit
sudo /usr/local/bin/start_buildbot.sh
Adding new targets
scp GAME_DIR targets.json john.scummvm.net:/storage/
or
sudo cp ~director-buildbot/buildbot-code/targets.json /storage/
Restart buildbot on john:
sudo /usr/local/bin/stop_buildbot.sh
sudo /usr/local/bin/start_buildbot.sh