|
@@ -1,7 +1,13 @@
|
|
|
init:
|
|
|
- git config --global core.autocrlf true
|
|
|
-build_script:
|
|
|
- - build.cmd --quiet verify
|
|
|
clone_depth: 1
|
|
|
-test: off
|
|
|
+install:
|
|
|
+ - dotnet --version
|
|
|
+ - dotnet restore
|
|
|
+build_script:
|
|
|
+ - dotnet build .\Jint\project.json --configuration Release
|
|
|
+test_script:
|
|
|
+ - dotnet test .\Jint.Tests\project.json --configuration Release
|
|
|
+ - dotnet test .\Jint.Tests.CommonScripts\project.json --configuration Release
|
|
|
+ - dotnet test .\Jint.Tests.Ecma\project.json --configuration Release
|
|
|
deploy: off
|