ubuntu packaging
This commit is contained in:
parent
94f5326189
commit
a5a0441a84
3 changed files with 12 additions and 10 deletions
BIN
ext/CLRHost/ubuntu.14.04-x64/coreconsole
Executable file
BIN
ext/CLRHost/ubuntu.14.04-x64/coreconsole
Executable file
Binary file not shown.
BIN
ext/CLRHost/ubuntu.14.04-x64/corerun
Executable file
BIN
ext/CLRHost/ubuntu.14.04-x64/corerun
Executable file
Binary file not shown.
|
@ -11,6 +11,7 @@ REPOROOT="$( cd -P "$DIR/.." && pwd )"
|
|||
|
||||
echo "Bootstrapping dotnet.exe using DNX"
|
||||
|
||||
if [ -z "$RID" ]; then
|
||||
UNAME=$(uname)
|
||||
if [ "$UNAME" == "Darwin" ]; then
|
||||
RID=osx.10.10-x64
|
||||
|
@ -21,6 +22,7 @@ else
|
|||
echo "Unknown OS: $UNAME" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
OUTPUT_ROOT=$REPOROOT/artifacts/$RID
|
||||
STAGE1_DIR=$OUTPUT_ROOT/stage1
|
||||
|
@ -39,7 +41,7 @@ fi
|
|||
|
||||
echo "Running 'dnu restore' to restore packages for DNX-hosted projects"
|
||||
|
||||
dnu restore "$REPOROOT" --runtime osx.10.10-x64 --runtime osx.10.11-x64
|
||||
dnu restore "$REPOROOT" --runtime osx.10.10-x64 --runtime ubuntu.14.04-x64 --runtime osx.10.11-x64
|
||||
|
||||
# Clean up stage1
|
||||
[ -d "$STAGE1_DIR" ] && rm -Rf "$STAGE1_DIR"
|
||||
|
|
Loading…
Reference in a new issue