mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
64 lines
2.7 KiB
YAML
64 lines
2.7 KiB
YAML
version: 0.20150918.{build}
|
|
image: Visual Studio 2017
|
|
configuration: Debug
|
|
platform: Any CPU
|
|
shallow_clone: true
|
|
clone_folder: c:\Cosmos
|
|
|
|
init:
|
|
- cmd: |
|
|
git clone https://github.com/CosmosOS/XSharp.git c:\XSharp --depth 1
|
|
git clone https://github.com/CosmosOS/IL2CPU.git c:\IL2CPU --depth 1 -b generic-interfaces-on-arrays
|
|
|
|
build_script:
|
|
- cmd: |
|
|
rem %APPVEYOR_BUILD_FOLDER%
|
|
|
|
msbuild "Builder.sln" /t:Restore;Build /p:Platform="Any CPU" /p:Configuration=Debug /maxcpucount /verbosity:normal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
|
|
|
msbuild "Build.sln" /t:Restore;Build /p:Platform="Any CPU" /p:Configuration=Debug /p:OutputPath="%APPVEYOR_BUILD_FOLDER%\Build\VSIP" /p:DeployExtension=false /maxcpucount /verbosity:normal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
|
msbuild "Test.sln" /t:Restore;Build /p:Platform="Any CPU" /p:Configuration=Debug /maxcpucount /verbosity:normal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
|
|
|
dotnet publish ..\IL2CPU\source\IL2CPU -r win7-x86 -o "c:\CosmosRun\Build\IL2CPU\"
|
|
|
|
xcopy /Y "Build\VSIP\Cosmos.Debug.Kernel.*" "c:\CosmosRun\Kernel\"
|
|
xcopy /Y "Build\VSIP\Cosmos.Core.*" "c:\CosmosRun\Kernel\"
|
|
xcopy /Y "Build\VSIP\Cosmos.HAL.*" "c:\CosmosRun\Kernel\"
|
|
xcopy /Y "Build\VSIP\Cosmos.System.*" "c:\CosmosRun\Kernel\"
|
|
xcopy /Y "Build\VSIP\Cosmos.Common.*" "c:\CosmosRun\Kernel\"
|
|
xcopy /Y "Build\VSIP\Cosmos.Debug.GDB.exe" "c:\CosmosRun\Build\VSIP\"
|
|
xcopy /Y "Build\syslinux\*.*" "c:\CosmosRun\Build\ISO\"
|
|
xcopy /Y /S "Build\VMware\*" "c:\CosmosRun\Build\VMware\"
|
|
xcopy /Y /S "Build\Tools" "c:\CosmosRun\Build\Tools\"
|
|
xcopy /Y "source\Cosmos.Core.DebugStub\*.xs" "c:\CosmosRun\XSharp\DebugStub\"
|
|
xcopy /Y /S "Resources\Bochs\*.*" "%ProgramFiles(x86)%\Bochs-2.6.8\"
|
|
|
|
reg add HKLM\SOFTWARE\WOW6432Node\Cosmos /v UserKit /d c:\CosmosRun\
|
|
reg add HKCR\BochsConfigFile\shell\Run\command /ve /d "\"C:\Program Files (x86)\Bochs-2.6.8\Bochs.exe\" -q -f \"%1\""
|
|
|
|
#test: off
|
|
# assemblies:
|
|
# - Cosmos.Core.Memory.Test.dll
|
|
# - DebugCompiler.dll
|
|
# - Cosmos.TestRunner.UnitTest.dll
|
|
|
|
test_script:
|
|
- cmd: dotnet test Tests\Cosmos.TestRunner.UnitTest\Cosmos.TestRunner.UnitTest.csproj --logger "trx;LogFileName=c:\Cosmos\TestResult.xml"
|
|
|
|
on_finish:
|
|
- ps: |
|
|
$wc = New-Object 'System.Net.WebClient'
|
|
$wc.UploadFile("https://ci.appveyor.com/api/testresults/mstest/$($env:APPVEYOR_JOB_ID)", "c:\Cosmos\TestResult.xml")
|
|
|
|
notifications:
|
|
- provider: Webhook
|
|
url: https://webhooks.gitter.im/e/d5c57ffb9a04b1b180be
|
|
on_build_success: true
|
|
on_build_failure: true
|
|
on_build_status_changed: true
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
artifacts:
|
|
- path: '**\TestResult.xml'
|