dotnet-installer/scripts/test/setup/build-test-prerequisites.sh

46 lines
1.3 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
#
# Copyright (c) .NET Foundation and contributors. All rights reserved.
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
#
set -e
SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
SOURCE="$(readlink "$SOURCE")"
[[ "$SOURCE" != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
done
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
source "$DIR/../../common/_common.sh"
2016-02-12 14:38:37 -08:00
buildTestPackages() {
mkdir -p "$TEST_PACKAGE_DIR"
2016-02-12 14:38:37 -08:00
PROJECTS=$(loadTestPackageList)
2016-02-12 14:38:37 -08:00
for project in $PROJECTS
do
dotnet pack "$REPOROOT/TestAssets/TestPackages/$project" --output "$TEST_PACKAGE_DIR"
done
}
buildTestProjects() {
testProjectsRoot="$REPOROOT/TestAssets/TestProjects"
exclusionList=( "$testProjectsRoot/CompileFail/project.json" )
testProjectsList=( $(find $testProjectsRoot -name "project.json") )
for project in "${testProjectsList[@]}"
do
if [[ "${exclusionList[@]}" != "${project}" ]]; then
dotnet build "$project" --framework dnxcore50
fi
done
}
buildTestPackages
buildTestProjects