2015-06-14 22:30:36 +03:00
|
|
|
#!/usr/bin/env bash
|
2014-05-23 14:15:48 +04:00
|
|
|
|
2017-07-17 20:33:10 +03:00
|
|
|
set -euo pipefail
|
2018-12-21 03:52:15 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# variables
|
|
|
|
#
|
|
|
|
|
|
|
|
RESET="\033[0m"
|
|
|
|
RED="\033[0;31m"
|
|
|
|
YELLOW="\033[0;33m"
|
|
|
|
MAGENTA="\033[0;95m"
|
2017-07-17 20:33:10 +03:00
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
2018-12-21 03:52:15 +03:00
|
|
|
verbose=false
|
|
|
|
update=false
|
|
|
|
reinstall=false
|
|
|
|
lockfile_path="$DIR/korebuild-lock.txt"
|
|
|
|
config_file="$DIR/korebuild.json"
|
|
|
|
channel='master'
|
|
|
|
tools_source='https://aspnetcore.blob.core.windows.net/buildtools'
|
Add new build.cmd/sh options for suppressing restore, NodeJS, setting target arch and OS name, and more (#7137)
Add new command line parameters for working with the project:
* `-NoBuild`, `-NoRestore` - these already existed, but users found it hard to discover this powershell syntax: '-build:$false'
* `-Arch`/`--arch` - set the target CPU architecture to build. Defaults to x64
* `--os-name` - on non-Windows builds, manually specify if the build should target Alpine. generic Linux, or MacOS
* Rename flags used to build specific project types. The pattern now is `--build-$(group)` or `--no-build-$(group)` (In PowerShell its `-Build$(Group)` or `-NoBuild$(Group). Example: -NoBuildJava
Changes to build definitions:
* Update the ci build definition to build all supported architectures
* Support publishing multiple artifacts per job
Other changes:
* `-NoBuild` implies `-NoRestore`
* Add new properties, `TargetArchitecture`, `TargetOsName`, and `TargetRuntimeIdentifier`
* Replace usages of `SharedFxRid` with these new properties
* To make `--no-build-nodejs` actually work, replaced Components.Browser.JS.csproj with Components.Browser.JS.npmproj
* Fix errors when building for win-arm on a clean machine
* Fix a few other project errors, like using the wrong syntax for DefaultItemExcludes, or using the wrong Platform value for x86
2019-02-01 02:47:47 +03:00
|
|
|
target_os_name=''
|
2018-12-21 03:52:15 +03:00
|
|
|
ci=false
|
|
|
|
run_restore=true
|
|
|
|
run_build=true
|
|
|
|
run_pack=false
|
|
|
|
run_tests=false
|
|
|
|
build_all=false
|
2019-02-14 18:25:13 +03:00
|
|
|
build_deps=true
|
Add new build.cmd/sh options for suppressing restore, NodeJS, setting target arch and OS name, and more (#7137)
Add new command line parameters for working with the project:
* `-NoBuild`, `-NoRestore` - these already existed, but users found it hard to discover this powershell syntax: '-build:$false'
* `-Arch`/`--arch` - set the target CPU architecture to build. Defaults to x64
* `--os-name` - on non-Windows builds, manually specify if the build should target Alpine. generic Linux, or MacOS
* Rename flags used to build specific project types. The pattern now is `--build-$(group)` or `--no-build-$(group)` (In PowerShell its `-Build$(Group)` or `-NoBuild$(Group). Example: -NoBuildJava
Changes to build definitions:
* Update the ci build definition to build all supported architectures
* Support publishing multiple artifacts per job
Other changes:
* `-NoBuild` implies `-NoRestore`
* Add new properties, `TargetArchitecture`, `TargetOsName`, and `TargetRuntimeIdentifier`
* Replace usages of `SharedFxRid` with these new properties
* To make `--no-build-nodejs` actually work, replaced Components.Browser.JS.csproj with Components.Browser.JS.npmproj
* Fix errors when building for win-arm on a clean machine
* Fix a few other project errors, like using the wrong syntax for DefaultItemExcludes, or using the wrong Platform value for x86
2019-02-01 02:47:47 +03:00
|
|
|
build_managed=''
|
|
|
|
build_native=''
|
|
|
|
build_nodejs=''
|
|
|
|
build_java=''
|
2018-12-21 03:52:15 +03:00
|
|
|
build_projects=''
|
Add new build.cmd/sh options for suppressing restore, NodeJS, setting target arch and OS name, and more (#7137)
Add new command line parameters for working with the project:
* `-NoBuild`, `-NoRestore` - these already existed, but users found it hard to discover this powershell syntax: '-build:$false'
* `-Arch`/`--arch` - set the target CPU architecture to build. Defaults to x64
* `--os-name` - on non-Windows builds, manually specify if the build should target Alpine. generic Linux, or MacOS
* Rename flags used to build specific project types. The pattern now is `--build-$(group)` or `--no-build-$(group)` (In PowerShell its `-Build$(Group)` or `-NoBuild$(Group). Example: -NoBuildJava
Changes to build definitions:
* Update the ci build definition to build all supported architectures
* Support publishing multiple artifacts per job
Other changes:
* `-NoBuild` implies `-NoRestore`
* Add new properties, `TargetArchitecture`, `TargetOsName`, and `TargetRuntimeIdentifier`
* Replace usages of `SharedFxRid` with these new properties
* To make `--no-build-nodejs` actually work, replaced Components.Browser.JS.csproj with Components.Browser.JS.npmproj
* Fix errors when building for win-arm on a clean machine
* Fix a few other project errors, like using the wrong syntax for DefaultItemExcludes, or using the wrong Platform value for x86
2019-02-01 02:47:47 +03:00
|
|
|
target_arch='x64'
|
|
|
|
|
|
|
|
if [ "$(uname)" = "Darwin" ]; then
|
|
|
|
target_os_name='osx'
|
|
|
|
else
|
|
|
|
target_os_name='linux'
|
|
|
|
fi
|
|
|
|
|
2018-12-21 03:52:15 +03:00
|
|
|
msbuild_args=()
|
|
|
|
|
|
|
|
#
|
|
|
|
# Functions
|
|
|
|
#
|
|
|
|
__usage() {
|
|
|
|
echo "Usage: $(basename "${BASH_SOURCE[0]}") [options] [[--] <Arguments>...]
|
|
|
|
|
|
|
|
Arguments:
|
Add new build.cmd/sh options for suppressing restore, NodeJS, setting target arch and OS name, and more (#7137)
Add new command line parameters for working with the project:
* `-NoBuild`, `-NoRestore` - these already existed, but users found it hard to discover this powershell syntax: '-build:$false'
* `-Arch`/`--arch` - set the target CPU architecture to build. Defaults to x64
* `--os-name` - on non-Windows builds, manually specify if the build should target Alpine. generic Linux, or MacOS
* Rename flags used to build specific project types. The pattern now is `--build-$(group)` or `--no-build-$(group)` (In PowerShell its `-Build$(Group)` or `-NoBuild$(Group). Example: -NoBuildJava
Changes to build definitions:
* Update the ci build definition to build all supported architectures
* Support publishing multiple artifacts per job
Other changes:
* `-NoBuild` implies `-NoRestore`
* Add new properties, `TargetArchitecture`, `TargetOsName`, and `TargetRuntimeIdentifier`
* Replace usages of `SharedFxRid` with these new properties
* To make `--no-build-nodejs` actually work, replaced Components.Browser.JS.csproj with Components.Browser.JS.npmproj
* Fix errors when building for win-arm on a clean machine
* Fix a few other project errors, like using the wrong syntax for DefaultItemExcludes, or using the wrong Platform value for x86
2019-02-01 02:47:47 +03:00
|
|
|
<Arguments>... Arguments passed to the command. Variable number of arguments allowed.
|
2018-12-21 03:52:15 +03:00
|
|
|
|
|
|
|
Options:
|
Add new build.cmd/sh options for suppressing restore, NodeJS, setting target arch and OS name, and more (#7137)
Add new command line parameters for working with the project:
* `-NoBuild`, `-NoRestore` - these already existed, but users found it hard to discover this powershell syntax: '-build:$false'
* `-Arch`/`--arch` - set the target CPU architecture to build. Defaults to x64
* `--os-name` - on non-Windows builds, manually specify if the build should target Alpine. generic Linux, or MacOS
* Rename flags used to build specific project types. The pattern now is `--build-$(group)` or `--no-build-$(group)` (In PowerShell its `-Build$(Group)` or `-NoBuild$(Group). Example: -NoBuildJava
Changes to build definitions:
* Update the ci build definition to build all supported architectures
* Support publishing multiple artifacts per job
Other changes:
* `-NoBuild` implies `-NoRestore`
* Add new properties, `TargetArchitecture`, `TargetOsName`, and `TargetRuntimeIdentifier`
* Replace usages of `SharedFxRid` with these new properties
* To make `--no-build-nodejs` actually work, replaced Components.Browser.JS.csproj with Components.Browser.JS.npmproj
* Fix errors when building for win-arm on a clean machine
* Fix a few other project errors, like using the wrong syntax for DefaultItemExcludes, or using the wrong Platform value for x86
2019-02-01 02:47:47 +03:00
|
|
|
--arch The CPU architecture to build for (x64, arm, arm64). Default=$target_arch
|
|
|
|
--os-name The base runtime identifier to build for (linux, osx, linux-musl). Default=$target_os_name
|
|
|
|
|
|
|
|
--[no-]restore Run restore.
|
|
|
|
--[no-]build Compile projects. (Implies --no-restore)
|
|
|
|
--[no-]pack Produce packages.
|
|
|
|
--[no-]test Run tests.
|
2018-12-21 03:52:15 +03:00
|
|
|
|
Add new build.cmd/sh options for suppressing restore, NodeJS, setting target arch and OS name, and more (#7137)
Add new command line parameters for working with the project:
* `-NoBuild`, `-NoRestore` - these already existed, but users found it hard to discover this powershell syntax: '-build:$false'
* `-Arch`/`--arch` - set the target CPU architecture to build. Defaults to x64
* `--os-name` - on non-Windows builds, manually specify if the build should target Alpine. generic Linux, or MacOS
* Rename flags used to build specific project types. The pattern now is `--build-$(group)` or `--no-build-$(group)` (In PowerShell its `-Build$(Group)` or `-NoBuild$(Group). Example: -NoBuildJava
Changes to build definitions:
* Update the ci build definition to build all supported architectures
* Support publishing multiple artifacts per job
Other changes:
* `-NoBuild` implies `-NoRestore`
* Add new properties, `TargetArchitecture`, `TargetOsName`, and `TargetRuntimeIdentifier`
* Replace usages of `SharedFxRid` with these new properties
* To make `--no-build-nodejs` actually work, replaced Components.Browser.JS.csproj with Components.Browser.JS.npmproj
* Fix errors when building for win-arm on a clean machine
* Fix a few other project errors, like using the wrong syntax for DefaultItemExcludes, or using the wrong Platform value for x86
2019-02-01 02:47:47 +03:00
|
|
|
--projects A list of projects to build. (Must be an absolute path.)
|
|
|
|
Globbing patterns are supported, such as \"$(pwd)/**/*.csproj\".
|
2019-02-14 18:25:13 +03:00
|
|
|
--no-build-deps Do not build project-to-project references and only build the specified project.
|
2018-12-21 03:52:15 +03:00
|
|
|
|
Add new build.cmd/sh options for suppressing restore, NodeJS, setting target arch and OS name, and more (#7137)
Add new command line parameters for working with the project:
* `-NoBuild`, `-NoRestore` - these already existed, but users found it hard to discover this powershell syntax: '-build:$false'
* `-Arch`/`--arch` - set the target CPU architecture to build. Defaults to x64
* `--os-name` - on non-Windows builds, manually specify if the build should target Alpine. generic Linux, or MacOS
* Rename flags used to build specific project types. The pattern now is `--build-$(group)` or `--no-build-$(group)` (In PowerShell its `-Build$(Group)` or `-NoBuild$(Group). Example: -NoBuildJava
Changes to build definitions:
* Update the ci build definition to build all supported architectures
* Support publishing multiple artifacts per job
Other changes:
* `-NoBuild` implies `-NoRestore`
* Add new properties, `TargetArchitecture`, `TargetOsName`, and `TargetRuntimeIdentifier`
* Replace usages of `SharedFxRid` with these new properties
* To make `--no-build-nodejs` actually work, replaced Components.Browser.JS.csproj with Components.Browser.JS.npmproj
* Fix errors when building for win-arm on a clean machine
* Fix a few other project errors, like using the wrong syntax for DefaultItemExcludes, or using the wrong Platform value for x86
2019-02-01 02:47:47 +03:00
|
|
|
--all Build all project types.
|
|
|
|
--[no-]build-native Build native projects (C, C++).
|
|
|
|
--[no-]build-managed Build managed projects (C#, F#, VB).
|
|
|
|
--[no-]build-nodejs Build NodeJS projects (TypeScript, JS).
|
|
|
|
--[no-]build-java Build Java projects.
|
2018-12-21 03:52:15 +03:00
|
|
|
|
Add new build.cmd/sh options for suppressing restore, NodeJS, setting target arch and OS name, and more (#7137)
Add new command line parameters for working with the project:
* `-NoBuild`, `-NoRestore` - these already existed, but users found it hard to discover this powershell syntax: '-build:$false'
* `-Arch`/`--arch` - set the target CPU architecture to build. Defaults to x64
* `--os-name` - on non-Windows builds, manually specify if the build should target Alpine. generic Linux, or MacOS
* Rename flags used to build specific project types. The pattern now is `--build-$(group)` or `--no-build-$(group)` (In PowerShell its `-Build$(Group)` or `-NoBuild$(Group). Example: -NoBuildJava
Changes to build definitions:
* Update the ci build definition to build all supported architectures
* Support publishing multiple artifacts per job
Other changes:
* `-NoBuild` implies `-NoRestore`
* Add new properties, `TargetArchitecture`, `TargetOsName`, and `TargetRuntimeIdentifier`
* Replace usages of `SharedFxRid` with these new properties
* To make `--no-build-nodejs` actually work, replaced Components.Browser.JS.csproj with Components.Browser.JS.npmproj
* Fix errors when building for win-arm on a clean machine
* Fix a few other project errors, like using the wrong syntax for DefaultItemExcludes, or using the wrong Platform value for x86
2019-02-01 02:47:47 +03:00
|
|
|
--ci Apply CI specific settings and environment variables.
|
|
|
|
--verbose Show verbose output.
|
2018-12-21 03:52:15 +03:00
|
|
|
|
|
|
|
Description:
|
|
|
|
This build script installs required tools and runs an MSBuild command on this repository
|
|
|
|
This script can be used to invoke various targets, such as targets to produce packages
|
|
|
|
build projects, run tests, and generate code.
|
|
|
|
"
|
|
|
|
|
|
|
|
if [[ "${1:-}" != '--no-exit' ]]; then
|
|
|
|
exit 2
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
get_korebuild() {
|
|
|
|
local version
|
|
|
|
if [ ! -f "$lockfile_path" ]; then
|
|
|
|
__get_remote_file "$tools_source/korebuild/channels/$channel/latest.txt" "$lockfile_path"
|
|
|
|
fi
|
|
|
|
version="$(grep 'version:*' -m 1 "$lockfile_path")"
|
|
|
|
if [[ "$version" == '' ]]; then
|
|
|
|
__error "Failed to parse version from $lockfile_path. Expected a line that begins with 'version:'"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
version="$(echo "${version#version:}" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')"
|
|
|
|
local korebuild_path="$DOTNET_HOME/buildtools/korebuild/$version"
|
|
|
|
|
|
|
|
{
|
|
|
|
if [ ! -d "$korebuild_path" ]; then
|
|
|
|
mkdir -p "$korebuild_path"
|
|
|
|
local remote_path="$tools_source/korebuild/artifacts/$version/korebuild.$version.zip"
|
|
|
|
tmpfile="$(mktemp)"
|
|
|
|
echo -e "${MAGENTA}Downloading KoreBuild ${version}${RESET}"
|
|
|
|
if __get_remote_file "$remote_path" "$tmpfile"; then
|
|
|
|
unzip -q -d "$korebuild_path" "$tmpfile"
|
|
|
|
fi
|
|
|
|
rm "$tmpfile" || true
|
|
|
|
fi
|
|
|
|
|
|
|
|
source "$korebuild_path/KoreBuild.sh"
|
|
|
|
} || {
|
|
|
|
if [ -d "$korebuild_path" ]; then
|
|
|
|
echo "Cleaning up after failed installation"
|
|
|
|
rm -rf "$korebuild_path" || true
|
|
|
|
fi
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
__error() {
|
|
|
|
echo -e "${RED}error: $*${RESET}" 1>&2
|
|
|
|
}
|
|
|
|
|
|
|
|
__warn() {
|
|
|
|
echo -e "${YELLOW}warning: $*${RESET}"
|
|
|
|
}
|
|
|
|
|
|
|
|
__machine_has() {
|
|
|
|
hash "$1" > /dev/null 2>&1
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
|
|
|
__get_remote_file() {
|
|
|
|
local remote_path=$1
|
|
|
|
local local_path=$2
|
|
|
|
|
|
|
|
if [[ "$remote_path" != 'http'* ]]; then
|
|
|
|
cp "$remote_path" "$local_path"
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
local failed=false
|
|
|
|
if __machine_has wget; then
|
|
|
|
wget --tries 10 --quiet -O "$local_path" "$remote_path" || failed=true
|
|
|
|
else
|
|
|
|
failed=true
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$failed" = true ] && __machine_has curl; then
|
|
|
|
failed=false
|
|
|
|
curl --retry 10 -sSL -f --create-dirs -o "$local_path" "$remote_path" || failed=true
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$failed" = true ]; then
|
|
|
|
__error "Download failed: $remote_path" 1>&2
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# main
|
|
|
|
#
|
|
|
|
|
|
|
|
while [[ $# -gt 0 ]]; do
|
|
|
|
case $1 in
|
|
|
|
-\?|-h|--help)
|
|
|
|
__usage --no-exit
|
|
|
|
exit 0
|
|
|
|
;;
|
Add new build.cmd/sh options for suppressing restore, NodeJS, setting target arch and OS name, and more (#7137)
Add new command line parameters for working with the project:
* `-NoBuild`, `-NoRestore` - these already existed, but users found it hard to discover this powershell syntax: '-build:$false'
* `-Arch`/`--arch` - set the target CPU architecture to build. Defaults to x64
* `--os-name` - on non-Windows builds, manually specify if the build should target Alpine. generic Linux, or MacOS
* Rename flags used to build specific project types. The pattern now is `--build-$(group)` or `--no-build-$(group)` (In PowerShell its `-Build$(Group)` or `-NoBuild$(Group). Example: -NoBuildJava
Changes to build definitions:
* Update the ci build definition to build all supported architectures
* Support publishing multiple artifacts per job
Other changes:
* `-NoBuild` implies `-NoRestore`
* Add new properties, `TargetArchitecture`, `TargetOsName`, and `TargetRuntimeIdentifier`
* Replace usages of `SharedFxRid` with these new properties
* To make `--no-build-nodejs` actually work, replaced Components.Browser.JS.csproj with Components.Browser.JS.npmproj
* Fix errors when building for win-arm on a clean machine
* Fix a few other project errors, like using the wrong syntax for DefaultItemExcludes, or using the wrong Platform value for x86
2019-02-01 02:47:47 +03:00
|
|
|
--arch)
|
|
|
|
shift
|
|
|
|
target_arch="${1:-}"
|
|
|
|
[ -z "$target_arch" ] && __error "Missing value for parameter --arch" && __usage
|
|
|
|
;;
|
|
|
|
--os-name)
|
|
|
|
shift
|
|
|
|
target_os_name="${1:-}"
|
|
|
|
[ -z "$target_os_name" ] && __error "Missing value for parameter --os-name" && __usage
|
|
|
|
;;
|
2018-12-21 03:52:15 +03:00
|
|
|
--restore|-[Rr]estore)
|
|
|
|
run_restore=true
|
|
|
|
;;
|
|
|
|
--no-restore)
|
|
|
|
run_restore=false
|
|
|
|
;;
|
|
|
|
--build|-[Bb]build)
|
|
|
|
run_build=true
|
|
|
|
;;
|
|
|
|
--no-build)
|
|
|
|
run_build=false
|
Add new build.cmd/sh options for suppressing restore, NodeJS, setting target arch and OS name, and more (#7137)
Add new command line parameters for working with the project:
* `-NoBuild`, `-NoRestore` - these already existed, but users found it hard to discover this powershell syntax: '-build:$false'
* `-Arch`/`--arch` - set the target CPU architecture to build. Defaults to x64
* `--os-name` - on non-Windows builds, manually specify if the build should target Alpine. generic Linux, or MacOS
* Rename flags used to build specific project types. The pattern now is `--build-$(group)` or `--no-build-$(group)` (In PowerShell its `-Build$(Group)` or `-NoBuild$(Group). Example: -NoBuildJava
Changes to build definitions:
* Update the ci build definition to build all supported architectures
* Support publishing multiple artifacts per job
Other changes:
* `-NoBuild` implies `-NoRestore`
* Add new properties, `TargetArchitecture`, `TargetOsName`, and `TargetRuntimeIdentifier`
* Replace usages of `SharedFxRid` with these new properties
* To make `--no-build-nodejs` actually work, replaced Components.Browser.JS.csproj with Components.Browser.JS.npmproj
* Fix errors when building for win-arm on a clean machine
* Fix a few other project errors, like using the wrong syntax for DefaultItemExcludes, or using the wrong Platform value for x86
2019-02-01 02:47:47 +03:00
|
|
|
# --no-build implies --no-restore
|
|
|
|
run_restore=false
|
2018-12-21 03:52:15 +03:00
|
|
|
;;
|
2019-02-14 18:25:13 +03:00
|
|
|
--no-build-deps)
|
|
|
|
build_deps=false
|
|
|
|
;;
|
2018-12-21 03:52:15 +03:00
|
|
|
--pack|-[Pp]ack)
|
|
|
|
run_pack=true
|
|
|
|
;;
|
|
|
|
--no-pack)
|
|
|
|
run_pack=false
|
|
|
|
;;
|
|
|
|
--test|-[Tt]est)
|
|
|
|
run_tests=true
|
|
|
|
;;
|
|
|
|
--no-test)
|
|
|
|
run_tests=false
|
|
|
|
;;
|
|
|
|
--projects|-[Pp]rojects)
|
|
|
|
shift
|
|
|
|
build_projects="${1:-}"
|
|
|
|
[ -z "$build_projects" ] && __error "Missing value for parameter --projects" && __usage
|
|
|
|
;;
|
|
|
|
--all|-[Aa]ll)
|
|
|
|
build_all=true
|
|
|
|
;;
|
Add new build.cmd/sh options for suppressing restore, NodeJS, setting target arch and OS name, and more (#7137)
Add new command line parameters for working with the project:
* `-NoBuild`, `-NoRestore` - these already existed, but users found it hard to discover this powershell syntax: '-build:$false'
* `-Arch`/`--arch` - set the target CPU architecture to build. Defaults to x64
* `--os-name` - on non-Windows builds, manually specify if the build should target Alpine. generic Linux, or MacOS
* Rename flags used to build specific project types. The pattern now is `--build-$(group)` or `--no-build-$(group)` (In PowerShell its `-Build$(Group)` or `-NoBuild$(Group). Example: -NoBuildJava
Changes to build definitions:
* Update the ci build definition to build all supported architectures
* Support publishing multiple artifacts per job
Other changes:
* `-NoBuild` implies `-NoRestore`
* Add new properties, `TargetArchitecture`, `TargetOsName`, and `TargetRuntimeIdentifier`
* Replace usages of `SharedFxRid` with these new properties
* To make `--no-build-nodejs` actually work, replaced Components.Browser.JS.csproj with Components.Browser.JS.npmproj
* Fix errors when building for win-arm on a clean machine
* Fix a few other project errors, like using the wrong syntax for DefaultItemExcludes, or using the wrong Platform value for x86
2019-02-01 02:47:47 +03:00
|
|
|
--build-managed|-BuildManaged)
|
2018-12-21 03:52:15 +03:00
|
|
|
build_managed=true
|
|
|
|
;;
|
Add new build.cmd/sh options for suppressing restore, NodeJS, setting target arch and OS name, and more (#7137)
Add new command line parameters for working with the project:
* `-NoBuild`, `-NoRestore` - these already existed, but users found it hard to discover this powershell syntax: '-build:$false'
* `-Arch`/`--arch` - set the target CPU architecture to build. Defaults to x64
* `--os-name` - on non-Windows builds, manually specify if the build should target Alpine. generic Linux, or MacOS
* Rename flags used to build specific project types. The pattern now is `--build-$(group)` or `--no-build-$(group)` (In PowerShell its `-Build$(Group)` or `-NoBuild$(Group). Example: -NoBuildJava
Changes to build definitions:
* Update the ci build definition to build all supported architectures
* Support publishing multiple artifacts per job
Other changes:
* `-NoBuild` implies `-NoRestore`
* Add new properties, `TargetArchitecture`, `TargetOsName`, and `TargetRuntimeIdentifier`
* Replace usages of `SharedFxRid` with these new properties
* To make `--no-build-nodejs` actually work, replaced Components.Browser.JS.csproj with Components.Browser.JS.npmproj
* Fix errors when building for win-arm on a clean machine
* Fix a few other project errors, like using the wrong syntax for DefaultItemExcludes, or using the wrong Platform value for x86
2019-02-01 02:47:47 +03:00
|
|
|
--no-build-managed|-NoBuildManaged)
|
|
|
|
build_managed=false
|
|
|
|
;;
|
|
|
|
--build-nodejs|-BuildNodeJs)
|
2018-12-21 03:52:15 +03:00
|
|
|
build_nodejs=true
|
|
|
|
;;
|
Add new build.cmd/sh options for suppressing restore, NodeJS, setting target arch and OS name, and more (#7137)
Add new command line parameters for working with the project:
* `-NoBuild`, `-NoRestore` - these already existed, but users found it hard to discover this powershell syntax: '-build:$false'
* `-Arch`/`--arch` - set the target CPU architecture to build. Defaults to x64
* `--os-name` - on non-Windows builds, manually specify if the build should target Alpine. generic Linux, or MacOS
* Rename flags used to build specific project types. The pattern now is `--build-$(group)` or `--no-build-$(group)` (In PowerShell its `-Build$(Group)` or `-NoBuild$(Group). Example: -NoBuildJava
Changes to build definitions:
* Update the ci build definition to build all supported architectures
* Support publishing multiple artifacts per job
Other changes:
* `-NoBuild` implies `-NoRestore`
* Add new properties, `TargetArchitecture`, `TargetOsName`, and `TargetRuntimeIdentifier`
* Replace usages of `SharedFxRid` with these new properties
* To make `--no-build-nodejs` actually work, replaced Components.Browser.JS.csproj with Components.Browser.JS.npmproj
* Fix errors when building for win-arm on a clean machine
* Fix a few other project errors, like using the wrong syntax for DefaultItemExcludes, or using the wrong Platform value for x86
2019-02-01 02:47:47 +03:00
|
|
|
--no-build-nodejs|-NoBuildNodeJs)
|
|
|
|
build_nodejs=false
|
|
|
|
;;
|
|
|
|
--build-java|-BuildJava)
|
|
|
|
build_java=true
|
|
|
|
;;
|
|
|
|
--no-build-java|-NoBuildJava)
|
|
|
|
build_java=false
|
|
|
|
;;
|
|
|
|
--build-native|-BuildNative)
|
|
|
|
build_native=true
|
|
|
|
;;
|
|
|
|
--no-build-native|-NoBuildNative)
|
|
|
|
build_native=false
|
2018-12-21 03:52:15 +03:00
|
|
|
;;
|
|
|
|
--ci|-[Cc][Ii])
|
|
|
|
ci=true
|
|
|
|
;;
|
|
|
|
--verbose|-[Vv]erbose)
|
|
|
|
verbose=true
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
msbuild_args[${#msbuild_args[*]}]="$1"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
|
|
|
if ! __machine_has unzip; then
|
|
|
|
__error 'Missing required command: unzip'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! __machine_has curl && ! __machine_has wget; then
|
|
|
|
__error 'Missing required command. Either wget or curl is required.'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f "$config_file" ]; then
|
|
|
|
if __machine_has jq ; then
|
|
|
|
if jq '.' "$config_file" >/dev/null ; then
|
|
|
|
config_channel="$(jq -r 'select(.channel!=null) | .channel' "$config_file")"
|
|
|
|
config_tools_source="$(jq -r 'select(.toolsSource!=null) | .toolsSource' "$config_file")"
|
|
|
|
else
|
|
|
|
__error "$config_file is invalid JSON. Its settings will be ignored."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
elif __machine_has python ; then
|
|
|
|
if python -c "import json,codecs;obj=json.load(codecs.open('$config_file', 'r', 'utf-8-sig'))" >/dev/null ; then
|
|
|
|
config_channel="$(python -c "import json,codecs;obj=json.load(codecs.open('$config_file', 'r', 'utf-8-sig'));print(obj['channel'] if 'channel' in obj else '')")"
|
|
|
|
config_tools_source="$(python -c "import json,codecs;obj=json.load(codecs.open('$config_file', 'r', 'utf-8-sig'));print(obj['toolsSource'] if 'toolsSource' in obj else '')")"
|
|
|
|
else
|
|
|
|
__error "$config_file is invalid JSON. Its settings will be ignored."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
__error 'Missing required command: jq or python. Could not parse the JSON file. Its settings will be ignored.'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
[ ! -z "${config_channel:-}" ] && channel="$config_channel"
|
|
|
|
[ ! -z "${config_tools_source:-}" ] && tools_source="$config_tools_source"
|
|
|
|
fi
|
|
|
|
|
2019-02-06 22:20:49 +03:00
|
|
|
export DOTNET_HOME="$DIR/.dotnet"
|
2018-12-21 03:52:15 +03:00
|
|
|
|
|
|
|
get_korebuild
|
|
|
|
|
|
|
|
if [ "$build_all" = true ]; then
|
|
|
|
msbuild_args[${#msbuild_args[*]}]="-p:BuildAllProjects=true"
|
|
|
|
elif [ ! -z "$build_projects" ]; then
|
|
|
|
msbuild_args[${#msbuild_args[*]}]="-p:Projects=$build_projects"
|
Add new build.cmd/sh options for suppressing restore, NodeJS, setting target arch and OS name, and more (#7137)
Add new command line parameters for working with the project:
* `-NoBuild`, `-NoRestore` - these already existed, but users found it hard to discover this powershell syntax: '-build:$false'
* `-Arch`/`--arch` - set the target CPU architecture to build. Defaults to x64
* `--os-name` - on non-Windows builds, manually specify if the build should target Alpine. generic Linux, or MacOS
* Rename flags used to build specific project types. The pattern now is `--build-$(group)` or `--no-build-$(group)` (In PowerShell its `-Build$(Group)` or `-NoBuild$(Group). Example: -NoBuildJava
Changes to build definitions:
* Update the ci build definition to build all supported architectures
* Support publishing multiple artifacts per job
Other changes:
* `-NoBuild` implies `-NoRestore`
* Add new properties, `TargetArchitecture`, `TargetOsName`, and `TargetRuntimeIdentifier`
* Replace usages of `SharedFxRid` with these new properties
* To make `--no-build-nodejs` actually work, replaced Components.Browser.JS.csproj with Components.Browser.JS.npmproj
* Fix errors when building for win-arm on a clean machine
* Fix a few other project errors, like using the wrong syntax for DefaultItemExcludes, or using the wrong Platform value for x86
2019-02-01 02:47:47 +03:00
|
|
|
elif [ -z "$build_managed" ] && [ -z "$build_nodejs" ] && [ -z "$build_java" ] && [ -z "$build_native" ]; then
|
|
|
|
# This goal of this is to pick a sensible default for `build.sh` with zero arguments.
|
|
|
|
# We believe the most common thing our contributors will work on is C#, so if no other build group was picked, build the C# projects.
|
|
|
|
__warn "No default group of projects was specified, so building the 'managed' subset of projects. Run ``build.sh -help`` for more details."
|
|
|
|
build_managed=true
|
2018-12-21 03:52:15 +03:00
|
|
|
fi
|
|
|
|
|
2019-02-14 18:25:13 +03:00
|
|
|
if [ "$build_deps" = false ]; then
|
|
|
|
msbuild_args[${#msbuild_args[*]}]="-p:BuildProjectReferences=false"
|
|
|
|
fi
|
|
|
|
|
Add new build.cmd/sh options for suppressing restore, NodeJS, setting target arch and OS name, and more (#7137)
Add new command line parameters for working with the project:
* `-NoBuild`, `-NoRestore` - these already existed, but users found it hard to discover this powershell syntax: '-build:$false'
* `-Arch`/`--arch` - set the target CPU architecture to build. Defaults to x64
* `--os-name` - on non-Windows builds, manually specify if the build should target Alpine. generic Linux, or MacOS
* Rename flags used to build specific project types. The pattern now is `--build-$(group)` or `--no-build-$(group)` (In PowerShell its `-Build$(Group)` or `-NoBuild$(Group). Example: -NoBuildJava
Changes to build definitions:
* Update the ci build definition to build all supported architectures
* Support publishing multiple artifacts per job
Other changes:
* `-NoBuild` implies `-NoRestore`
* Add new properties, `TargetArchitecture`, `TargetOsName`, and `TargetRuntimeIdentifier`
* Replace usages of `SharedFxRid` with these new properties
* To make `--no-build-nodejs` actually work, replaced Components.Browser.JS.csproj with Components.Browser.JS.npmproj
* Fix errors when building for win-arm on a clean machine
* Fix a few other project errors, like using the wrong syntax for DefaultItemExcludes, or using the wrong Platform value for x86
2019-02-01 02:47:47 +03:00
|
|
|
# Only set these MSBuild properties if they were explicitly set by build parameters.
|
|
|
|
[ ! -z "$build_java" ] && msbuild_args[${#msbuild_args[*]}]="-p:BuildJava=$build_java"
|
|
|
|
[ ! -z "$build_native" ] && msbuild_args[${#msbuild_args[*]}]="-p:BuildNative=$build_native"
|
|
|
|
[ ! -z "$build_nodejs" ] && msbuild_args[${#msbuild_args[*]}]="-p:BuildNodeJS=$build_nodejs"
|
|
|
|
[ ! -z "$build_managed" ] && msbuild_args[${#msbuild_args[*]}]="-p:BuildManaged=$build_managed"
|
|
|
|
|
2018-12-21 03:52:15 +03:00
|
|
|
msbuild_args[${#msbuild_args[*]}]="-p:_RunRestore=$run_restore"
|
|
|
|
msbuild_args[${#msbuild_args[*]}]="-p:_RunBuild=$run_build"
|
|
|
|
msbuild_args[${#msbuild_args[*]}]="-p:_RunPack=$run_pack"
|
|
|
|
msbuild_args[${#msbuild_args[*]}]="-p:_RunTests=$run_tests"
|
|
|
|
|
Add new build.cmd/sh options for suppressing restore, NodeJS, setting target arch and OS name, and more (#7137)
Add new command line parameters for working with the project:
* `-NoBuild`, `-NoRestore` - these already existed, but users found it hard to discover this powershell syntax: '-build:$false'
* `-Arch`/`--arch` - set the target CPU architecture to build. Defaults to x64
* `--os-name` - on non-Windows builds, manually specify if the build should target Alpine. generic Linux, or MacOS
* Rename flags used to build specific project types. The pattern now is `--build-$(group)` or `--no-build-$(group)` (In PowerShell its `-Build$(Group)` or `-NoBuild$(Group). Example: -NoBuildJava
Changes to build definitions:
* Update the ci build definition to build all supported architectures
* Support publishing multiple artifacts per job
Other changes:
* `-NoBuild` implies `-NoRestore`
* Add new properties, `TargetArchitecture`, `TargetOsName`, and `TargetRuntimeIdentifier`
* Replace usages of `SharedFxRid` with these new properties
* To make `--no-build-nodejs` actually work, replaced Components.Browser.JS.csproj with Components.Browser.JS.npmproj
* Fix errors when building for win-arm on a clean machine
* Fix a few other project errors, like using the wrong syntax for DefaultItemExcludes, or using the wrong Platform value for x86
2019-02-01 02:47:47 +03:00
|
|
|
msbuild_args[${#msbuild_args[*]}]="-p:TargetArchitecture=$target_arch"
|
|
|
|
msbuild_args[${#msbuild_args[*]}]="-p:TargetOsName=$target_os_name"
|
|
|
|
|
2019-01-19 00:38:24 +03:00
|
|
|
# Disable downloading ref assemblies as a tarball. Use netfx refs from the Microsoft.NETFramework.ReferenceAssemblies NuGet package instead.
|
2019-01-19 03:33:30 +03:00
|
|
|
[ -z "${KOREBUILD_SKIP_INSTALL_NETFX:-}" ] && KOREBUILD_SKIP_INSTALL_NETFX=1
|
2019-01-19 00:38:24 +03:00
|
|
|
|
2019-01-28 20:57:59 +03:00
|
|
|
set_korebuildsettings "$tools_source" "$DOTNET_HOME" "$DIR" "$config_file" "$ci"
|
2017-07-17 20:33:10 +03:00
|
|
|
|
2018-12-21 03:52:15 +03:00
|
|
|
# This incantation avoids unbound variable issues if msbuild_args is empty
|
|
|
|
# https://stackoverflow.com/questions/7577052/bash-empty-array-expansion-with-set-u
|
|
|
|
invoke_korebuild_command 'default-build' ${msbuild_args[@]+"${msbuild_args[@]}"}
|