doc(Appveyor): 移动命令到ps1脚本文件中
This commit is contained in:
parent
6aa1ffd047
commit
1e798b02f1
|
@ -0,0 +1,41 @@
|
||||||
|
if ("$($env:APPVEYOR_REPO_BRANCH)" -eq "master")
|
||||||
|
{
|
||||||
|
echo "" "Install coveralls.net tools"
|
||||||
|
|
||||||
|
dotnet tool install coveralls.net --version 1.0.0 --tool-path "./tools"
|
||||||
|
|
||||||
|
# init sqlserver database
|
||||||
|
$startPath = "$($env:appveyor_build_folder)\DatabaseScripts"
|
||||||
|
$sqlInstance = "(local)\SQL2014"
|
||||||
|
$outFile = "$($env:appveyor_build_folder)\DatabaseScripts\output.log"
|
||||||
|
$sqlFile = join-path $startPath "Install.sql"
|
||||||
|
$initFile = join-path $startPath "InitData.sql"
|
||||||
|
|
||||||
|
sqlcmd -S "$sqlInstance" -U sa -P Password12! -i "$sqlFile" -i "$initFile" -o "$outFile"
|
||||||
|
|
||||||
|
# init mysql database
|
||||||
|
$env:MYSQL_PWD="Password12!"
|
||||||
|
$cmd = '"C:\Program Files\MySQL\MySQL Server 5.7\bin\mysql.exe" -e "create database BootstrapAdmin;" -uroot'
|
||||||
|
cmd.exe /c $cmd
|
||||||
|
|
||||||
|
$sqlFile = join-path $startPath "MySQL\Install.sql"
|
||||||
|
$cmd = '"C:\Program Files\MySQL\MySQL Server 5.7\bin\mysql.exe" -hlocalhost -uroot -DBootstrapAdmin <'
|
||||||
|
cmd.exe /c $cmd $sqlFile
|
||||||
|
|
||||||
|
$initFile = join-path $startPath "MySQL\InitData.sql"
|
||||||
|
$cmd = '"C:\Program Files\MySQL\MySQL Server 5.7\bin\mysql.exe" -hlocalhost -uroot -DBootstrapAdmin <'
|
||||||
|
cmd.exe /c $cmd $initFile
|
||||||
|
|
||||||
|
# init mongodb data
|
||||||
|
$initFolder = join-path $startPath "MongoDB"
|
||||||
|
cd $initFolder
|
||||||
|
$cmd = "C:\mongodb\bin\mongo $initFolder\init.js"
|
||||||
|
iex "& $cmd"
|
||||||
|
|
||||||
|
$cmd = 'C:\mongodb\bin\mongo BootstrapAdmin --eval "printjson(db.getCollectionNames())"'
|
||||||
|
iex "& $cmd"
|
||||||
|
|
||||||
|
cd $($env:appveyor_build_folder)
|
||||||
|
dotnet test UnitTest --no-restore /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Include="[Bootstrap*]*" /p:CoverletOutput=../
|
||||||
|
cmd.exe /c ".\tools\csmacnz.Coveralls.exe --opencover -i coverage.opencover.xml --useRelativePaths"
|
||||||
|
}
|
72
appveyor.yml
72
appveyor.yml
|
@ -31,77 +31,7 @@ build_script:
|
||||||
dotnet publish Bootstrap.Admin --configuration Release --no-restore
|
dotnet publish Bootstrap.Admin --configuration Release --no-restore
|
||||||
test_script:
|
test_script:
|
||||||
- ps: >-
|
- ps: >-
|
||||||
if ("$($env:APPVEYOR_REPO_BRANCH)" -eq "master")
|
./appveyor.ps1
|
||||||
|
|
||||||
{
|
|
||||||
|
|
||||||
echo "" "Install coveralls.net tools"
|
|
||||||
|
|
||||||
dotnet tool install coveralls.net --version 1.0.0 --tool-path "./tools"
|
|
||||||
|
|
||||||
|
|
||||||
# init sqlserver database
|
|
||||||
|
|
||||||
$startPath = "$($env:appveyor_build_folder)\DatabaseScripts"
|
|
||||||
|
|
||||||
$sqlInstance = "(local)\SQL2014"
|
|
||||||
|
|
||||||
$outFile = "$($env:appveyor_build_folder)\DatabaseScripts\output.log"
|
|
||||||
|
|
||||||
$sqlFile = join-path $startPath "Install.sql"
|
|
||||||
|
|
||||||
$initFile = join-path $startPath "InitData.sql"
|
|
||||||
|
|
||||||
sqlcmd -S "$sqlInstance" -U sa -P Password12! -i "$sqlFile" -i "$initFile" -o "$outFile"
|
|
||||||
|
|
||||||
|
|
||||||
# init mysql database
|
|
||||||
|
|
||||||
$env:MYSQL_PWD="Password12!"
|
|
||||||
|
|
||||||
$cmd = '"C:\Program Files\MySQL\MySQL Server 5.7\bin\mysql.exe" -e "create database BootstrapAdmin;" -uroot'
|
|
||||||
|
|
||||||
cmd.exe /c $cmd
|
|
||||||
|
|
||||||
|
|
||||||
$sqlFile = join-path $startPath "MySQL\Install.sql"
|
|
||||||
|
|
||||||
$cmd = '"C:\Program Files\MySQL\MySQL Server 5.7\bin\mysql.exe" -hlocalhost -uroot -DBootstrapAdmin <'
|
|
||||||
|
|
||||||
cmd.exe /c $cmd $sqlFile
|
|
||||||
|
|
||||||
|
|
||||||
$initFile = join-path $startPath "MySQL\InitData.sql"
|
|
||||||
|
|
||||||
$cmd = '"C:\Program Files\MySQL\MySQL Server 5.7\bin\mysql.exe" -hlocalhost -uroot -DBootstrapAdmin <'
|
|
||||||
|
|
||||||
cmd.exe /c $cmd $initFile
|
|
||||||
|
|
||||||
|
|
||||||
# init mongodb data
|
|
||||||
|
|
||||||
$initFolder = join-path $startPath "MongoDB"
|
|
||||||
|
|
||||||
cd $initFolder
|
|
||||||
|
|
||||||
$cmd = "C:\mongodb\bin\mongo $initFolder\init.js"
|
|
||||||
|
|
||||||
iex "& $cmd"
|
|
||||||
|
|
||||||
|
|
||||||
$cmd = 'C:\mongodb\bin\mongo BootstrapAdmin --eval "printjson(db.getCollectionNames())"'
|
|
||||||
|
|
||||||
iex "& $cmd"
|
|
||||||
|
|
||||||
|
|
||||||
cd $($env:appveyor_build_folder)
|
|
||||||
|
|
||||||
#dotnet test UnitTest --no-restore --filter "FullyQualifiedName~MongoDB" /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:CoverletOutputDirectory=../
|
|
||||||
|
|
||||||
dotnet test UnitTest --no-restore /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Include="[Bootstrap*]*" /p:CoverletOutput=../
|
|
||||||
|
|
||||||
cmd.exe /c ".\tools\csmacnz.Coveralls.exe --opencover -i coverage.opencover.xml --useRelativePaths"
|
|
||||||
}
|
|
||||||
artifacts:
|
artifacts:
|
||||||
- path: Bootstrap.Admin\bin\release\netcoreapp2.2\publish\
|
- path: Bootstrap.Admin\bin\release\netcoreapp2.2\publish\
|
||||||
name: BootstrapAdmin
|
name: BootstrapAdmin
|
||||||
|
|
Loading…
Reference in New Issue