commit
stringlengths
40
40
old_file
stringlengths
4
237
new_file
stringlengths
4
237
old_contents
stringlengths
1
4.24k
new_contents
stringlengths
1
4.87k
subject
stringlengths
15
778
message
stringlengths
15
8.75k
lang
stringclasses
266 values
license
stringclasses
13 values
repos
stringlengths
5
127k
eef95aede0ea2b2cad3e1d8553a08d1686213a9f
build.cmd
build.cmd
@echo off cls IF NOT EXIST "build\tools\FAKE.Core\tools\Fake.exe" ( "tools\nuget\nuget.exe" install "NUnit.Runners" -OutputDirectory "build\tools" -ExcludeVersion -Version 2.6.4 "tools\nuget\nuget.exe" install "FAKE.Core" -OutputDirectory "build\tools" -ExcludeVersion -Version 4.60.0 ) "build\tools\FAKE.Core\tools\Fake.exe" build.fsx %*
@echo off cls IF NOT EXIST "build\tools\FAKE.Core\tools\Fake.exe" ( "tools\nuget\nuget.exe" install "NUnit.Runners" -OutputDirectory "build\tools" -ExcludeVersion -Version 2.6.4 "tools\nuget\nuget.exe" install "FAKE.Core" -OutputDirectory "build\tools" -ExcludeVersion -Version 4.64.13 ) "build\tools\FAKE.Core\tools\Fake.exe" build.fsx %*
Use latest FAKE.Core 4.x version
Use latest FAKE.Core 4.x version
Batchfile
mit
Zvirja/ReSharperHelpers
617d6bbe972ecc145b1a9cfa1743a72dd92b0a10
make.cmd
make.cmd
cd make node node_make.js debug node node_make.js release cd .. if not exist ..\ArnaudBuchholz.github.io goto end copy build\gpf.js ..\ArnaudBuchholz.github.io\ copy build\gpf-debug.js ..\ArnaudBuchholz.github.io\ plato -d ..\ArnaudBuchholz.github.io\plato\gpf-js -t GPF-JS -l .jshintrc *.js :end
cd make node node_make.js debug node node_make.js release cd .. if not exist ..\ArnaudBuchholz.github.io goto end copy build\gpf.js ..\ArnaudBuchholz.github.io\ copy build\gpf-debug.js ..\ArnaudBuchholz.github.io\ plato -x coding_convention.js -d ..\ArnaudBuchholz.github.io\plato\gpf-js -t GPF-JS -l .jshintrc *.js :end
Make now includes Plato statistics
Make now includes Plato statistics
Batchfile
mit
ArnaudBuchholz/gpf-js,ArnaudBuchholz/gpf-js
2a3731c912ae6cc2d2c5be6188d15a3002ee2095
src/scripts/ci/setup_appveyor.bat
src/scripts/ci/setup_appveyor.bat
echo Current build setup CC="%CC%" PLATFORM="%PLATFORM%" TARGET="%TARGET%" if %CC% == VC2019 call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" %PLATFORM% if %CC% == VC2019p call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Preview\VC\Auxiliary\Build\vcvarsall.bat" %PLATFORM% if %CC% == MinGW set PATH=%PATH%;C:\msys64\mingw64\bin rem check compiler version if %CC% == MinGW g++ -v if not %CC% == MinGW cl appveyor DownloadFile https://github.com/mozilla/sccache/releases/download/%SCCACHE_VERSION%/sccache-%SCCACHE_VERSION%-x86_64-pc-windows-msvc.tar.gz tar -xf sccache-%SCCACHE_VERSION%-x86_64-pc-windows-msvc.tar.gz appveyor DownloadFile http://download.qt.io/official_releases/jom/jom.zip -FileName jom.zip 7z e jom.zip set PATH=%PATH%;sccache-%SCCACHE_VERSION%-x86_64-pc-windows-msvc
echo Current build setup CC="%CC%" PLATFORM="%PLATFORM%" TARGET="%TARGET%" if %CC% == VC2019 call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" %PLATFORM% if %CC% == VC2019p call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Preview\VC\Auxiliary\Build\vcvarsall.bat" %PLATFORM% if %CC% == MinGW set PATH=%PATH%;C:\msys64\mingw64\bin rem check compiler version if %CC% == MinGW ( g++ -v ) else ( cl ) appveyor DownloadFile https://github.com/mozilla/sccache/releases/download/%SCCACHE_VERSION%/sccache-%SCCACHE_VERSION%-x86_64-pc-windows-msvc.tar.gz tar -xf sccache-%SCCACHE_VERSION%-x86_64-pc-windows-msvc.tar.gz appveyor DownloadFile http://download.qt.io/official_releases/jom/jom.zip -FileName jom.zip 7z e jom.zip set PATH=%PATH%;sccache-%SCCACHE_VERSION%-x86_64-pc-windows-msvc
Use an if/else in the batch script
Use an if/else in the batch script
Batchfile
bsd-2-clause
randombit/botan,randombit/botan,randombit/botan,randombit/botan,randombit/botan
17bb69635d96183f399f8f9952e7f04ec549509b
tools/testcoverage.bat
tools/testcoverage.bat
cd .. set "destination=testcoverage" rmdir /q /s %destination% mkdir %destination% cd content/tests dotnet test /p:AltCover=true mv coverage.xml ../../%destination%/coverage.xml cd ../../%destination% set "reportgenerator=%UserProfile%\.nuget\packages\reportgenerator\4.0.7\tools\net47\ReportGenerator.exe" set "targetdir=." "%reportGenerator%" -reports:coverage.xml -reporttypes:HtmlInline -targetdir:%targetdir%
cd .. set "destination=testcoverage" rmdir /q /s %destination% mkdir %destination% cd content/tests dotnet test /p:AltCover=true mv coverage.xml ../../%destination%/coverage.xml cd ../../%destination% set "reportgenerator=%UserProfile%\.nuget\packages\reportgenerator\4.0.11\tools\net47\ReportGenerator.exe" set "targetdir=." "%reportGenerator%" -reports:coverage.xml -reporttypes:HtmlInline -targetdir:%targetdir%
Update to tools for reportgenerator
Update to tools for reportgenerator
Batchfile
mit
Jaxelr/Nancy.Template.Webservice,Jaxelr/Nancy.Template.Webservice
d82cffa111e10bd259c451687ba9e351da3d424b
test.cmd
test.cmd
@echo off pushd "%~dp0" call build && dotnet test --no-restore --no-build NCrontab.Tests popd
@echo off pushd "%~dp0" call build ^ && call :test Debug ^ && call :test Release ^ popd goto :EOF :test dotnet test --no-restore --no-build -c %1 NCrontab.Tests goto :EOF
Test debug & release configs
Test debug & release configs
Batchfile
apache-2.0
atifaziz/NCrontab,atifaziz/NCrontab
8b03786cb6811df115c34928770f6e43c565db22
!push.cmd
!push.cmd
.nuget\NuGet.exe push src\DelegateDecompiler\bin\Release\*.nupkg -ApiKey %1
for /r %%x in (src\DelegateDecompiler\bin\Release\*.nupkg) do .nuget\NuGet.exe push %%x -ApiKey %1
Update push script to push packages separately
Update push script to push packages separately
Batchfile
mit
morgen2009/DelegateDecompiler,hazzik/DelegateDecompiler,jaenyph/DelegateDecompiler
f68aa482fcd2665e80b2bad4f100684806e911df
Clean.bat
Clean.bat
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S bin') DO RMDIR /S /Q "%%G" FOR /F "tokens=*" %%G IN ('DIR /B /AD /S obj') DO RMDIR /S /Q "%%G" FOR /F "tokens=*" %%G IN ('DIR /B /AD /S node_modules') DO RMDIR /S /Q "%%G" FOR /F "tokens=*" %%G IN ('DIR /B /AD /S Packages') DO RMDIR /S /Q "%%G" FOR /F "tokens=*" %%G IN ('DIR /B /AD /S .vs') DO RMDIR /S /Q "%%G" FOR /F "tokens=*" %%G IN ('DIR /B /AD /S TestResults') DO RMDIR /S /Q "%%G" DEL /Q /F /S "Resource.designer.cs" DEL /Q /F /S "*.csproj.user" DEL /Q /F /S "*.Model.Context.d.ts" DEL /Q /F /S "*.Model.Context.js"
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S bin') DO RMDIR /S /Q "%%G" FOR /F "tokens=*" %%G IN ('DIR /B /AD /S obj') DO RMDIR /S /Q "%%G" FOR /F "tokens=*" %%G IN ('DIR /B /AD /S node_modules') DO RMDIR /S /Q "%%G" FOR /F "tokens=*" %%G IN ('DIR /B /AD /S Packages') DO RMDIR /S /Q "%%G" FOR /F "tokens=*" %%G IN ('DIR /B /AD /S .vs') DO RMDIR /S /Q "%%G" FOR /F "tokens=*" %%G IN ('DIR /B /AD /S TestResults') DO RMDIR /S /Q "%%G" FOR /F "tokens=*" %%G IN ('DIR /B /AD /S AppPackages') DO RMDIR /S /Q "%%G" DEL /Q /F /S "Resource.designer.cs" DEL /Q /F /S "*.csproj.user" DEL /Q /F /S "*.Model.Context.d.ts" DEL /Q /F /S "*.Model.Context.js"
Delete uwp app packages too!
Delete uwp app packages too!
Batchfile
mit
bit-foundation/bit-framework,bit-foundation/bit-framework,bit-foundation/bit-framework,bit-foundation/bit-framework
3bd7585a0ed5ac52a434b575fb5e03de9cee9ce0
tools/release_win.bat
tools/release_win.bat
rem Tool to assemble Windows builds rem Requirements are 7-zip, py2exe, and FreeExtractor PATH=C:\python27;C:\python26;C:\progra~1\7-zip;C:\progra~2\7-zip;%PATH% rem ****** Clean out the old junk rmdir /q /s dist\*.* del /s /q dist\*.* rem ****** Compile our executable and core zipfile python setup.py py2exe rem ****** Remove extras from core zipfile cd dist 7z d namebench.zip tcl\*.* rmdir /s /q tcl\tcl8.5\tzdata tcl\tk8.5\demos del tcl\tk8.5\images\*.eps rem ****** Final assembly of zipfile copy ..\README.txt . 7z a namebench_for_Windows.zip -r * >nul rem ****** Test assembled zipfile namebench -x -O 8.8.8.8 -q5 -o test.html start test.html cd ..
rem Tool to assemble Windows builds rem Requirements are 7-zip, py2exe, and FreeExtractor PATH=C:\python27;C:\python26;C:\progra~1\7-zip;C:\progra~2\7-zip;%PATH% rem ****** Clean out the old junk del /s /f /q dist rem ****** Compile our executable and core zipfile python setup.py py2exe rem ****** Remove extras from core zipfile cd dist 7z d namebench.zip tcl\*.* rmdir /s /q tcl\tcl8.5\tzdata tcl\tk8.5\demos del tcl\tk8.5\images\*.eps rem ****** Final assembly of zipfile copy ..\README.txt . 7z a namebench_for_Windows.zip -r * >nul rem ****** Test assembled zipfile namebench -x -O 8.8.8.8 -q5 -o test.html start test.html cd ..
Remove wildcard from del statement
Remove wildcard from del statement
Batchfile
apache-2.0
catap/namebench,jimmsta/namebench-1
67c10202fa5afd27405d1258ac63536bb1f497f6
setenv.bat
setenv.bat
@ECHO OFF PUSHD %~DP0 SET CURDIR=%CD% PUSHD .. SET TOPDIR=%CD% POPD POPD SET GDAL_ROOT=%TOPDIR%\bin\gdal rem SET GDAL_PAM_PROXY_DIR=%TEMP% SET GDAL_DATA=%GDAL_ROOT%\share\gdal-data SET GEOTIFF_CSV=%GDAL_DATA% SET PROJ_LIB=%GDAL_ROOT%\share\proj SET GDAL_DRIVER_PATH=%GDAL_ROOT%\bin\plugins SET PYTHONHOME=%TOPDIR%\bin\Python26 SET PYTHONPATH=%PYTHONHOME%\Lib\lib-tk SET PYTHONPATH=%PYTHONHOME%\Lib\site-packages\pywin32_system32;%PYTHONHOME%\Lib\site-packages\win32;%PYTHONHOME%\Lib\site-packages\win32\lib;%PYTHONHOME%\Lib\site-packages\pythonwin;%PYTHONPATH% SET PYTHONPATH=%GDAL_ROOT%\bin;%GDAL_ROOT%\lib;%PYTHONPATH% SET PYTHONPATH=%CURDIR%;%PYTHONPATH% PATH=%GDAL_ROOT%\bin;%PATH% PATH=%GDAL_ROOT%\bin\gdal\apps;%PATH% PATH=%GDAL_DRIVER_PATH%;%PATH% PATH=%PYTHONPATH%;%PATH% PATH=%PYTHONHOME%;%PATH% PATH=%CURDIR%;%PATH%
@ECHO OFF PUSHD %~DP0 SET CURDIR=%CD% PUSHD .. SET TOPDIR=%CD% POPD POPD SET GDAL_ROOT=%TOPDIR%\bin\gdal rem SET GDAL_PAM_PROXY_DIR=%TEMP% SET GDAL_DATA=%GDAL_ROOT%\share\gdal-data SET GEOTIFF_CSV=%GDAL_DATA% SET PROJ_LIB=%GDAL_ROOT%\share\proj SET GDAL_DRIVER_PATH=%GDAL_ROOT%\bin\plugins SET PYTHONHOME=%TOPDIR%\bin\Python26 SET PYTHONPATH=%PYTHONHOME%\Lib\lib-tk SET PYTHONPATH=%PYTHONHOME%\Lib\site-packages\pywin32_system32;%PYTHONHOME%\Lib\site-packages\win32;%PYTHONHOME%\Lib\site-packages\win32\lib;%PYTHONHOME%\Lib\site-packages\pythonwin;%PYTHONPATH% SET PYTHONPATH=%GDAL_ROOT%\bin;%GDAL_ROOT%\lib;%PYTHONPATH% SET PYTHONPATH=%CURDIR%;%PYTHONPATH% set path= set path=%WINDIR%;%WINDIR%\system32 PATH=%GDAL_ROOT%\bin;%PATH% PATH=%GDAL_ROOT%\bin\gdal\apps;%PATH% PATH=%GDAL_DRIVER_PATH%;%PATH% PATH=%PYTHONPATH%;%PATH% PATH=%PYTHONHOME%;%PATH% PATH=%CURDIR%;%PATH%
Clean out the PAHT env var to hopefully avoid more missing/extra dependencies
Clean out the PAHT env var to hopefully avoid more missing/extra dependencies
Batchfile
mit
ssutee/metageta,NikosAlexandris/metageta,NikosAlexandris/metageta,simonaoliver/metageta,lpinner/metageta
390b86cc2c94f2ad41e22a0b706bfd889d732818
recipes/ocp/bld.bat
recipes/ocp/bld.bat
set CONDA_PREFIX=%PREFIX% if errorlevel 1 exit 1 cmake -B build -S "%SRC_DIR%" ^ -G Ninja ^ -DCMAKE_BUILD_TYPE=Release ^ -DPython3_FIND_STRATEGY=LOCATION ^ -DPython3_ROOT_DIR=%CONDA_PREFIX% ^ -DCMAKE_LINKER=lld-link.exe if errorlevel 1 exit 1 cmake --build build -j %CPU_COUNT% -- -v -k 0 if errorlevel 1 exit 1 if not exist "%SP_DIR%" mkdir "%SP_DIR%" if errorlevel 1 exit 1 copy build/OCP.cp*-*.* "%SP_DIR%" if errorlevel 1 exit 1
set CONDA_PREFIX=%PREFIX% if errorlevel 1 exit 1 cmake -B build -S "%SRC_DIR%" ^ -G Ninja ^ -DCMAKE_BUILD_TYPE=Release ^ -DPython3_FIND_STRATEGY=LOCATION ^ -DPython3_ROOT_DIR=%CONDA_PREFIX% ^ -DCMAKE_LINKER=lld-link.exe ^ -DCMAKE_MODULE_LINKER_FLAGS="/FORCE:MULTIPLE" if errorlevel 1 exit 1 cmake --build build -j %CPU_COUNT% -- -v -k 0 if errorlevel 1 exit 1 if not exist "%SP_DIR%" mkdir "%SP_DIR%" if errorlevel 1 exit 1 copy build/OCP.cp*-*.* "%SP_DIR%" if errorlevel 1 exit 1
Add /FORCE:MULTIPLE to Windows linker flags
Add /FORCE:MULTIPLE to Windows linker flags
Batchfile
bsd-3-clause
mariusvniekerk/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes,mariusvniekerk/staged-recipes,conda-forge/staged-recipes,conda-forge/staged-recipes,johanneskoester/staged-recipes,goanpeca/staged-recipes,kwilcox/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes
01dfedae60d0f7fe9b4eda4a7c9eb2d9d44a8910
build.cmd
build.cmd
@echo off setlocal set _projectName=CommandLine set _solution=%_projectName%.sln set _codeProject=src\%_projectName%.csproj set _analyzerProject=analyzer\%_projectName%.Analyzer\%_projectName%.Analyzer.csproj set _testProject=test\%_projectName%.tests.csproj set _config=%1 if not defined _config ( set _config=Debug ) echo Building Config '%_config%' echo Solution: '%_solution%' echo Code: '%_codeProject%' echo Analyzer: '%_analyzerProject%' echo Test: '%_testProject%' echo -------------------------- echo !!! Restoring packages !!! echo -------------------------- dotnet restore echo ------------------------- echo !!! Cleaning solution !!! echo ------------------------- dotnet clean %_solution% echo ------------------------- echo !!! Building solution !!! echo ------------------------- dotnet build %_solution% -c %_config% echo ------------------------- echo !!! Building analyzer !!! echo ------------------------- dotnet build %_analyzerProject% -c %_config% echo --------------------- echo !!! Running tests !!! echo --------------------- dotnet test --no-build -c %_config% %_testProject% if not "%_config%" == "Release" ( echo ======================================================= echo Skipping over package creation as not building Release echo ======================================================= goto :eof ) echo ------------------------------ echo !!! Creating NuGet package !!! echo ------------------------------ dotnet pack --no-build -c %_config% %_codeProject% endlocal @echo on
@echo off setlocal set _projectName=CommandLine set _solution=%_projectName%.sln set _codeProject=src\%_projectName%.csproj set _analyzerProject=analyzer\%_projectName%.Analyzer\%_projectName%.Analyzer.csproj set _testProject=test\%_projectName%.tests.csproj set _config=%1 if not defined _config ( set _config=Debug ) echo Building Config '%_config%' echo Solution: '%_solution%' echo Code: '%_codeProject%' echo Analyzer: '%_analyzerProject%' echo Test: '%_testProject%' echo -------------------------- echo !!! Restoring packages !!! echo -------------------------- dotnet restore echo ------------------------- echo !!! Cleaning solution !!! echo ------------------------- dotnet clean %_solution% echo ------------------------- echo !!! Building solution !!! echo ------------------------- dotnet build %_solution% -c %_config% echo ------------------------- echo !!! Building analyzer !!! echo ------------------------- dotnet build %_analyzerProject% -c %_config% echo --------------------- echo !!! Running tests !!! echo --------------------- dotnet test --no-build -c %_config% %_testProject% if not "%_config%" == "Release" ( echo ======================================================= echo Skipping over package creation as not building Release echo ======================================================= goto :eof ) echo ------------------------------ echo !!! Creating NuGet package !!! echo ------------------------------ dotnet pack --no-build -c %_config% %_codeProject% -o ..\bin\package endlocal @echo on
Make sure the package is created in the bin folder.
Make sure the package is created in the bin folder.
Batchfile
mit
AlexGhiondea/CommandLine,AlexGhiondea/CommandLine
5a404cbe5909084282b7e66e1024bb1f44bf92aa
clean.cmd
clean.cmd
@echo off pushd "%~dp0" for %%i in (Debug Release) do "%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\msbuild" /target:Clean /p:Configuration=%%i src\NCrontab.sln popd
@"%~dp0build" /v:n /target:Clean
Clean script can simply delegate to build script
Clean script can simply delegate to build script
Batchfile
apache-2.0
atifaziz/NCrontab,atifaziz/NCrontab
67de21f629b737d91c024269c4345007d56db22c
ci/scripts/build-project-windows.bat
ci/scripts/build-project-windows.bat
SET "JAVA_HOME=C:\opt\jdk-8" cd git-repo ./mvnw clean install -X
SET "JAVA_HOME=C:\opt\jdk-8" cd git-repo ./mvnw clean install
Stop using debug flag for Windows build
Stop using debug flag for Windows build
Batchfile
apache-2.0
snicoll/initializr,spring-io/initializr,spring-io/initializr,snicoll/initializr,spring-io/initializr,snicoll/initializr
0e6e1f66bfe33676652e00d10d24402ce15cd89a
build.bat
build.bat
@echo on set config=%1 if "%config%" == "" ( set config=Release ) set version=1.0.0 if not "%PackageVersion%" == "" ( set version=%PackageVersion% ) if not "%GitVersion.ClassicVersion%" == "" ( REM override version number with the one provided by git set version=%GitVersion.ClassicVersion% echo Version set to %version% REM patch assemblyinfo with this version number REM call %GitVersion% /updateAssemblyInfo "properties\assemblyinfo.cs" call %GitVersion% /output buildserver /updateAssemblyInfo true ) REM AssemblyInfoUtil.exe -set:%version% "C:\Program Files\MyProject1\AssemblyInfo.cs" set nuget= if "%nuget%" == "" ( set nuget=nuget ) REM ;AssemblyVersion="%version%";AssemblyFileVersion="%version%" %WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild ManagedWifi.msbuild /p:Configuration="%config%";VersionNumber=%version% /m /v:M /fl /flp:LogFile=msbuild.log;Verbosity=diag /nr:false mkdir Build mkdir Build\lib mkdir Build\lib\net20 %nuget% pack "ManagedWifi.nuspec" -NoPackageAnalysis -verbosity detailed -o Build -Version %version% -p Configuration="%config%"
@echo on set config=%1 if "%config%" == "" ( set config=Release ) set version=1.0.0 if not "%PackageVersion%" == "" ( set version=%PackageVersion% ) if not "%GitVersion.ClassicVersion%" == "" ( REM override version number with the one provided by git set version=%GitVersion.ClassicVersion% echo Version set to %version% REM patch assemblyinfo with this version number REM call %GitVersion% /updateAssemblyInfo "properties\assemblyinfo.cs" call %GitVersion% /output buildserver /updateAssemblyInfo true ) REM AssemblyInfoUtil.exe -set:%version% "C:\Program Files\MyProject1\AssemblyInfo.cs" set nuget= if "%nuget%" == "" ( set nuget=nuget ) REM ;AssemblyVersion="%version%";AssemblyFileVersion="%version%" %WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild ManagedWifi.msbuild /p:Configuration="%config%";VersionNumber=%version% /m /v:M /clp:Verbosity=diag /nr:false mkdir Build mkdir Build\lib mkdir Build\lib\net20 %nuget% pack "ManagedWifi.nuspec" -NoPackageAnalysis -verbosity detailed -o Build -Version %version% -p Configuration="%config%"
Build script now logs to console
Build script now logs to console
Batchfile
mit
stevelong00/WiFi-Library,stevelong00/WiFi-Library
6673a1297fc80d5fa1df89d57a7a645382431d80
build.cmd
build.cmd
@echo off cd %~dp0 SETLOCAL ENABLEEXTENSIONS SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe IF EXIST %CACHED_NUGET% goto copynuget echo Downloading latest version of NuGet.exe... IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet @powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '%CACHED_NUGET%'" :copynuget IF EXIST .nuget\nuget.exe goto restore md .nuget copy %CACHED_NUGET% .nuget\nuget.exe > nul :restore IF EXIST packages\KoreBuild goto run .nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre .nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion IF "%SKIP_KRE_INSTALL%"=="1" goto run CALL packages\KoreBuild\build\kvm upgrade -runtime CLR -x86 CALL packages\KoreBuild\build\kvm install default -runtime CoreCLR -x86 :run CALL packages\KoreBuild\build\kvm use default -runtime CLR -x86 CALL packages\KoreBuild\build\kpm restore CALL packages\KoreBuild\build\kvm build :end exit /b %ERRORLEVEL%
@echo off cd %~dp0 SETLOCAL ENABLEEXTENSIONS SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe IF EXIST %CACHED_NUGET% goto copynuget echo Downloading latest version of NuGet.exe... IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet @powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '%CACHED_NUGET%'" :copynuget IF EXIST .nuget\nuget.exe goto restore md .nuget copy %CACHED_NUGET% .nuget\nuget.exe > nul :restore IF EXIST packages\KoreBuild goto run .nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre -Source https://www.myget.org/F/aspnetvnext/api/v2 .nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion IF "%SKIP_KRE_INSTALL%"=="1" goto run CALL packages\KoreBuild\build\kvm upgrade -runtime CLR -x86 CALL packages\KoreBuild\build\kvm install default -runtime CoreCLR -x86 :run CALL packages\KoreBuild\build\kvm use default -runtime CLR -x86 CALL packages\KoreBuild\build\kpm restore CALL packages\KoreBuild\build\kvm build :end exit /b %ERRORLEVEL%
Use myget feed to download KoreBuild package
Use myget feed to download KoreBuild package
Batchfile
apache-2.0
artiomchi/R4MVC,wwwlicious/R4MVC,wwwlicious/R4MVC,artiomchi/R4MVC,wwwlicious/R4MVC,T4MVC/R4MVC
8ac1349c3f49895b3e2053ba302fa970c40db2e2
build.cmd
build.cmd
@ECHO OFF SETLOCAL SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe SET SOLUTION_PATH=%~dp0src\CodeFormatter.sln SET BUILD_TOOLS_PATH="%ProgramFiles(x86)%\MSBuild\14.0\bin\MSBuild.exe" IF NOT EXIST %BUILD_TOOLS_PATH% ( echo In order to build or run this tool you need either Visual Studio 2015 Preview or echo Microsoft Build Tools 2015 Preview tools installed. echo. echo Visit http://www.visualstudio.com/en-us/downloads/visual-studio-2015-downloads-vs echo to download either. goto :eof ) IF EXIST %CACHED_NUGET% goto restore echo Downloading latest version of NuGet.exe... IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet @powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '%CACHED_NUGET%'" :restore IF EXIST "%~dp0src\packages" goto build %CACHED_NUGET% restore %SOLUTION_PATH% :build %BUILD_TOOLS_PATH% %SOLUTION_PATH% /p:OutDir="%~dp0bin " /nologo /m /v:m /flp:verbosity=normal %*
@ECHO OFF SETLOCAL SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe SET SOLUTION_PATH=%~dp0src\CodeFormatter.sln SET BUILD_TOOLS_PATH="%ProgramFiles(x86)%\MSBuild\14.0\bin\MSBuild.exe" IF NOT EXIST %BUILD_TOOLS_PATH% ( echo In order to build or run this tool you need either Visual Studio 2015 or echo Microsoft Build Tools 2015 tools installed. echo. echo Visit http://www.visualstudio.com/en-us/downloads/visual-studio-2015-downloads-vs echo to download either. goto :eof ) IF EXIST %CACHED_NUGET% goto restore echo Downloading latest version of NuGet.exe... IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet @powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '%CACHED_NUGET%'" :restore IF EXIST "%~dp0src\packages" goto build %CACHED_NUGET% restore %SOLUTION_PATH% :build %BUILD_TOOLS_PATH% %SOLUTION_PATH% /p:OutDir="%~dp0bin " /nologo /m /v:m /flp:verbosity=normal %*
Remove 'Preview' qualifier from VS and MSBuild
Remove 'Preview' qualifier from VS and MSBuild Firstly, they don't add much and secondly, we'll have to remove them eventually anyways.
Batchfile
mit
shiftkey/codeformatter,rollie42/codeformatter,jaredpar/codeformatter,michaelcfanning/codeformatter,dotnet/codeformatter,mmitche/codeformatter,weltkante/codeformatter,jeremyabbott/codeformatter,BertTank/codeformatter,Maxwe11/codeformatter,david-mitchell/codeformatter,rainersigwald/codeformatter,twsouthwick/codeformatter,shiftkey/Octokit.CodeFormatter,cbjugstad/codeformatter,dotnet/codeformatter,hickford/codeformatter,twsouthwick/codeformatter,kharaone/codeformatter,mmitche/codeformatter,BradBarnich/codeformatter,srivatsn/codeformatter
da3cfdb7f56cb58640b038e9749dfc74d0b027c8
build.cmd
build.cmd
@echo Off set config=%1 if "%config%" == "" ( set config=debug ) .nuget\NuGet.exe restore JabbR.sln -configFile %~dp0\.nuget\NuGet.config -nocache msbuild %~dp0\Build\Build.proj /p:Configuration="%config%" /v:M /fl /flp:LogFile=msbuild.log;Verbosity=Normal /nr:false /p:VisualStudioVersion=11.0
@echo Off set config=%1 if "%config%" == "" ( set config=debug ) .nuget\NuGet.exe restore JabbR.sln -configFile %~dp0\.nuget\NuGet.config -nocache msbuild %~dp0\Build\Build.proj /p:Configuration="%config%" /v:M /fl /flp:LogFile=msbuild.log;Verbosity=Normal /nr:false
Remove the vs version flag.
Remove the vs version flag.
Batchfile
mit
yadyn/JabbR,fuzeman/vox,LookLikeAPro/JabbR,timgranstrom/JabbR,18098924759/JabbR,yadyn/JabbR,CrankyTRex/JabbRMirror,borisyankov/JabbR,18098924759/JabbR,CrankyTRex/JabbRMirror,JabbR/JabbR,borisyankov/JabbR,LookLikeAPro/JabbR,fuzeman/vox,timgranstrom/JabbR,JabbR/JabbR,CrankyTRex/JabbRMirror,ajayanandgit/JabbR,M-Zuber/JabbR,lukehoban/JabbR,fuzeman/vox,SonOfSam/JabbR,borisyankov/JabbR,SonOfSam/JabbR,LookLikeAPro/JabbR,e10/JabbR,lukehoban/JabbR,lukehoban/JabbR,ajayanandgit/JabbR,yadyn/JabbR,mzdv/JabbR,e10/JabbR,mzdv/JabbR,M-Zuber/JabbR
d81933531593bad7e9263a9a01b8b1aa34281f8a
tools/release_win.bat
tools/release_win.bat
PATH=C:\python26;C:\progra~2\7-zip;%PATH% del /q /s dist\*.* python setup.py py2exe cd dist 7z d library.zip jinja2\* dns\* 'graphy\* 7z a namebench_for_Windows.zip -r * namebench -x -O 8.8.8.8 -t5 -o test.html start test.html cd ..
PATH=C:\python26;C:\progra~2\7-zip;%PATH% del /q /s dist\*.* python setup.py py2exe cd dist 7z d library.zip jinja2\* dns\* 'graphy\* del /s w9xpopen.exe copy ..\README.txt . 7z a namebench_for_Windows.zip -r * namebench -x -O 8.8.8.8 -t5 -o test.html start test.html cd ..
Remove w9xopen.exe and add README.txt to Windows build
Remove w9xopen.exe and add README.txt to Windows build
Batchfile
apache-2.0
somehume/namebench
4045dda98cdf61c998e18d898d4108588385c8dc
bootstrap.cmd
bootstrap.cmd
@echo off NuGet.exe install MSBuildTasks -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive NuGet.exe install NUnit.Runners -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive NuGet.exe install Wix.Toolset -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
@echo off NuGet.exe install MSBuildTasks -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive NuGet.exe install NUnit.Runners -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive -Version 2.6.4 NuGet.exe install Wix.Toolset -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
Set nuget version to use as 2.6.4
[nunit] Set nuget version to use as 2.6.4
Batchfile
mit
dblock/waffle,hazendaz/waffle,hazendaz/waffle,AriSuutariST/waffle,Waffle/waffle,dblock/waffle,hazendaz/waffle,dblock/waffle,AriSuutariST/waffle,Waffle/waffle,AriSuutariST/waffle,AriSuutariST/waffle,Waffle/waffle,dblock/waffle
316e57868a0ce9efe06195a14f689e7945e17281
ci/install_npcap.bat
ci/install_npcap.bat
set NPCAP_OEM_FILE=npcap-0.9988-oem.exe curl --digest --user %NPCAP_USERNAME%:%NPCAP_PASSWORD% https://nmap.org/npcap/oem/dist/%NPCAP_OEM_FILE% --output %NPCAP_OEM_FILE% %NPCAP_OEM_FILE% /S /winpcap_mode xcopy C:\Windows\System32\Npcap\*.dll C:\Windows\System32 xcopy C:\Windows\SysWOW64\Npcap\*.dll C:\Windows\SysWOW64 appveyor DownloadFile https://nmap.org/npcap/dist/npcap-sdk-1.04.zip mkdir C:\Npcap-sdk 7z x .\npcap-sdk-1.04.zip -oC:\Npcap-sdk
set NPCAP_OEM_FILE=npcap-0.9988-oem.exe curl --digest --user %NPCAP_USERNAME%:%NPCAP_PASSWORD% https://nmap.org/npcap/oem/dist/%NPCAP_OEM_FILE% --output %NPCAP_OEM_FILE% %NPCAP_OEM_FILE% /S /winpcap_mode appveyor DownloadFile https://nmap.org/npcap/dist/npcap-sdk-1.04.zip mkdir C:\Npcap-sdk 7z x .\npcap-sdk-1.04.zip -oC:\Npcap-sdk
Remove xcopy from Npcap install script
Remove xcopy from Npcap install script
Batchfile
unlicense
seladb/PcapPlusPlus,seladb/PcapPlusPlus,seladb/PcapPlusPlus,seladb/PcapPlusPlus
ca63a66ad6ded4dd109b0bb9b4c6d9782c6b2557
recipes/cppast/bld.bat
recipes/cppast/bld.bat
setlocal EnableDelayedExpansion mkdir build cd build cmake -G "NMake Makefiles" ^ -DCMAKE_INSTALL_PREFIX:PATH="%LIBRARY_PREFIX%" ^ -DCMAKE_PREFIX_PATH:PATH="%LIBRARY_PREFIX%" ^ -DCMAKE_BUILD_TYPE:STRING=Release ^ -DCMAKE_LIBRARY_PATH:PATH="%LIBRARY_PREFIX%;%LIBRARY_PREFIX%/bin" ^ .. if errorlevel 1 exit 1 nmake if errorlevel 1 exit 1
setlocal EnableDelayedExpansion mkdir build cd build cmake -G "NMake Makefiles" ^ -DCMAKE_INSTALL_PREFIX:PATH="%LIBRARY_PREFIX%" ^ -DCMAKE_PREFIX_PATH:PATH="%LIBRARY_PREFIX%" ^ -DCMAKE_BUILD_TYPE:STRING=Release ^ -DCMAKE_LIBRARY_PATH:PATH="%LIBRARY_PREFIX%;%LIBRARY_PREFIX%/bin" ^ -DBUILD_SHARED_LIBS:BOOL=ON ^ .. if errorlevel 1 exit 1 nmake if errorlevel 1 exit 1
Build shared library on Windows
Build shared library on Windows
Batchfile
bsd-3-clause
conda-forge/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes,conda-forge/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes
d8aaf06b9b0d4b0238a8cce564ee8aed3645df01
Kudu.Services.Web/updateNodeModules.cmd
Kudu.Services.Web/updateNodeModules.cmd
@echo off setlocal enabledelayedexpansion pushd %1 set attempts=5 set counter=0 :retry set /a counter+=1 echo Attempt %counter% out of %attempts% cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/da0885fc7a8a2facba79a8b5ca818ed6a730d856 IF %ERRORLEVEL% NEQ 0 goto error goto end :error if %counter% GEQ %attempts% goto :lastError goto retry :lastError popd echo An error has occured during npm install. exit /b 1 :end popd echo Finished successfully. exit /b 0
@echo off setlocal enabledelayedexpansion pushd %1 set attempts=5 set counter=0 :retry set /a counter+=1 echo Attempt %counter% out of %attempts% cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/eddc60f7017a05a02bd9b19b3162ce58a10de81a IF %ERRORLEVEL% NEQ 0 goto error goto end :error if %counter% GEQ %attempts% goto :lastError goto retry :lastError popd echo An error has occured during npm install. exit /b 1 :end popd echo Finished successfully. exit /b 0
Update kuduscript to latest for adding python support
Update kuduscript to latest for adding python support
Batchfile
apache-2.0
projectkudu/kudu,juvchan/kudu,uQr/kudu,YOTOV-LIMITED/kudu,dev-enthusiast/kudu,puneet-gupta/kudu,oliver-feng/kudu,barnyp/kudu,juvchan/kudu,shibayan/kudu,duncansmart/kudu,uQr/kudu,mauricionr/kudu,puneet-gupta/kudu,oliver-feng/kudu,chrisrpatterson/kudu,chrisrpatterson/kudu,shrimpy/kudu,YOTOV-LIMITED/kudu,kenegozi/kudu,badescuga/kudu,kali786516/kudu,bbauya/kudu,duncansmart/kudu,sitereactor/kudu,MavenRain/kudu,MavenRain/kudu,barnyp/kudu,sitereactor/kudu,juoni/kudu,bbauya/kudu,YOTOV-LIMITED/kudu,projectkudu/kudu,kenegozi/kudu,dev-enthusiast/kudu,mauricionr/kudu,barnyp/kudu,barnyp/kudu,projectkudu/kudu,badescuga/kudu,shibayan/kudu,sitereactor/kudu,YOTOV-LIMITED/kudu,shibayan/kudu,juoni/kudu,mauricionr/kudu,oliver-feng/kudu,EricSten-MSFT/kudu,chrisrpatterson/kudu,chrisrpatterson/kudu,dev-enthusiast/kudu,badescuga/kudu,mauricionr/kudu,kenegozi/kudu,juvchan/kudu,badescuga/kudu,bbauya/kudu,EricSten-MSFT/kudu,dev-enthusiast/kudu,oliver-feng/kudu,shrimpy/kudu,juoni/kudu,duncansmart/kudu,shibayan/kudu,projectkudu/kudu,kali786516/kudu,MavenRain/kudu,puneet-gupta/kudu,badescuga/kudu,uQr/kudu,juvchan/kudu,EricSten-MSFT/kudu,kali786516/kudu,uQr/kudu,kenegozi/kudu,projectkudu/kudu,bbauya/kudu,shrimpy/kudu,juvchan/kudu,kali786516/kudu,sitereactor/kudu,puneet-gupta/kudu,juoni/kudu,shrimpy/kudu,duncansmart/kudu,EricSten-MSFT/kudu,puneet-gupta/kudu,EricSten-MSFT/kudu,sitereactor/kudu,MavenRain/kudu,shibayan/kudu
f324f8d0a0c21f47a1a9774a636682a4c9e6025d
windows/floppy/windows-2012-standard-amd64-vagrant/configure.bat
windows/floppy/windows-2012-standard-amd64-vagrant/configure.bat
:: %~dp0 gives the dirname of the script cmd /c %~dp0firewall-disable.bat cmd /c %~dp0vagrant-ssh.bat
:: %~dp0 gives the dirname of the script cmd /c %~dp0firewall-disable.bat cmd /c %~dp0install-cygwin-sshd.bat
Fix path to install cygwin.
Fix path to install cygwin.
Batchfile
mpl-2.0
michel-slm/packer-qemu-templates,mbassett/packer-qemu-templates,gregjan/packer-qemu-templates,jakobadam/packer-qemu-templates,entropicgestalt/packer-qemu-templates
6805ecc7cb7c022ca30dcbc71eeb25449fee620d
build/nuget/build-nupkg.cmd
build/nuget/build-nupkg.cmd
@ECHO OFF WHERE /Q nuget >NUL IF %ERRORLEVEL% NEQ 0 ( ECHO nuget not found. ECHO. ECHO Run "%~pd0download-nuget.cmd" to download the latest version, or update PATH as appropriate. GOTO END ) nuget pack %~dp0WindowsCanvas.nuspec -nopackageanalysis -outputdirectory %~dp0..\..\bin %* nuget pack %~dp0WindowsCanvas-debug.nuspec -nopackageanalysis -outputdirectory %~dp0..\..\bin %* :END
@ECHO OFF PUSHD %~dp0 WHERE /Q nuget >NUL IF %ERRORLEVEL% NEQ 0 ( ECHO nuget not found. ECHO. ECHO Run "%~pd0download-nuget.cmd" to download the latest version, or update PATH as appropriate. GOTO END ) nuget pack %~dp0WindowsCanvas.nuspec -nopackageanalysis -outputdirectory %~dp0..\..\bin %* nuget pack %~dp0WindowsCanvas-debug.nuspec -nopackageanalysis -outputdirectory %~dp0..\..\bin %* :END POPD
Fix build script to also work when nuget.exe isn't in the path
Fix build script to also work when nuget.exe isn't in the path
Batchfile
mit
ChrisBriggsy/Win2D,zjsxwc/Win2D,ChrisBriggsy/Win2D,LanceMcCarthy/Win2D,ChrisBriggsy/Win2D,zjsxwc/Win2D,LanceMcCarthy/Win2D,LanceMcCarthy/Win2D,zjsxwc/Win2D
08f9318753f6f0a376b447f6ff2c8415b5429a1e
tools/release_win.bat
tools/release_win.bat
PATH=C:\python26;C:\progra~2\7-zip;%PATH% del /q /s dist\*.* python setup.py py2exe cd dist 7z d library.zip jinja2\* dns\* 'graphy\* 7z a namebench_for_Windows.zip -r * namebench -x -O 8.8.8.8 -t5 -o test.html start test.html cd ..
PATH=C:\python26;C:\progra~2\7-zip;%PATH% del /q /s dist\*.* python setup.py py2exe cd dist 7z d library.zip jinja2\* dns\* 'graphy\* del /s w9xpopen.exe copy ..\README.txt . 7z a namebench_for_Windows.zip -r * namebench -x -O 8.8.8.8 -t5 -o test.html start test.html cd ..
Remove w9xopen.exe and add README.txt to Windows build
Remove w9xopen.exe and add README.txt to Windows build
Batchfile
apache-2.0
jimmsta/namebench-1,catap/namebench
bcbf8056f42195d87fba6fa8d225f7c9406e2d4a
buildscript/modules/lavapipejson.cmd
buildscript/modules/lavapipejson.cmd
@setlocal ENABLEDELAYEDEXPANSION @set jsonlines=0 @for /R %devroot%\%projectname%\bin\%abi%\ %%a IN (lvp_icd.*.json) do @for /f tokens^=^*^ delims^= %%b IN (%%a) do @( @set /a jsonlines+=1 @IF !jsonlines! NEQ 4 set jsonline[!jsonlines!]=%%b @IF !jsonlines! EQU 4 set jsonline[!jsonlines!]= "library_path": "vulkan_lvp.dll" ) @for /R %devroot%\%projectname%\bin\%abi%\ %%a IN (lvp_icd.*.json) do @( @del %%a @for /L %%b IN (1,1,%jsonlines%) do @echo !jsonline[%%b]!>>%%a )
@setlocal ENABLEDELAYEDEXPANSION @set jsonlines=0 @for /R %devroot%\%projectname%\bin\%abi%\ %%a IN (lvp_icd.*.json) do @for /f tokens^=^*^ delims^= %%b IN (%%a) do @( @set /a jsonlines+=1 @IF !jsonlines! NEQ 4 set jsonline[!jsonlines!]=%%b @IF !jsonlines! EQU 4 set jsonline[!jsonlines!]= "library_path": ".^\^\vulkan_lvp.dll" ) @for /R %devroot%\%projectname%\bin\%abi%\ %%a IN (lvp_icd.*.json) do @( @del %%a @for /L %%b IN (1,1,%jsonlines%) do @echo !jsonline[%%b]!>>%%a )
Fix lavapipe JSON patcher. Fixes 0a775146
Fix lavapipe JSON patcher. Fixes 0a775146
Batchfile
mit
pal1000/mesa-dist-win,pal1000/mesa-dist-win
038a5fdd65824a386e28048a43634f1170e11d1e
.buildkite/sign_windows_installer.bat
.buildkite/sign_windows_installer.bat
@echo off rem To sign the Windows installer, set the `SIGN_WINDOWS_INSTALLER=true` environment variable. rem This will download the Kolibri Windows installer artifact at the windows-2016 Buildkite agent. rem After the installer successfully sign it will upload the installer at the Sign Windows Installer pipeline artifact. IF NOT "%SIGN_WINDOWS_INSTALLER%" == "true" (GOTO DONT_SIGN) set current_path=%cd% buildkite-agent.exe artifact download "installer/*.exe" . --step "Build kolibri windows installer" --build %BUILDKITE_BUILD_ID% --agent-access-token %BUILDKITE_AGENT_ACCESS_TOKEN% %WINDOWS_SIGN_SCRIPT_PATH% "%current_path%\installer" && cd "%current_path%\installer\" && ren *.exe *-signed.exe && buildkite-agent.exe artifact upload "*.exe" GOTO END :DONT_SIGN echo Set the SIGN_WINDOWS_INSTALLER=true environment variable to sign the Windows installer. :END
@echo off rem To sign the Windows installer, set the `SIGN_WINDOWS_INSTALLER=true` environment variable. rem This will download the Kolibri Windows installer artifact at the windows-2016 Buildkite agent. rem After the installer successfully sign it will upload the installer at the Sign Windows Installer pipeline artifact. IF NOT "%SIGN_WINDOWS_INSTALLER%" == "true" (GOTO DONT_SIGN) set current_path=%cd% buildkite-agent.exe artifact download "installer/*.exe" . --step "Build kolibri windows installer" --build %BUILDKITE_BUILD_ID% --agent-access-token %BUILDKITE_AGENT_ACCESS_TOKEN% %WINDOWS_SIGN_SCRIPT_PATH% "%current_path%\installer" && cd "%current_path%\installer\" && ren *.exe *.-signed.exe && buildkite-agent.exe artifact upload "*.exe" GOTO END :DONT_SIGN echo Set the SIGN_WINDOWS_INSTALLER=true environment variable to sign the Windows installer. :END
Add period to the signed name.
Add period to the signed name.
Batchfile
mit
indirectlylit/kolibri,learningequality/kolibri,indirectlylit/kolibri,indirectlylit/kolibri,mrpau/kolibri,lyw07/kolibri,lyw07/kolibri,mrpau/kolibri,learningequality/kolibri,indirectlylit/kolibri,learningequality/kolibri,mrpau/kolibri,learningequality/kolibri,lyw07/kolibri,lyw07/kolibri,mrpau/kolibri
4c0838439a32360f6b1e338fa07c429da9044e89
recipes/netgen/bld.bat
recipes/netgen/bld.bat
mkdir build cd build REM TODO: can not find tkint.h -> disabling GUI for WIN cmake .. -G "Ninja" ^ -DCMAKE_BUILD_TYPE="Release" ^ -DINSTALL_DIR_LAYOUT="Unix" ^ -DCMAKE_PREFIX_PATH:FILEPATH="%PREFIX%" ^ -DCMAKE_INSTALL_PREFIX:FILEPATH="%LIBRARY_PREFIX%" ^ -DNG_INSTALL_DIR_INCLUDE:FILEPATHE="%LIBRARY_PREFIX%/include/netgen" ^ -DINSTALL_DIR:FILEPATH:FILEPATH="%LIBRARY_PREFIX%" ^ -DOCC_INCLUDE_DIR:FILEPATH="%LIBRARY_PREFIX%/include/opencascade" ^ -DOCC_LIBRARY_DIR:FILEPATH="%LIBRARY_PREFIX%/lib" ^ -DUSE_OCC=ON ^ -DUSE_PYTHON=ON ^ -DUSE_GUI=OFF ^ -DUSE_SUPERBUILD=OFF if errorlevel 1 exit 1 ninja install if errorlevel 1 exit 1
mkdir build cd build REM TODO: can not find tkint.h -> disabling GUI for WIN cmake .. -G "Ninja" ^ -DCMAKE_BUILD_TYPE="Release" ^ -DINSTALL_DIR_LAYOUT="Unix" ^ -DCMAKE_PREFIX_PATH:FILEPATH="%PREFIX%" ^ -DCMAKE_INSTALL_PREFIX:FILEPATH="%LIBRARY_PREFIX%" ^ -DNG_INSTALL_DIR_INCLUDE:FILEPATHE="%LIBRARY_PREFIX%/include/netgen" ^ -DOCC_INCLUDE_DIR:FILEPATH="%LIBRARY_PREFIX%/include/opencascade" ^ -DOCC_LIBRARY_DIR:FILEPATH="%LIBRARY_PREFIX%/lib" ^ -DUSE_OCC=ON ^ -DUSE_PYTHON=ON ^ -DUSE_GUI=OFF ^ -DUSE_SUPERBUILD=OFF if errorlevel 1 exit 1 ninja install if errorlevel 1 exit 1
Remove unnecessary cmake flag INSTALL_DIR
Remove unnecessary cmake flag INSTALL_DIR
Batchfile
bsd-3-clause
basnijholt/staged-recipes,basnijholt/staged-recipes,guillochon/staged-recipes,isuruf/staged-recipes,scopatz/staged-recipes,barkls/staged-recipes,chrisburr/staged-recipes,igortg/staged-recipes,stuertz/staged-recipes,mcs07/staged-recipes,jakirkham/staged-recipes,jjhelmus/staged-recipes,mcs07/staged-recipes,jochym/staged-recipes,asmeurer/staged-recipes,kwilcox/staged-recipes,cpaulik/staged-recipes,ocefpaf/staged-recipes,barkls/staged-recipes,jochym/staged-recipes,stuertz/staged-recipes,patricksnape/staged-recipes,pmlandwehr/staged-recipes,jakirkham/staged-recipes,kwilcox/staged-recipes,mariusvniekerk/staged-recipes,ocefpaf/staged-recipes,petrushy/staged-recipes,pmlandwehr/staged-recipes,ReimarBauer/staged-recipes,igortg/staged-recipes,Juanlu001/staged-recipes,isuruf/staged-recipes,synapticarbors/staged-recipes,goanpeca/staged-recipes,rmcgibbo/staged-recipes,conda-forge/staged-recipes,ceholden/staged-recipes,dschreij/staged-recipes,chrisburr/staged-recipes,rvalieris/staged-recipes,dschreij/staged-recipes,johanneskoester/staged-recipes,SylvainCorlay/staged-recipes,shadowwalkersb/staged-recipes,ceholden/staged-recipes,scopatz/staged-recipes,jjhelmus/staged-recipes,birdsarah/staged-recipes,hadim/staged-recipes,SylvainCorlay/staged-recipes,birdsarah/staged-recipes,sodre/staged-recipes,shadowwalkersb/staged-recipes,sodre/staged-recipes,rmcgibbo/staged-recipes,petrushy/staged-recipes,goanpeca/staged-recipes,asmeurer/staged-recipes,Juanlu001/staged-recipes,sodre/staged-recipes,cpaulik/staged-recipes,ReimarBauer/staged-recipes,patricksnape/staged-recipes,johanneskoester/staged-recipes,hadim/staged-recipes,mariusvniekerk/staged-recipes,conda-forge/staged-recipes,guillochon/staged-recipes,synapticarbors/staged-recipes,rvalieris/staged-recipes
58a02bc0043e1c274ffc3ee672a92c2a17938ef6
runtime/org.openmole.runtime.daemon/src/main/resources/run.bat
runtime/org.openmole.runtime.daemon/src/main/resources/run.bat
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S org.*') DO RMDIR /S /Q %%G java -ea -Dosgi.classloader.singleThreadLoads=true -XX:+UseCompressedOops -XX:+CMSClassUnloadingEnabled -XX:+UseParallelGC -Xmx92m -jar plugins\org.eclipse.equinox.launcher.jar %*
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S org.*') DO RMDIR /S /Q %%G java -ea -Dosgi.classloader.singleThreadLoads=true -XX:+CMSClassUnloadingEnabled -XX:+UseParallelGC -Xmx92m -jar plugins\org.eclipse.equinox.launcher.jar %*
Remove compressed pointer flag for now.
Remove compressed pointer flag for now.
Batchfile
agpl-3.0
openmole/openmole,openmole/openmole,openmole/openmole,openmole/openmole,openmole/openmole
e38e72132206578ecf3ddaaa07ea3632e670f936
ci/scripts/build-project-windows.bat
ci/scripts/build-project-windows.bat
SET "JAVA_HOME=C:\opt\jdk-8" SET PATH=%PATH%;C:\Program Files\Git\usr\bin cd git-repo .\gradlew -Dorg.gradle.internal.launcher.welcomeMessageEnabled=false --no-daemon --max-workers=4 build
SET "JAVA_HOME=C:\opt\jdk-17" SET PATH=%PATH%;C:\Program Files\Git\usr\bin cd git-repo .\gradlew -Dorg.gradle.internal.launcher.welcomeMessageEnabled=false --no-daemon --max-workers=4 build
Use Java 17 for Windows CI build
Use Java 17 for Windows CI build See gh-28101
Batchfile
apache-2.0
wilkinsona/spring-boot,spring-projects/spring-boot,vpavic/spring-boot,scottfrederick/spring-boot,htynkn/spring-boot,spring-projects/spring-boot,spring-projects/spring-boot,wilkinsona/spring-boot,michael-simons/spring-boot,chrylis/spring-boot,htynkn/spring-boot,dreis2211/spring-boot,mdeinum/spring-boot,scottfrederick/spring-boot,aahlenst/spring-boot,michael-simons/spring-boot,wilkinsona/spring-boot,dreis2211/spring-boot,wilkinsona/spring-boot,mdeinum/spring-boot,vpavic/spring-boot,chrylis/spring-boot,chrylis/spring-boot,mdeinum/spring-boot,vpavic/spring-boot,dreis2211/spring-boot,scottfrederick/spring-boot,scottfrederick/spring-boot,aahlenst/spring-boot,mdeinum/spring-boot,aahlenst/spring-boot,chrylis/spring-boot,aahlenst/spring-boot,chrylis/spring-boot,chrylis/spring-boot,wilkinsona/spring-boot,dreis2211/spring-boot,spring-projects/spring-boot,aahlenst/spring-boot,dreis2211/spring-boot,wilkinsona/spring-boot,htynkn/spring-boot,htynkn/spring-boot,spring-projects/spring-boot,michael-simons/spring-boot,spring-projects/spring-boot,mdeinum/spring-boot,michael-simons/spring-boot,michael-simons/spring-boot,vpavic/spring-boot,htynkn/spring-boot,vpavic/spring-boot,dreis2211/spring-boot,aahlenst/spring-boot,vpavic/spring-boot,htynkn/spring-boot,scottfrederick/spring-boot,mdeinum/spring-boot,michael-simons/spring-boot,scottfrederick/spring-boot
9188f6e655de701dfa69fddcfa807313e9d3bcbf
databases/initdb/src/main/resources/bin/init-unifiedpush-db.bat
databases/initdb/src/main/resources/bin/init-unifiedpush-db.bat
@ECHO OFF IF %1.==. GOTO No1 set CONFIG=%1 REM set debug parameters REM set DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=1044,server=y,suspend=y" @powershell -Command "java -cp '..\lib\*' %DEBUG_OPTS% \"-Daerobase.config.dir=%CONFIG%\" org.jboss.aerogear.unifiedpush.DBMaintenance" GOTO End1 :No1 ECHO Missing Config file GOTO End1 :End1 @ECHO ON
@ECHO OFF IF %1.==. GOTO No1 set CONFIG=%1 REM set debug parameters REM set DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=1044,server=y,suspend=y" java -cp ..\lib\* %DEBUG_OPTS% "-Daerobase.config.dir=%CONFIG%" org.jboss.aerogear.unifiedpush.DBMaintenance > initdb-java.log 2>&1 GOTO End1 :No1 ECHO Missing Config file GOTO End1 :End1 @ECHO ON
Fix initdb under windows server 2016
Fix initdb under windows server 2016
Batchfile
apache-2.0
aerobase/unifiedpush-server,aerobase/unifiedpush-server,aerobase/unifiedpush-server
7e495caa4914fa88969d8873050fce1aeb4fff94
scripts/skiabot-slave-start-on-boot.bat
scripts/skiabot-slave-start-on-boot.bat
cd C:\Users\chrome-bot call gclient config https://skia.googlesource.com/buildbot.git call gclient sync --force cd buildbot python scripts\launch_slaves.py
cd C:\Users\chrome-bot call gclient config https://skia.googlesource.com/buildbot.git call gclient sync --force -j1 cd buildbot python scripts\launch_slaves.py
Add -j1 to windows launch script
Add -j1 to windows launch script (SkipBuildbotRuns) Review URL: https://codereview.chromium.org/23054003 git-svn-id: 32fc27f4dcfb6c0385cd9719852b95fe6680452d@10698 2bbb7eff-a529-9590-31e7-b0007b416f81
Batchfile
bsd-3-clause
google/skia-buildbot,Tiger66639/skia-buildbot,Tiger66639/skia-buildbot,google/skia-buildbot,Tiger66639/skia-buildbot,google/skia-buildbot,google/skia-buildbot,Tiger66639/skia-buildbot,google/skia-buildbot,google/skia-buildbot,Tiger66639/skia-buildbot,google/skia-buildbot,google/skia-buildbot,Tiger66639/skia-buildbot,Tiger66639/skia-buildbot
7603776b63bf66cdbb7945538a8b771af56cf6a2
conf/appveyor/run_with_env.cmd
conf/appveyor/run_with_env.cmd
:: Author: Lisandro Dalcin :: Contact: [email protected] :: Credits: Olivier Grisel and Kyle Kastner @ECHO OFF SET COMMAND_TO_RUN=%* SET WIN_SDK_ROOT=C:\Program Files\Microsoft SDKs\Windows IF "%PYTHON_VERSION:~0,1%" == "2" SET WIN_SDK_VERSION="v7.0" IF "%PYTHON_VERSION:~0,1%" == "3" SET WIN_SDK_VERSION="v7.1" IF "%PYTHON_ARCH%"=="64" ( ECHO Configuring Windows SDK %WIN_SDK_VERSION% for Python %PYTHON_VERSION% on a 64 bit architecture SET DISTUTILS_USE_SDK=1 SET MSSdk=1 "%WIN_SDK_ROOT%\%WIN_SDK_VERSION%\Setup\WindowsSdkVer.exe" -q -version:%WIN_SDK_VERSION% "%WIN_SDK_ROOT%\%WIN_SDK_VERSION%\Bin\SetEnv.cmd" /x64 /release ECHO Executing: %COMMAND_TO_RUN% call %COMMAND_TO_RUN% || EXIT 1 ) ELSE ( ECHO Using default MSVC build environment for 32 bit architecture ECHO Executing: %COMMAND_TO_RUN% call %COMMAND_TO_RUN% || EXIT 1 )
:: Author: Lisandro Dalcin :: Contact: [email protected] :: Credits: Olivier Grisel and Kyle Kastner @ECHO OFF SET COMMAND_TO_RUN=%* SET PYTHON_VERSION_MAJOR=%PYTHON_VERSION:~0,1% SET PYTHON_VERSION_MINOR=%PYTHON_VERSION:~2,1% SET WIN_SDK_ROOT=C:\Program Files\Microsoft SDKs\Windows IF %PYTHON_VERSION_MAJOR% == 2 SET WIN_SDK_VERSION="v7.0" IF %PYTHON_VERSION_MAJOR% == 3 SET WIN_SDK_VERSION="v7.1" IF %PYTHON_ARCH% == 64 SET USE_WIN_SDK=1 IF %PYTHON_VERSION_MAJOR% EQU 3 IF %PYTHON_VERSION_MINOR% GEQ 5 SET USE_WIN_SDK=0 IF %PYTHON_VERSION_MAJOR% GTR 3 SET USE_WIN_SDK=0 if %PYTHON_ARCH% == 32 SET USE_WIN_SDK=0 IF %USE_WIN_SDK% == 1 ( ECHO Configuring Windows SDK %WIN_SDK_VERSION% for %PYTHON_ARCH% bit architecture SET DISTUTILS_USE_SDK=1 SET MSSdk=1 "%WIN_SDK_ROOT%\%WIN_SDK_VERSION%\Setup\WindowsSdkVer.exe" -q -version:%WIN_SDK_VERSION% "%WIN_SDK_ROOT%\%WIN_SDK_VERSION%\Bin\SetEnv.cmd" /x64 /release ECHO Executing: %COMMAND_TO_RUN% CALL %COMMAND_TO_RUN% || EXIT 1 ) ELSE ( ECHO Using default MSVC build environment for %PYTHON_ARCH% bit architecture ECHO Executing: %COMMAND_TO_RUN% CALL %COMMAND_TO_RUN% || EXIT 1 )
Fix build for Python 3.5
AppVeyor: Fix build for Python 3.5
Batchfile
bsd-2-clause
mpi4py/mpi4py,mpi4py/mpi4py,mpi4py/mpi4py
f9da09de26e8f6324bb0db25b4ad85ce8882c483
windows/nsis-installer/oq-console.bat
windows/nsis-installer/oq-console.bat
@echo off setlocal set mypath=%~dp0 set PATH=%mypath%\python2.7;%PATH% set PYTHONPATH=%mypath%\lib set OQ_SITE_CFG_PATH=%mypath%\openquake.cfg doskey oq=python.exe -m openquake.commands.__main__ $* doskey oq-engine=python.exe -m openquake.commands.__main__ engine $* echo OpenQuake environment loaded echo The command 'oq-engine' is deprecated and will be removed. Please use 'oq engine' instead cmd /k endlocal
@echo off setlocal set mypath=%~dp0 set PATH=%mypath%\python2.7\Scripts;%mypath%\python2.7;%PATH% set PYTHONPATH=%mypath%\lib set OQ_SITE_CFG_PATH=%mypath%\openquake.cfg doskey oq=python.exe -m openquake.commands.__main__ $* doskey oq-engine=python.exe -m openquake.commands.__main__ engine $* echo OpenQuake environment loaded echo The command 'oq-engine' is deprecated and will be removed. Please use 'oq engine' instead cmd /k endlocal
Add python2.7\Scripts to PATH on Win
Add python2.7\Scripts to PATH on Win
Batchfile
agpl-3.0
gem/oq-nsis,gem/oq-installers,gem/oq-installers
8651701a7901b028c08608fb50b57110ec448c95
BuildForPublication.cmd
BuildForPublication.cmd
@echo off setlocal call NightlyBuild.cmd set PackageDir=%~dp0LocalPackages call dnu restore dnx\src\Microsoft.DotNet.xunit.performance.runner.dnx\project.json -f %PackageDir% call dnu pack dnx\src\Microsoft.DotNet.xunit.performance.runner.dnx\project.json --out %PackageDir% --configuration Release
@echo off setlocal call NightlyBuild.cmd set PackageDir=%~dp0LocalPackages pushd %~dp0dnx\src\Microsoft.DotNet.xunit.performance.runner.dnx call dnu restore call dnu pack --out %PackageDir% --configuration Release popd
Fix BuildForPublishcation.cmd Apparently the paths in nuget.config are relative to the *current* directory...
Fix BuildForPublishcation.cmd Apparently the paths in nuget.config are relative to the *current* directory...
Batchfile
mit
Microsoft/xunit-performance,visia/xunit-performance,Microsoft/xunit-performance,ericeil/xunit-performance,pharring/xunit-performance
ce87ad9bdb76b48857b21dfdb171d12c1871549a
cmake/cmake_visual_studio_2015_clang.bat
cmake/cmake_visual_studio_2015_clang.bat
@echo off cmake -G "Visual Studio 14 2015 Win64" %"Set the generator to Visual Studio 2015 x64"% ^ -T "v140_clang_3_7" %"Set the compiler toolchain to Clang/C2"% ^ -H%~dp0\.. %"Set the source directory to the parent directory"% ^ -B%~dp0\..\_build_clang %"Set the build directory to the _build_clang subdirectory"% ^ %* %"Forward additional command line arguments to CMake"% @echo on
@echo off cmake -G "Visual Studio 14 2015 Win64" %"Set the generator to Visual Studio 2015 x64"% ^ -T "v140_clang_c2" %"Set the compiler toolchain to Clang/C2"% ^ -H%~dp0\.. %"Set the source directory to the parent directory"% ^ -B%~dp0\..\_build_clang %"Set the build directory to the _build_clang subdirectory"% ^ %* %"Forward additional command line arguments to CMake"% @echo on
Update Clang/C2 batch file with new toolchain name
Update Clang/C2 batch file with new toolchain name
Batchfile
mit
Qartar/qflags,Qartar/qflags
366eb761328b2211064739317a90245e41c20e15
tests/fsharp/typeProviders/helloWorldCSharp/build.bat
tests/fsharp/typeProviders/helloWorldCSharp/build.bat
rem @if "%_echo%"=="" echo off setlocal call %~d0%~p0\..\..\..\config.bat if EXIST magic.dll del magic.dll if errorlevel 1 goto :Error "%FSC%" --out:magic.dll -a magic.fs --keyfile:magic.snk if errorlevel 1 goto :Error REM == If we are running this test on a lab machine, we may not be running from an elev cmd prompt REM == In that case, ADMIN_PIPE is set to the tool to invoke the command elevated. IF DEFINED ADMIN_PIPE %ADMIN_PIPE% %GACUTIL% /if magic.dll if errorlevel 1 goto :Error if EXIST provider.dll del provider.dll if ERRORLEVEL 1 goto :Error "%CSC%" /out:provider.dll /target:library /r:"%FSCOREDLLPATH%" /r:magic.dll provider.cs if ERRORLEVEL 1 goto :Error "%GACUTIL%" /if magic.dll "%FSC%" %fsc_flags% /debug+ /r:provider.dll /optimize- test.fsx if ERRORLEVEL 1 goto Error :Ok echo. > build.ok endlocal exit /b 0 :Error endlocal exit /b %ERRORLEVEL%
rem @if "%_echo%"=="" echo off setlocal call %~d0%~p0\..\..\..\config.bat if EXIST magic.dll del magic.dll if errorlevel 1 goto :Error "%FSC%" --out:magic.dll -a magic.fs --keyfile:magic.snk if errorlevel 1 goto :Error REM == If we are running this test on a lab machine, we may not be running from an elev cmd prompt REM == In that case, ADMIN_PIPE is set to the tool to invoke the command elevated. IF DEFINED ADMIN_PIPE %ADMIN_PIPE% %GACUTIL% /if magic.dll if errorlevel 1 goto :Error if EXIST provider.dll del provider.dll if ERRORLEVEL 1 goto :Error %CSC% /out:provider.dll /target:library "/r:%FSCOREDLLPATH%" /r:magic.dll provider.cs if ERRORLEVEL 1 goto :Error "%GACUTIL%" /if magic.dll "%FSC%" %fsc_flags% /debug+ /r:provider.dll /optimize- test.fsx if ERRORLEVEL 1 goto Error :Ok echo. > build.ok endlocal exit /b 0 :Error endlocal exit /b %ERRORLEVEL%
Fix accidental incorrect quoting in test script (changeset 1235391)
Fix accidental incorrect quoting in test script (changeset 1235391)
Batchfile
apache-2.0
dsyme/FSharp.Compiler.Service,forki/FSharp.Compiler.Service,syeerzy/visualfsharp,bleis-tift/FSharp.Compiler.Service,syeerzy/visualfsharp,wk-j/fsharp,ncave/FSharp.Compiler.Service,dsyme/fsharp,eloraiby/fsharp,directhex/fsharp,dsyme/FSharp.Compiler.Service,yever/FSharp.Compiler.Service,Jand42/FSharp.Compiler.Service,forki/FSharp.Compiler.Service,dsyme/fsharp,matthid/FSharp.Compiler.Service,BillHally/FSharp.Compiler.Service,cloudRoutine/FSharp.Compiler.Service,syeerzy/visualfsharp,dsyme/fsharp,fsharp/fsharp,matthid/FSharp.Compiler.Service,brettfo/visualfsharp,fsharp/fsharp,dsyme/fsharp,7sharp9/fsharp,alexischr/fsharp,rolfbjarne/fsharp,0x53A/FSharp.Compiler.Service,Jand42/FSharp.Compiler.Service,cloudRoutine/FSharp.Compiler.Service,rolfbjarne/fsharp,matthid/FSharp.Compiler.Service,0x53A/FSharp.Compiler.Service,In2TheWild/fsharp,Heather/fsharp,alexischr/fsharp,mafiya69/fsharp,Jand42/FSharp.Compiler.Service,forki/fsharp,eloraiby/fsharp,jeroldhaas/FSharp.Compiler.Service,sergey-tihon/FSharp.Compiler.Service,brettfo/visualfsharp,directhex/fsharp,vasily-kirichenko/FSharp.Compiler.Service,dsyme/fsharp,ncave/FSharp.Compiler.Service,forki/fsharp,vasily-kirichenko/FSharp.Compiler.Service,Heather/fsharp,brettfo/visualfsharp,jeroldhaas/FSharp.Compiler.Service,In2TheWild/fsharp,vasily-kirichenko/FSharp.Compiler.Service,syeerzy/visualfsharp,alfonsogarciacaro/FSharp.Compiler.Service,dsyme/fsharp,rojepp/FSharp.Compiler.Service,mafiya69/fsharp,sergey-tihon/FSharp.Compiler.Service,enricosada/fsharp,brettfo/visualfsharp,alfonsogarciacaro/FSharp.Compiler.Service,forki/FSharp.Compiler.Service,rneatherway/FSharp.Compiler.Service,7sharp9/fsharp,alfonsogarciacaro/FSharp.Compiler.Service,rojepp/FSharp.Compiler.Service,rneatherway/FSharp.Compiler.Service,dsyme/fsharp,cloudRoutine/FSharp.Compiler.Service,sergey-tihon/FSharp.Compiler.Service,yever/FSharp.Compiler.Service,bleis-tift/FSharp.Compiler.Service,brettfo/visualfsharp,0x53A/FSharp.Compiler.Service,syeerzy/visualfsharp,BillHally/FSharp.Compiler.Service,syeerzy/visualfsharp,brettfo/visualfsharp,wk-j/fsharp,dsyme/FSharp.Compiler.Service,enricosada/fsharp,rojepp/FSharp.Compiler.Service,alexischr/fsharp,ncave/FSharp.Compiler.Service,fsharp/fsharp
e1d2800c0fbd42f4261ea8fd571c3b4c80e038e4
packaging/nuget/do_package.bat
packaging/nuget/do_package.bat
@echo off pushd %~dp0 if not exist ..\..\nuget.exe ( powershell -Command "Invoke-WebRequest https://dist.nuget.org/win-x86-commandline/latest/nuget.exe -OutFile ..\..\nuget.exe" ) if not defined NUGET_VERSION ( echo NUGET_VERSION not defined, aborting... popd exit /b 1 ) if not defined API_KEY ( echo API_KEY not defined, aborting... popd exit /b 1 ) if not defined NUGET_REPO ( echo NUGET_REPO not defined, aborting... popd exit /b 1 ) for /r %%i in (*.nuspec) do ( ..\..\nuget.exe pack %%i /Properties version=%NUGET_VERSION% /BasePath ..\.. || exit /b 1 ) for /r %%i in (*.nupkg) do ( ..\..\nuget.exe push %%i %API_KEY% -Source %NUGET_REPO% || exit /b 1 ) del *.nupkg popd
@echo off pushd %~dp0 del *.nupkg if not exist ..\..\nuget.exe ( powershell -Command "Invoke-WebRequest https://dist.nuget.org/win-x86-commandline/latest/nuget.exe -OutFile ..\..\nuget.exe" ) if not defined NUGET_VERSION ( echo NUGET_VERSION not defined, aborting... popd exit /b 1 ) if not defined API_KEY ( echo API_KEY not defined, aborting... popd exit /b 1 ) if not defined NUGET_REPO ( echo NUGET_REPO not defined, aborting... popd exit /b 1 ) for /r %%i in (*.nuspec) do ( ..\..\nuget.exe pack %%i /Properties version=%NUGET_VERSION% /BasePath ..\.. || exit /b 1 ) for /r %%i in (*.nupkg) do ( ..\..\nuget.exe push %%i %API_KEY% -Source %NUGET_REPO% || exit /b 1 ) popd
Delete the nuget packages from the packaging directory BEFORE the script starts to avoid madness
Delete the nuget packages from the packaging directory BEFORE the script starts to avoid madness
Batchfile
apache-2.0
couchbase/couchbase-lite-net,couchbase/couchbase-lite-net,couchbase/couchbase-lite-net
0a53d224e57508bfe84fb2ad633048f473bc6469
src/Main/PublishNugetPackage.cmd
src/Main/PublishNugetPackage.cmd
@echo off echo Press any key to publish pause ".nuget\NuGet.exe" push Rssdp.1.0.0.7.nupkg pause
@echo off echo Press any key to publish pause ".nuget\NuGet.exe" push Rssdp.1.0.0.9.nupkg pause
Update nuget publish cmd file for latest version.
Update nuget publish cmd file for latest version.
Batchfile
mit
stickybun/RSSDP,Yortw/RSSDP,Yortw/RSSDP
1432afefdbdb487303f6055ccf2a36aa12b858ab
Server/install_windows_service.cmd
Server/install_windows_service.cmd
rem Alter this if you need to install multiple instances. @echo off set SERVICENAME="Cuberite" set CURRENTDIR=%CD% sc create %SERVICENAME% binPath= "%CURRENTDIR%\Cuberite.exe -d" start= auto DisplayName= %SERVICENAME% sc description %SERVICENAME% "Minecraft server instance"
rem Alter this if you need to install multiple instances. @echo off set SERVICENAME="Cuberite" set CURRENTDIR=%CD% sc create %SERVICENAME% binPath= "%CURRENTDIR%\Cuberite.exe -d" start= auto DisplayName= "@%CURRENTDIR%\Cuberite.exe,-1" sc description %SERVICENAME% "@%CURRENTDIR%\Cuberite.exe,-2"
Use string redirection in Windows service
Use string redirection in Windows service + Localisation support
Batchfile
apache-2.0
mc-server/MCServer,mc-server/MCServer,mc-server/MCServer,mc-server/MCServer,mc-server/MCServer,mc-server/MCServer
c4420e7690b540b9319624d38dd72d8234026adb
bin/test.bat
bin/test.bat
DEL c:\Users\Administrator\go\src\github.com\pivotal-cf-experimental\GATS\cf.exe bitsadmin.exe /transfer "DownloadStableCLI" https://s3.amazonaws.com/go-cli/builds/cf-windows-amd64.exe c:\Users\Administrator\go\src\github.com\pivotal-cf-experimental\GATS\cf.exe go get -u github.com/pivotal-cf-experimental/GATS/... SET GATSPATH=%GOPATH%\src\github.com\pivotal-cf-experimental\GATS SET PATH=%PATH%;%GATSPATH%;C:\Program Files\cURL\bin SET CONFIG=%CD%\config.json SET LOCAL_GOPATH=%GATSPATH%\Godeps\_workspace MKDIR %LOCAL_GOPATH%\bin SET GOPATH=%LOCAL_GOPATH%;%GOPATH% SET PATH=%LOCAL_GOPATH%\bin;%PATH% go install -v github.com/onsi/ginkgo/ginkgo ginkgo.exe -r -slowSpecThreshold=120 ./gats
DEL c:\Users\Administrator\go\src\github.com\pivotal-cf-experimental\GATS\cf.exe bitsadmin.exe /transfer "DownloadStableCLI" https://s3.amazonaws.com/go-cli/builds/cf-windows-amd64.exe c:\Users\Administrator\go\src\github.com\pivotal-cf-experimental\GATS\cf.exe go get -u github.com/pivotal-cf-experimental/GATS/... SET GATSPATH=%GOPATH%\src\github.com\pivotal-cf-experimental\GATS SET PATH=%GATSPATH%;%PATH%;C:\Program Files\cURL\bin SET CONFIG=%CD%\config.json SET LOCAL_GOPATH=%GATSPATH%\Godeps\_workspace MKDIR %LOCAL_GOPATH%\bin SET GOPATH=%LOCAL_GOPATH%;%GOPATH% SET PATH=%LOCAL_GOPATH%\bin;%PATH% go install -v github.com/onsi/ginkgo/ginkgo ginkgo.exe -r -slowSpecThreshold=120 ./gats
Add GATSPATH to beginning of PATH.
Add GATSPATH to beginning of PATH. - Ensure that the correct cf version is being used.
Batchfile
unknown
cloudfoundry/cli-acceptance-tests,cloudfoundry/GATS,cloudfoundry/GATS,cloudfoundry/cli-acceptance-tests,cloudfoundry/GATS,cloudfoundry/cli-acceptance-tests
fe9a8f2988426339b78b3bda977f372afa383580
src/xscontainer/data/configure_tls.cmd
src/xscontainer/data/configure_tls.cmd
@echo off net session >nul 2>&1 if %errorLevel% NEQ 0 ( echo Please run this script with Administrator privileges timeout 10 > NUL EXIT /B 1 ) SET cdpath=%~dp0 echo Setting the system environment variable DOCKER_HOST reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v DOCKER_HOST /t REG_SZ /d tcp://:2376 /f echo Setting the system environment variable DOCKER_TLS reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v DOCKER_TLS_VERIFY /t REG_SZ /d 1 /f echo Configuring the Docker daemon for TLS if not exist c:\ProgramData\docker\certs.d\ mkdir c:\ProgramData\docker\certs.d\ xcopy /O %cdpath%server\* c:\ProgramData\docker\certs.d\ echo Configuring the Docker client to connect using TLS for the current user if not exist c:\Users\%username%\.docker\ mkdir c:\Users\%username%\.docker\ xcopy /O %cdpath%client\* c:\Users\%username%\.docker\ echo Restarting Docker net stop Docker net start Docker echo All done. Docker is now configured for TLS. echo Please complete the preparation on the control domain console. timeout 10 > NUL EXIT /b 0
@echo off net session >nul 2>&1 if %errorLevel% NEQ 0 ( echo Please run this script with Administrator privileges timeout 10 > NUL EXIT /B 1 ) SET cdpath=%~dp0 if not exist c:\ProgramData\docker\ ( echo Error: Could not find Docker in c:\ProgramData\docker\. echo Please install Docker before running this script. timeout 10 > NUL EXIT /B 1 ) echo Setting the system environment variable DOCKER_HOST reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v DOCKER_HOST /t REG_SZ /d tcp://:2376 /f echo Setting the system environment variable DOCKER_TLS reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /v DOCKER_TLS_VERIFY /t REG_SZ /d 1 /f echo Configuring the Docker daemon for TLS if not exist c:\ProgramData\docker\certs.d\ mkdir c:\ProgramData\docker\certs.d\ xcopy /O %cdpath%server\* c:\ProgramData\docker\certs.d\ echo Configuring the Docker client to connect using TLS for the current user if not exist c:\Users\%username%\.docker\ mkdir c:\Users\%username%\.docker\ xcopy /O %cdpath%client\* c:\Users\%username%\.docker\ echo Restarting Docker net stop Docker net start Docker echo All done. Docker is now configured for TLS. echo Please complete the preparation on the control domain console. timeout 10 > NUL EXIT /b 0
Check that Docker is installed on Windows
Check that Docker is installed on Windows Signed-off-by: Robert Breker <[email protected]>
Batchfile
bsd-2-clause
xenserver/xscontainer,xenserver/xscontainer,robertbreker/xscontainer,robertbreker/xscontainer
679ff0874fb32e957bb519381c3b26102558a614
mb-env.bat
mb-env.bat
:: Establish an environment for Mindbender applications @echo off set PYBLISH_BASE=%~dp0git\pyblish-base set PYBLISH_MAYA=%~dp0git\pyblish-maya set PYBLISH_NUKE=%~dp0git\pyblish-nuke set PYBLISH_QML=%~dp0git\pyblish-qml set PYBLISH_LITE=%~dp0git\pyblish-lite set MINDBENDER_CORE=%~dp0git\mindbender-core set MINDBENDER_LAUNCHER=%~dp0git\mindbender-launcher set MINDBENDER_EXAMPLE=%~dp0git\mindbender-example\projects set PATH=%~dp0bin\windows\syncthing;%PATH% set PATH=%~dp0bin\windows\python36;%PATH% set PATH=%~dp0bin\windows;%PATH% set PATH=%~dp0bin;%PATH% set PYTHONPATH=%~dp0bin\maya\2016\pythonpath set PYTHONPATH=%MINDBENDER_CORE%;%MINDBENDER_LAUNCHER%;%PYTHONPATH% set PYBLISHGUI=pyblish_qml if "%MINDBENDER_PROJECTS%"=="" set MINDBENDER_PROJECTS=%MINDBENDER_EXAMPLE%
:: Establish an environment for Mindbender applications @echo off set PYBLISH_BASE=%~dp0git\pyblish-base set PYBLISH_MAYA=%~dp0git\pyblish-maya set PYBLISH_NUKE=%~dp0git\pyblish-nuke set PYBLISH_QML=%~dp0git\pyblish-qml set PYBLISH_LITE=%~dp0git\pyblish-lite set MINDBENDER_CORE=%~dp0git\mindbender-core set MINDBENDER_LAUNCHER=%~dp0git\mindbender-launcher set MINDBENDER_EXAMPLE=%~dp0git\mindbender-example\projects set MINDBENDER_CONFIG=polly set PATH=%~dp0bin\windows\python36;%PATH% set PATH=%~dp0bin\windows;%PATH% set PATH=%~dp0bin;%PATH% set PYTHONPATH=%~dp0bin\pythonpath set PYTHONPATH=%~dp0\git\mindbender-config;%PYTHONPATH% set PYTHONPATH=%MINDBENDER_CORE%;%MINDBENDER_LAUNCHER%;%PYTHONPATH% set PYBLISHGUI=pyblish_qml if "%MINDBENDER_PROJECTS%"=="" set MINDBENDER_PROJECTS=%MINDBENDER_EXAMPLE%
Set configuration to the one bundled
Set configuration to the one bundled
Batchfile
mit
mottosso/mindbender-setup,mottosso/mindbender-setup,mottosso/mindbender-setup
c38ffeceb1aa227c48559919fb971680fe1f1cd8
make_w64.cmd
make_w64.cmd
@ECHO OFF set target=amd64 set MSVC=%USERPROFILE%\cmsc\msvc\bin\%target% set libs=/LIBPATH:"%MSVC%\..\..\lib\%target%" set include=/I"%MSVC%\..\..\include\crt" set src=%CD% set output=/OUT:zs.exe set C_FLAGS=/Wall /GL /O1 /Os /Oi /Ob1 /GS- /TC set files=%src%\main.c %src%\errors.c %src%\flash_io.c %src%\zs_data.c %MSVC%\cl.exe /MD %include% %C_FLAGS% %files% %EXTRA_LIBS% /link %output% %libs% pause
@ECHO OFF set target=amd64 set MSVC=%USERPROFILE%\cmsc\msvc\bin\%target% set libs=/LIBPATH:"%MSVC%\..\..\lib\%target%" set include=/I"%MSVC%\..\..\include\crt" set src=%CD% set output=/OUT:zs.exe REM set C_FLAGS=/Wall /GL /O1 /Os /Oi /Ob1 /GS- /TP set C_FLAGS=/Wall /GL /O1 /Os /Oi /Ob1 /GS- /TC set files=%src%\main.c %src%\errors.c %src%\flash_io.c %src%\zs_data.c %MSVC%\cl.exe /MD %include% %C_FLAGS% %files% %EXTRA_LIBS% /link %output% %libs% pause
Test with /TP instead of /TC to check for C++ warnings.
Test with /TP instead of /TC to check for C++ warnings.
Batchfile
cc0-1.0
cxd4/zs-flash,cxd4/zs-flash
aeb58f219b7e988c28d888ad68d425f593559111
extras/scripts/postsubmit.bat
extras/scripts/postsubmit.bat
echo on echo Postsubmit.bat started. if exist %VCVARSALL_SCRIPT% ( echo Running VCVARSALL script: %VCVARSALL_SCRIPT% CALL %VCVARSALL_SCRIPT% amd64 || exit /b %errorlevel% ) echo Creating build directory. mkdir C:\Fruit\build-%CONFIGURATION% cd C:\Fruit\build-%CONFIGURATION% echo Running CMake. %CMAKE_PATH%\cmake.exe -G %CMAKE_GENERATOR% .. -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DBOOST_DIR=%BOOST_DIR% -DBUILD_TESTS_IN_RELEASE_MODE=True || exit /b %errorlevel% echo Building Fruit. IF %CMAKE_GENERATOR%=="MinGW Makefiles" ( mingw32-make -j12 || exit /b %errorlevel% ) ELSE ( msbuild ALL_BUILD.vcxproj || exit /b %errorlevel% ) echo Running tests. %CMAKE_PATH%\ctest.exe -j 1 --output-on-failure -C %CONFIGURATION% || exit /b %errorlevel%
echo on echo Postsubmit.bat started. if exist %VCVARSALL_SCRIPT% ( echo Running VCVARSALL script: %VCVARSALL_SCRIPT% CALL %VCVARSALL_SCRIPT% amd64 || exit /b %errorlevel% ) echo Creating build directory. mkdir C:\Fruit\build-%CONFIGURATION% cd C:\Fruit\build-%CONFIGURATION% rem TODO: Remove the following 2 commands, they are only for debugging. echo Looking for CMake executable: dir %CMAKE_PATH% echo Running CMake. %CMAKE_PATH%\cmake.exe -G %CMAKE_GENERATOR% .. -DCMAKE_BUILD_TYPE=%CONFIGURATION% -DBOOST_DIR=%BOOST_DIR% -DBUILD_TESTS_IN_RELEASE_MODE=True || exit /b %errorlevel% echo Building Fruit. IF %CMAKE_GENERATOR%=="MinGW Makefiles" ( mingw32-make -j12 || exit /b %errorlevel% ) ELSE ( msbuild ALL_BUILD.vcxproj || exit /b %errorlevel% ) echo Running tests. %CMAKE_PATH%\ctest.exe -j 1 --output-on-failure -C %CONFIGURATION% || exit /b %errorlevel%
Add some more debugging prints in the AppVeyor test script, to investigate an error when running CMake.
Add some more debugging prints in the AppVeyor test script, to investigate an error when running CMake.
Batchfile
apache-2.0
google/fruit,google/fruit,google/fruit
48aa07f9378845a0c8ba6882054296b4a8a7bcb4
Kudu.Services.Web/updateNodeModules.cmd
Kudu.Services.Web/updateNodeModules.cmd
@echo off setlocal enabledelayedexpansion pushd %1 set attempts=5 set counter=0 :retry set /a counter+=1 echo Attempt %counter% out of %attempts% cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/3bf82c59679bd6539651cf5751246f34e6fd6a56 IF %ERRORLEVEL% NEQ 0 goto error goto end :error if %counter% GEQ %attempts% goto :lastError goto retry :lastError popd echo An error has occured during npm install. exit /b 1 :end popd echo Finished successfully. exit /b 0
@echo off setlocal enabledelayedexpansion pushd %1 set attempts=5 set counter=0 :retry set /a counter+=1 echo Attempt %counter% out of %attempts% cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/89ed632cfb0154130af7cc555d4644ad33122ab9 IF %ERRORLEVEL% NEQ 0 goto error goto end :error if %counter% GEQ %attempts% goto :lastError goto retry :lastError popd echo An error has occured during npm install. exit /b 1 :end popd echo Finished successfully. exit /b 0
Update new version of kuduscript where the generator wont generate iisnode.yml file
Update new version of kuduscript where the generator wont generate iisnode.yml file
Batchfile
apache-2.0
barnyp/kudu,duncansmart/kudu,duncansmart/kudu,YOTOV-LIMITED/kudu,puneet-gupta/kudu,shibayan/kudu,barnyp/kudu,YOTOV-LIMITED/kudu,kali786516/kudu,YOTOV-LIMITED/kudu,projectkudu/kudu,duncansmart/kudu,mauricionr/kudu,puneet-gupta/kudu,EricSten-MSFT/kudu,kali786516/kudu,shrimpy/kudu,barnyp/kudu,badescuga/kudu,shanselman/kudu,bbauya/kudu,badescuga/kudu,kenegozi/kudu,kenegozi/kudu,mauricionr/kudu,oliver-feng/kudu,sitereactor/kudu,dev-enthusiast/kudu,juvchan/kudu,MavenRain/kudu,dev-enthusiast/kudu,shibayan/kudu,badescuga/kudu,dev-enthusiast/kudu,oliver-feng/kudu,bbauya/kudu,shrimpy/kudu,EricSten-MSFT/kudu,EricSten-MSFT/kudu,juvchan/kudu,bbauya/kudu,chrisrpatterson/kudu,MavenRain/kudu,mauricionr/kudu,shibayan/kudu,juoni/kudu,uQr/kudu,kenegozi/kudu,kali786516/kudu,EricSten-MSFT/kudu,sitereactor/kudu,kali786516/kudu,badescuga/kudu,shanselman/kudu,EricSten-MSFT/kudu,chrisrpatterson/kudu,juvchan/kudu,juoni/kudu,projectkudu/kudu,badescuga/kudu,shrimpy/kudu,MavenRain/kudu,sitereactor/kudu,YOTOV-LIMITED/kudu,puneet-gupta/kudu,sitereactor/kudu,projectkudu/kudu,shibayan/kudu,uQr/kudu,shanselman/kudu,projectkudu/kudu,juvchan/kudu,bbauya/kudu,juvchan/kudu,juoni/kudu,oliver-feng/kudu,mauricionr/kudu,shibayan/kudu,chrisrpatterson/kudu,MavenRain/kudu,projectkudu/kudu,sitereactor/kudu,shrimpy/kudu,puneet-gupta/kudu,uQr/kudu,chrisrpatterson/kudu,puneet-gupta/kudu,juoni/kudu,barnyp/kudu,uQr/kudu,dev-enthusiast/kudu,oliver-feng/kudu,kenegozi/kudu,duncansmart/kudu
4ce097d1b944609f3e5896622ea1f89fb1b7a78f
recipes/ndcube/bld.bat
recipes/ndcube/bld.bat
"%PYTHON%" setup.py install if errorlevel 1 exit 1 :: Add more build steps here, if they are necessary. :: See :: http://docs.continuum.io/conda/build.html :: for a list of environment variables that are set during the build process.
"%PYTHON%" setup.py install --offline --no-git --single-version-externally-managed --record record.txt if errorlevel 1 exit 1 :: Add more build steps here, if they are necessary. :: See :: http://docs.continuum.io/conda/build.html :: for a list of environment variables that are set during the build process.
Change install command in windows script
Change install command in windows script
Batchfile
bsd-3-clause
basnijholt/staged-recipes,jjhelmus/staged-recipes,igortg/staged-recipes,dschreij/staged-recipes,kwilcox/staged-recipes,ReimarBauer/staged-recipes,SylvainCorlay/staged-recipes,ocefpaf/staged-recipes,glemaitre/staged-recipes,Cashalow/staged-recipes,ceholden/staged-recipes,johanneskoester/staged-recipes,mcs07/staged-recipes,cpaulik/staged-recipes,patricksnape/staged-recipes,jochym/staged-recipes,jochym/staged-recipes,synapticarbors/staged-recipes,glemaitre/staged-recipes,petrushy/staged-recipes,rvalieris/staged-recipes,birdsarah/staged-recipes,mariusvniekerk/staged-recipes,sannykr/staged-recipes,NOAA-ORR-ERD/staged-recipes,dschreij/staged-recipes,asmeurer/staged-recipes,sannykr/staged-recipes,shadowwalkersb/staged-recipes,shadowwalkersb/staged-recipes,guillochon/staged-recipes,rmcgibbo/staged-recipes,ceholden/staged-recipes,hadim/staged-recipes,Juanlu001/staged-recipes,rmcgibbo/staged-recipes,mariusvniekerk/staged-recipes,patricksnape/staged-recipes,conda-forge/staged-recipes,basnijholt/staged-recipes,birdsarah/staged-recipes,stuertz/staged-recipes,conda-forge/staged-recipes,Cashalow/staged-recipes,chrisburr/staged-recipes,jjhelmus/staged-recipes,goanpeca/staged-recipes,SylvainCorlay/staged-recipes,isuruf/staged-recipes,barkls/staged-recipes,scopatz/staged-recipes,johanneskoester/staged-recipes,sodre/staged-recipes,synapticarbors/staged-recipes,barkls/staged-recipes,goanpeca/staged-recipes,isuruf/staged-recipes,ocefpaf/staged-recipes,rvalieris/staged-recipes,sodre/staged-recipes,mcs07/staged-recipes,kwilcox/staged-recipes,pmlandwehr/staged-recipes,jakirkham/staged-recipes,jakirkham/staged-recipes,scopatz/staged-recipes,ReimarBauer/staged-recipes,chrisburr/staged-recipes,hadim/staged-recipes,asmeurer/staged-recipes,igortg/staged-recipes,guillochon/staged-recipes,cpaulik/staged-recipes,pmlandwehr/staged-recipes,NOAA-ORR-ERD/staged-recipes,sodre/staged-recipes,Juanlu001/staged-recipes,stuertz/staged-recipes,petrushy/staged-recipes
20af210c99a629238623f70626e6f8f00d3cbee1
netcore/Build.cmd
netcore/Build.cmd
echo off set BuildMode=Debug if not {%1} == {} ( set BuildMode=%1 ) set OriginalPath=%cd% set TestPath=%~dp0..\test "%ProgramFiles(x86)%\MSBuild\14.0\Bin\msbuild" %TestPath%\DMLibTest\DMLibTest.csproj /t:Rebuild /p:Configuration=%BuildMode% >NUL "%ProgramFiles(x86)%\MSBuild\14.0\Bin\msbuild" %TestPath%\DMLibTestCodeGen\DMLibTestCodeGen.csproj /t:Rebuild /p:Configuration=%BuildMode% >NUL %TestPath%\DMLibTestCodeGen\bin\Debug\DMLibTestCodeGen.exe %TestPath%\DMLibTest\bin\Debug\DMLibTest.dll %TestPath%\DMLibTest\Generated DNetCore cd %~dp0 dotnet restore -s https://www.nuget.org/api/v2/ cd %~dp0\Microsoft.WindowsAzure.Storage.DataMovement dotnet build -c %BuildMode% cd %~dp0\MsTestLib dotnet build -c %BuildMode% cd %~dp0\DMTestLib dotnet build -c %BuildMode% cd %~dp0\DMLibTest dotnet build -c %BuildMode% dotnet publish -c %BuildMode% cd %OriginalPath%
set BuildMode=Debug if not {%1} == {} ( set BuildMode=%1 ) set OriginalPath=%cd% set TestPath=%~dp0..\test "%ProgramFiles(x86)%\MSBuild\14.0\Bin\msbuild" %TestPath%\DMLibTest\DMLibTest.csproj /t:Rebuild /p:Configuration=%BuildMode% >NUL "%ProgramFiles(x86)%\MSBuild\14.0\Bin\msbuild" %TestPath%\DMLibTestCodeGen\DMLibTestCodeGen.csproj /t:Rebuild /p:Configuration=%BuildMode% >NUL %TestPath%\DMLibTestCodeGen\bin\Debug\DMLibTestCodeGen.exe %TestPath%\DMLibTest\bin\Debug\DMLibTest.dll %TestPath%\DMLibTest\Generated DNetCore dotnet restore -s https://www.nuget.org/api/v2/ %~dp0\DMLibTest cd %~dp0\Microsoft.WindowsAzure.Storage.DataMovement dotnet build -c %BuildMode% cd %~dp0\MsTestLib dotnet build -c %BuildMode% cd %~dp0\DMTestLib dotnet build -c %BuildMode% cd %~dp0\DMLibTest dotnet build -c %BuildMode% dotnet publish -c %BuildMode% cd %OriginalPath%
Change build script after moving DMLib to VS2017
Change build script after moving DMLib to VS2017
Batchfile
mit
Azure/azure-storage-net-data-movement
4a3ce61dff91fefd7057a8f34db37790c79683dc
Kudu.Services.Web/updateNodeModules.cmd
Kudu.Services.Web/updateNodeModules.cmd
@echo off pushd %1 set attempts=5 set counter=0 :retry set /a counter+=1 echo Attempt %counter% out of %attempts% if exist %1\node_modules\azure-cli\bin\azure ( cmd /c npm update https://github.com/amitapl/azure-sdk-tools-xplat/tarball/latest ) else ( cmd /c npm install https://github.com/amitapl/azure-sdk-tools-xplat/tarball/latest ) IF %ERRORLEVEL% NEQ 0 goto error if exist %1\node_modules\kudusync\bin\kudusync ( cmd /c npm update kudusync ) else ( cmd /c npm install kudusync ) IF %ERRORLEVEL% NEQ 0 goto error goto end :error if %counter% GEQ %attempts% goto :lastError goto retry :lastError popd echo An error has occured during npm install. exit /b 1 :end popd echo Finished successfully.
@echo off pushd %1 set attempts=5 set counter=0 :retry set /a counter+=1 echo Attempt %counter% out of %attempts% if exist %1\node_modules\azure-cli\bin\azure ( cmd /c npm update https://github.com/amitapl/azure-sdk-tools-xplat/tarball/latest ) else ( cmd /c npm install https://github.com/amitapl/azure-sdk-tools-xplat/tarball/latest ) IF %ERRORLEVEL% NEQ 0 goto error if exist %1\node_modules\kudusync\bin\kudusync ( cmd /c npm update kudusync ) else ( cmd /c npm install kudusync ) IF %ERRORLEVEL% NEQ 0 goto error goto end :error if %counter% GEQ %attempts% goto :lastError goto retry :lastError popd echo An error has occured during npm install. exit /b 1 :end popd echo Finished successfully. exit /b 0
Make sure exit code is 0 when successful.
Make sure exit code is 0 when successful.
Batchfile
apache-2.0
chrisrpatterson/kudu,dev-enthusiast/kudu,EricSten-MSFT/kudu,projectkudu/kudu,barnyp/kudu,oliver-feng/kudu,shibayan/kudu,MavenRain/kudu,YOTOV-LIMITED/kudu,shibayan/kudu,dev-enthusiast/kudu,shrimpy/kudu,shibayan/kudu,bbauya/kudu,puneet-gupta/kudu,dev-enthusiast/kudu,badescuga/kudu,WeAreMammoth/kudu-obsolete,projectkudu/kudu,barnyp/kudu,kali786516/kudu,shibayan/kudu,juoni/kudu,juoni/kudu,shibayan/kudu,oliver-feng/kudu,barnyp/kudu,sitereactor/kudu,MavenRain/kudu,shanselman/kudu,YOTOV-LIMITED/kudu,chrisrpatterson/kudu,duncansmart/kudu,puneet-gupta/kudu,juvchan/kudu,duncansmart/kudu,uQr/kudu,WeAreMammoth/kudu-obsolete,shrimpy/kudu,uQr/kudu,sitereactor/kudu,oliver-feng/kudu,shrimpy/kudu,barnyp/kudu,EricSten-MSFT/kudu,shrimpy/kudu,juvchan/kudu,YOTOV-LIMITED/kudu,kali786516/kudu,duncansmart/kudu,dev-enthusiast/kudu,uQr/kudu,badescuga/kudu,puneet-gupta/kudu,sitereactor/kudu,oliver-feng/kudu,badescuga/kudu,sitereactor/kudu,chrisrpatterson/kudu,EricSten-MSFT/kudu,kenegozi/kudu,puneet-gupta/kudu,juoni/kudu,projectkudu/kudu,badescuga/kudu,mauricionr/kudu,mauricionr/kudu,bbauya/kudu,uQr/kudu,bbauya/kudu,juvchan/kudu,YOTOV-LIMITED/kudu,mauricionr/kudu,WeAreMammoth/kudu-obsolete,kenegozi/kudu,shanselman/kudu,EricSten-MSFT/kudu,kali786516/kudu,shanselman/kudu,mauricionr/kudu,MavenRain/kudu,juvchan/kudu,kali786516/kudu,chrisrpatterson/kudu,projectkudu/kudu,EricSten-MSFT/kudu,sitereactor/kudu,kenegozi/kudu,kenegozi/kudu,juoni/kudu,puneet-gupta/kudu,badescuga/kudu,bbauya/kudu,projectkudu/kudu,MavenRain/kudu,juvchan/kudu,duncansmart/kudu
f0317364c167c9c4049c1d3666dc06674e36b1be
.buildkite/sign_windows_installer.bat
.buildkite/sign_windows_installer.bat
@echo off rem This will download the Kolibri windows installer artifact at the windows-2016 buildkite agent. rem After the installer successfully sign it will upload the signed installer at the Sign Windows installer pipeline artifact. rem To sign the Windows installer set the `SIGN_WINDOWS_INSTALLER=true` environment variable. IF NOT "%SIGN_WINDOWS_INSTALLER%" == "true" (GOTO DONT_SIGN) set current_path=%cd% buildkite-agent.exe artifact download "installer/*.exe" . --step "Build kolibri windows installer" --build %BUILDKITE_BUILD_ID% --agent-access-token %BUILDKITE_AGENT_ACCESS_TOKEN% %WINDOWS_SIGN_SCRIPT_PATH% "%current_path%\installer" && cd "%current_path%\installer\" && buildkite-agent.exe artifact upload "*.exe" GOTO END :DONT_SIGN echo Set the SIGN_WINDOWS_INSTALLER=true environment variable to sign the Windows installer. :END
@echo off rem To sign the Windows installer, set the `SIGN_WINDOWS_INSTALLER=true` environment variable. rem This will download the Kolibri Windows installer artifact at the windows-2016 Buildkite agent. rem After the installer successfully sign it will upload the installer at the Sign Windows Installer pipeline artifact. IF NOT "%SIGN_WINDOWS_INSTALLER%" == "true" (GOTO DONT_SIGN) set current_path=%cd% buildkite-agent.exe artifact download "installer/*.exe" . --step "Build kolibri windows installer" --build %BUILDKITE_BUILD_ID% --agent-access-token %BUILDKITE_AGENT_ACCESS_TOKEN% %WINDOWS_SIGN_SCRIPT_PATH% "%current_path%\installer" && cd "%current_path%\installer\" && ren *.exe *-signed.exe && buildkite-agent.exe artifact upload "*.exe" GOTO END :DONT_SIGN echo Set the SIGN_WINDOWS_INSTALLER=true environment variable to sign the Windows installer. :END
Add a singed name at the filename of the installer, after it was successfully signed.
Add a singed name at the filename of the installer, after it was successfully signed.
Batchfile
mit
mrpau/kolibri,learningequality/kolibri,indirectlylit/kolibri,lyw07/kolibri,mrpau/kolibri,mrpau/kolibri,lyw07/kolibri,indirectlylit/kolibri,mrpau/kolibri,learningequality/kolibri,indirectlylit/kolibri,lyw07/kolibri,learningequality/kolibri,lyw07/kolibri,indirectlylit/kolibri,learningequality/kolibri
fe63a2641cd035706f691ad07594cb42a94bf5bc
ci/cli/tasks/units-windows.bat
ci/cli/tasks/units-windows.bat
SET GOPATH=%CD%\gopath SET PATH=C:\Go\bin;C:\Program Files\Git\cmd\;%GOPATH%\bin;%PATH% cd %GOPATH%\src\code.cloudfoundry.org\cli powershell -command set-executionpolicy remotesigned go version go get -u github.com/onsi/ginkgo/ginkgo ginkgo version ginkgo -r -race -randomizeAllSpecs -randomizeSuites -skipPackage integration -flakeAttempts=2 .
SET GOPATH=%CD%\gopath SET PATH=C:\Go\bin;C:\Program Files\Git\cmd\;%GOPATH%\bin;%PATH% cd %GOPATH%\src\code.cloudfoundry.org\cli powershell -command set-executionpolicy remotesigned go version go get -u github.com/onsi/ginkgo/ginkgo ginkgo version ginkgo -r -randomizeAllSpecs -randomizeSuites -skipPackage integration -flakeAttempts=2 .
Remove -race from windows units temporarily
Remove -race from windows units temporarily Because of https://github.com/golang/go/issues/27089, passing "-race" to ginkgo causes the windows build to fail. We are simply removing this flag until the golang issue is resolved. (Units on other operating systems still check for race conditions.) [#160911621] Signed-off-by: Will Murphy <[email protected]>
Batchfile
apache-2.0
cloudfoundry/cli,cloudfoundry/cli,cloudfoundry/cli
fc0b8526284d5a775e8cd539919464d87c6e1645
packer/vagrant/scripts/windows/msys2.bat
packer/vagrant/scripts/windows/msys2.bat
if not exist "C:\Windows\Temp\msys2.exe" ( powershell -Command "(New-Object System.Net.WebClient).DownloadFile('http://repo.msys2.org/distrib/x86_64/msys2-x86_64-20161025.exe', 'C:\Windows\Temp\msys2.exe')" <NUL ) start /wait C:\Windows\Temp\msys2.exe --script A:\msys2-install.qs start /wait C:\msys64\usr\bin\bash.exe --login -c "pacman -Syu --noconfirm" start /wait C:\msys64\usr\bin\bash.exe --login -c "pacman -Syu --noconfirm" start /wait C:\msys64\usr\bin\bash.exe --login -c "pacman -S --noconfirm zip unzip"
if not exist "C:\Windows\Temp\msys2.exe" ( powershell -Command "(New-Object System.Net.WebClient).DownloadFile('http://repo.msys2.org/distrib/x86_64/msys2-x86_64-20161025.exe', 'C:\Windows\Temp\msys2.exe')" <NUL ) start /wait C:\Windows\Temp\msys2.exe --script A:\msys2-install.qs start /wait C:\msys64\usr\bin\bash.exe --login -c "pacman -Syu --noconfirm" start /wait C:\msys64\usr\bin\bash.exe --login -c "pacman -Syu --noconfirm" start /wait C:\msys64\usr\bin\bash.exe --login -c "pacman -S --noconfirm zip unzip" start /wait C:\msys64\usr\bin\bash.exe --login -c "pacman -S --noconfirm base-devel"
Install the base-devel meta package on setup
Install the base-devel meta package on setup
Batchfile
mit
chrisroberts/vagrant-installers,chrisroberts/vagrant-installers,chrisroberts/vagrant-installers,mitchellh/vagrant-installers,chrisroberts/vagrant-installers,mitchellh/vagrant-installers,mitchellh/vagrant-installers,mitchellh/vagrant-installers,chrisroberts/vagrant-installers,chrisroberts/vagrant-installers,mitchellh/vagrant-installers,mitchellh/vagrant-installers
195979fdc8e5a0f4ebfe42262e6f77803a22abc1
scripts/presetup-win.cmd
scripts/presetup-win.cmd
REM Installing Chocolatey @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin REM Installing virtualbox choco install virtualbox -y REM Killing the default adapter and DHCP server to avoid network issues down the road "C:\Program Files\Oracle\VirtualBox\VBoxManage" dhcpserver remove --netname "HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter" "C:\Program Files\Oracle\VirtualBox\VBoxManage" hostonlyif remove "VirtualBox Host-Only Ethernet Adapter" REM Installing vagrant choco install vagrant -y
REM Installing Chocolatey @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin REM Installing virtualbox choco upgrade virtualbox -y REM Killing the default adapter and DHCP server to avoid network issues down the road "C:\Program Files\Oracle\VirtualBox\VBoxManage" dhcpserver remove --netname "HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter" "C:\Program Files\Oracle\VirtualBox\VBoxManage" hostonlyif remove "VirtualBox Host-Only Ethernet Adapter" REM Installing vagrant choco upgrade vagrant -y
Use upgrade command with choco on Windows
Use upgrade command with choco on Windows `choco upgrade` will do `install` if the package is missing.
Batchfile
mit
blinkreaction/boot2docker-vagrant
5a5a381ceeca8b886d59592d05ec2eead2af076d
src/condor_tests/job_filexfer_output-withvacate_van.cmd
src/condor_tests/job_filexfer_output-withvacate_van.cmd
universe = vanilla executable = ./x_job_filexfer_testjob.pl log = job_filexfer_output-withvacate_van.log output = job_filexfer_output-withvacate_van.out error = job_filexfer_output-withvacate_van.err should_transfer_files = YES when_to_transfer_output = ON_EXIT_OR_EVICT transfer_output_files = submit_filetrans_output14821e.txt,submit_filetrans_output14821f.txt,submit_filetrans_output14821g.txt Notification = NEVER arguments = --job=14821 --long queue
universe = vanilla executable = ./x_job_filexfer_testjob.pl log = job_filexfer_output-withvacate_van.log output = job_filexfer_output-withvacate_van.out error = job_filexfer_output-withvacate_van.err should_transfer_files = YES when_to_transfer_output = ON_EXIT_OR_EVICT transfer_output_files = submit_filetrans_output14821e.txt,submit_filetrans_output14821f.txt,submit_filetrans_output14821g.txt Notification = NEVER arguments = --job=14821 --forever queue
Remove race condition on vacate in test by using -forever option. Fix parallel test behaviour.
Remove race condition on vacate in test by using -forever option. Fix parallel test behaviour.
Batchfile
apache-2.0
mambelli/osg-bosco-marco,djw8605/condor,htcondor/htcondor,djw8605/htcondor,bbockelm/condor-network-accounting,djw8605/condor,clalancette/condor-dcloud,bbockelm/condor-network-accounting,mambelli/osg-bosco-marco,djw8605/condor,djw8605/htcondor,neurodebian/htcondor,mambelli/osg-bosco-marco,clalancette/condor-dcloud,neurodebian/htcondor,neurodebian/htcondor,djw8605/htcondor,mambelli/osg-bosco-marco,clalancette/condor-dcloud,htcondor/htcondor,bbockelm/condor-network-accounting,bbockelm/condor-network-accounting,neurodebian/htcondor,neurodebian/htcondor,djw8605/htcondor,djw8605/htcondor,neurodebian/htcondor,clalancette/condor-dcloud,mambelli/osg-bosco-marco,neurodebian/htcondor,htcondor/htcondor,bbockelm/condor-network-accounting,zhangzhehust/htcondor,mambelli/osg-bosco-marco,djw8605/condor,htcondor/htcondor,zhangzhehust/htcondor,zhangzhehust/htcondor,htcondor/htcondor,bbockelm/condor-network-accounting,zhangzhehust/htcondor,djw8605/condor,zhangzhehust/htcondor,djw8605/htcondor,htcondor/htcondor,neurodebian/htcondor,djw8605/condor,clalancette/condor-dcloud,zhangzhehust/htcondor,djw8605/htcondor,djw8605/condor,clalancette/condor-dcloud,djw8605/htcondor,zhangzhehust/htcondor,djw8605/condor,neurodebian/htcondor,zhangzhehust/htcondor,htcondor/htcondor,bbockelm/condor-network-accounting,zhangzhehust/htcondor,bbockelm/condor-network-accounting,htcondor/htcondor,clalancette/condor-dcloud,mambelli/osg-bosco-marco,djw8605/htcondor,mambelli/osg-bosco-marco
968bd73292eb8a28299619ed036c9e1d3d717d59
contrib/easywinbuilder/6_gather_dlls.bat
contrib/easywinbuilder/6_gather_dlls.bat
@call set_vars.bat copy %QTPATH%\Qt5Charts.dll %ROOTPATH%\release\ copy %QTPATH%\Qt5Core.dll %ROOTPATH%\release\ copy %QTPATH%\Qt5Gui.dll %ROOTPATH%\release\ copy %QTPATH%\Qt5Network.dll %ROOTPATH%\release\ copy %QTPATH%\Qt5Widgets.dll %ROOTPATH%\release\ copy %MINGW%\bin\libgcc_s_dw2-1.dll %ROOTPATH%\release\ copy %MINGW%\bin\libstdc++-6.dll %ROOTPATH%\release\ copy %MINGW%\bin\libgcc_s_dw2-1.dll %ROOTPATH%\release\ copy %MINGW%\bin\libwinpthread-1.dll %ROOTPATH%\release\ @if not "%RUNALL%"=="1" pause
@call set_vars.bat copy %QTPATH%\Qt5Charts.dll %ROOTPATH%\release\ copy %QTPATH%\Qt5Core.dll %ROOTPATH%\release\ copy %QTPATH%\Qt5Gui.dll %ROOTPATH%\release\ copy %QTPATH%\Qt5Network.dll %ROOTPATH%\release\ copy %QTPATH%\Qt5Widgets.dll %ROOTPATH%\release\ copy %QTPATH%\libgcc_s_dw2-1.dll %ROOTPATH%\release\ copy %QTPATH%\libstdc++-6.dll %ROOTPATH%\release\ copy %QTPATH%\libgcc_s_dw2-1.dll %ROOTPATH%\release\ copy %QTPATH%\libwinpthread-1.dll %ROOTPATH%\release\ @if not "%RUNALL%"=="1" pause
Fix invalid DLL paths when deploying.
Fix invalid DLL paths when deploying.
Batchfile
mit
tomasbrod/Gridcoin-Research,tomasbrod/Gridcoin-Research,tomasbrod/Gridcoin-Research,theMarix/Gridcoin-Research,gridcoin/Gridcoin-Research,theMarix/Gridcoin-Research,Lederstrumpf/Gridcoin-Research,caraka/gridcoinresearch,tomasbrod/Gridcoin-Research,theMarix/Gridcoin-Research,TheCharlatan/Gridcoin-Research,Lederstrumpf/Gridcoin-Research,Lederstrumpf/Gridcoin-Research,Lederstrumpf/Gridcoin-Research,TheCharlatan/Gridcoin-Research,caraka/gridcoinresearch,theMarix/Gridcoin-Research,Lederstrumpf/Gridcoin-Research,Lederstrumpf/Gridcoin-Research,caraka/gridcoinresearch,gridcoin/Gridcoin-Research,Git-Jiro/Gridcoin-Research,TheCharlatan/Gridcoin-Research,Git-Jiro/Gridcoin-Research,theMarix/Gridcoin-Research,caraka/gridcoinresearch,caraka/gridcoinresearch,Git-Jiro/Gridcoin-Research,TheCharlatan/Gridcoin-Research,gridcoin/Gridcoin-Research,Git-Jiro/Gridcoin-Research,tomasbrod/Gridcoin-Research,gridcoin/Gridcoin-Research,caraka/gridcoinresearch,TheCharlatan/Gridcoin-Research,gridcoin/Gridcoin-Research,theMarix/Gridcoin-Research,Git-Jiro/Gridcoin-Research,gridcoin/Gridcoin-Research
f0804a650426c7bfc8f845451f17be002a9a35f2
Utilities/Dashboards/VesselView-errai.bat
Utilities/Dashboards/VesselView-errai.bat
@echo off if exist "C:\Work\D\Vvmn\*" goto deleteDir echo No existing build directory goto updateScripts :deleteDir echo Delete directory pushd "C:\Work\D\Vvmn" for /d %%d in (*.*) do rmdir /s /q "%%d" del /q *.* popd :updateScripts cd C:\Work\VesselView\Dashboards\VesselView "C:\Program Files (x86)\Git\bin\git" fetch origin "C:\Program Files (x86)\Git\bin\git" reset --hard master :startDashboards echo Start dashboards call "C:\Program Files (x86)\CMake 3.0.2\bin\ctest.exe" -S C:\Work\VesselView\Dashboards\VesselView\Utilities\Dashboards\VesselView-errai-master-nightly.cmake -V -C Release > C:\Work\VesselView\Dashboards\Logs\VesselView-errai-master-nightly.log 2>&1
@echo off if exist "C:\Work\D\Vvmn\*" goto deleteDir echo No existing build directory goto updateScripts :deleteDir echo Delete directory pushd "C:\Work\D\Vvmn" for /d %%d in (*.*) do rmdir /s /q "%%d" del /q *.* popd :updateScripts cd C:\Work\VesselView\Dashboards\VesselView "C:\Program Files (x86)\Git\bin\git" fetch origin "C:\Program Files (x86)\Git\bin\git" reset --hard origin/master :startDashboards echo Start dashboards call "C:\Program Files (x86)\CMake 3.0.2\bin\ctest.exe" -S C:\Work\VesselView\Dashboards\VesselView\Utilities\Dashboards\VesselView-errai-master-nightly.cmake -V -C Release > C:\Work\VesselView\Dashboards\Logs\VesselView-errai-master-nightly.log 2>&1
Fix errai dashboard script reset to master
Fix errai dashboard script reset to master See issue #45
Batchfile
apache-2.0
matthieuheitz/VesselView,KitwareMedical/VesselView,agirault/VesselView,sumedhasingla/VesselView,agirault/VesselView,sumedhasingla/VesselView,KitwareMedical/VesselView,sumedhasingla/VesselView,matthieuheitz/VesselView,agirault/VesselView,KitwareMedical/VesselView,matthieuheitz/VesselView
c12c22b3609dcff2d70a72ac52066af0d02c60a7
util/cron/test-windows-default-examples.bat
util/cron/test-windows-default-examples.bat
@ECHO OFF REM Test default configuration against examples on windows. REM WORKSPACE is always set inside our testing environment. If this is run REM outside that environment, the caller is responsible for setting it. IF "%WORKSPACE%"=="" GOTO ErrExit REM NOTE: This is pretty messy, but it is the only way I could figure out how to REM get the correct environment setup and then invoke REM nightly.windows. (thomasvandoren, 2014-07-14) c:\cygwin64\bin\bash -exc "export PATH='/usr/local/bin:/usr/bin:/cygdrive/c/windows/system32:/cygdrive/c/windows:/cygdrive/c/windows/System32/Wbem:/cygdrive/c/windows/System32/WindowsPowerShell/v1.0:/cygdrive/c/Program Files/SysinternalsSuite:/usr/bin:/cygdrive/c/emacs-24.3/bin' ; export CHPL_HOME=$WORKSPACE ; source $CHPL_HOME/util/cron/common.bash && $CHPL_HOME/util/cron/nightly.windows" GOTO End :ErrExit ECHO "ERROR: WORKSPACE must be set in the environment" EXIT 1 GOTO End :End
@ECHO OFF REM Test default configuration against examples on windows. REM WORKSPACE is always set inside our testing environment. If this is run REM outside that environment, the caller is responsible for setting it. IF "%WORKSPACE%"=="" GOTO ErrExit REM NOTE: This is pretty messy, but it is the only way I could figure out how to REM get the correct environment setup and then invoke REM nightly.windows. (thomasvandoren, 2014-07-14) c:\cygwin64\bin\bash -exc "export PATH='/usr/local/bin:/usr/bin:/cygdrive/c/windows/system32:/cygdrive/c/windows:/cygdrive/c/windows/System32/Wbem:/cygdrive/c/windows/System32/WindowsPowerShell/v1.0:/cygdrive/c/Program Files/SysinternalsSuite:/usr/bin:/cygdrive/c/emacs-24.3/bin' ; export CHPL_HOME=$PWD ; source $CHPL_HOME/util/cron/common.bash && $CHPL_HOME/util/cron/nightly.windows" GOTO End :ErrExit ECHO "ERROR: WORKSPACE must be set in the environment" EXIT 1 GOTO End :End
Use PWD instead of WORKSPACE in windows batch script.
Use PWD instead of WORKSPACE in windows batch script. WORKSPACE use windows file path separators, which does not translate well to the cygwin/bash environment. PWD uses the cygwin/bash file separator _and_ it uses the correct file system mapping. git-svn-id: 88467cb1fb04b8a755be7e1ee1026be4190196ef@23856 3a8e244f-b0f2-452b-bcba-4c88e055c3ca
Batchfile
apache-2.0
CoryMcCartan/chapel,hildeth/chapel,CoryMcCartan/chapel,CoryMcCartan/chapel,CoryMcCartan/chapel,hildeth/chapel,chizarlicious/chapel,chizarlicious/chapel,hildeth/chapel,hildeth/chapel,chizarlicious/chapel,chizarlicious/chapel,hildeth/chapel,sungeunchoi/chapel,sungeunchoi/chapel,chizarlicious/chapel,CoryMcCartan/chapel,chizarlicious/chapel,sungeunchoi/chapel,sungeunchoi/chapel,chizarlicious/chapel,sungeunchoi/chapel,sungeunchoi/chapel,CoryMcCartan/chapel,hildeth/chapel,CoryMcCartan/chapel,sungeunchoi/chapel,hildeth/chapel,sungeunchoi/chapel
a0604e3febb453742a9e34ed1e72f104e3066846
bin/doom.cmd
bin/doom.cmd
:: Forward the ./doom script to Emacs @ECHO OFF PUSHD "%~dp0" >NUL IF "%1"=="run" ( SHIFT emacs -Q %* -l ..\init.el -f "doom|run-all-startup-hooks" ) ELSE ( emacs --quick --script .\doom -- %* ) POPD >NUL ECHO ON
:: Forward the ./doom script to Emacs @ECHO OFF PUSHD "%~dp0" >NUL IF "%1"=="run" ( SHIFT start runemacs -Q %* -l ..\init.el -f "doom|run-all-startup-hooks" ) ELSE ( emacs --quick --script .\doom -- %* ) POPD >NUL ECHO ON
Tweak the command used for the "run" argument
Tweak the command used for the "run" argument - Using "start" will allow the batch script to return immediately, rather than waiting for the command to finish. - Using "runemacs" (instead of plain "emacs") will hide the console window that is displayed while Emacs is running
Batchfile
mit
UndeadKernel/emacs_doom,hlissner/.emacs.d,hlissner/.emacs.d,UndeadKernel/emacs_doom,hlissner/doom-emacs,hlissner/.emacs.d,hlissner/.emacs.d,hlissner/doom-emacs,hlissner/.emacs.d,UndeadKernel/emacs_doom,UndeadKernel/emacs_doom,UndeadKernel/emacs_doom,hlissner/.emacs.d,hlissner/doom-emacs,hlissner/doom-emacs,hlissner/doom-emacs,UndeadKernel/emacs_doom,UndeadKernel/emacs_doom,hlissner/doom-emacs,hlissner/.emacs.d,hlissner/doom-emacs,hlissner/.emacs.d
7b91dad62f5a400f9a4429ab80272b383af5fa2f
TestDPRO.cmd
TestDPRO.cmd
@ECHO OFF ECHO Running regression tests START /Wait Dolphin7 DPRO.img7 -f RegressionTestsRun.st -q IF %ERRORLEVEL% NEQ 0 ( TYPE DPRO.testlog ECHO Tests failed=%ERRORLEVEL% EXIT -1 ) TYPE DPRO.testlog ECHO Finished regression tests
@ECHO OFF ECHO Running regression tests START /Wait Dolphin7 DPRO.img7 -f RegressionTestsRun.st -q FINDSTR /L /C:" 0 errors" DPRO.testlog IF %ERRORLEVEL% NEQ 0 ( TYPE DPRO.testlog ECHO Tests failed EXIT -1 ) ECHO Finished regression tests
Use contents of .lestlog file to determine success or failure rather than relying on exit code from Dolphin. The move to VS2015 seems to have exacerbated a situation where the return code from SessionManager>>quit: may not make it back to the shell. For the the time being we'll change the way we detect success or failure of the tests.
Use contents of .lestlog file to determine success or failure rather than relying on exit code from Dolphin. The move to VS2015 seems to have exacerbated a situation where the return code from SessionManager>>quit: may not make it back to the shell. For the the time being we'll change the way we detect success or failure of the tests.
Batchfile
mit
jgfoster/Dolphin,jgfoster/Dolphin,dolphinsmalltalk/Dolphin,shoshanatech/Dolphin,jgfoster/Dolphin,ScottyPotty1/ScottyPotty1-Main-Repository,objectarts/Dolphin,blairmcg/Dolphin,dolphinsmalltalk/Dolphin,blairmcg/Dolphin,jgfoster/Dolphin,blairmcg/Dolphin,shoshanatech/Dolphin,blairmcg/Dolphin,objectarts/Dolphin,shoshanatech/Dolphin,shoshanatech/Dolphin,dolphinsmalltalk/Dolphin,ScottyPotty1/ScottyPotty1-Main-Repository,dolphinsmalltalk/Dolphin
b44f28815f6f84e1edd9a989bd99dff5e5112563
prestore.cmd
prestore.cmd
@echo off setlocal for %%i in (NuGet.exe) do set nuget_path=%%~dpnx$PATH:i if "%nuget_path%"=="" goto :nonuget set packages_path=%~dp0packages if exist "%packages_path%\repositories.config" ( for /f "usebackq delims=" %%p in (`PowerShell -C "Get-Content '%packages_path%\repositories.config' | Select-Xml //repository/@path | %%{$_.Node.Value}"`) do if errorlevel==0 call :restore "%packages_path%\%%p" ) else ( for /r %%d in (.) do if errorlevel==0 if exist %%d\packages.config call :restore "%%d" ) goto :EOF :restore setlocal echo Restoring packages for "%~1" cd "%~1" "%nuget_path%" install -OutputDirectory "%packages_path%" ^ -Source https://nuget.org/api/v2/ ^ -Source P:\Development\NuGet goto :EOF :nonuget echo NuGet executable not found in PATH echo For more on NuGet, see http://nuget.codeplex.com exit /b 2
@echo off setlocal for %%i in (NuGet.exe) do set nuget_path=%%~dpnx$PATH:i if "%nuget_path%"=="" goto :nonuget set packages_path=%~dp0packages if exist "%packages_path%\repositories.config" ( for /f "usebackq delims=" %%p in (`PowerShell -C "[xml](Get-Content '%packages_path%\repositories.config') | Select-Xml //repository/@path | %%{$_.Node.Value}"`) do if errorlevel==0 call :restore "%packages_path%\%%p" ) else ( for /r %%d in (.) do if errorlevel==0 if exist %%d\packages.config call :restore "%%d" ) goto :EOF :restore setlocal echo Restoring packages for "%~1" cd "%~dp1" "%nuget_path%" install -OutputDirectory "%packages_path%" goto :EOF :nonuget echo NuGet executable not found in PATH echo For more on NuGet, see http://nuget.codeplex.com exit /b 2
Package restore script fixes (possibly some due to PowerShell 4 compatibility issues)
Package restore script fixes (possibly some due to PowerShell 4 compatibility issues)
Batchfile
apache-2.0
Jeff-Lewis/elmah,Jeff-Lewis/elmah
e0acf596b44c73f3437a1050f9b4c82b02bb41e3
redpen-cli/bin/redpen.bat
redpen-cli/bin/redpen.bat
@echo off SETLOCAL if NOT DEFINED JAVA_HOME goto err set SCRIPT_DIR=%~dp0 for %%I in ("%SCRIPT_DIR%..") do set REDPEN_HOME=%%~dpfI set REDPEN_CLASSPATH=%REDPEN_HOME%/conf;%REDPEN_HOME%/lib/* set JAVA_OPTS=%JAVA_OPTS% "%JAVA_HOME%\bin\java" %JAVA_OPTS% -classpath "%REDPEN_CLASSPATH%" cc.redpen.Main %* goto finally :err echo Error: JAVA_HOME is not defined. Can not start RedPen pause :finally ENDLOCAL
@echo off SETLOCAL if NOT DEFINED JAVA_HOME goto err set SCRIPT_DIR=%~dp0 for %%I in ("%SCRIPT_DIR%..") do set REDPEN_HOME=%%~dpfI set REDPEN_CLASSPATH=%REDPEN_HOME%/conf;%REDPEN_HOME%/lib/* set JAVA_OPTS=%JAVA_OPTS% -Dfile.encoding=UTF-8 "%JAVA_HOME%\bin\java" %JAVA_OPTS% -classpath "%REDPEN_CLASSPATH%" cc.redpen.Main %* goto finally :err echo Error: JAVA_HOME is not defined. Can not start RedPen pause :finally ENDLOCAL
Fix character corruption in Windows
Fix character corruption in Windows
Batchfile
apache-2.0
gerryhocks/redpen,gerryhocks/redpen,tatamiya3/redpen,kenhys/redpen,redpen-cc/redpen,redpen-cc/redpen,tatamiya3/redpen,recruit-tech/redpen,recruit-tech/redpen,gerryhocks/redpen,kenhys/redpen,tatamiya3/redpen,redpen-cc/redpen,tatamiya3/redpen,redpen-cc/redpen,kenhys/redpen,kenhys/redpen,gerryhocks/redpen,recruit-tech/redpen,redpen-cc/redpen,recruit-tech/redpen
89653d01646681ff033e95e6d62b8f0585ae7ac6
modules/framework/scripts/executecommand.bat
modules/framework/scripts/executecommand.bat
@echo off rem check that JAVA_HOME and LCF_HOME are set if not exist "%JAVA_HOME%\bin\java.exe" goto nojavahome if not exist "%LCF_HOME%\properties.ini" goto nolcfhome rem save existing path here set OLDDIR=%CD% cd "%LCF_HOME%\processes" set CLASSPATH=. for %%f in (jar/*) do call script\setclasspath.bat %%f set JAVADEFINES= for %%g in (define/*) do call script\setdefine.bat %%g rem restore old path here cd "%OLDDIR%" "%JAVA_HOME%\bin\java" "-Dorg.apache.lcf.configfile=%LCF_HOME%\properties.ini" %JAVADEFINES% -classpath "%CLASSPATH%" %1 %2 %3 %4 %5 %6 %7 %8 %9 goto done :nojavahome echo Environment variable JAVA_HOME is not set properly. goto done :nolcfhome echo Environment variable LCF_HOME is not set properly. goto done :done
@echo off rem check that JAVA_HOME and LCF_HOME are set if not exist "%JAVA_HOME%\bin\java.exe" goto nojavahome if not exist "%LCF_HOME%\properties.ini" goto nolcfhome rem save existing path here set OLDDIR=%CD% cd "%LCF_HOME%\processes" set CLASSPATH=. for %%f in (jar/*) do call script\setclasspath.bat %%f set JAVADEFINES= for %%g in (define/*) do call script\setdefine.bat %%g rem restore old path here cd "%OLDDIR%" "%JAVA_HOME%\bin\java" "-Dorg.apache.lcf.configfile=%LCF_HOME%\properties.ini" %JAVADEFINES% -classpath "%CLASSPATH%" %* goto done :nojavahome echo Environment variable JAVA_HOME is not set properly. goto done :nolcfhome echo Environment variable LCF_HOME is not set properly. goto done :done
Use %* instead of enumerated arguments when calling java
Use %* instead of enumerated arguments when calling java git-svn-id: 0503cfb7d358eaa9bd718f348f448f10022ea703@939729 13f79535-47bb-0310-9956-ffa450edef68
Batchfile
apache-2.0
gladyscarrizales/manifoldcf,cogfor/mcf-cogfor,kishorejangid/manifoldcf,kishorejangid/manifoldcf,kishorejangid/manifoldcf,apache/manifoldcf,gladyscarrizales/manifoldcf,cogfor/mcf-cogfor,kishorejangid/manifoldcf,apache/manifoldcf,kishorejangid/manifoldcf,apache/manifoldcf,gladyscarrizales/manifoldcf,apache/manifoldcf,gladyscarrizales/manifoldcf,apache/manifoldcf,gladyscarrizales/manifoldcf,kishorejangid/manifoldcf,cogfor/mcf-cogfor,gladyscarrizales/manifoldcf,cogfor/mcf-cogfor,cogfor/mcf-cogfor,apache/manifoldcf,cogfor/mcf-cogfor
a941bcfa3f93c3e7188fdac65e23777fd816d547
makedocs.bat
makedocs.bat
@echo off REM docs\build_autodoc_files.py sphinx-build -b html doc_src pywinauto\docs REM c:\.temp\pudge\pudge\cli --documents doc_source\index.rst,doc_source\controls_overview.rst,doc_source\howto.rst,doc_source\getting_started.rst,history.txt,license.txt,todo.txt --title pywinauto -v -d website -m pywinauto.application,pywinauto.taskbar,pywinauto.clipboard,pywinauto.timings,pywinauto.findbestmatch,pywinauto.findwindows,pywinauto.handleprops,pywinauto.XMLHelpers,pywinauto.controls,pywinauto.tests -t doc_source\template REM These are the python modules REM application.py REM clipboard.py REM findbestmatch.py REM findwindows.py REM handleprops.py REM taskbar.py REM win32defines.py REM win32functions.py REM win32structures.py REM XMLHelpers.py REM controls REM tests REM c:\.temp\pudge\pudge\cli --title pywinauto -v -m pywinauto --documents docs\index.rst,history.txt,license.txt,todo.txt,docs\howto.rst -d pudge_output_green_paste -t \.temp\pudge\pudge\template\green_paste
@echo off doc_src\build_autodoc_files.py sphinx-build -b html doc_src pywinauto\docs REM c:\.temp\pudge\pudge\cli --documents doc_source\index.rst,doc_source\controls_overview.rst,doc_source\howto.rst,doc_source\getting_started.rst,history.txt,license.txt,todo.txt --title pywinauto -v -d website -m pywinauto.application,pywinauto.taskbar,pywinauto.clipboard,pywinauto.timings,pywinauto.findbestmatch,pywinauto.findwindows,pywinauto.handleprops,pywinauto.XMLHelpers,pywinauto.controls,pywinauto.tests -t doc_source\template REM These are the python modules REM application.py REM clipboard.py REM findbestmatch.py REM findwindows.py REM handleprops.py REM taskbar.py REM win32defines.py REM win32functions.py REM win32structures.py REM XMLHelpers.py REM controls REM tests REM c:\.temp\pudge\pudge\cli --title pywinauto -v -m pywinauto --documents docs\index.rst,history.txt,license.txt,todo.txt,docs\howto.rst -d pudge_output_green_paste -t \.temp\pudge\pudge\template\green_paste
Fix the path to build_autodoc_files.py and call it by default everytime (it is safe as it does not re-generate files which already exist)
Fix the path to build_autodoc_files.py and call it by default everytime (it is safe as it does not re-generate files which already exist)
Batchfile
bsd-3-clause
mjakop/pywinauto,ohio813/pywinauto,ohio813/pywinauto,prasen-ftech/pywinauto,nameoffnv/pywinauto,ldhwin/pywinauto,cessor/pywinauto,pjquirk/pjquirk-dotnetnames,pywinauto/pywinauto,manojklm/pywinauto-x64,nameoffnv/pywinauto,moden-py/pywinauto,moden-py/pywinauto,mindw/pywinauto,LogicalKnight/pywinauto,prasen-ftech/pywinauto,cessor/pywinauto,LogicalKnight/pywinauto,clonly/pywinauto,manojklm/pywinauto-x64,bombilee/pywinauto,ldhwin/pywinauto,yongxin1029/pywinauto,drinkertea/pywinauto,vane/pywinauto,vasily-v-ryabov/pywinauto,mindw/pywinauto,airelil/pywinauto,LogicalKnight/pywinauto,ldhwin/pywinauto,bombilee/pywinauto,pjquirk/pjquirk-dotnetnames,cessor/pywinauto,LogicalKnight/pywinauto,vane/pywinauto,wilsoc5/pywinauto,cetygamer/pywinauto,pjquirk/pjquirk-dotnetnames,mjakop/pywinauto,wilsoc5/pywinauto,nameoffnv/pywinauto,manojklm/pywinauto-x64,vsajip/pywinauto,vsajip/pywinauto,clonly/pywinauto,vsajip/pywinauto,pjquirk/pjquirk-dotnetnames,prasen-ftech/pywinauto,vane/pywinauto,ohio813/pywinauto,bombilee/pywinauto,yongxin1029/pywinauto,MagazinnikIvan/pywinauto
a69c1de9eadd67021af10966de7d5fb576b6b66e
recipe/bld.bat
recipe/bld.bat
set FFMPEG_FN=ffmpeg-%PKG_VERSION%-win%ARCH% curl -L -O "https://ffmpeg.zeranoe.com/builds/win%ARCH%/dev/%FFMPEG_FN%-dev.7z" 7za x %SRC_DIR%\%FFMPEG_FN%-shared.7z -o%SRC_DIR% 7za x %FFMPEG_FN%-dev.7z -o%SRC_DIR% copy %SRC_DIR%\%FFMPEG_FN%-shared\bin %LIBRARY_BIN% copy %SRC_DIR%\%FFMPEG_FN%-dev\include %LIBRARY_INC% copy %SRC_DIR%\%FFMPEG_FN%-dev\lib %LIBRARY_LIB% copy %SRC_DIR%\%FFMPEG_FN%-shared\README.txt %RECIPE_DIR% mkdir %RECIPE_DIR%\licenses copy %SRC_DIR%\%FFMPEG_FN%-shared\licenses %RECIPE_DIR%\licenses exit 0
set FFMPEG_FN=ffmpeg-%PKG_VERSION%-win%ARCH% curl -L -O "https://ffmpeg.zeranoe.com/builds/win%ARCH%/dev/%FFMPEG_FN%-dev.7z" 7za x %SRC_DIR%\%FFMPEG_FN%-shared.7z -o%SRC_DIR% 7za x %FFMPEG_FN%-dev.7z -o%SRC_DIR% robocopy %SRC_DIR%\%FFMPEG_FN%-shared\bin\ %LIBRARY_BIN%\ *.* /E if %ERRORLEVEL% GEQ 8 exit 1 robocopy %SRC_DIR%\%FFMPEG_FN%-dev\include\ %LIBRARY_INC%\ *.* /E if %ERRORLEVEL% GEQ 8 exit 1 robocopy %SRC_DIR%\%FFMPEG_FN%-dev\lib\ %LIBRARY_LIB%\ *.* /E if %ERRORLEVEL% GEQ 8 exit 1 copy %SRC_DIR%\%FFMPEG_FN%-shared\README.txt %RECIPE_DIR% mkdir %RECIPE_DIR%\licenses copy %SRC_DIR%\%FFMPEG_FN%-shared\licenses %RECIPE_DIR%\licenses exit 0
Use robocopy to copy subdirs too
Use robocopy to copy subdirs too
Batchfile
bsd-3-clause
loopbio/ffmpeg-feedstock
793bcb36ce278dbead18c072a34fb35d962a24ca
winlogbeat/make.bat
winlogbeat/make.bat
@echo off REM REM Batch script to build and test on Windows. You can use this in conjunction REM with the Vagrant machine. REM echo Building go build if %errorlevel% neq 0 exit /b %errorlevel% echo Testing go test ./... if %errorlevel% neq 0 exit /b %errorlevel% echo System Testing go test -c -covermode=atomic -coverpkg ./... if %errorlevel% neq 0 exit /b %errorlevel% nosetests -w tests\system --process-timeout=30 if %errorlevel% neq 0 exit /b %errorlevel%
@echo off REM REM Batch script to build and test on Windows. You can use this in conjunction REM with the Vagrant machine. REM echo Building go build if %errorlevel% neq 0 exit /b %errorlevel% echo Testing go test ./... if %errorlevel% neq 0 exit /b %errorlevel% echo System Testing go test -c -covermode=atomic -coverpkg ./... if %errorlevel% neq 0 exit /b %errorlevel% nosetests -w tests\system --process-timeout=30 if %errorlevel% neq 0 exit /b %errorlevel%
Normalize all the line endings
Normalize all the line endings
Batchfile
mit
yapdns/yapdnsbeat,yapdns/yapdnsbeat
8dc2469c663ca2d66bc3d1b1d9789d71e737e629
reports_manager/report_manager_database/action_functions/test/test_action_enter_edit_folders.bat
reports_manager/report_manager_database/action_functions/test/test_action_enter_edit_folders.bat
"C:\Program Files\PostgreSQL\9.6\bin\psql.exe" -h localhost -U postgres -d reports_manager_test_db -p 5432 -f ..\action_enter_edit_folders.sql 1> test_action_enter_edit_folders.log 2>&1 "C:\Program Files\PostgreSQL\9.6\bin\psql.exe" -h localhost -U postgres -d reports_manager_test_db -p 5432 -f test_action_enter_edit_folders.sql 1>> test_action_enter_edit_folders.log 2>>&1
REM install db call C:\funda_components\reports_manager\report_manager_database\reports_manager_test_db\install_reports_manager_test_db.bat "C:\Program Files\PostgreSQL\9.6\bin\psql.exe" -h localhost -U postgres -d reports_manager_test_db -p 5432 -f ..\action_enter_edit_folders.sql 1> test_action_enter_edit_folders.log 2>&1 "C:\Program Files\PostgreSQL\9.6\bin\psql.exe" -h localhost -U postgres -d reports_manager_test_db -p 5432 -f test_action_enter_edit_folders.sql 1>> test_action_enter_edit_folders.log 2>>&1
Add complete db installation before tests
Add complete db installation before tests
Batchfile
apache-2.0
james-cantrill/funda_components,james-cantrill/funda_components
78f77172618740fee1d9ba37bc55c9ef5d58b2e1
Tools/Trace/UsbDkTrace.bat
Tools/Trace/UsbDkTrace.bat
@echo off traceview.exe -start UsbDk -rt -flag 0xFF -level 6 -ft 1 -pdb UsbDk.pdb -guid UsbDk.ctl mkdir WPP start traceview.exe -process -rt UsbDk -display -ods -o WPP\\UsbDk.txt -pdb UsbDk.pdb -guid UsbDk.ctl start dbgview.exe pause traceview.exe -stop UsbDk
@echo off traceview.exe -start UsbDk -rt -flag 0x7FFFFFFF -level 6 -ft 1 -pdb UsbDk.pdb -guid UsbDk.ctl mkdir WPP start traceview.exe -process -rt UsbDk -display -ods -o WPP\\UsbDk.txt -pdb UsbDk.pdb -guid UsbDk.ctl start dbgview.exe pause traceview.exe -stop UsbDk
Enable all trace flags by default
Trace: Enable all trace flags by default Signed-off-by: Dmitry Fleytman <[email protected]>
Batchfile
apache-2.0
SPICE/win32-usbdk,daynix/UsbDk,daynix/UsbDk,SPICE/win32-usbdk
f8a4294ce793272b61ac31ed390d1489f27201de
recipes/ann/bld.bat
recipes/ann/bld.bat
mkdir -p build-cmake cd build-cmake cmake -G "NMake Makefiles" -DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% -DCMAKE_BUILD_TYPE=Release .. if errorlevel 1 exit 1 nmake if errorlevel 1 exit 1 nmake install if errorlevel 1 exit 1 MOVE %LIBRARY_LIB%\ann.dll %LIBRARY_BIN%
mkdir -p build-cmake cd build-cmake cmake -G "NMake Makefiles" -DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% -DCMAKE_BUILD_TYPE=Release -DANN_NO_RANDOM .. if errorlevel 1 exit 1 nmake if errorlevel 1 exit 1 nmake install if errorlevel 1 exit 1 MOVE %LIBRARY_LIB%\ann.dll %LIBRARY_BIN%
Add flag specifying that random/srandom are not available on windows
Add flag specifying that random/srandom are not available on windows
Batchfile
bsd-3-clause
stuertz/staged-recipes,birdsarah/staged-recipes,Juanlu001/staged-recipes,conda-forge/staged-recipes,asmeurer/staged-recipes,isuruf/staged-recipes,johanneskoester/staged-recipes,petrushy/staged-recipes,dschreij/staged-recipes,birdsarah/staged-recipes,synapticarbors/staged-recipes,hadim/staged-recipes,johanneskoester/staged-recipes,dschreij/staged-recipes,asmeurer/staged-recipes,kwilcox/staged-recipes,patricksnape/staged-recipes,ocefpaf/staged-recipes,kwilcox/staged-recipes,isuruf/staged-recipes,goanpeca/staged-recipes,mariusvniekerk/staged-recipes,scopatz/staged-recipes,goanpeca/staged-recipes,petrushy/staged-recipes,stuertz/staged-recipes,conda-forge/staged-recipes,patricksnape/staged-recipes,igortg/staged-recipes,ReimarBauer/staged-recipes,mcs07/staged-recipes,scopatz/staged-recipes,chrisburr/staged-recipes,hadim/staged-recipes,jakirkham/staged-recipes,SylvainCorlay/staged-recipes,jochym/staged-recipes,jochym/staged-recipes,mcs07/staged-recipes,igortg/staged-recipes,mariusvniekerk/staged-recipes,chrisburr/staged-recipes,jakirkham/staged-recipes,SylvainCorlay/staged-recipes,synapticarbors/staged-recipes,ReimarBauer/staged-recipes,ocefpaf/staged-recipes,Juanlu001/staged-recipes
14f2ac86ec6ec05f74c8757f31e8a40a891acce9
tools/windows/sign_msi.bat
tools/windows/sign_msi.bat
@echo off set DIST_DIR=dist set CERTIFICATE_PATH=%HOMEPATH%\certificates\nuxeo.com.pfx set MSI_PROGRAM_NAME="Nuxeo Drive" set TIMESTAMP_URL=http://timestamp.verisign.com/scripts/timstamp.dll set SIGN_CMD=signtool sign /v /f %CERTIFICATE_PATH% /d %MSI_PROGRAM_NAME% /t %TIMESTAMP_URL% set VERIFY_CMD=signtool verify /v /pa FOR %%F IN (%DIST_DIR%\*.msi) DO ( echo --------------------------------------------- echo Signing %%F echo --------------------------------------------- echo %SIGN_CMD% %%F %SIGN_CMD% %%F echo --------------------------------------------- echo Verifying %%F echo --------------------------------------------- echo %VERIFY_CMD% %%F %VERIFY_CMD% %%F )
@echo off set DIST_DIR=dist set CERTIFICATE_PATH=%USERPROFILE%\certificates\nuxeo.com.pfx set MSI_PROGRAM_NAME="Nuxeo Drive" set TIMESTAMP_URL=http://timestamp.verisign.com/scripts/timstamp.dll set SIGN_CMD=signtool sign /v /f %CERTIFICATE_PATH% /d %MSI_PROGRAM_NAME% /t %TIMESTAMP_URL% set VERIFY_CMD=signtool verify /v /pa FOR %%F IN (%DIST_DIR%\*.msi) DO ( echo --------------------------------------------- echo Signing %%F echo --------------------------------------------- echo %SIGN_CMD% %%F %SIGN_CMD% %%F echo --------------------------------------------- echo Verifying %%F echo --------------------------------------------- echo %VERIFY_CMD% %%F %VERIFY_CMD% %%F )
Use C:\Users\nuxeo instead of \Users\nuxeo in msi signing batch script (not set by Jenkins)
NXP-12981: Use C:\Users\nuxeo instead of \Users\nuxeo in msi signing batch script (not set by Jenkins)
Batchfile
lgpl-2.1
arameshkumar/base-nuxeo-drive,IsaacYangSLA/nuxeo-drive,ssdi-drive/nuxeo-drive,arameshkumar/base-nuxeo-drive,loopingz/nuxeo-drive,arameshkumar/nuxeo-drive,IsaacYangSLA/nuxeo-drive,arameshkumar/base-nuxeo-drive,arameshkumar/nuxeo-drive,IsaacYangSLA/nuxeo-drive,rsoumyassdi/nuxeo-drive,DirkHoffmann/nuxeo-drive,IsaacYangSLA/nuxeo-drive,ssdi-drive/nuxeo-drive,rsoumyassdi/nuxeo-drive,loopingz/nuxeo-drive,rsoumyassdi/nuxeo-drive,rsoumyassdi/nuxeo-drive,DirkHoffmann/nuxeo-drive,ssdi-drive/nuxeo-drive,arameshkumar/nuxeo-drive,DirkHoffmann/nuxeo-drive,IsaacYangSLA/nuxeo-drive,loopingz/nuxeo-drive,DirkHoffmann/nuxeo-drive,loopingz/nuxeo-drive,DirkHoffmann/nuxeo-drive,arameshkumar/nuxeo-drive,arameshkumar/base-nuxeo-drive,loopingz/nuxeo-drive
15b23c8106cf887ba8fa72d6b6357472830f43a4
makebuild.bat
makebuild.bat
@rem Makes a build of the viewer @rem You should have a directory ..\viewerbuilddlls which has release versions of @rem all dependency dlls, including gtkmm & the Visual Studio 9 runtime @echo off rmdir build /S /Q md build xcopy bin\*.* build /S /C del build\data\configuration\*.xml rmdir build\testing /S /Q del build\*.dll del build\viewerd.exe del build\modules\core\*d.dll del build\modules\test\*d.dll del build\modules\test\TestModule*.* del build\modules\test\non_existing_system.xml xcopy ..\viewerbuilddlls\*.* build /S /C
@rem Makes a build of the viewer @rem You should have a directory ..\viewerbuilddlls which has release versions of @rem all dependency dlls, including gtkmm & the Visual Studio 9 runtime @echo off rmdir build /S /Q md build xcopy bin\*.* build /S /C del build\data\configuration\*.xml rmdir build\testing /S /Q del build\*.dll del build\viewerd.exe del build\modules\core\*d.dll del build\modules\test\*d.dll del build\modules\test\TestModule*.* del build\modules\test\non_existing_system.xml del build\modules\core\OpenAL*.* xcopy ..\viewerbuilddlls\*.* build /S /C
Delete OpenAL module from build from now on, because it's not yet used.
Delete OpenAL module from build from now on, because it's not yet used. git-svn-id: 65dd0ccd495961f396d5302e5521154b071f0302@918 5b2332b8-efa3-11de-8684-7d64432d61a3
Batchfile
apache-2.0
jesterKing/naali,jesterKing/naali,jesterKing/naali,realXtend/tundra,AlphaStaxLLC/tundra,antont/tundra,BogusCurry/tundra,antont/tundra,pharos3d/tundra,AlphaStaxLLC/tundra,antont/tundra,jesterKing/naali,realXtend/tundra,AlphaStaxLLC/tundra,pharos3d/tundra,BogusCurry/tundra,AlphaStaxLLC/tundra,BogusCurry/tundra,antont/tundra,pharos3d/tundra,jesterKing/naali,BogusCurry/tundra,realXtend/tundra,jesterKing/naali,realXtend/tundra,pharos3d/tundra,BogusCurry/tundra,realXtend/tundra,antont/tundra,AlphaStaxLLC/tundra,jesterKing/naali,antont/tundra,pharos3d/tundra,pharos3d/tundra,AlphaStaxLLC/tundra,BogusCurry/tundra,realXtend/tundra,antont/tundra
07d4b98443c7ff88e18817454758932e17dfdf63
buildscript/modules/collectdebugsymbols.cmd
buildscript/modules/collectdebugsymbols.cmd
@echo Copying debug information... @IF %toolchain%==msvc ROBOCOPY "%devroot%\mesa\build\%toolchain%-%abi%" "%devroot%\%projectname%\debugsymbols\%abi%" *.pdb /E @IF NOT %toolchain%==msvc IF EXIST "%msysloc%\%LMSYSTEM%\bin\strip.exe" IF EXIST "%msysloc%\%LMSYSTEM%\bin\objcopy.exe" for /f delims^=^ eol^= %%a in ('dir /b "%devroot%\%projectname%\bin\%abi%\*.*" 2^>^&1') do @IF EXIST "%devroot%\%projectname%\bin\%abi%\%%~nxa" IF /I NOT "%%~na"=="dxil" IF /I NOT "%%~na"=="openclon12" IF /I NOT "%%~na"=="WinPixEventRuntime" IF /I NOT "%%~xa"=="json" ( @"%msysloc%\%LMSYSTEM%\bin\objcopy.exe" --only-keep-debug "%devroot%\%projectname%\bin\%abi%\%%~nxa" "%devroot%\%projectname%\debugsymbols\%abi%\%%~nxa.sym" @"%msysloc%\%LMSYSTEM%\bin\strip.exe" --strip-debug --strip-unneeded "%devroot%\%projectname%\bin\%abi%\%%~nxa" ) @echo.
@IF %toolchain%==msvc ROBOCOPY "%devroot%\mesa\build\%toolchain%-%abi%" "%devroot%\%projectname%\debugsymbols\%abi%" *.pdb /E @IF NOT %toolchain%==msvc IF EXIST "%msysloc%\%LMSYSTEM%\bin\strip.exe" IF EXIST "%msysloc%\%LMSYSTEM%\bin\objcopy.exe" for /f delims^=^ eol^= %%a in ('dir /b "%devroot%\%projectname%\bin\%abi%\*.*" 2^>^&1') do @IF EXIST "%devroot%\%projectname%\bin\%abi%\%%~nxa" IF /I NOT "%%~na"=="dxil" IF /I NOT "%%~na"=="openclon12" IF /I NOT "%%~na"=="WinPixEventRuntime" IF /I NOT "%%~xa"==".json" IF /I NOT "%%~xa"=="json" ( @echo Extracting debug information from %%~nxa into %%~nxa.sym... @"%msysloc%\%LMSYSTEM%\bin\objcopy.exe" --only-keep-debug "%devroot%\%projectname%\bin\%abi%\%%~nxa" "%devroot%\%projectname%\debugsymbols\%abi%\%%~nxa.sym" @"%msysloc%\%LMSYSTEM%\bin\strip.exe" --strip-debug --strip-unneeded "%devroot%\%projectname%\bin\%abi%\%%~nxa" @echo Finished. ) @echo.
Make symbol extraction more verbose so progress can be observed
MinGW: Make symbol extraction more verbose so progress can be observed
Batchfile
mit
pal1000/mesa-dist-win,pal1000/mesa-dist-win
f1e98fce4e8e961646b56138ebb5f69a9557ac2e
scripts/sonarqube-scan.cmd
scripts/sonarqube-scan.cmd
mvn clean jacoco:prepare-agent verify jacoco:report -Dmaven.javadoc.failOnError=false -s dev\settings-sonarqube.xml %*
mvn clean jacoco:prepare-agent verify jacoco:report sonar:sonar -Dmaven.javadoc.failOnError=false -s dev\settings-sonarqube.xml %*
Add missing `sonar:sonar` for windows script
Add missing `sonar:sonar` for windows script
Batchfile
apache-2.0
excella-core/excella-trans
77f368a443d34f6b3613c072902abbe8a43a600e
Test/test-ipy-tc.cmd
Test/test-ipy-tc.cmd
@echo off setlocal set _test_root=%DLR_ROOT%\Test set _runner=%_test_root%\TestRunner\TestRunner\bin\Debug\TestRunner.exe call :build_runner "%_runner%" "%_test_root%\IronPython.tests" /verbose /threads:1 /binpath:"%DLR_BIN%" /nunitoutput:"%_test_root%\TestResult.xml" %* endlocal goto:eof :build_runner %windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /t:Rebuild %_test_root%\ClrAssembly\ClrAssembly.csproj /p:Configuration=Debug /v:quiet /nologo %windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /t:Rebuild %_test_root%\TestRunner\TestRunner.sln /p:Configuration=Debug /v:quiet /nologo goto:eof
@echo off setlocal if "%DLR_BIN%"=="" ( echo "You must set DLR_BIN before running this command" exit /b -1 ) if "%DLR_ROOT%"=="" ( echo "You must set DLR_ROOT before running this command" exit /b -1 ) set _test_root=%DLR_ROOT%\Test set _config=%CONFIGURATION% if "%_config%"=="" ( set _config=Debug ) set _runner=%_test_root%\TestRunner\TestRunner\bin\%_config%\TestRunner.exe call :build_runner "%_runner%" "%_test_root%\IronPython.tests" /verbose /threads:1 /binpath:"%DLR_BIN%" /nunitoutput:"%_test_root%\TestResult.xml" %* endlocal goto:eof :build_runner %windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /t:Rebuild %_test_root%\ClrAssembly\ClrAssembly.csproj /p:Configuration=%_config% /v:quiet /nologo %windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /t:Rebuild %_test_root%\TestRunner\TestRunner.sln /p:Configuration=%_config% /v:quiet /nologo goto:eof
Make test runner use the correct configuration
Make test runner use the correct configuration
Batchfile
apache-2.0
slozier/ironpython2,slozier/ironpython2,slozier/ironpython2,IronLanguages/ironpython2,IronLanguages/ironpython2,slozier/ironpython2,IronLanguages/ironpython2,IronLanguages/ironpython2,IronLanguages/ironpython2,IronLanguages/ironpython2,IronLanguages/ironpython2,slozier/ironpython2,slozier/ironpython2,slozier/ironpython2
07599011c82c9e9b2345874402fd1f1e68c1ff24
build.cmd
build.cmd
@echo off setlocal :: Note: We've disabled node reuse because it causes file locking issues. :: The issue is that we extend the build with our own targets which :: means that that rebuilding cannot successully delete the task :: assembly. :: Check prerequisites set _msbuildexe="%ProgramFiles(x86)%\MSBuild\12.0\Bin\MSBuild.exe" if not exist %_msbuildexe% set _msbuildexe="%ProgramFiles%\MSBuild\12.0\Bin\MSBuild.exe" if not exist %_msbuildexe% echo Error: Could not find MSBuild.exe. Please see http://go.microsoft.com/fwlink/?LinkID=518812 for build instructions. && goto :eof :: Log build command line set _buildprefix=echo set _buildpostfix=^> "%~dp0msbuild.log" call :build %* :: Build set _buildprefix= set _buildpostfix= call :build %* goto :eof :build %_buildprefix% %_msbuildexe% "%~dp0build.proj" /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=diag;LogFile="%~dp0msbuild.log";Append %* %_buildpostfix% goto :eof
@echo off setlocal :: Note: We've disabled node reuse because it causes file locking issues. :: The issue is that we extend the build with our own targets which :: means that that rebuilding cannot successully delete the task :: assembly. :: Check prerequisites set _msbuildexe="%ProgramFiles(x86)%\MSBuild\12.0\Bin\MSBuild.exe" if not exist %_msbuildexe% set _msbuildexe="%ProgramFiles%\MSBuild\12.0\Bin\MSBuild.exe" if not exist %_msbuildexe% echo Error: Could not find MSBuild.exe. Please see https://github.com/dotnet/corefx/blob/master/docs/Developers.md for build instructions. && goto :eof :: Log build command line set _buildprefix=echo set _buildpostfix=^> "%~dp0msbuild.log" call :build %* :: Build set _buildprefix= set _buildpostfix= call :build %* goto :eof :build %_buildprefix% %_msbuildexe% "%~dp0build.proj" /nologo /maxcpucount /verbosity:minimal /nodeReuse:false /fileloggerparameters:Verbosity=diag;LogFile="%~dp0msbuild.log";Append %* %_buildpostfix% goto :eof
Replace fwlink with direct link to contributor's guide.
Replace fwlink with direct link to contributor's guide.
Batchfile
mit
ericstj/buildtools,maririos/buildtools,weshaggard/buildtools,mmitche/buildtools,nguerrera/buildtools,JeremyKuhne/buildtools,crummel/dotnet_buildtools,maririos/buildtools,ericstj/buildtools,weshaggard/buildtools,mmitche/buildtools,jthelin/dotnet-buildtools,maririos/buildtools,ianhays/buildtools,alexperovich/buildtools,naamunds/buildtools,crummel/dotnet_buildtools,MattGal/buildtools,mmitche/buildtools,dsplaisted/buildtools,tarekgh/buildtools,stephentoub/buildtools,ChadNedzlek/buildtools,ChadNedzlek/buildtools,jthelin/dotnet-buildtools,MattGal/buildtools,FiveTimesTheFun/buildtools,chcosta/buildtools,ericstj/buildtools,dotnet/buildtools,chcosta/buildtools,roncain/buildtools,stephentoub/buildtools,schaabs/buildtools,nguerrera/buildtools,ianhays/buildtools,MattGal/buildtools,jhendrixMSFT/buildtools,jhendrixMSFT/buildtools,AlexGhiondea/buildtools,dotnet/buildtools,JeremyKuhne/buildtools,schaabs/buildtools,mellinoe/buildtools,contoso-dnf-a/buildtools,crummel/dotnet_buildtools,alexperovich/buildtools,pgavlin/buildtools,jhendrixMSFT/buildtools,naamunds/buildtools,contoso-dnf-a/buildtools,chcosta/buildtools,MattGal/buildtools,alexperovich/buildtools,ianhays/buildtools,roncain/buildtools,maririos/buildtools,ChadNedzlek/buildtools,joperezr/buildtools,weshaggard/buildtools,ellismg/buildtools,roncain/buildtools,naamunds/buildtools,ChadNedzlek/buildtools,mmitche/buildtools,naamunds/buildtools,joperezr/buildtools,dotnet/buildtools,karajas/buildtools,pallavit/buildtools,joperezr/buildtools,joperezr/buildtools,JeremyKuhne/buildtools,roncain/buildtools,venkat-raman251/buildtools,alexperovich/buildtools,eatdrinksleepcode/buildtools,joperezr/buildtools,tarekgh/buildtools,Priya91/buildtools,ericstj/buildtools,mmitche/buildtools,jthelin/dotnet-buildtools,ianhays/buildtools,schaabs/buildtools,nguerrera/buildtools,tarekgh/buildtools,dotnet/buildtools,stephentoub/buildtools,AlexGhiondea/buildtools,alexperovich/buildtools,AlexGhiondea/buildtools,dsplaisted/buildtools,ellismg/buildtools,pallavit/buildtools,MattGal/buildtools,jthelin/dotnet-buildtools,jhendrixMSFT/buildtools,tarekgh/buildtools,weshaggard/buildtools,JeremyKuhne/buildtools,nguerrera/buildtools,AlexGhiondea/buildtools,crummel/dotnet_buildtools,venkat-raman251/buildtools,tarekgh/buildtools,karajas/buildtools,karajas/buildtools,chcosta/buildtools,stephentoub/buildtools,karajas/buildtools,schaabs/buildtools
1e55e5173c467c9106b697620b1939676ed2806c
build.cmd
build.cmd
@echo off pushd %~dp0 setlocal if exist bin goto build mkdir bin :Build set MSBuild="%ProgramFiles(x86)%\MSBuild\12.0\Bin\MsBuild.exe" if not exist %MSBuild% @set MSBuild="%ProgramFiles%\MSBuild\12.0\Bin\MsBuild.exe" if not exist %MSBuild% @set MSBuild="%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" if "%1" == "" goto BuildDefaults %MSBuild% Runtime.msbuild /m /nr:false /t:%* /p:Platform="Any CPU" /p:Desktop=true /v:M /fl /flp:LogFile=bin\msbuild.log;Verbosity=Normal if %ERRORLEVEL% neq 0 goto BuildFail goto BuildSuccess :BuildDefaults %MSBuild% Runtime.msbuild /m /nr:false /p:Platform="Any CPU" /p:Desktop=true /v:M /fl /flp:LogFile=bin\msbuild.log;Verbosity=Normal if %ERRORLEVEL% neq 0 goto BuildFail goto BuildSuccess :BuildFail echo. echo *** BUILD FAILED *** goto End :BuildSuccess echo. echo **** BUILD SUCCESSFUL *** goto end :End popd endlocal
@echo off pushd %~dp0 setlocal if exist bin goto build mkdir bin :Build REM Find the most recent 32bit MSBuild.exe on the system. If v12.0 (installed with VS2013) does not exist, fall back to REM v4.0. Also handle x86 operating systems, where %ProgramFiles(x86)% is not defined. Always quote the %MSBuild% value REM when setting the variable and never quote %MSBuild% references. set MSBuild="%ProgramFiles(x86)%\MSBuild\12.0\Bin\MSBuild.exe" if not exist %MSBuild% @set MSBuild="%ProgramFiles%\MSBuild\12.0\Bin\MSBuild.exe" if not exist %MSBuild% @set MSBuild="%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" if "%1" == "" goto BuildDefaults %MSBuild% Runtime.msbuild /m /nr:false /t:%* /p:Platform="Any CPU" /p:Desktop=true /v:M /fl /flp:LogFile=bin\msbuild.log;Verbosity=Normal if %ERRORLEVEL% neq 0 goto BuildFail goto BuildSuccess :BuildDefaults %MSBuild% Runtime.msbuild /m /nr:false /p:Platform="Any CPU" /p:Desktop=true /v:M /fl /flp:LogFile=bin\msbuild.log;Verbosity=Normal if %ERRORLEVEL% neq 0 goto BuildFail goto BuildSuccess :BuildFail echo. echo *** BUILD FAILED *** goto End :BuildSuccess echo. echo **** BUILD SUCCESSFUL *** goto end :End popd endlocal
Add comment for %MSBuild% setting - CR follow-up
Add comment for %MSBuild% setting - CR follow-up
Batchfile
mit
yonglehou/WebApi,LianwMS/WebApi,yonglehou/WebApi,lungisam/WebApi,abkmr/WebApi,LianwMS/WebApi,congysu/WebApi,chimpinano/WebApi,chimpinano/WebApi,scz2011/WebApi,congysu/WebApi,lungisam/WebApi,abkmr/WebApi,lewischeng-ms/WebApi,scz2011/WebApi,lewischeng-ms/WebApi
062b144fa953528f57a4edd48ad45d2c0f99cf00
build.cmd
build.cmd
@echo off setlocal for %%i in (NuGet.exe) do set nuget=%%~dpnx$PATH:i if "%nuget%"=="" ( echo WARNING! NuGet executable not found in PATH so build may fail! echo For more on NuGet, see https://github.com/nuget/home ) pushd "%~dp0" nuget restore && call :build Debug && call :build Release popd goto :EOF :build setlocal if "%PROCESSOR_ARCHITECTURE%"=="x86" set MSBUILD=%ProgramFiles% if defined ProgramFiles(x86) set MSBUILD=%ProgramFiles(x86)% set MSBUILD=%MSBUILD%\MSBuild\14.0\bin\msbuild if not exist "%MSBUILD%" ( echo Microsoft Build Tools 2015 does not appear to be installed on this echo machine, which is required to build the solution. You can install echo it from the URL below and then try building again: echo https://www.microsoft.com/en-us/download/details.aspx?id=48159 exit /b 1 ) "%MSBUILD%" /p:Configuration=%1 /v:m %2 %3 %4 %5 %6 %7 %8 %9 goto :EOF
@echo off setlocal for %%i in (NuGet.exe) do set nuget=%%~dpnx$PATH:i if "%nuget%"=="" ( echo WARNING! NuGet executable not found in PATH so build may fail! echo For more on NuGet, see https://github.com/nuget/home ) pushd "%~dp0" nuget restore && call :build Debug %* && call :build Release %* popd goto :EOF :build setlocal if "%PROCESSOR_ARCHITECTURE%"=="x86" set MSBUILD=%ProgramFiles% if defined ProgramFiles(x86) set MSBUILD=%ProgramFiles(x86)% set MSBUILD=%MSBUILD%\MSBuild\14.0\bin\msbuild if not exist "%MSBUILD%" ( echo Microsoft Build Tools 2015 does not appear to be installed on this echo machine, which is required to build the solution. You can install echo it from the URL below and then try building again: echo https://www.microsoft.com/en-us/download/details.aspx?id=48159 exit /b 1 ) "%MSBUILD%" /p:Configuration=%1 /v:m %2 %3 %4 %5 %6 %7 %8 %9 goto :EOF
Build script args pass-thru fix to get clean.cmd working again
Build script args pass-thru fix to get clean.cmd working again
Batchfile
apache-2.0
atifaziz/NCrontab,atifaziz/NCrontab
285ad69b1cb2a914ccd809f29fce1d0e6ca3e0f1
run-test.cmd
run-test.cmd
@if "%_echo%" neq "on" echo off :: To run tests outside of MSBuild.exe :: %1 is the path to the tests\<OSConfig> folder :: %2 is the path to the packages folder pushd %1 FOR /D %%F IN (*.Tests) DO ( IF EXIST %%F\netcoreapp1.0 ( pushd %%F\netcoreapp1.0 CALL RunTests.cmd %2 popd ) ) popd
@if "%_echo%" neq "on" echo off :: To run tests outside of MSBuild.exe :: %1 is the path to the tests\<OSConfig> folder :: %2 is the path to the packages folder pushd %1 FOR /D %%F IN (*.Tests) DO ( IF EXIST %%F\netcoreapp1.0 ( pushd %%F\netcoreapp1.0 IF EXIST RunTests.cmd ( CALL RunTests.cmd %2 ) popd ) ) popd
Check for RunTest.cmd before running test on Nano.
Check for RunTest.cmd before running test on Nano.
Batchfile
mit
manu-silicon/corefx,billwert/corefx,ravimeda/corefx,alphonsekurian/corefx,marksmeltzer/corefx,krytarowski/corefx,rubo/corefx,stephenmichaelf/corefx,richlander/corefx,DnlHarvey/corefx,ericstj/corefx,weltkante/corefx,YoupHulsebos/corefx,jhendrixMSFT/corefx,rahku/corefx,nbarbettini/corefx,alphonsekurian/corefx,dhoehna/corefx,mazong1123/corefx,ravimeda/corefx,nchikanov/corefx,seanshpark/corefx,mmitche/corefx,billwert/corefx,dotnet-bot/corefx,tijoytom/corefx,DnlHarvey/corefx,twsouthwick/corefx,rahku/corefx,weltkante/corefx,Ermiar/corefx,zhenlan/corefx,billwert/corefx,ptoonen/corefx,iamjasonp/corefx,tijoytom/corefx,lggomez/corefx,MaggieTsang/corefx,krytarowski/corefx,parjong/corefx,krk/corefx,krytarowski/corefx,manu-silicon/corefx,seanshpark/corefx,seanshpark/corefx,YoupHulsebos/corefx,gkhanna79/corefx,wtgodbe/corefx,twsouthwick/corefx,tijoytom/corefx,tijoytom/corefx,MaggieTsang/corefx,jhendrixMSFT/corefx,nbarbettini/corefx,ravimeda/corefx,the-dwyer/corefx,Ermiar/corefx,elijah6/corefx,nbarbettini/corefx,stone-li/corefx,elijah6/corefx,shmao/corefx,shmao/corefx,nbarbettini/corefx,JosephTremoulet/corefx,lggomez/corefx,ViktorHofer/corefx,fgreinacher/corefx,stephenmichaelf/corefx,the-dwyer/corefx,krk/corefx,JosephTremoulet/corefx,MaggieTsang/corefx,elijah6/corefx,jlin177/corefx,stone-li/corefx,shimingsg/corefx,ViktorHofer/corefx,ViktorHofer/corefx,gkhanna79/corefx,DnlHarvey/corefx,seanshpark/corefx,dhoehna/corefx,krk/corefx,parjong/corefx,jlin177/corefx,YoupHulsebos/corefx,the-dwyer/corefx,mmitche/corefx,alphonsekurian/corefx,parjong/corefx,MaggieTsang/corefx,Ermiar/corefx,shimingsg/corefx,dotnet-bot/corefx,DnlHarvey/corefx,axelheer/corefx,richlander/corefx,stephenmichaelf/corefx,billwert/corefx,seanshpark/corefx,rubo/corefx,nbarbettini/corefx,YoupHulsebos/corefx,jlin177/corefx,the-dwyer/corefx,billwert/corefx,nbarbettini/corefx,gkhanna79/corefx,tijoytom/corefx,Ermiar/corefx,rahku/corefx,Ermiar/corefx,yizhang82/corefx,marksmeltzer/corefx,wtgodbe/corefx,JosephTremoulet/corefx,shimingsg/corefx,alexperovich/corefx,axelheer/corefx,YoupHulsebos/corefx,jhendrixMSFT/corefx,rjxby/corefx,stone-li/corefx,Petermarcu/corefx,weltkante/corefx,seanshpark/corefx,rubo/corefx,rjxby/corefx,stone-li/corefx,shmao/corefx,MaggieTsang/corefx,Ermiar/corefx,iamjasonp/corefx,ViktorHofer/corefx,jhendrixMSFT/corefx,elijah6/corefx,richlander/corefx,Jiayili1/corefx,twsouthwick/corefx,krk/corefx,gkhanna79/corefx,YoupHulsebos/corefx,alphonsekurian/corefx,iamjasonp/corefx,rubo/corefx,MaggieTsang/corefx,cydhaselton/corefx,jlin177/corefx,alexperovich/corefx,ericstj/corefx,manu-silicon/corefx,tijoytom/corefx,twsouthwick/corefx,wtgodbe/corefx,elijah6/corefx,shmao/corefx,axelheer/corefx,lggomez/corefx,rjxby/corefx,billwert/corefx,dhoehna/corefx,alexperovich/corefx,parjong/corefx,stone-li/corefx,twsouthwick/corefx,the-dwyer/corefx,rahku/corefx,jhendrixMSFT/corefx,rjxby/corefx,axelheer/corefx,stephenmichaelf/corefx,iamjasonp/corefx,the-dwyer/corefx,dhoehna/corefx,JosephTremoulet/corefx,cydhaselton/corefx,yizhang82/corefx,rjxby/corefx,yizhang82/corefx,shmao/corefx,elijah6/corefx,stone-li/corefx,stephenmichaelf/corefx,DnlHarvey/corefx,parjong/corefx,nchikanov/corefx,gkhanna79/corefx,gkhanna79/corefx,stone-li/corefx,nchikanov/corefx,alphonsekurian/corefx,alexperovich/corefx,Jiayili1/corefx,nchikanov/corefx,ViktorHofer/corefx,fgreinacher/corefx,ravimeda/corefx,cydhaselton/corefx,manu-silicon/corefx,alexperovich/corefx,krk/corefx,ericstj/corefx,Jiayili1/corefx,alphonsekurian/corefx,zhenlan/corefx,ptoonen/corefx,mazong1123/corefx,seanshpark/corefx,tijoytom/corefx,JosephTremoulet/corefx,iamjasonp/corefx,jlin177/corefx,yizhang82/corefx,mmitche/corefx,mmitche/corefx,mazong1123/corefx,elijah6/corefx,jhendrixMSFT/corefx,axelheer/corefx,mazong1123/corefx,manu-silicon/corefx,ptoonen/corefx,weltkante/corefx,mmitche/corefx,krytarowski/corefx,marksmeltzer/corefx,yizhang82/corefx,rjxby/corefx,dhoehna/corefx,Jiayili1/corefx,iamjasonp/corefx,JosephTremoulet/corefx,manu-silicon/corefx,shmao/corefx,rahku/corefx,rahku/corefx,krk/corefx,Petermarcu/corefx,parjong/corefx,shimingsg/corefx,Petermarcu/corefx,cydhaselton/corefx,alphonsekurian/corefx,yizhang82/corefx,dhoehna/corefx,krk/corefx,Jiayili1/corefx,fgreinacher/corefx,richlander/corefx,nchikanov/corefx,stephenmichaelf/corefx,zhenlan/corefx,DnlHarvey/corefx,wtgodbe/corefx,rahku/corefx,parjong/corefx,krytarowski/corefx,shimingsg/corefx,ravimeda/corefx,weltkante/corefx,the-dwyer/corefx,mazong1123/corefx,marksmeltzer/corefx,Jiayili1/corefx,alexperovich/corefx,krytarowski/corefx,JosephTremoulet/corefx,richlander/corefx,lggomez/corefx,mmitche/corefx,shimingsg/corefx,mmitche/corefx,fgreinacher/corefx,dotnet-bot/corefx,ptoonen/corefx,shimingsg/corefx,ptoonen/corefx,ptoonen/corefx,zhenlan/corefx,zhenlan/corefx,yizhang82/corefx,cydhaselton/corefx,dotnet-bot/corefx,dotnet-bot/corefx,lggomez/corefx,marksmeltzer/corefx,ravimeda/corefx,iamjasonp/corefx,alexperovich/corefx,richlander/corefx,stephenmichaelf/corefx,Petermarcu/corefx,nchikanov/corefx,gkhanna79/corefx,BrennanConroy/corefx,twsouthwick/corefx,lggomez/corefx,wtgodbe/corefx,marksmeltzer/corefx,cydhaselton/corefx,ericstj/corefx,axelheer/corefx,krytarowski/corefx,nbarbettini/corefx,marksmeltzer/corefx,nchikanov/corefx,Petermarcu/corefx,MaggieTsang/corefx,dotnet-bot/corefx,ericstj/corefx,Petermarcu/corefx,manu-silicon/corefx,dhoehna/corefx,ViktorHofer/corefx,lggomez/corefx,ericstj/corefx,richlander/corefx,dotnet-bot/corefx,Ermiar/corefx,weltkante/corefx,jlin177/corefx,rjxby/corefx,mazong1123/corefx,wtgodbe/corefx,YoupHulsebos/corefx,jhendrixMSFT/corefx,weltkante/corefx,billwert/corefx,rubo/corefx,twsouthwick/corefx,BrennanConroy/corefx,cydhaselton/corefx,DnlHarvey/corefx,shmao/corefx,ravimeda/corefx,wtgodbe/corefx,zhenlan/corefx,ViktorHofer/corefx,Petermarcu/corefx,ericstj/corefx,mazong1123/corefx,zhenlan/corefx,Jiayili1/corefx,BrennanConroy/corefx,jlin177/corefx,ptoonen/corefx
6ab1d7313c299e2c5f6685e8c21846d0a7fa4f34
NaturalDocs/NaturalDocs.bat
NaturalDocs/NaturalDocs.bat
@echo off set NaturalDocsParams= rem Shift and loop so we can get more than nine parameters. rem This is especially important if we have spaces in file names. :MORE if "%1"=="" goto NOMORE set NaturalDocsParams=%NaturalDocsParams% %1 shift goto MORE :NOMORE perl NaturalDocs %NaturalDocsParams% set NaturalDocsParams=
@perl %~dp0NaturalDocs %*
Make the Wndows batch callable from any directory
Make the Wndows batch callable from any directory The perl script NaturalDocs shuld be referred to with the same path as the calling batch, otherwise the script would have to be in the search path. The %~dp0 environment variable points to the directory which the script is being executed in. All batch arguments can bepassed to a nested batch by %*.
Batchfile
agpl-3.0
prantlf/NaturalDocs,prantlf/NaturalDocs,prantlf/NaturalDocs
336ec518208b2eaf2fe0ccd7edddfed4e872d810
buildbot/buildbot_pnacl.bat
buildbot/buildbot_pnacl.bat
:: Copyright (c) 2012 The Native Client Authors. All rights reserved. :: Use of this source code is governed by a BSD-style license that can be :: found in the LICENSE file. setlocal set "PATH=c:\cygwin\bin;%PATH%" bash -c "buildbot/buildbot_pnacl.sh %*" if %ERRORLEVEL% neq 0 exit /b %ERRORLEVEL% endlocal
:: Copyright (c) 2012 The Native Client Authors. All rights reserved. :: Use of this source code is governed by a BSD-style license that can be :: found in the LICENSE file. setlocal :: Load the hermetic cygwin environment (downloading/installing/updating :: it if necessary). call "%~dp0cygwin_env.bat" bash -c "buildbot/buildbot_pnacl.sh %*" if %ERRORLEVEL% neq 0 exit /b %ERRORLEVEL% endlocal
Build Pnacl in hermetic cygwin Use the same cygwin used for the GNU toolchain. This gets us a standard environment that is kept updated on the bots (see cygwin_env.bat).
Build Pnacl in hermetic cygwin Use the same cygwin used for the GNU toolchain. This gets us a standard environment that is kept updated on the bots (see cygwin_env.bat). [email protected],[email protected],[email protected] BUG= http://code.google.com/p/nativeclient/issues/detail?id=2918 Review URL: https://chromiumcodereview.appspot.com/10837191 git-svn-id: 721b910a23eff8a86f00c8fd261a7587cddf18f8@9429 fcba33aa-ac0c-11dd-b9e7-8d5594d729c2
Batchfile
bsd-3-clause
nacl-webkit/native_client,sbc100/native_client,sbc100/native_client,sbc100/native_client,nacl-webkit/native_client,sbc100/native_client,sbc100/native_client,sbc100/native_client,nacl-webkit/native_client,nacl-webkit/native_client,nacl-webkit/native_client
449f1b0515b8e475b9a3841575af33ed49639880
recipes/tcplotter/bld.bat
recipes/tcplotter/bld.bat
:: Build tcplotter command-line utilities using cmake :: Change working directory to archive directory cd "%PKG_NAME%" :: Create build directory cd "src" mkdir build if errorlevel 1 exit 1 cd build if errorlevel 1 exit 1 :: Build with cmake cmake -G "MinGW Makefiles" -DCMAKE_CXX_STANDARD=11 --prefix=%PREFIX% .. if errorlevel 1 exit 1 cmake --build . if errorlevel 1 exit 1 :: Install executables to bin directory cmake --install . --prefix=%PREFIX% if errorlevel 1 exit 1 :: Install tcplotter cd "%SRC_DIR%" $PYTHON -m pip install . -vv
:: Build tcplotter command-line utilities using cmake :: Change working directory to archive directory cd "%PKG_NAME%" :: Create build directory cd "src" mkdir build if errorlevel 1 exit 1 cd build if errorlevel 1 exit 1 :: Build with cmake cmake -G "MinGW Makefiles" -D CMAKE_CXX_STANDARD=11 -D CMAKE_INSTALL_PREFIX=%PREFIX% .. if errorlevel 1 exit 1 cmake --build . if errorlevel 1 exit 1 :: Install executables to bin directory cmake --build . --target install if errorlevel 1 exit 1 :: Install tcplotter cd "%SRC_DIR%" $PYTHON -m pip install . -vv
Adjust build for windows to change how prefix is defined
Adjust build for windows to change how prefix is defined
Batchfile
bsd-3-clause
jakirkham/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes
f586486c4e62185b0bdaf2734d2664f009250e65
contrib/client-side/diff3wrap.bat
contrib/client-side/diff3wrap.bat
@ECHO OFF REM Configure your favorite diff3/merge program here. SET DIFF3="C:\Program Files\Funky Stuff\My Merge Tool.exe" SET MINE=%9 SHIFT SET OLDER=%9 SHIFT SET YOURS=%9 REM Call the merge command (change the following line to make sense) %DIFF3% --older %OLDER% --mine %MINE% --yours %YOURS% REM After performing the merge, this script needs to print the contents REM of the merged file to stdout. Do that in whatever way you see fit.
@ECHO OFF REM Configure your favorite diff3/merge program here. SET DIFF3="C:\Program Files\Funky Stuff\My Merge Tool.exe" REM We only have access to nine parameters at a time. We use SHIFT to slide REM our nine-parameter window a little bit so we can get to what we need. SET MINE=%9 SHIFT SET OLDER=%9 SHIFT SET YOURS=%9 REM Call the merge command (change the following line to make sense) %DIFF3% --older %OLDER% --mine %MINE% --yours %YOURS% REM After performing the merge, this script needs to print the contents REM of the merged file to stdout. Do that in whatever way you see fit.
Add a helpful comment for folks unfamiliar with the SHIFT construct.
Add a helpful comment for folks unfamiliar with the SHIFT construct. * contrib/client-side/diff3wrap.bat
Batchfile
apache-2.0
jmckaskill/subversion,jmckaskill/subversion,jmckaskill/subversion,jmckaskill/subversion,jmckaskill/subversion,jmckaskill/subversion,jmckaskill/subversion,jmckaskill/subversion
c8696c2c43fb698f965b2aa0e2b47e311c4f5cc0
scripts/update_merge.bat
scripts/update_merge.bat
@ECHO OFF REM Set data directory with GTFS files as text in separate directories SET DATA_DIRECTORY="%~dp0..\data\gtfs" REM Set output directory for tests in GTFS zip format REM Don't chose a directory inside %DATA_DIRECTORY% SET GTFS_OUTPUT_DIRECTORY="%~dp0tests" REM Set output file for all tests combined in GTFS zip format SET ALL_TESTS_ZIP="%~dp0alltests.zip" REM Add 7-zip path to PATH SET SEVEN_ZIP_PATH="C:\Program Files\7-Zip" IF EXIST %SEVEN_ZIP_PATH% SET PATH=%PATH%;%SEVEN_ZIP_PATH% SET SEVEN_ZIP_PATH="C:\Program Files (x86)\7-Zip" IF EXIST %SEVEN_ZIP_PATH% SET PATH=%PATH%;%SEVEN_ZIP_PATH% REM Create tests in GTFS zip format MKDIR %GTFS_OUTPUT_DIRECTORY% DEL /Q %GTFS_OUTPUT_DIRECTORY%\*.* FOR /F "delims=" %%f in ('dir %DATA_DIRECTORY% /A:D /B /O:N') DO ( 7z a %GTFS_OUTPUT_DIRECTORY%\"%%f.zip" %DATA_DIRECTORY%\"%%f"\*.txt ) REM Combine tests java -jar %~dp0..\bin\onebusaway-gtfs-transformer-cli.jar --overwriteDuplicates %GTFS_OUTPUT_DIRECTORY%\*.zip %ALL_TESTS_ZIP%
@ECHO OFF REM Set data directory with GTFS files as text in separate directories SET DATA_DIRECTORY="%~dp0..\data\gtfs" REM Set output directory for tests in GTFS zip format REM Don't chose a directory inside %DATA_DIRECTORY% SET GTFS_OUTPUT_DIRECTORY="%~dp0tests" REM Set output file for all tests combined in GTFS zip format SET ALL_TESTS_ZIP="%~dp0alltests.zip" REM Add 7-zip path to PATH SET SEVEN_ZIP_PATH="C:\Program Files\7-Zip" IF EXIST %SEVEN_ZIP_PATH% SET PATH=%PATH%;%SEVEN_ZIP_PATH% SET SEVEN_ZIP_PATH="C:\Program Files (x86)\7-Zip" IF EXIST %SEVEN_ZIP_PATH% SET PATH=%PATH%;%SEVEN_ZIP_PATH% REM Create tests in GTFS zip format MKDIR %GTFS_OUTPUT_DIRECTORY% DEL /Q %GTFS_OUTPUT_DIRECTORY%\*.* FOR /F "delims=" %%f in ('dir %DATA_DIRECTORY% /A:D /B /O:N') DO ( 7z a %GTFS_OUTPUT_DIRECTORY%\"%%f.zip" %DATA_DIRECTORY%\"%%f"\*.txt ) REM Combine tests java -jar "%~dp0..\bin\onebusaway-gtfs-transformer-cli.jar" --overwriteDuplicates %GTFS_OUTPUT_DIRECTORY%\*.zip %ALL_TESTS_ZIP%
Fix for spaces in path of repository
Fix for spaces in path of repository
Batchfile
mit
plannerstack/testset,plannerstack/testset
cb9c4e21f696236e84d9228874a307083b5788ba
packer/windows/buildenv.bat
packer/windows/buildenv.bat
rem Licensed to the Apache Software Foundation (ASF) under one or more rem contributor license agreements. See the NOTICE file distributed with rem this work for additional information regarding copyright ownership. rem The ASF licenses this file to You under the Apache License, Version 2.0 rem (the "License"); you may not use this file except in compliance with rem the License. You may obtain a copy of the License at rem rem http://www.apache.org/licenses/LICENSE-2.0 rem rem Unless required by applicable law or agreed to in writing, software rem distributed under the License is distributed on an "AS IS" BASIS, rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. rem See the License for the specific language governing permissions and rem limitations under the License. @rem Fixup ENV issues with SSH set APPDATA=C:\Users\build\AppData\Roaming set LOCALAPPDATA=C:\Users\build\AppData\Local set TEMP=C:\Users\build\AppData\Local\Temp\3 set TMP=C:\Users\build\AppData\Local\Temp\3 if not exist %TEMP% mkdir %TEMP% @rem Setup VC call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %*
rem Licensed to the Apache Software Foundation (ASF) under one or more rem contributor license agreements. See the NOTICE file distributed with rem this work for additional information regarding copyright ownership. rem The ASF licenses this file to You under the Apache License, Version 2.0 rem (the "License"); you may not use this file except in compliance with rem the License. You may obtain a copy of the License at rem rem http://www.apache.org/licenses/LICENSE-2.0 rem rem Unless required by applicable law or agreed to in writing, software rem distributed under the License is distributed on an "AS IS" BASIS, rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. rem See the License for the specific language governing permissions and rem limitations under the License. @rem Fixup ENV issues with SSH set APPDATA=C:\Users\build\AppData\Roaming set LOCALAPPDATA=C:\Users\build\AppData\Local set TEMP=C:\Users\build\AppData\Local\Temp\3 set TMP=C:\Users\build\AppData\Local\Temp\3 if not exist %TEMP% mkdir %TEMP% @rem Setup VC call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %*
Update Windows build to use Visual Studio 2015 / VC14.
GEODE-2741: Update Windows build to use Visual Studio 2015 / VC14.
Batchfile
apache-2.0
mhansonp/geode-native,pivotal-jbarrett/geode-native,mmartell/geode-native,pivotal-jbarrett/geode-native,mmartell/geode-native,mhansonp/geode-native,pivotal-jbarrett/geode-native,pivotal-jbarrett/geode-native,mmartell/geode-native,mmartell/geode-native,pivotal-jbarrett/geode-native,mhansonp/geode-native,pivotal-jbarrett/geode-native,mhansonp/geode-native,mmartell/geode-native,mhansonp/geode-native,pivotal-jbarrett/geode-native
1bbd4caead30363414e6cad6c1e245f890d1c30f
build_bdists.bat
build_bdists.bat
call tools\build_win_bdist64-py26.bat call tools\build_win_bdist32-py26.bat call tools\build_win_bdist64-py27.bat call tools\build_win_bdist32-py27.bat call tools\build_win_bdist32-py32.bat call tools\build_win_bdist64-py32.bat
call tools\build_win_bdist64-py26.bat call tools\build_win_bdist32-py26.bat call tools\build_win_bdist64-py27.bat call tools\build_win_bdist32-py27.bat call tools\build_win_bdist32-py32.bat call tools\build_win_bdist64-py32.bat call python setup.py sdist --formats=zip,gztar
Create archives in windows build script
BLD: Create archives in windows build script
Batchfile
bsd-3-clause
alekz112/statsmodels,cbmoore/statsmodels,wzbozon/statsmodels,cbmoore/statsmodels,josef-pkt/statsmodels,hainm/statsmodels,hainm/statsmodels,DonBeo/statsmodels,bzero/statsmodels,bert9bert/statsmodels,YihaoLu/statsmodels,phobson/statsmodels,astocko/statsmodels,detrout/debian-statsmodels,wzbozon/statsmodels,nvoron23/statsmodels,rgommers/statsmodels,wzbozon/statsmodels,jstoxrocky/statsmodels,ChadFulton/statsmodels,rgommers/statsmodels,musically-ut/statsmodels,nvoron23/statsmodels,edhuckle/statsmodels,detrout/debian-statsmodels,Averroes/statsmodels,alekz112/statsmodels,cbmoore/statsmodels,hlin117/statsmodels,detrout/debian-statsmodels,josef-pkt/statsmodels,wkfwkf/statsmodels,bzero/statsmodels,jstoxrocky/statsmodels,phobson/statsmodels,statsmodels/statsmodels,kiyoto/statsmodels,astocko/statsmodels,ChadFulton/statsmodels,jstoxrocky/statsmodels,bavardage/statsmodels,ChadFulton/statsmodels,wdurhamh/statsmodels,edhuckle/statsmodels,gef756/statsmodels,statsmodels/statsmodels,wdurhamh/statsmodels,edhuckle/statsmodels,musically-ut/statsmodels,bavardage/statsmodels,bzero/statsmodels,josef-pkt/statsmodels,bert9bert/statsmodels,adammenges/statsmodels,DonBeo/statsmodels,bashtage/statsmodels,bzero/statsmodels,rgommers/statsmodels,bsipocz/statsmodels,YihaoLu/statsmodels,bavardage/statsmodels,nvoron23/statsmodels,YihaoLu/statsmodels,hlin117/statsmodels,cbmoore/statsmodels,jseabold/statsmodels,yl565/statsmodels,wkfwkf/statsmodels,detrout/debian-statsmodels,YihaoLu/statsmodels,nguyentu1602/statsmodels,yl565/statsmodels,yarikoptic/pystatsmodels,wkfwkf/statsmodels,josef-pkt/statsmodels,hainm/statsmodels,yarikoptic/pystatsmodels,DonBeo/statsmodels,wdurhamh/statsmodels,DonBeo/statsmodels,wzbozon/statsmodels,yarikoptic/pystatsmodels,waynenilsen/statsmodels,kiyoto/statsmodels,yl565/statsmodels,adammenges/statsmodels,jseabold/statsmodels,bashtage/statsmodels,saketkc/statsmodels,wwf5067/statsmodels,phobson/statsmodels,bashtage/statsmodels,cbmoore/statsmodels,alekz112/statsmodels,statsmodels/statsmodels,bashtage/statsmodels,huongttlan/statsmodels,ChadFulton/statsmodels,Averroes/statsmodels,ChadFulton/statsmodels,statsmodels/statsmodels,kiyoto/statsmodels,ChadFulton/statsmodels,bsipocz/statsmodels,musically-ut/statsmodels,huongttlan/statsmodels,waynenilsen/statsmodels,josef-pkt/statsmodels,waynenilsen/statsmodels,bsipocz/statsmodels,jseabold/statsmodels,saketkc/statsmodels,huongttlan/statsmodels,bsipocz/statsmodels,gef756/statsmodels,bashtage/statsmodels,saketkc/statsmodels,hlin117/statsmodels,hainm/statsmodels,adammenges/statsmodels,bert9bert/statsmodels,wwf5067/statsmodels,wkfwkf/statsmodels,bashtage/statsmodels,nguyentu1602/statsmodels,rgommers/statsmodels,wwf5067/statsmodels,saketkc/statsmodels,statsmodels/statsmodels,bert9bert/statsmodels,wwf5067/statsmodels,nvoron23/statsmodels,wdurhamh/statsmodels,gef756/statsmodels,nguyentu1602/statsmodels,edhuckle/statsmodels,wkfwkf/statsmodels,DonBeo/statsmodels,jstoxrocky/statsmodels,phobson/statsmodels,wzbozon/statsmodels,bavardage/statsmodels,saketkc/statsmodels,adammenges/statsmodels,huongttlan/statsmodels,nguyentu1602/statsmodels,yl565/statsmodels,yl565/statsmodels,jseabold/statsmodels,Averroes/statsmodels,hlin117/statsmodels,bavardage/statsmodels,gef756/statsmodels,edhuckle/statsmodels,phobson/statsmodels,musically-ut/statsmodels,jseabold/statsmodels,kiyoto/statsmodels,Averroes/statsmodels,waynenilsen/statsmodels,nvoron23/statsmodels,wdurhamh/statsmodels,YihaoLu/statsmodels,kiyoto/statsmodels,statsmodels/statsmodels,bert9bert/statsmodels,josef-pkt/statsmodels,astocko/statsmodels,bzero/statsmodels,rgommers/statsmodels,alekz112/statsmodels,gef756/statsmodels,astocko/statsmodels
411a91ff3218adc870cee4d962ed296fa6498b36
docu/build.bat
docu/build.bat
doxygen cd latex pdflatex -shell-escape refman.tex makeindex -s ../refman.ist refman.idx pdflatex -shell-escape refman.tex pdflatex -shell-escape refman.tex cd .. copy latex\refman.pdf .
doxygen cd latex pdflatex -interaction=nonstopmode -shell-escape refman.tex makeindex -s ../refman.ist refman.idx pdflatex -interaction=nonstopmode -shell-escape refman.tex pdflatex -interaction=nonstopmode -shell-escape refman.tex cd .. copy latex\refman.pdf .
Call pdflatex in non stop mode
Call pdflatex in non stop mode
Batchfile
bsd-3-clause
t-b/igor-unit-testing-framework,t-b/igor-unit-testing-framework
19ab9d894b9935f071d8e3979c8be1d7a4dc5983
system_user/system_user_database/action_functions/test/test_action_user_login.bat
system_user/system_user_database/action_functions/test/test_action_user_login.bat
"C:\Program Files\PostgreSQL\9.6\bin\psql.exe" -h localhost -U postgres -d system_user_demo_db -p 5432 -f ..\action_user_login.sql 1> test_action_user_login.log 2>&1 "C:\Program Files\PostgreSQL\9.6\bin\psql.exe" -h localhost -U postgres -d system_user_demo_db -p 5432 -f test_action_user_login.sql 1>> test_action_user_login.log 2>>&1
"C:\Program Files\PostgreSQL\9.6\bin\psql.exe" -h localhost -U postgres -d system_user_demo_db -p 5432 -f ..\action_user_login.sql 1> test_action_user_login.log 2>&1 "C:\Program Files\PostgreSQL\9.6\bin\psql.exe" -h localhost -U postgres -d system_user_demo_db -p 5432 -f test_action_user_login_master.sql 1>> test_action_user_login.log 2>>&1
Add variable for password to call
Add variable for password to call
Batchfile
apache-2.0
james-cantrill/funda_components,james-cantrill/funda_components
77daac7b037d16bd7cd0b113ab94ea8118258069
js.thirdparty.bat
js.thirdparty.bat
"C:\Program Files (x86)\Java\jre7\bin\java.exe" -jar compiler.jar ^ --js=translate.js ^ --js=jquery/jquery-1.11.2.js ^ --js=jquery/jquery-ui.1.11.2.min.js ^ --js=jquery/jquery.qtip.js ^ --js=jquery/jquery.blockUI.js ^ --js=jquery/jquery.color.js ^ --js=jquery/jquery.autocomplete.js ^ --js=jquery/jquery.tablesorter.js ^ --js=jquery/jquery.flot.js ^ --js=jquery/jquery.ui.position.js ^ --js=jquery/jquery.contextMenu.js ^ --js=jquery/jquery.hotkeys.js ^ --js=jquery/jsBezier-0.6-min.js ^ --js=jquery/jquery.jsPlumb-1.7.5.js ^ --js=jquery/jquery.placeholder.js ^ --js=handlebars-v2.0.0.js ^ --js=dropdown.js ^ --source_map_format=V3 ^ --create_source_map thirdparty.compiled.js.map ^ --js_output_file=thirdparty.compiled.js echo //# sourceMappingURL=thirdparty.compiled.js.map >> thirdparty.compiled.js @pause
"C:\Program Files (x86)\Java\jre7\bin\java.exe" -jar compiler.jar ^ --js=translate.js ^ --js=jquery/jquery-1.11.2.js ^ --js=jquery/jquery-ui.1.11.2.min.js ^ --js=jquery/jquery.qtip.js ^ --js=jquery/jquery.blockUI.js ^ --js=jquery/jquery.color.js ^ --js=jquery/jquery.autocomplete.js ^ --js=jquery/jquery.tablesorter.js ^ --js=jquery/jquery.flot.js ^ --js=jquery/jquery.ui.position.js ^ --js=jquery/jquery.contextMenu.js ^ --js=jquery/jquery.hotkeys.js ^ --js=jquery/jquery.jsPlumb-1.7.5.js ^ --js=jquery/jquery.placeholder.js ^ --js=handlebars-v2.0.0.js ^ --js=dropdown.js ^ --source_map_format=V3 ^ --create_source_map thirdparty.compiled.js.map ^ --js_output_file=thirdparty.compiled.js echo //# sourceMappingURL=thirdparty.compiled.js.map >> thirdparty.compiled.js @pause
Remove another jsBeizer reference as we weren't using it
Remove another jsBeizer reference as we weren't using it
Batchfile
mit
marekr/siggy,marekr/siggy,marekr/siggy,marekr/siggy
092e55bfdee7477866f77f927d0e995420b2cb04
kw.cmd
kw.cmd
@echo off setlocal pushd "%~dp0" for /f %%i in (kwindex.txt) do call :id %%i goto :EOF :id setlocal echo %1 for /f "usebackq tokens=*" %%i in (`hg parents %1 --template "%~nx1 {node|short} {date|isodate} {author}\n"`) do set x=%%i call replace %1 \$Id(:.+?)?\$ "$Id: %x% $" > %temp%\%~nx1 copy %temp%\%~nx1 %1 /y > nul goto :EOF
@echo off setlocal pushd "%~dp0" for /f %%i in (kwindex.txt) do call :id %%i goto :EOF :id setlocal echo %1 for /f "usebackq tokens=*" %%i in (`hg parents %1 --template "%~nx1 {node|short} {date|isodate} {author|user}\n"`) do set x=%%i call replace %1 \$Id(:.+?)?\$ "$Id: %x% $" > %temp%\%~nx1 copy %temp%\%~nx1 %1 /y > nul goto :EOF
Expand author in Id keyword with user portion only
Expand author in Id keyword with user portion only
Batchfile
apache-2.0
brumschlag/elmah.1x,Dim0N22/elmah.1x,MichaelAllenMiller/elmah.1x,tyagimanoj12/elmah.1x,bsagar27/elmah.1x,shabbirh/elmah.1x,praveen225627/elmah.1x,sevenno7/elmah.1x,mstodd/elmah.1x,kevinrademan/elmah.1x,plkumar/elmah.1x,koala59230/elmah.1x,devnixs/elmah.1x,nobitagamer/elmah.1x,isurufonseka/elmah.1x,plkumar/elmah.1x,devnixs/elmah.1x,feik/elmah.1x,DharmeshPatel33/elmah.1x,codeyu/elmah.1x,brumschlag/elmah.1x,abhishekbhalani/elmah.1x,glisibor/elmah.1x,iYazee6/elmah.1x,Murtaza-libs/elmah.1x,isurufonseka/elmah.1x,MichaelAllenMiller/elmah.1x,sevenno7/elmah.1x,abhishekbhalani/elmah.1x,bsagar27/elmah.1x,Dim0N22/elmah.1x,Leon-O/elmah.1x,maoyuan121/elmah.1x,kirill-gerasimenko/elmah.1x,nobitagamer/elmah.1x,ashou1986/elmah.1x,glisibor/elmah.1x,Leon-O/elmah.1x,devnixs/elmah.1x,weiminye/elmah.1x,igolets/elmah.1x,jonot/elmah.1x,kyleleeli/elmah.1x,babgvant/elmah.1x,DharmeshPatel33/elmah.1x,Thomas-Clark/elmah.1x,jonot/elmah.1x,weiminye/elmah.1x,ashou1986/elmah.1x,babgvant/elmah.1x,rahulchrty/elmah.1x,jzinedine/elmah.1x,kyleleeli/elmah.1x,kyleleeli/elmah.1x,tectronics/elmah.1x,Letractively/elmah.1x,ywuwgij/elmah.1x,kevinrademan/elmah.1x,Dim0N22/elmah.1x,tyagimanoj12/elmah.1x,praveen225627/elmah.1x,Jeff-Lewis/elmah.1x,mstodd/elmah.1x,martinjt/elmah.1x,Letractively/elmah.1x,igolets/elmah.1x,koala59230/elmah.1x,iYazee6/elmah.1x,shabbirh/elmah.1x,feik/elmah.1x,tectronics/elmah.1x,plkumar/elmah.1x,Jeff-Lewis/elmah.1x,weiminye/elmah.1x,Murtaza-libs/elmah.1x,kevinrademan/elmah.1x,martinjt/elmah.1x,sheryever/elmah.1x,sheryever/elmah.1x,jzinedine/elmah.1x,codeyu/elmah.1x,kirill-gerasimenko/elmah.1x,ojosdegris/elmah.1x,ojosdegris/elmah.1x,rahulchrty/elmah.1x,ywuwgij/elmah.1x,Thomas-Clark/elmah.1x,maoyuan121/elmah.1x,maoyuan121/elmah.1x
aea6d03323704db98fdd365226d8b4e567270868
samples/appserver-sso-samples/sso-quickstart/src/main/resources/sso-quickstart/sso-quickstart.bat
samples/appserver-sso-samples/sso-quickstart/src/main/resources/sso-quickstart/sso-quickstart.bat
@echo off REM --------------------------------------------------------------------------- REM Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. REM REM Licensed under the Apache License, Version 2.0 (the "License"); REM you may not use this file except in compliance with the License. REM You may obtain a copy of the License at REM REM http://www.apache.org/licenses/LICENSE-2.0 REM REM Unless required by applicable law or agreed to in writing, software REM distributed under the License is distributed on an "AS IS" BASIS, REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. REM See the License for the specific language governing permissions and REM limitations under the License. rem --------------------------------------------------------------------------- java -cp "../../bin/*;*" %* org.wso2.appserver.samples.sso.Quickstart
@echo off REM --------------------------------------------------------------------------- REM Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. REM REM Licensed under the Apache License, Version 2.0 (the "License"); REM you may not use this file except in compliance with the License. REM You may obtain a copy of the License at REM REM http://www.apache.org/licenses/LICENSE-2.0 REM REM Unless required by applicable law or agreed to in writing, software REM distributed under the License is distributed on an "AS IS" BASIS, REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. REM See the License for the specific language governing permissions and REM limitations under the License. rem --------------------------------------------------------------------------- rem ----- if JAVA_HOME is not set we're not happy ------------------------------ :checkJava if "%JAVA_HOME%" == "" goto noJavaHome if not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome goto checkJdk18 :noJavaHome echo "You must set the JAVA_HOME variable before running the Quickstart." goto end :checkJdk18 "%JAVA_HOME%\bin\java" -version 2>&1 | findstr /r "1.8" >NUL IF ERRORLEVEL 1 goto unknownJdk goto runQuickstart :unknownJdk echo [ERROR] You need to have JDK 1.8 or above to run this Quickstart goto end :runQuickstart "%JAVA_HOME%\bin\java" -cp "../../bin/*;../../lib/*;*" %* org.wso2.appserver.samples.httpanalytics.Quickstart goto end :end
Fix http-analytics quickstart script for windows
Fix http-analytics quickstart script for windows
Batchfile
apache-2.0
callkalpa/product-as,wso2/product-as,ChanakaCooray/product-as
a5c372bb3b4a26eee0788750b05da9629fe53be6
ci/install.bat
ci/install.bat
curl -sSf https://static.rust-lang.org/dist/rust-1.10.0-i686-pc-windows-msvc.exe -o rust.exe rust.exe /VERYSILENT /NORESTART /DIR="C:\Rust" set PATH=%PATH%;C:\Rust\bin curl -sSf http://releases.llvm.org/%LLVM_VERSION%/LLVM-%LLVM_VERSION%-win32.exe -o LLVM.exe 7z x LLVM.exe -oC:\LLVM set PATH=%PATH%;C:\LLVM\bin set LIBCLANG_PATH=C:\LLVM\bin
curl -sSf https://static.rust-lang.org/dist/rust-1.24.0-i686-pc-windows-msvc.exe -o rust.exe rust.exe /VERYSILENT /NORESTART /DIR="C:\Rust" set PATH=%PATH%;C:\Rust\bin curl -sSf http://releases.llvm.org/%LLVM_VERSION%/LLVM-%LLVM_VERSION%-win32.exe -o LLVM.exe 7z x LLVM.exe -oC:\LLVM set PATH=%PATH%;C:\LLVM\bin set LIBCLANG_PATH=C:\LLVM\bin
Update Rust version used by Appveyor
Update Rust version used by Appveyor
Batchfile
apache-2.0
KyleMayes/clang-rs
d41aa39f4271563d320dae651d1ef3303b318e2e
test-setup.cmd
test-setup.cmd
@ECHO OFF SET BASEDIR=%~dp0 PUSHD %BASEDIR% IF NOT EXIST pyenv\NUL GOTO NOENVDIR ECHO removing existing environment RMDIR /S /Q pyenv :NOENVDIR virtualenv pyenv CALL pyenv\Scripts\activate python -m pip install -r pyenv.pkgs CALL pyenv\Scripts\deactivate POPD
@ECHO OFF SET BASEDIR=%~dp0 PUSHD %BASEDIR% IF NOT EXIST pyenv\NUL GOTO NOENVDIR ECHO removing existing environment RMDIR /S /Q pyenv :NOENVDIR virtualenv pyenv CALL pyenv\Scripts\activate python -m pip install -r pyenv.pkgs --no-cache-dir CALL pyenv\Scripts\deactivate POPD
Disable pip cache dir on Windows
Disable pip cache dir on Windows
Batchfile
apache-2.0
SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples
bc534fffc64e037fb99d43acf4025d8df42904f3
Applications/Specware/bin/windows/Specware4.cmd
Applications/Specware/bin/windows/Specware4.cmd
set SPECWARE4=\Progra~1\Specware4 rem SWPATH needs /s rather than \s so URI parsing works set SWPATH=/Progra~1/Specware4:/ set XEMACS=C:\Progra~1\XEmacs\XEmacs-21.4.6 rem Set allegro to the version you have set ALLEGRO=C:\Progra~1\acl62 rem set ALLEGRO=C:\Progra~1\acl61 set SPECWARE_BIN=$SPECWARE4\Applications\Specware\bin\windows set LISP_EXECUTABLE=%ALLEGRO%\alisp.exe set LISP_HEAP_IMAGE=%SPECWARE_BIN%\Specware4.dxl set LISP_DIRECTORY=%Specware4%/ cd "%Specware4%" %XEMACS%\i586-pc-win32\xemacs.exe -debug-init -l "%ALLEGRO%/eli/fi-site-init" -l "%SPECWARE4%/Library/IO/Emacs/load" -f "run-specware4" &
set SPECWARE4=\Progra~1\Specware4 rem SWPATH needs /s rather than \s so URI parsing works set SWPATH=/Progra~1/Specware4:/ set XEMACS=C:\Progra~1\XEmacs\XEmacs-21.4.6 rem Set allegro to the version you have rem set ALLEGRO=C:\Progra~1\acl62 set ALLEGRO=C:\Progra~1\acl61 set SPECWARE_BIN=$SPECWARE4\Applications\Specware\bin\windows set LISP_EXECUTABLE=%ALLEGRO%\alisp.exe set LISP_HEAP_IMAGE=%SPECWARE_BIN%\Specware4.dxl set LISP_DIRECTORY=%Specware4%/ cd "%Specware4%" %XEMACS%\i586-pc-win32\xemacs.exe -debug-init -l "%ALLEGRO%/xeli/fi-site-init" -l "%SPECWARE4%/Library/IO/Emacs/load" -f "run-specware4" &
Use xeli instead of eli
Use xeli instead of eli git-svn-id: 9ecf60ce9baff443e30a0472d3fd222fcb8117cf@242 7b97033b-253e-4a5c-9b07-e25f9089a9fd
Batchfile
bsd-2-clause
KestrelInstitute/Specware,KestrelInstitute/Specware,KestrelInstitute/Specware,KestrelInstitute/Specware,KestrelInstitute/Specware
5363c891e37aa0dee6b82cb867252d8391b35c04
app.bat
app.bat
java -Djava.library.path=lib -cp lib/NeticaJ.jar;target/vetaraus-1.0-SNAPSHOT-jar-with-dependencies.jar de.dhbw.vetaraus.Application --learn P003_learn.csv P003_classify.csv
set PATH=%PATH%;lib java -Djava.library.path=lib -cp lib/NeticaJ.jar;target/vetaraus-1.0-SNAPSHOT-jar-with-dependencies.jar de.dhbw.vetaraus.Application --learn P003_learn.csv P003_classify.csv
Make Netica.dll available to Windows
Make Netica.dll available to Windows
Batchfile
mit
jhendess/vetaraus,jhendess/vetaraus
d8ffcba544ee5fd125f5cf6331e6a905cbe0265d
run_test.bat
run_test.bat
.\Debug\res2h.exe .\test .\results -s -v -h .\results\resources.h -u .\results\resources.cpp .\Debug\res2h.exe .\test .\results\data.bin -b -s -v
.\Release\res2h.exe .\test .\results -s -v -h .\results\resources.h -u .\results\resources.cpp .\Release\res2h.exe .\test .\results\data.bin -b -s -v .\Release\res2hdump.exe .\results\data.bin .\results -f -v
Update tests to dump binary archive
Update tests to dump binary archive
Batchfile
bsd-2-clause
HorstBaerbel/res2h,HorstBaerbel/res2h,HorstBaerbel/res2h
f3ecf49caffe330369850b46011313ed1cb5ebc1
tools/createNugetpackage.bat
tools/createNugetpackage.bat
msbuild\msbuild ..\src\Torken.CQRS.Core\Torken.CQRS.Core.csproj /p:Configuration=Release nuget\nuget pack ..\src\Torken.CQRS.Core\Torken.CQRS.Core.csproj -IncludeReferencedProjects -Prop Configuration=Release >>log.txt
msbuild\msbuild ..\src\Torken.CQRS.Core\Torken.CQRS.Core.csproj /p:Configuration=Release nuget\nuget pack ..\src\Torken.CQRS.Core\Torken.CQRS.Core.csproj -IncludeReferencedProjects -Prop Configuration=Release
Add script to create nuget packages
Add script to create nuget packages
Batchfile
mit
kennytordeur/CQRS
08af6349eca8493e2936fc65c20bca13b6a8a38a
Setup/Portable/NuGet/Push.cmd
Setup/Portable/NuGet/Push.cmd
@echo off echo. echo Portable Accord.NET Framework NuGet package publisher echo ========================================================= echo. echo This Windows batch file uses NuGet to automatically echo push the Portable Accord.NET Framework packages to the gallery. echo. timeout /T 5 :: Directory settings set output=..\bin\nupkg set current=%~dp0 echo. echo Current directory: %current% echo Output directory: %output% echo. forfiles /p %output% /m *.nupkg /c "cmd /c %current%\NuGet.exe push @file" pause
@echo off echo. echo Portable Accord.NET Framework NuGet package publisher echo ========================================================= echo. echo This Windows batch file uses NuGet to automatically echo push the Portable Accord.NET Framework packages to the gallery. echo. timeout /T 5 :: Directory settings set output=..\bin\nupkg set current=..\..\NuGet echo. echo Current directory: %current% echo Output directory: %output% echo. forfiles /p %output% /m *.nupkg /c "cmd /c %current%\NuGet.exe push @file" pause
Use no-space path to current directory
Use no-space path to current directory
Batchfile
lgpl-2.1
cureos/accord,cureos/accord,cureos/accord,cureos/accord,cureos/accord
f61e0282c96316fe6f480969ade8b789f4f177fb
scripts/build_gitlab/win.bat
scripts/build_gitlab/win.bat
@echo off rem ======================================================================== rem rem Copyright 2015-2017 Intel Corporation rem rem rem rem Licensed under the Apache License, Version 2.0 (the "License"); rem rem you may not use this file except in compliance with the License. rem rem You may obtain a copy of the License at rem rem rem rem http://www.apache.org/licenses/LICENSE-2.0 rem rem rem rem Unless required by applicable law or agreed to in writing, software rem rem distributed under the License is distributed on an "AS IS" BASIS, rem rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. rem rem See the License for the specific language governing permissions and rem rem limitations under the License. rem rem ======================================================================== rem setlocal md build cd build cmake -L ^ -G "%~1" ^ -T "%~2" ^ -D OSPRAY_BUILD_ISA=ALL ^ -D OSPRAY_MODULE_MPI=ON ^ -D OSPRAY_MODULE_BILINEAR_PATCH=ON ^ -D OSPRAY_ENABLE_TESTING=ON ^ -D USE_IMAGE_MAGICK=OFF ^ .. (cmake --build . --config Release --target ALL_BUILD -- /m /nologo) -and (ctest . -C Release) :abort endlocal :end
@echo off rem ======================================================================== rem rem Copyright 2015-2017 Intel Corporation rem rem rem rem Licensed under the Apache License, Version 2.0 (the "License"); rem rem you may not use this file except in compliance with the License. rem rem You may obtain a copy of the License at rem rem rem rem http://www.apache.org/licenses/LICENSE-2.0 rem rem rem rem Unless required by applicable law or agreed to in writing, software rem rem distributed under the License is distributed on an "AS IS" BASIS, rem rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. rem rem See the License for the specific language governing permissions and rem rem limitations under the License. rem rem ======================================================================== rem setlocal md build cd build cmake -L ^ -G "%~1" ^ -T "%~2" ^ -D OSPRAY_BUILD_ISA=ALL ^ -D OSPRAY_MODULE_MPI=ON ^ -D OSPRAY_MODULE_BILINEAR_PATCH=ON ^ -D OSPRAY_ENABLE_TESTING=ON ^ -D USE_IMAGE_MAGICK=OFF ^ .. (cmake --build . --config Release --target ALL_BUILD -- /m /nologo) ^ -and ^ (ctest . -C Release) :abort endlocal :end
Revert "fix syntax in Win ci build script"
Revert "fix syntax in Win ci build script" This reverts commit f0eb26d197ef3f0dd750caefc7d25940102f8a18.
Batchfile
apache-2.0
wilsonCernWq/ospray,MengjiaoH/ospray,ospray/OSPRay,wilsonCernWq/ospray,ospray/OSPRay,MengjiaoH/ospray,MengjiaoH/ospray,ospray/OSPRay,wilsonCernWq/ospray,ospray/OSPRay,MengjiaoH/ospray,MengjiaoH/ospray
5553df17a291bd644ab796caf510616246c343ee
resources/skeleton/aspnet/build.cmd
resources/skeleton/aspnet/build.cmd
setlocal set BUILDSTAGE=build-stage set NUGETPATH=%BUILDSTAGE%\.nuget set NUGET=%NUGETPATH%\nuget.exe set PACKAGESPATH=%NUGETPATH%\packages :Build_EnvCheck call e5r 1>nul if "%ERRORLEVEL%"=="0" goto Build_NugetDownload echo. echo E5R Environment not installed! goto Build_End :Build_NugetDownload if exist %NUGET% goto Build_Before echo Downloading NuGet... echo TODO: Move to E5R ENV BOOT --tech aspnet if not exist "%NUGETPATH%" md "%NUGETPATH%" @powershell -NoProfile -ExecutionPolicy unrestricted -Command ^ "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '%NUGET%'" :Build_NugetCheck echo TODO: Move to Build_EnvCheck if exist %NUGET% goto Build_Before echo. echo NUGET not installed! goto Build_End :Build_Before call e5r env boot call e5r env install --version 1.0.0-beta3 -runtime CLR -x86 call e5r env use --version 1.0.0-beta3 -runtime CLR -x86 echo TODO: Delete packages.config and use install Sake here call "%NUGET%" install -OutputDirectory %PACKAGESPATH% -ExcludeVersion .\packages.config :Build echo Building... call "%PACKAGESPATH%\Sake\tools\sake.exe" -I "build" -f makefile.shade %* :Build_End
setlocal set BUILDSTAGE=build-stage set NUGETPATH=%BUILDSTAGE%\.nuget set NUGET=%NUGETPATH%\nuget.exe set PACKAGESPATH=%NUGETPATH%\packages :Build_EnvCheck call e5r 1>nul if "%ERRORLEVEL%"=="0" goto Build_NugetDownload echo. echo E5R Environment not installed! goto Build_End :Build_NugetDownload if exist %NUGET% goto Build_Before echo Downloading NuGet... echo TODO: Move to E5R ENV BOOT --tech aspnet if not exist "%NUGETPATH%" md "%NUGETPATH%" @powershell -NoProfile -ExecutionPolicy unrestricted -Command ^ "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '%NUGET%'" :Build_NugetCheck echo TODO: Move to Build_EnvCheck if exist %NUGET% goto Build_Before echo. echo NUGET not installed! goto Build_End :Build_Before call e5r env boot call e5r env install call e5r env use echo TODO: Delete packages.config and use install Sake here call "%NUGET%" install -OutputDirectory %PACKAGESPATH% -ExcludeVersion .\packages.config :Build echo Building... call "%PACKAGESPATH%\Sake\tools\sake.exe" -I "build" -f makefile.shade %* :Build_End
Use version of file and defaults runtime and arch
Use version of file and defaults runtime and arch
Batchfile
mit
e5r/env,e5r/env
f0cde72d54c61c3fe522649b428690fb026a5f6e
bin/hubot.cmd
bin/hubot.cmd
@echo off rem installer bug. http://stackoverflow.com/a/25095327 mkdir "%APPDATA%\npm" > NUL 2>&1 set PATH=node_modules\.bin;node_modules\lisb-hubot\node_modules\.bin;%PATH% call npm install for /f "delims=\" %%i in ("%CD%") do set UID=%%i if "%REDIS_URL%" == "" ( set REDIS_URL=redis://localhost:6379/%UID% ) if "%1" == "start" ( forever start ^ --uid "%UID%" ^ --minUptime 10000 --spinSleepTime 600000 ^ -o hubot.log -a ^ -w --watchDirectory scripts ^ -c coffee node_modules\.bin\hubot.cmd -a direct %* ) else if "%1" == "stop" ( forever stop "%UID%" ) else if "%1" == "restart" ( forever restart "%UID%" ) else if "%1" == "status" ( forever list | find "] %UID% " ) else if "%1" == "logs" ( cat hubot.log | more ) else ( node_modules\.bin\hubot.cmd -a direct %* )
@echo off rem installer bug. http://stackoverflow.com/a/25095327 mkdir "%APPDATA%\npm" > NUL 2>&1 set PATH=node_modules\.bin;node_modules\lisb-hubot\node_modules\.bin;%PATH% call npm install for /f "delims=\" %%i in ("%CD%") do set UID=%%i for /f "tokens=1,2 delims==" %%i in (.env) do set %%i=%%j if "%REDIS_URL%" == "" ( set REDIS_URL=redis://localhost:6379/%UID% ) if "%1" == "start" ( forever start ^ --uid "%UID%" ^ --minUptime 10000 --spinSleepTime 600000 ^ -o hubot.log -a ^ -w --watchDirectory scripts ^ -c coffee node_modules\.bin\hubot.cmd -a direct %* ) else if "%1" == "stop" ( forever stop "%UID%" ) else if "%1" == "restart" ( forever restart "%UID%" ) else if "%1" == "status" ( forever list | find "] %UID% " ) else if "%1" == "logs" ( cat hubot.log | more ) else ( node_modules\.bin\hubot.cmd -a direct %* )
Load .env file on windows.
Load .env file on windows.
Batchfile
mit
lisb/daab-starter,lisb/daab-starter,lisb/daab-starter
07d5c20fb8c48e4ce9933449b3786d9a571a508c
webkit/tools/layout_tests/run_webkit_tests.bat
webkit/tools/layout_tests/run_webkit_tests.bat
@..\..\..\third_party\python_24\python.exe run_webkit_tests.py %*
@%~dp0\..\..\..\third_party\python_24\python.exe %~dp0\run_webkit_tests.py %*
Make run_webkit_test.bat workable even if we execute it on a directory other than webkit\tools\layout_tests\.
Make run_webkit_test.bat workable even if we execute it on a directory other than webkit\tools\layout_tests\. %~dp0 means Drive name + Path name of the 0th argument (the bat file). Original patch by [email protected]. See http://codereview.chromium.org/113389 r=ojan TEST=None BUG=None git-svn-id: dd90618784b6a4b323ea0c23a071cb1c9e6f2ac7@16838 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
Batchfile
bsd-3-clause
wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser