From ac107143329b15f52a98cdb1f40688e66e264a67 Mon Sep 17 00:00:00 2001 From: Daniel Nelson Date: Tue, 23 Jul 2019 13:20:39 -0700 Subject: [PATCH] Add Linux mips build (#6153) --- scripts/build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build.py b/scripts/build.py index 5f2bcf6b5..dbca3a50d 100755 --- a/scripts/build.py +++ b/scripts/build.py @@ -89,7 +89,7 @@ targets = { supported_builds = { "windows": [ "amd64", "i386" ], - "linux": [ "amd64", "i386", "armhf", "armel", "arm64", "static_amd64", "s390x", "mipsel"], + "linux": [ "amd64", "i386", "armhf", "armel", "arm64", "static_amd64", "s390x", "mipsel", "mips"], "freebsd": [ "amd64", "i386" ] } @@ -574,7 +574,7 @@ def package(build_output, pkg_name, version, nightly=False, iteration=1, static= shutil.copy(fr, to) for package_type in supported_packages[platform]: - if package_type == "rpm" and arch == "mipsel": + if package_type == "rpm" and arch in ["mipsel", "mips"]: continue # Package the directory structure for each package type for the platform logging.debug("Packaging directory '{}' as '{}'.".format(build_root, package_type))