jenkins.buildall.cmd 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. ::-------------------------------------------------------------------------------------------------------
  2. :: Copyright (C) Microsoft. All rights reserved.
  3. :: Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. ::-------------------------------------------------------------------------------------------------------
  5. @echo off
  6. setlocal
  7. if not "%JENKINS_BUILD%" == "True" (
  8. echo This script should be run under a Jenkins Build environment
  9. exit /b 2
  10. )
  11. pushd %~dp0
  12. call jenkins.build.init.cmd %*
  13. set _BuildArch=
  14. set _BuildType=
  15. call jenkins.build.cmd x86 debug %JENKINS_BUILD_ARGS%
  16. call jenkins.build.cmd x86 test %JENKINS_BUILD_ARGS%
  17. call jenkins.build.cmd x86 release %JENKINS_BUILD_ARGS%
  18. call jenkins.build.cmd x64 debug %JENKINS_BUILD_ARGS%
  19. call jenkins.build.cmd x64 test %JENKINS_BUILD_ARGS%
  20. call jenkins.build.cmd x64 release %JENKINS_BUILD_ARGS%
  21. call jenkins.build.cmd arm debug %JENKINS_BUILD_ARGS%
  22. call jenkins.build.cmd arm test %JENKINS_BUILD_ARGS%
  23. call jenkins.build.cmd arm release %JENKINS_BUILD_ARGS%
  24. popd
  25. endlocal