Skip to content

Commit

Permalink
buildbot: use new main branch name (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
pktpls authored May 29, 2024
1 parent af7f370 commit 75f722f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions roles/buildbot/files/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def packagesConfig(c, config):
name="branch",
label="git branch",
choices=config["packages_branches"],
default="master",
default=config["packages_branches"][0],
strict=True,
),
revision=util.FixedParameter(name="revision", default=""),
Expand Down Expand Up @@ -101,7 +101,7 @@ def archTriggerStep(arch):
@util.renderer
def branchToFalterBranch(props):
o2f = {
"master": "snapshot",
"main": "snapshot",
"openwrt-23.05": "1.4.0-snapshot",
"openwrt-22.03": "1.3.0-snapshot",
"openwrt-21.02": "1.2.3-snapshot",
Expand Down
4 changes: 2 additions & 2 deletions roles/buildbot/templates/config.py.j2
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ config = {

# Repository-URL for the builter script.
'builter_repo': 'https://github.com/freifunk-berlin/falter-builter.git',
'builter_branches': ['master', 'testbuildbot'],
'builter_branches': ['main', 'testbuildbot'],
'builter_releaseBranches': ['snapshot', '1.4.0-snapshot', '1.3.0-snapshot', '1.2.3-snapshot', 'testbuildbot'],

# URL for the packages repo. The branches map to the branches selectable
# in the force scheduler
'packages_repo': 'https://github.com/freifunk-berlin/falter-packages.git',
'packages_branches': ['master','openwrt-23.05','openwrt-22.03','openwrt-21.02','testbuildbot'],
'packages_branches': ['main','openwrt-23.05','openwrt-22.03','openwrt-21.02','testbuildbot'],

# Version of the Alpine Linux container: edge, 3.17, 3.16, ...
'alpineVersion': '3.18',
Expand Down

0 comments on commit 75f722f

Please sign in to comment.