Skip to content

Commit

Permalink
ALL: Remove old platforms from buildbot
Browse files Browse the repository at this point in the history
  • Loading branch information
lephilousophe committed Mar 18, 2023
1 parent a09f99d commit 6619cfa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 103 deletions.
101 changes: 0 additions & 101 deletions buildbot-config/platforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,26 +266,6 @@ def appletv():
register_platform(platform)
appletv()

def caanoo():
platform = Platform("caanoo")
platform.workerimage = "caanoo"
platform.compatibleBuilds = (builds.ScummVMBuild, )
platform.configureargs.append("--host=caanoo")
platform.buildconfigureargs = {
builds.ScummVMBuild: [ "--enable-plugins", "--default-dynamic", "--enable-vkeybd" ],
}
platform.packaging_cmd = "caanoo-bundle"
platform.built_files = {
builds.ScummVMBuild: [ "release/scummvm-caanoo.tar.bz2" ],
}
platform.archiveext = "tar.bz2"

platform.description = "GamePark Caanoo"
platform.icon = "caanoo"

register_platform(platform)
caanoo()

def debian(name_suffix, image_suffix, host,
package=True,
build_tests=True, run_tests=True, build_devtools=False,
Expand Down Expand Up @@ -390,45 +370,6 @@ def dreamcast():
register_platform(platform)
dreamcast()

def gamecube():
platform = Platform("gamecube")
platform.workerimage = "devkitppc"
platform.compatibleBuilds = (builds.ScummVMBuild, )
platform.configureargs.append("--host=gamecube")
platform.buildconfigureargs = {
builds.ScummVMBuild: [ "--enable-plugins", "--default-dynamic", "--enable-vkeybd" ],
}
platform.packaging_cmd = "wiidist"
platform.built_files = {
builds.ScummVMBuild: [ "wiidist/scummvm" ],
}
platform.archiveext = "tar.xz"

platform.description = "Nintendo Gamecube"
platform.icon = 'gc'

register_platform(platform)
gamecube()

def gcw0():
platform = Platform("gcw0")
platform.compatibleBuilds = (builds.ScummVMBuild, )
platform.configureargs.append("--host=gcw0")
platform.buildconfigureargs = {
builds.ScummVMBuild: [ "--enable-plugins", "--default-dynamic", "--enable-vkeybd" ],
}
platform.packaging_cmd = "gcw-opk"
platform.built_files = {
builds.ScummVMBuild: [ "scummvm.opk" ],
}
platform.archiveext = "tar.bz2"

platform.description = "GCW-Zero"
platform.icon = 'gcw0'

register_platform(platform)
gcw0()

def ios7_arm64():
platform = Platform("ios7-arm64")
platform.workerimage = "iphone"
Expand Down Expand Up @@ -593,28 +534,6 @@ def nds():
register_platform(platform)
nds()

def opendingux():
platform = Platform("opendingux")
platform.compatibleBuilds = (builds.ScummVMBuild, )
platform.configureargs.append("--host=dingux")
platform.buildconfigureargs = {
builds.ScummVMBuild: [ "--enable-plugins", "--default-dynamic", "--enable-vkeybd",
# Our Tremor decoder is too old for use with Theora, we could have a more recent version
# but Theora is quite CPU intensive anyway
"--disable-theoradec" ],
}
platform.packaging_cmd = "dingux-dist"
platform.built_files = {
builds.ScummVMBuild: [ "dingux-dist/scummvm" ],
}
platform.archiveext = "tar.xz"

platform.description = "OpenDingux"
platform.icon = 'dingux'

register_platform(platform)
opendingux()

# OpenDingux environment can't be specified in worker Dockerfile as it's multiple toolchains
# So we must pollute tell it here
def opendingux_beta(target, toolchain, libc, description=None):
Expand Down Expand Up @@ -665,26 +584,6 @@ def opendingux_beta(target, toolchain, libc, description=None):
libc="musl",
description="RS90 & RG99 handhelds")

def openpandora():
platform = Platform("openpandora")
platform.workerimage = "openpandora"
platform.compatibleBuilds = (builds.ScummVMBuild, )
platform.configureargs.append("--host=openpandora")
platform.buildconfigureargs = {
builds.ScummVMBuild: [ "--enable-plugins", "--default-dynamic", "--enable-vkeybd" ],
}
platform.packaging_cmd = "op-pnd"
platform.built_files = {
builds.ScummVMBuild: [ "release/scummvm-op-pnd.tar.bz2" ],
}
platform.archiveext = "tar.bz2"

platform.description = "OpenPandora"
platform.icon = 'openpandora'

register_platform(platform)
openpandora()

def ps3():
platform = Platform("ps3")
platform.compatibleBuilds = (builds.ScummVMBuild, )
Expand Down
6 changes: 4 additions & 2 deletions check-versions/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,8 @@
('./toolchains/caanoo/packages/sdl-net1.2/build.sh', 'SDL_NET'): 'ignore',
('./toolchains/caanoo/packages/tslib/build.sh', 'TSLIB'): 'ignore',
('./toolchains/caanoo/packages/zlib/build.sh', 'ZLIB'): 'ignore',
('./toolchains/caanoo/packages/toolchain/build.sh', 'CT_NG'): crosstool_ng_check,
# This toolchain is deprecated
('./toolchains/caanoo/packages/toolchain/build.sh', 'CT_NG'): 'ignore',

('./toolchains/common/packages/discord-rpc/build.sh', 'DISCORD_RPC'): discord_rpc_check,
('./toolchains/common/packages/fluidlite/build.sh', 'FLUIDLITE'): {
Expand Down Expand Up @@ -423,7 +424,8 @@
('./toolchains/openpandora/packages/x11/build.sh', 'LIBXRENDER'): 'ignore',
('./toolchains/openpandora/packages/x11/build.sh', 'LIBXRANDR'): 'ignore',
('./toolchains/openpandora/packages/zlib/build.sh', 'ZLIB'): 'ignore',
('./toolchains/openpandora/packages/toolchain/build.sh', 'CT_NG'): crosstool_ng_check,
# This toolchain is deprecated
('./toolchains/openpandora/packages/toolchain/build.sh', 'CT_NG'): 'ignore',

('./toolchains/ps3/packages/toolchain/build.sh', 'TOOLCHAIN'): {
'check': 'git commit',
Expand Down

0 comments on commit 6619cfa

Please sign in to comment.