845c20ad93
* Start using Github Actions Build on windows and linux. Cannot build for macos, since the builders only support xcode 10+ which dropped x86 support. * Build sourcepawn tooling as separate package Upload build artifacts containing only spcomp and the includes. This adds a new `--scripting-only` flag to configure.py which skips everything and goes straight to building spcomp and packaging the include folder with it. * Only run the workflows for the master branch * Split common operations into PackageHelpers file Don't duplicate the code for packaging releases for the tooling-only packages. Instead use a common `PackageHelpers` class which provides the functionality common to both packages. This replaces the explicit list of files to package with a directory scan, so we don't have to list them all. The pgsql sql-init-scripts were missing from the release package before, so they were added here as well. Three scripts from the testsuite were missing from the explicit list (mapdisplayname, floats, findmap), so they're now included. * Fix Python 2 compatibility os.scandir is Python 3 only.
48 lines
2.7 KiB
Python
48 lines
2.7 KiB
Python
# vim: set ts=2 sw=2 tw=99 noet:
|
|
import sys
|
|
try:
|
|
from ambuild2 import run, util
|
|
except:
|
|
try:
|
|
import ambuild
|
|
sys.stderr.write('It looks like you have AMBuild 1 installed, but this project uses AMBuild 2.\n')
|
|
sys.stderr.write('Upgrade to the latest version of AMBuild to continue.\n')
|
|
except:
|
|
sys.stderr.write('AMBuild must be installed to build this project.\n')
|
|
sys.stderr.write('http://www.alliedmods.net/ambuild\n')
|
|
sys.exit(1)
|
|
|
|
# Hack to show a decent upgrade message, which wasn't done until 2.2.
|
|
ambuild_version = getattr(run, 'CURRENT_API', '2.1')
|
|
if ambuild_version.startswith('2.1'):
|
|
sys.stderr.write("AMBuild 2.2 or higher is required; please update\n")
|
|
sys.exit(1)
|
|
|
|
parser = run.BuildParser(sourcePath=sys.path[0], api='2.2')
|
|
parser.options.add_argument('--hl2sdk-root', type=str, dest='hl2sdk_root', default=None,
|
|
help='Root search folder for HL2SDKs')
|
|
parser.options.add_argument('--mysql-path', type=str, dest='mysql_path', default=None,
|
|
help='Path to MySQL 5')
|
|
parser.options.add_argument('--mysql64-path', type=str, dest='mysql64_path', default=None,
|
|
help='Path to 64-bit MySQL 5')
|
|
parser.options.add_argument('--mms-path', type=str, dest='mms_path', default=None,
|
|
help='Path to Metamod:Source')
|
|
parser.options.add_argument('--enable-debug', action='store_const', const='1', dest='debug',
|
|
help='Enable debugging symbols')
|
|
parser.options.add_argument('--enable-optimize', action='store_const', const='1', dest='opt',
|
|
help='Enable optimization')
|
|
parser.options.add_argument('--no-mysql', action='store_false', default=True, dest='hasMySql',
|
|
help='Disable building MySQL extension')
|
|
parser.options.add_argument('-s', '--sdks', default='present', dest='sdks',
|
|
help='Build against specified SDKs; valid args are "none", "all", "present",'
|
|
' or comma-delimited list of engine names')
|
|
parser.options.add_argument('--breakpad-dump', action='store_true', dest='breakpad_dump',
|
|
default=False, help='Dump and upload breakpad symbols')
|
|
parser.options.add_argument('--disable-auto-versioning', action='store_true', dest='disable_auto_versioning',
|
|
default=False, help='Disable the auto versioning script')
|
|
parser.options.add_argument('--targets', type=str, dest='targets', default=None,
|
|
help="Override the target architecture (use commas to separate multiple targets).")
|
|
parser.options.add_argument('--scripting-only', action='store_true', dest='scripting_only', default=False,
|
|
help="Only build and package the files required for scripting in SourcePawn.")
|
|
parser.Configure()
|