-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23507 from khyperia/linux_stuff
General improvements to Linux story
- Loading branch information
Showing
11 changed files
with
66 additions
and
173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/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 | ||
set -u | ||
|
||
root_path="$(cd -P "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)" | ||
|
||
# $HOME is unset when running the mac unit tests. | ||
if [[ -z "${HOME+x}" ]] | ||
then | ||
# Note that while ~ usually refers to $HOME, in the case where $HOME is unset, | ||
# it looks up the current user's home dir, which is what we want. | ||
# https://www.gnu.org/software/bash/manual/html_node/Tilde-Expansion.html | ||
export HOME="$(cd ~ && pwd)" | ||
fi | ||
|
||
# There's no reason to send telemetry or prime a local package cach when building | ||
# in CI. | ||
export DOTNET_CLI_TELEMETRY_OPTOUT=1 | ||
export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1 | ||
|
||
echo "Building this commit:" | ||
git show --no-patch --pretty=raw HEAD | ||
|
||
"${root_path}"/build.sh --restore --bootstrap --build --stop-vbcscompiler --test "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters