Navigation Menu

Skip to content

Commit

Permalink
Builder|Homepage|Linux: Ubuntu build server upgraded to Bionic
Browse files Browse the repository at this point in the history
The prebuilt Ubuntu packages on the Autobuilder will henceforth be
built for/on Bionic.

Other Ubuntu versions still available on Launchpad:
https://launchpad.net/~sjke/+archive/ubuntu/doomsday

Disabled Artful since Launchpad no longer accepts packages for it.
  • Loading branch information
skyjake committed Aug 30, 2018
1 parent 5224dc0 commit 70cd7d9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion distrib/autobuild.py
Expand Up @@ -210,7 +210,7 @@ def build_source_package():
# Check distribution.
system_command("lsb_release -a | perl -n -e 'm/Codename:\s(.+)/ && print $1' > /tmp/distroname")
hostDistro = file('/tmp/distroname', 'rt').read()
distros = ['xenial', 'artful', 'bionic']
distros = ['xenial', 'bionic']

for distro in distros:
os.chdir(os.path.join(builder.config.DISTRIB_DIR))
Expand Down
2 changes: 1 addition & 1 deletion doomsday/cmake/PlatformUnix.cmake
Expand Up @@ -33,7 +33,7 @@ else ()
endif ()

if (CPACK_GENERATOR STREQUAL DEB)
add_definitions (-DDENG_PLATFORM_ID="ubuntu16-${DENG_ARCH}")
add_definitions (-DDENG_PLATFORM_ID="ubuntu18-${DENG_ARCH}")
elseif (CPACK_GENERATOR STREQUAL RPM)
add_definitions (-DDENG_PLATFORM_ID="fedora23-${DENG_ARCH}")
else ()
Expand Down
2 changes: 1 addition & 1 deletion web2/linux.php
Expand Up @@ -26,7 +26,7 @@
<h1>Unstable</h1>
<p>Unstable builds are made automatically every day when changes are committed to the <a href="source">source repository</a>. They contain work-in-progress code and sometimes may crash on you. Change logs can be found in the <a href="/builds">Autobuilder</a>.</p>
<?php
generate_badges('ubuntu16-x86_64', BT_UNSTABLE);
generate_badges('ubuntu18-x86_64', BT_UNSTABLE);
generate_badges('fedora23-x86_64', BT_UNSTABLE);
?>
</article>
Expand Down
1 change: 1 addition & 0 deletions webapi/1/admin/bdb.php
Expand Up @@ -168,6 +168,7 @@ function purge_old_builds()
. "(160, 'win-x86', 'Windows 7', 'windows', 'x86', 32), "
. "(245, 'mac10_10-x86_64', 'macOS 10.10', 'macx', 'x86_64', 64), "
. "(250, 'mac10_8-x86_64', 'macOS 10.8', 'macx', 'x86_64', 64), "
. "(345, 'ubuntu18-x86_64', 'Ubuntu 18.04', 'linux', 'amd64', 64), "
. "(350, 'ubuntu16-x86_64', 'Ubuntu 16.04', 'linux', 'amd64', 64), "
. "(355, 'ubuntu14-x86_64', 'Ubuntu 14.04', 'linux', 'amd64', 64), "
. "(360, 'ubuntu14-i386', 'Ubuntu 14.04', 'linux', 'i386', 32), "
Expand Down
2 changes: 1 addition & 1 deletion webapi/1/dump.php
Expand Up @@ -25,7 +25,7 @@
'win-x64',
'win-x86',
'mac10_10-x86_64',
'ubuntu16-x86_64',
'ubuntu18-x86_64',
'fedora23-x86_64',
'source'
];
Expand Down
2 changes: 1 addition & 1 deletion weblib/utils.inc.php
Expand Up @@ -60,7 +60,7 @@ function user_download_platform()
switch (detect_user_platform()) {
case 'windows': $dl_plat = 'win-x64'; break;
case 'macx': $dl_plat = 'mac10_10-x86_64'; break;
case 'linux': $dl_plat = 'ubuntu16-x86_64'; break;
case 'linux': $dl_plat = 'ubuntu18-x86_64'; break;
default: $dl_plat = 'source'; break;
}
return $dl_plat;
Expand Down

0 comments on commit 70cd7d9

Please sign in to comment.