You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@reef.apache.org by do...@apache.org on 2018/04/03 00:34:32 UTC

[4/9] reef git commit: [REEF-1990] AppVeyor uses DotNet projects for building and testing

[REEF-1990] AppVeyor uses DotNet projects for building and testing

This updates the AppVeyor build file to now target the new DotNet
projects.

JIRA:
  [REEF-1990](https://issues.apache.org/jira/browse/REEF-1990)

Pull Request:
  This closes #1438


Project: http://git-wip-us.apache.org/repos/asf/reef/repo
Commit: http://git-wip-us.apache.org/repos/asf/reef/commit/7924188c
Tree: http://git-wip-us.apache.org/repos/asf/reef/tree/7924188c
Diff: http://git-wip-us.apache.org/repos/asf/reef/diff/7924188c

Branch: refs/heads/REEF-335
Commit: 7924188ca18d3af5d859aa020ed2b4448b7c0ae3
Parents: c519618
Author: Scott Inglis <si...@microsoft.com>
Authored: Mon Mar 26 10:01:36 2018 -0700
Committer: Markus Weimer <we...@apache.org>
Committed: Mon Mar 26 19:56:11 2018 -0700

----------------------------------------------------------------------
 appveyor.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/reef/blob/7924188c/appveyor.yml
----------------------------------------------------------------------
diff --git a/appveyor.yml b/appveyor.yml
index e28c0b0..a9c7d7d 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -32,10 +32,11 @@ install:
   - ps: .\dev\appveyor-install-dependencies.ps1
 
 build_script:
-  - cmd: msbuild .\lang\cs\Org.Apache.REEF.sln /p:Configuration="Release" /p:Platform="x64" /m
+  - cmd: msbuild .\lang\cs\Org.Apache.REEF.DotNet.sln /p:Configuration="Release" /p:Platform="x64" /t:Restore
+  - cmd: msbuild .\lang\cs\Org.Apache.REEF.DotNet.sln /p:Configuration="Release" /p:Platform="x64" /m
 
 test_script:
-  - cmd: msbuild .\lang\cs\TestRunner.proj /p:Configuration="Release" /p:Platform="x64"
+  - cmd: msbuild .\lang\cs\TestRunner.DotNet.proj /p:Configuration="Release" /p:Platform="x64"
 
 after_build:
   - ps: .\bin\AnalyzeClrCompatibility.ps1