Update the templates

This commit is contained in:
Victor Hurdugaci 2016-01-06 16:02:05 -08:00
parent 7a19d9a9a9
commit dba3e55c0a
7 changed files with 32 additions and 7 deletions

View File

@ -178,9 +178,6 @@ default NUGET_FEED = 'https://api.nuget.org/v3/index.json'
#--quiet
@{
AddToE("KOREBUILD_BOWER_INSTALL_OPTIONS", "--quiet");
AddToE("KOREBUILD_DOTNET_BUILD_OPTIONS", "--quiet");
AddToE("KOREBUILD_DOTNET_PACK_OPTIONS", "--quiet");
AddToE("KOREBUILD_DOTNET_RESTORE_OPTIONS", "--quiet");
AddToE("KOREBUILD_NPM_INSTALL_OPTIONS", "--quiet");
Quiet = true;
}

View File

@ -17,4 +17,4 @@ os:
- osx
osx_image: xcode7.1
script:
- ./build.sh verify
- ./build.sh --quiet verify

View File

@ -1,7 +1,7 @@
init:
- git config --global core.autocrlf true
build_script:
- build.cmd verify
- build.cmd --quiet verify
clone_depth: 1
test: off
deploy: off

View File

@ -2,7 +2,7 @@
SETLOCAL
SET REPO_FOLDER=%~dp0
CD %REPO_FOLDER%
CD "%REPO_FOLDER%"
SET BUILD_FOLDER=.build
SET KOREBUILD_FOLDER=%BUILD_FOLDER%\KoreBuild-dotnet
@ -34,7 +34,7 @@ IF NOT EXIST %KOREBUILD_FOLDER% (
SET KOREBUILD_DOWNLOAD_ARGS=-version %KOREBUILD_VERSION%
)
%NUGET_PATH% install KoreBuild-dotnet -ExcludeVersion -o %BUILD_FOLDER% -nocache -pre %KOREBUILD_DOWNLOAD_ARGS%
%BUILD_FOLDER%\nuget.exe install KoreBuild-dotnet -ExcludeVersion -o %BUILD_FOLDER% -nocache -pre %KOREBUILD_DOWNLOAD_ARGS%
)
"%KOREBUILD_FOLDER%\build\KoreBuild.cmd" %*

View File

@ -48,3 +48,4 @@
*.fsproj text=auto
*.dbproj text=auto
*.sln text=auto eol=crlf
*.sh eol=lf

View File

@ -0,0 +1,20 @@
language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
mono:
- 4.0.5
os:
- linux
- osx
osx_image: xcode7.1
script:
- ./build.sh verify

View File

@ -0,0 +1,7 @@
init:
- git config --global core.autocrlf true
build_script:
- build.cmd verify
clone_depth: 1
test: off
deploy: off