Update the templates
This commit is contained in:
parent
7a19d9a9a9
commit
dba3e55c0a
|
|
@ -178,9 +178,6 @@ default NUGET_FEED = 'https://api.nuget.org/v3/index.json'
|
||||||
#--quiet
|
#--quiet
|
||||||
@{
|
@{
|
||||||
AddToE("KOREBUILD_BOWER_INSTALL_OPTIONS", "--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");
|
AddToE("KOREBUILD_NPM_INSTALL_OPTIONS", "--quiet");
|
||||||
Quiet = true;
|
Quiet = true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -17,4 +17,4 @@ os:
|
||||||
- osx
|
- osx
|
||||||
osx_image: xcode7.1
|
osx_image: xcode7.1
|
||||||
script:
|
script:
|
||||||
- ./build.sh verify
|
- ./build.sh --quiet verify
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
init:
|
init:
|
||||||
- git config --global core.autocrlf true
|
- git config --global core.autocrlf true
|
||||||
build_script:
|
build_script:
|
||||||
- build.cmd verify
|
- build.cmd --quiet verify
|
||||||
clone_depth: 1
|
clone_depth: 1
|
||||||
test: off
|
test: off
|
||||||
deploy: off
|
deploy: off
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
SETLOCAL
|
SETLOCAL
|
||||||
|
|
||||||
SET REPO_FOLDER=%~dp0
|
SET REPO_FOLDER=%~dp0
|
||||||
CD %REPO_FOLDER%
|
CD "%REPO_FOLDER%"
|
||||||
|
|
||||||
SET BUILD_FOLDER=.build
|
SET BUILD_FOLDER=.build
|
||||||
SET KOREBUILD_FOLDER=%BUILD_FOLDER%\KoreBuild-dotnet
|
SET KOREBUILD_FOLDER=%BUILD_FOLDER%\KoreBuild-dotnet
|
||||||
|
|
@ -34,7 +34,7 @@ IF NOT EXIST %KOREBUILD_FOLDER% (
|
||||||
SET KOREBUILD_DOWNLOAD_ARGS=-version %KOREBUILD_VERSION%
|
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" %*
|
"%KOREBUILD_FOLDER%\build\KoreBuild.cmd" %*
|
||||||
|
|
|
||||||
|
|
@ -48,3 +48,4 @@
|
||||||
*.fsproj text=auto
|
*.fsproj text=auto
|
||||||
*.dbproj text=auto
|
*.dbproj text=auto
|
||||||
*.sln text=auto eol=crlf
|
*.sln text=auto eol=crlf
|
||||||
|
*.sh eol=lf
|
||||||
|
|
@ -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
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
init:
|
||||||
|
- git config --global core.autocrlf true
|
||||||
|
build_script:
|
||||||
|
- build.cmd verify
|
||||||
|
clone_depth: 1
|
||||||
|
test: off
|
||||||
|
deploy: off
|
||||||
Loading…
Reference in New Issue