Add statically-linked amd64 builds to default build targets.
Remove version and iteration from root packaging folder. (#1318) closes #1201
This commit is contained in:
parent
3ff184c061
commit
94f952787f
|
@ -85,7 +85,7 @@ targets = {
|
||||||
supported_builds = {
|
supported_builds = {
|
||||||
"darwin": [ "amd64" ],
|
"darwin": [ "amd64" ],
|
||||||
"windows": [ "amd64" ],
|
"windows": [ "amd64" ],
|
||||||
"linux": [ "amd64", "i386", "armhf", "armel", "arm64" ],
|
"linux": [ "amd64", "i386", "armhf", "armel", "arm64", "static_amd64" ],
|
||||||
"freebsd": [ "amd64" ]
|
"freebsd": [ "amd64" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -553,7 +553,7 @@ def package(build_output, pkg_name, version, nightly=False, iteration=1, static=
|
||||||
build_root = os.path.join(tmp_build_dir,
|
build_root = os.path.join(tmp_build_dir,
|
||||||
platform,
|
platform,
|
||||||
arch,
|
arch,
|
||||||
'{}-{}-{}'.format(PACKAGE_NAME, version, iteration))
|
PACKAGE_NAME)
|
||||||
os.makedirs(build_root)
|
os.makedirs(build_root)
|
||||||
|
|
||||||
# Copy packaging scripts to build directory
|
# Copy packaging scripts to build directory
|
||||||
|
|
Loading…
Reference in New Issue