Advertisement
Guest User

Untitled

a guest
Nov 25th, 2015
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. echo off
  2.  
  3. if exist d:\bdk\bedrock\lib\OtCustomZenith\zenith-cpp_%1 (
  4. echo "File exists, skipping build and just running the test"
  5. ) else (
  6. echo "File doesn't exist, trying to build it"
  7. git checkout %1
  8. rake build_quick
  9. mkdir d:\bdk\bedrock\lib\OtCustomZenith\zenith-cpp_%1
  10.  
  11. if exist d:\bdk\bedrock\lib\OtCustomZenith.so (
  12. move d:\bdk\bedrock\lib\OtCustomZenith.so d:\bdk\bedrock\lib\OtCustomZenith\zenith-cpp_%1
  13. )
  14.  
  15. if exist d:\bdk\bedrock\lib\OtCustomZenith\freshly_built\OtCustomZenith.so (
  16. move d:\bdk\bedrock\lib\OtCustomZenith\freshly_built\OtCustomZenith.so d:\bdk\bedrock\lib\OtCustomZenith\zenith-cpp_%1
  17. )
  18.  
  19. if exist d:\bdk\bedrock\lib\OtCustomZenith\OtCustomZenith.so (
  20. move d:\bdk\bedrock\lib\OtCustomZenith\OtCustomZenith.so d:\bdk\bedrock\lib\OtCustomZenith\zenith-cpp_%1
  21. )
  22.  
  23. copy d:\bdk\bedrock\lib\OtCustomZenith.so d:\bdk\bedrock\lib\OtCustomZenith\zenith-cpp_%1
  24. )
  25.  
  26. set MODEL_VERSION=zenith-cpp_%1
  27. set BDK_SPEC_DIR=d:\bdk\spec
  28. set GEM_HOME=d:\bdk\bedrock\vendor
  29. set OT=d:\ot\61
  30. set BDK=d:\bdk
  31. set BEDROCK=d:\bdk\bedrock
  32.  
  33. D:\OT\61\Ruby\bin\ruby.exe -Ku -Id:\bdk\bedrock\app -e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift) D:\ot\61\plugin\rb\VlcInitialize.rb D:/BDK/spec/BedrockTestProject/jobs/Tests/ModelRunTest1/Assignment_test.rb --name=test_assignment --workingdirectory=d:\bdk\spec\EmptyProject\Import --parent=d:\ot\61\omnitrans.exe
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement