Skip to content

Commit

Permalink
BUILDBOT: Migrate to Buildbot 4
Browse files Browse the repository at this point in the history
  • Loading branch information
lephilousophe committed Sep 4, 2024
1 parent 883fd79 commit eadd358
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
BUILDBOT_VERSION := 3.11.5
BUILDBOT_VERSION := 4.0.0
BUILDBOT_BASEDIR := buildbot-workdir

BOTTLE_VERSION := 0.12.25
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<div class="container">
<div class="row">
<div class="well">
<h2>ScummVM Buildbot daily builds</h2>
<div class="card bg-light text-dark">
<div class="card-body">
<h2 class="card-title">ScummVM Buildbot daily builds</h2>
Below are download links for daily ScummVM builds automatically generated by our buildbot server.
These builds are totally untested, may not be nicely packaged (i.e. may not run without further configuration) and contain debug information so should be used by developers and testers only.
</div>
</div>
</div>
<div class="row">
<table class="table table-hover table-striped table-condensed">
<tr>
Expand All @@ -23,15 +25,15 @@ These builds are totally untested, may not be nicely packaged (i.e. may not run
{% for build in builds -%}
{% set package = packages[build] -%}
{% if not package -%}
<td> <span class="label label-default">N/A</span> </td>
<td> <span class="badge badge-secondary">N/A</span> </td>
{% else -%}
{% set daily_build = package | to_daily_build -%}
{% if not daily_build -%}
<td> <span class="label label-danger">Missing</span> </td>
<td> <span class="badge badge-danger">Missing</span> </td>
{% elif not daily_build.revision -%}
<td> <a class="label label-warning" href="{{daily_build.url}}">Unknown</a> </td>
<td> <a class="badge badge-warning" href="{{daily_build.url}}">Unknown</a> </td>
{% else -%}
<td> <a class="label label-success" href="{{daily_build.url}}">{{ daily_build.revision }}</a> </td>
<td> <a class="badge badge-success" href="{{daily_build.url}}">{{ daily_build.revision }}</a> </td>
{% endif -%}
{% endif -%}
{% endfor -%}
Expand Down
1 change: 0 additions & 1 deletion check-versions/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@
'check': 'git tag',
'repository': 'https://github.com/buildbot/buildbot.git',
'prefix': 'v',
'pattern': r'v3\.',
'exclude pattern': r'.*(b|rc)\d+'
},
('./Makefile', 'BOTTLE'): {
Expand Down

0 comments on commit eadd358

Please sign in to comment.