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
62c9c2f4b3a90453953f0b206bcb2440a2264565
bin/stree.cmd
bin/stree.cmd
@echo off setlocal enabledelayedexpansion set sourcetreepath=SourceTree\SourceTree.exe if exist "%programfiles%\Atlassian\%sourcetreepath%" ( set sourcetreepath=%programfiles%\Atlassian\%sourcetreepath% ) else if exist "%programfiles(x86)%\Atlassian\%sourcetreepath%" ( set "sourcetreepath=%programfiles(x86)%\Atlassian\%sourcetreepath%" ) else if exist "%localappdata%\%sourcetreepath%" ( set sourcetreepath=%localappdata%\%sourcetreepath% ) else ( echo [Error]: Could not find SourceTree.exe - is it installed? 1>&2 goto :eof ) set directory=%~f1 if "%directory%" == "" set directory=%CD% echo %directory% if exist "%directory%\NUL" ( set directory=%directory% ) else ( set directory=%~dp1 ) pushd %directory% for /f "delims=" %%i in ('git rev-parse --show-toplevel') do set directory=%%i git rev-parse --show-toplevel 1> nul 2> nul if %errorlevel% EQU 0 ( start "" "%sourcetreepath%" -f "%directory:/=\%" log ) popd endlocal
@echo off setlocal enabledelayedexpansion set sourcetreepath=SourceTree\SourceTree.exe if exist "%programfiles%\Atlassian\%sourcetreepath%" ( set sourcetreepath=%programfiles%\Atlassian\%sourcetreepath% ) else if exist "%programfiles(x86)%\Atlassian\%sourcetreepath%" ( set "sourcetreepath=%programfiles(x86)%\Atlassian\%sourcetreepath%" ) else if exist "%localappdata%\%sourcetreepath%" ( set sourcetreepath=%localappdata%\%sourcetreepath% ) else ( echo [Error]: Could not find SourceTree.exe - is it installed? 1>&2 goto :eof ) set directory=%~f1 if "%directory%" == "" set directory=%CD% if exist "%directory%\" ( set directory=%directory% ) else ( set directory=%~dp1 ) pushd "%directory%" for /f "delims=" %%i in ('git rev-parse --show-toplevel') do set directory=%%i git rev-parse --show-toplevel 1> nul 2> nul if %errorlevel% EQU 0 ( start "" "%sourcetreepath%" -f "%directory:/=\%" ) popd endlocal
Remove needless echo; correct directory validation when space present in path
Remove needless echo; correct directory validation when space present in path
Batchfile
mit
ArloL/dotfiles,ArloL/dotfiles
65a1049a4a4aab6eae33c4414a6b5d34bf20ecca
src/RNGLR.EBNF.DFAParser.SimpleTest/gen.cmd
src/RNGLR.EBNF.DFAParser.SimpleTest/gen.cmd
del log.txt for %%i in (CalcEBNF, ComplexRightNull, EpsilonCycle, ManyAndOne, ManyAndOpt, RightNull, SimpleEpsilon, SimpleOpt, SimpleRightNull, SimpleSome, StackingConflict, TwoEpsilonsMiddle) do ( echo . >> log.txt echo %%i >> log.txt ..\..\Bin\Release\v40\YC.YaccConstructor.exe -i %%i.yrd -c ExpandMeta ^ -g "RNGLR.EBNF.DFAGenerator -pos int -token int -module RNGLR.EBNF.DFAParser%%i -translate true -table LR -o %%i.yrd.fs" >> log.txt )
del log.txt for %%i in (CalcEBNF, Choice, ComplexRightNull, EpsilonCycle, ManyAndOne, ManyAndOpt, RightNull, SimpleEpsilon, SimpleOpt, SimpleRightNull, SimpleSome, StackingConflict, TwoEpsilonsMiddle) do ( echo . >> log.txt echo %%i >> log.txt ..\..\Bin\Release\v40\YC.YaccConstructor.exe -i %%i.yrd -c ExpandMeta ^ -g "RNGLR.EBNF.DFAGenerator -pos int -token int -module RNGLR.EBNF.DFAParser%%i -translate true -table LR -o %%i.yrd.fs" >> log.txt )
Add one more simple test
Add one more simple test
Batchfile
apache-2.0
YaccConstructor/YaccConstructor,YaccConstructor/YaccConstructor,YaccConstructor/YaccConstructor
a5fe8b9a35ed5a367a274282c3f48ce750f47fdb
src/msvcbuild.bat
src/msvcbuild.bat
@rem Open "Visual Studio .NET Command Prompt" to run this script @setlocal @set LUA=../../luajit-2.0 @set LSCOMPILE=cl /nologo /c /LD /MD /O2 /W3 /D_CRT_SECURE_NO_DEPRECATE /I%LUA%/src @set LSLINK=link /nologo %LSCOMPILE% /DLUA_BUILD_AS_DLL /DWIN32_VISTA_ luasys.c sock/sys_sock.c isa/isapi/isapi_dll.c @if errorlevel 1 goto :END %LSLINK% /DLL /OUT:sys.dll /DEF:isa/isapi/isapi_dll.def *.obj %LUA%/src/lua*.lib kernel32.lib user32.lib winmm.lib shell32.lib advapi32.lib ws2_32.lib @if errorlevel 1 goto :END @del *.obj *.manifest *.lib *.exp :END
@rem Open "Visual Studio .NET Command Prompt" to run this script @setlocal @set LUA=../../luajit-2.0 @set LSCOMPILE=cl /nologo /c /LD /MD /O2 /W3 /D_CRT_SECURE_NO_DEPRECATE /I%LUA%/src @set LSLINK=link /nologo @rem Check Windows Version is Vista+ @ver | findstr /i "Version 6\." > NUL @IF %ERRORLEVEL% NEQ 0 goto END_VERSION @set WIN32_VERSION=WIN32_VISTA @goto END_VERSION @set WIN32_VERSION=WIN32_COMMON :END_VERSION %LSCOMPILE% /DLUA_BUILD_AS_DLL /D%WIN32_VERSION% luasys.c sock/sys_sock.c isa/isapi/isapi_dll.c @if errorlevel 1 goto :END %LSLINK% /DLL /OUT:sys.dll /DEF:isa/isapi/isapi_dll.def *.obj %LUA%/src/lua*.lib kernel32.lib user32.lib winmm.lib shell32.lib advapi32.lib ws2_32.lib @if errorlevel 1 goto :END @del *.obj *.manifest *.lib *.exp :END
Check Windows version is Vista+ on build.
Win32: Check Windows version is Vista+ on build.
Batchfile
mit
RussellHaley/luasys,RussellHaley/luasys
0e634b218e60b486cc1d368bc1554320a3bc2f35
OpenCover.bat
OpenCover.bat
set CONFIGURATION=%1 set OUTPUT=%2 set OPENCOVER=".\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe" set TARGET="%VSINSTALLDIR%\Common7\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" set TARGET_ARGS=".\ThScoreFileConverterTests\bin\%CONFIGURATION%\ThScoreFileConverterTests.dll" set FILTER="+[*]* -[ThScoreFileConverterTests]*" %OPENCOVER% ^ -register:user ^ -target:%TARGET% ^ -targetargs:%TARGET_ARGS% ^ -filter:%FILTER% ^ -output:%OUTPUT%
set CONFIGURATION=%1 set OUTPUT=%2 set OPENCOVER=.\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe set TARGET=%VSINSTALLDIR%\Common7\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe set TARGET_ARGS=.\ThScoreFileConverterTests\bin\%CONFIGURATION%\ThScoreFileConverterTests.dll set FILTER=+[*]* -[ThScoreFileConverterTests]* if /i "%APPVEYOR%" == "true" ( set TARGET_ARGS=/logger:Appveyor %TARGET_ARGS% ) %OPENCOVER% ^ -register:user ^ -target:"%TARGET%" ^ -targetargs:"%TARGET_ARGS%" ^ -filter:"%FILTER%" ^ -output:"%OUTPUT%"
Fix to log the test results by AppVeyor
Fix to log the test results by AppVeyor
Batchfile
bsd-2-clause
y-iihoshi/ThScoreFileConverter,y-iihoshi/ThScoreFileConverter
62cd7a9fb724a59a01404c87547bfa8171cd275d
build_and_copy_to_bucket.bat
build_and_copy_to_bucket.bat
SET PATH=C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin;%PATH%; CALL "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\VsDevCmd.bat" git pull --recurse-submodules git submodule update msbuild /p:Configuration=Normal CALL gsutil cp Normal/engine/engine.exe gs://grit-engine/ CALL gsutil cp Normal/launcher/launcher.exe gs://grit-engine/ CALL gsutil cp Normal/extract/extract.exe gs://grit-engine/ CALL gsutil cp Normal/GritXMLConverter/GritXMLConverter.exe gs://grit-engine/
SET PATH=C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin;%PATH%; CALL "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\VsDevCmd.bat" git pull --recurse-submodules git submodule update msbuild /p:Configuration=Normal CALL gsutil cp Normal/engine/engine.exe gs://grit-engine/ CALL gsutil cp Normal/launcher/launcher.exe gs://grit-engine/ CALL gsutil cp Normal/extract/extract.exe gs://grit-engine/ CALL gsutil cp Normal/GritXMLConverter/GritXMLConverter.exe gs://grit-engine/ exit
Make batch file exit at the end
Make batch file exit at the end
Batchfile
mit
sparkprime/grit-engine,grit-engine/grit-engine,sparkprime/grit-engine,grit-engine/grit-engine,grit-engine/grit-engine,sparkprime/grit-engine,grit-engine/grit-engine,sparkprime/grit-engine
3b38f801cf83b3eb6397fe78708ce456afa7ae28
cmake/scripts/msvc_build.bat
cmake/scripts/msvc_build.bat
@call "C:\Program Files\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat" SET PATH=%PROJECT_PATH%\3rdparty\bin;%MYSQL_CONNECTOR_PATH%\lib;%MYSQL_PATH%\bin;%PYTHON_PATH%\Scripts;C:\OpenSSL-v111-Win64\bin;C:\Libraries\boost_1_67_0;%PATH% cp "%MYSQL_CONNECTOR_PATH%\lib\libmysql.dll" "%PROJECT_PATH%\build\bin\" cmake -GNinja -DCMAKE_BUILD_TYPE=%CONFIGURATION% .. cmake --build . --config %CONFIGURATION%
@call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat" SET PATH=%PROJECT_PATH%\3rdparty\bin;%MYSQL_CONNECTOR_PATH%\lib;%MYSQL_PATH%\bin;%PYTHON_PATH%\Scripts;C:\OpenSSL-v111-Win64\bin;C:\Libraries\boost_1_67_0;%PATH% cp "%MYSQL_CONNECTOR_PATH%\lib\libmysql.dll" "%PROJECT_PATH%\build\bin\" cmake -GNinja -DCMAKE_BUILD_TYPE=%CONFIGURATION% .. cmake --build . --config %CONFIGURATION%
Fix VS path issue on appveyor
Fix VS path issue on appveyor
Batchfile
apache-2.0
RavenX8/osIROSE-new,dev-osrose/osIROSE-new,RavenX8/osIROSE-new,dev-osrose/osIROSE-new,RavenX8/osIROSE-new,dev-osrose/osIROSE-new
af2e049816f9139e6f23af6a52931aa0f755da6f
src/makeRelease.bat
src/makeRelease.bat
set MAKING_PYPARSING_RELEASE=1 copy ..\sourceforge\svn\trunk\src\CHANGES . copy ..\sourceforge\svn\trunk\src\setup.py . copy ..\sourceforge\svn\trunk\src\pyparsing.py . copy ..\sourceforge\svn\trunk\src\MANIFEST.in_bdist . copy ..\sourceforge\svn\trunk\src\MANIFEST.in_src . rmdir build rmdir dist copy/y MANIFEST.in_src MANIFEST.in if exist MANIFEST del MANIFEST python setup.py sdist --formats=gztar,zip copy/y MANIFEST.in_bdist MANIFEST.in if exist MANIFEST del MANIFEST python setup.py bdist_wininst --target-version=2.6 --plat-name=win32 python setup.py bdist_wininst --target-version=2.7 --plat-name=win32 python setup.py bdist_wininst --target-version=3.0 --plat-name=win32 python setup.py bdist_wininst --target-version=3.1 --plat-name=win32 python setup.py bdist_wininst --target-version=3.2 --plat-name=win32 python setup.py bdist_wininst --target-version=3.3 --plat-name=win32 set MAKING_PYPARSING_RELEASE=
copy ..\sourceforge\svn\trunk\src\CHANGES . copy ..\sourceforge\svn\trunk\src\setup.py . copy ..\sourceforge\svn\trunk\src\pyparsing.py . copy ..\sourceforge\svn\trunk\src\MANIFEST.in_bdist . copy ..\sourceforge\svn\trunk\src\MANIFEST.in_src . copy ..\sourceforge\svn\trunk\src\examples\* .\examples\ del .\examples\*.pyc rmdir build rmdir dist copy/y MANIFEST.in_src MANIFEST.in if exist MANIFEST del MANIFEST python setup.py sdist --formats=gztar,zip copy/y MANIFEST.in_bdist MANIFEST.in if exist MANIFEST del MANIFEST python setup.py bdist_wininst --target-version=2.6 --plat-name=win32 python setup.py bdist_wininst --target-version=2.7 --plat-name=win32 python setup.py bdist_wininst --target-version=3.0 --plat-name=win32 python setup.py bdist_wininst --target-version=3.1 --plat-name=win32 python setup.py bdist_wininst --target-version=3.2 --plat-name=win32 python setup.py bdist_wininst --target-version=3.3 --plat-name=win32
Remove old Py2/3 setup flag Added copying of examples from SVN source, and cleanup any pycs that might by lying around
Remove old Py2/3 setup flag Added copying of examples from SVN source, and cleanup any pycs that might by lying around
Batchfile
mit
pyparsing/pyparsing,pyparsing/pyparsing
46e7d18c67db62ec0ebcb80f7035a20e622a6014
make.bat
make.bat
@echo off cd src python.exe setup.py build cd .. "%PROGRAMFILES%\Inno Setup 5\ISCC.exe" pesel2pbn.iss
@echo off cd src cd pesel2pbn pyuic5 pesel2pbn.ui > pesel2pbn_auto.py cd .. python.exe setup.py build cd .. "%PROGRAMFILES%\Inno Setup 5\ISCC.exe" pesel2pbn.iss
Recompile UI file on build
Recompile UI file on build
Batchfile
mit
mpasternak/pesel2pbn,mpasternak/pesel2pbn
7a71d695af1251df6378c99cf11ffefe4849ff8f
build/maven_deploy.bat
build/maven_deploy.bat
set WINSCP="C:\Program Files (x86)\WinSCP\WinSCP.com" %WINSCP% /script=dosyncftp_maven.cmd REM Publish artifact to MavenCentral pushd ..\roborio\c++\navx_frc_cpp call gradlew publish popd REM Publish artifact to MavenCentral pushd ..\roborio\java\navx_frc call gradlew publish popd ECHO To Release the MavenCentral Artifacts: ECHO ECHO - Navigate to https://oss.sonatype.org/service/local/staging/deploy/maven2 and login ECHO - At bottom of list, select the checkbox next to the staged content ECHO - Click the Close button, which triggers analysis of the artifacts (takes about 1 minute) ECHO - Then, click the Release button to migrate the staged build to the Release Repository ECHO It takes about 10 minutes to be released, and about 2 hours to show up in Maven Central Search.
set WINSCP="C:\Program Files (x86)\WinSCP\WinSCP.com" %WINSCP% /script=dosyncftp_maven.cmd REM Publish artifact to MavenCentral pushd ..\roborio\java\navx_frc call gradlew publish popd REM Publish artifact to MavenCentral pushd ..\roborio\c++\navx_frc_cpp call gradlew publish popd ECHO To Release the MavenCentral Artifacts: ECHO ECHO - Navigate to https://oss.sonatype.org/service/local/staging/deploy/maven2 and login ECHO - At bottom of list, select the checkbox next to the staged content ECHO - Click the Close button, which triggers analysis of the artifacts (takes about 1 minute) ECHO - Then, click the Release button to migrate the staged build to the Release Repository ECHO It takes about 10 minutes to be released, and about 2 hours to show up in Maven Central Search.
Update maven deploy script to hopefully work around some reliability issues encountered during uploads to Sonatype Nexus (Maven Central) Repository.
Update maven deploy script to hopefully work around some reliability issues encountered during uploads to Sonatype Nexus (Maven Central) Repository.
Batchfile
mit
kauailabs/navxmxp,kauailabs/navxmxp,kauailabs/navxmxp,kauailabs/navxmxp,kauailabs/navxmxp,kauailabs/navxmxp,kauailabs/navxmxp
7f8b8202d1db007178b9e39d8c280665cb7f920d
build.cmd
build.cmd
@echo off cls .paket\paket.bootstrapper.exe if errorlevel 1 ( exit /b %errorlevel% ) .paket\paket.exe restore if errorlevel 1 ( exit /b %errorlevel% ) packages\build\FAKE\tools\FAKE.exe build.fsx %*
@echo off cls .paket\paket.bootstrapper.exe prerelease if errorlevel 1 ( exit /b %errorlevel% ) .paket\paket.exe restore if errorlevel 1 ( exit /b %errorlevel% ) packages\build\FAKE\tools\FAKE.exe build.fsx %*
Use prerelease paket for dogfooding
Use prerelease paket for dogfooding
Batchfile
mit
NatElkins/Paket,jam40jeff/Paket,0x53A/Paket,snowcrazed/Paket,inosik/Paket,isaacabraham/Paket,robertpi/Paket,Thorium/Paket,MorganPersson/Paket,0x53A/Paket,mrinaldi/Paket,robertpi/Paket,cloudRoutine/Paket,NatElkins/Paket,MorganPersson/Paket,lexarchik/Paket,cloudRoutine/Paket,mrinaldi/Paket,MorganPersson/Paket,Thorium/Paket,simonhdickson/Paket,simonhdickson/Paket,isaacabraham/Paket,fsprojects/Paket,NatElkins/Paket,Stift/Paket,robertpi/Paket,thinkbeforecoding/Paket,vbfox/Paket,thinkbeforecoding/Paket,cloudRoutine/Paket,Stift/Paket,cloudRoutine/Paket,jam40jeff/Paket,vbfox/Paket,isaacabraham/Paket,thinkbeforecoding/Paket,mrinaldi/Paket,robertpi/Paket,lexarchik/Paket,Stift/Paket,lexarchik/Paket,sergey-tihon/Paket,artur-s/Paket,vbfox/Paket,snowcrazed/Paket,Thorium/Paket,Stift/Paket,baronfel/Paket,thinkbeforecoding/Paket,baronfel/Paket,mrinaldi/Paket,snowcrazed/Paket,artur-s/Paket,MorganPersson/Paket,simonhdickson/Paket,0x53A/Paket,theimowski/Paket,NatElkins/Paket,isaacabraham/Paket,lexarchik/Paket,simonhdickson/Paket,theimowski/Paket,0x53A/Paket,Thorium/Paket,vbfox/Paket,fsprojects/Paket,inosik/Paket,sergey-tihon/Paket,snowcrazed/Paket
9c061351b85bf917c9870b5851168368a5075d6f
recipes/vs2008_runtime/bld.bat
recipes/vs2008_runtime/bld.bat
for %%F in ("." "bin") do ( cmake -G "%CMAKE_GENERATOR%" ^ -DCMAKE_INSTALL_PREFIX:PATH="%LIBRARY_PREFIX%" ^ -DCMAKE_INSTALL_DEBUG_LIBRARIES:BOOL="OFF" ^ -DCMAKE_INSTALL_DEBUG_LIBRARIES_ONLY:BOOL="OFF" ^ -DCMAKE_INSTALL_OPENMP_LIBRARIES:BOOL="ON" ^ -DCMAKE_INSTALL_SYSTEM_RUNTIME_DESTINATION:STRING=%%F ^ "%RECIPE_DIR%" if errorlevel 1 exit 1 cmake --build "%SRC_DIR%" ^ --target INSTALL ^ --config Release if errorlevel 1 exit 1 )
powershell -Command "(New-Object Net.WebClient).DownloadFile('https://download.microsoft.com/download/d/d/9/dd9a82d0-52ef-40db-8dab-795376989c03/vcredist_x86.exe', 'vcredist_x86.exe')" if errorlevel 1 exit 1 powershell -Command "(New-Object Net.WebClient).DownloadFile('https://download.microsoft.com/download/2/d/6/2d61c766-107b-409d-8fba-c39e61ca08e8/vcredist_x64.exe', 'vcredist_x64.exe')" if errorlevel 1 exit 1 vcredist_x86.exe /qb! if errorlevel 1 exit 1 vcredist_x64.exe /qb! if errorlevel 1 exit 1 for %%F in ("." "bin") do ( cmake -G "%CMAKE_GENERATOR%" ^ -DCMAKE_INSTALL_PREFIX:PATH="%LIBRARY_PREFIX%" ^ -DCMAKE_INSTALL_DEBUG_LIBRARIES:BOOL="OFF" ^ -DCMAKE_INSTALL_DEBUG_LIBRARIES_ONLY:BOOL="OFF" ^ -DCMAKE_INSTALL_OPENMP_LIBRARIES:BOOL="ON" ^ -DCMAKE_INSTALL_SYSTEM_RUNTIME_DESTINATION:STRING=%%F ^ "%RECIPE_DIR%" if errorlevel 1 exit 1 cmake --build "%SRC_DIR%" ^ --target INSTALL ^ --config Release if errorlevel 1 exit 1 )
Install Visual C++ 2008 SP1 Redistributables
Install Visual C++ 2008 SP1 Redistributables These should hopefully have the missing `vcomp90` library in them. So add this hack to `bld.bat` temporarily to see if this fixes the issue.
Batchfile
bsd-3-clause
rmcgibbo/staged-recipes,patricksnape/staged-recipes,conda-forge/staged-recipes,synapticarbors/staged-recipes,jochym/staged-recipes,mcs07/staged-recipes,shadowwalkersb/staged-recipes,Juanlu001/staged-recipes,Juanlu001/staged-recipes,rvalieris/staged-recipes,cpaulik/staged-recipes,chrisburr/staged-recipes,jakirkham/staged-recipes,shadowwalkersb/staged-recipes,rmcgibbo/staged-recipes,jjhelmus/staged-recipes,NOAA-ORR-ERD/staged-recipes,hadim/staged-recipes,isuruf/staged-recipes,dschreij/staged-recipes,ceholden/staged-recipes,barkls/staged-recipes,synapticarbors/staged-recipes,sannykr/staged-recipes,goanpeca/staged-recipes,hadim/staged-recipes,mariusvniekerk/staged-recipes,glemaitre/staged-recipes,stuertz/staged-recipes,johanneskoester/staged-recipes,sodre/staged-recipes,sodre/staged-recipes,ocefpaf/staged-recipes,scopatz/staged-recipes,basnijholt/staged-recipes,SylvainCorlay/staged-recipes,patricksnape/staged-recipes,ReimarBauer/staged-recipes,barkls/staged-recipes,jjhelmus/staged-recipes,igortg/staged-recipes,petrushy/staged-recipes,rvalieris/staged-recipes,goanpeca/staged-recipes,birdsarah/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,asmeurer/staged-recipes,conda-forge/staged-recipes,NOAA-ORR-ERD/staged-recipes,kwilcox/staged-recipes,basnijholt/staged-recipes,jochym/staged-recipes,guillochon/staged-recipes,glemaitre/staged-recipes,kwilcox/staged-recipes,sodre/staged-recipes,pmlandwehr/staged-recipes,guillochon/staged-recipes,pmlandwehr/staged-recipes,ceholden/staged-recipes,sannykr/staged-recipes,Cashalow/staged-recipes,ReimarBauer/staged-recipes,johanneskoester/staged-recipes,mariusvniekerk/staged-recipes,isuruf/staged-recipes,SylvainCorlay/staged-recipes,stuertz/staged-recipes,chrisburr/staged-recipes,igortg/staged-recipes,asmeurer/staged-recipes,scopatz/staged-recipes,mcs07/staged-recipes,birdsarah/staged-recipes,cpaulik/staged-recipes,Cashalow/staged-recipes,petrushy/staged-recipes,dschreij/staged-recipes
e5e91544c90dafa3ec1a4050b9bf3787d2568c51
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 ^ -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
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="/machine:x64 /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 /machine:x64, flag which was lost when setting /FORCE:MULTIPLE
Add /machine:x64, flag which was lost when setting /FORCE:MULTIPLE
Batchfile
bsd-3-clause
conda-forge/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,mariusvniekerk/staged-recipes,mariusvniekerk/staged-recipes,kwilcox/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes,kwilcox/staged-recipes
8210ac7ed2f9b2db12a554d7604675cf2ffe71be
ServerSetupScripts/Windows/Chocolatey/Vagrant.bat
ServerSetupScripts/Windows/Chocolatey/Vagrant.bat
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" choco install vagrant chefdk virtualbox visualstudiocode 7zip googlechrome notepadplusplus.install firefox git.install tortoisegit -y refreshenv vagrant plugin install vagrant-winrm vagrant box add mwrock/Windows2016 --provider virtualbox vagrant box add mwrock/Windows2012R2 --provider virtualbox vagrant box add jacqinthebox/windowsserver2016core --provider virtualbox code --install-extension ms-vscode.powershell code --install-extension msazurermtools.azurerm-vscode-tools code --install-extension HookyQR.beautify code --install-extension Pendrica.chef code --install-extension ms-vscode.PeterJausovec.vscode-docker code --install-extension alefragnani.project-manager code --install-extension Borke.puppet code --install-extension mauve.terraform code --install-extension bbenoist.vagrant code --list-extensions mkdir c:\github cd c:\github git clone https://github.com/iaingblack/Automation.git chef gem install kitchen-all
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin" choco install googlechrome 7zip notepadplusplus.install firefox git.install tortoisegit vagrant chefdk virtualbox visualstudiocode -y refreshenv vagrant plugin install vagrant-winrm vagrant box add mwrock/Windows2016 --provider virtualbox vagrant box add mwrock/Windows2012R2 --provider virtualbox vagrant box add jacqinthebox/windowsserver2016core --provider virtualbox code --install-extension ms-vscode.powershell code --install-extension msazurermtools.azurerm-vscode-tools code --install-extension HookyQR.beautify code --install-extension Pendrica.chef code --install-extension ms-vscode.PeterJausovec.vscode-docker code --install-extension alefragnani.project-manager code --install-extension Borke.puppet code --install-extension mauve.terraform code --install-extension bbenoist.vagrant code --list-extensions mkdir c:\github cd c:\github git clone https://github.com/iaingblack/Automation.git chef gem install kitchen-all
Install smaller things first, like chrome so can be used immediately
Install smaller things first, like chrome so can be used immediately
Batchfile
unlicense
iaingblack/Automation,iaingblack/Automation
1a146136df98747554ae7cf967a9c6418b4f3224
build.cmd
build.cmd
@echo off setlocal call "%VS120COMNTOOLS%\VsDevCmd.bat" msbuild .\PSScriptAnalyzer.sln if NOT [%ERRORLEVEL%]==[0] pause endlocal
@echo off setlocal if "%VS120COMNTOOLS%"=="" GOTO NOTOOLS call "%VS120COMNTOOLS%\VsDevCmd.bat" msbuild .\PSScriptAnalyzer.sln if NOT [%ERRORLEVEL%]==[0] pause GOTO END :NOTOOLS echo The Visual Studio 2012 tools are not installed pause :END endlocal
Check for VS Build tools
Check for VS Build tools
Batchfile
mit
daviwil/PSScriptAnalyzer,dlwyatt/PSScriptAnalyzer,PowerShell/PSScriptAnalyzer,korygill/PSScriptAnalyzer,rkeithhill/PSScriptAnalyzer,juneb/PSScriptAnalyzer
7ccf98b3136808055a9662df9add9b5ce3b75d85
build.bat
build.bat
@echo Off set config=%1 if "%config%" == "" ( set config=Release ) set version= if not "%PackageVersion%" == "" ( set version=-Version %PackageVersion% ) REM Build %WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild AW.Model.RWX.sln /p:Configuration="%config%" /m /v:M /fl /flp:LogFile=msbuild.log;Verbosity=Normal /nr:false REM Package mkdir Build cmd /c %nuget% pack "Bloyteg.AW.Model.RWX\Bloyteg.AW.Model.RWX.fsproj" -symbols -o Build -p Configuration=%config% %version% -IncludeReferencedProjects
@echo Off set config=%1 if "%config%" == "" ( set config=Release ) set version= if not "%PackageVersion%" == "" ( set version=-Version %PackageVersion% ) cmd /c %nuget% restore REM Build %WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild AW.Model.RWX.sln /p:Configuration="%config%" /m /v:M /fl /flp:LogFile=msbuild.log;Verbosity=Normal /nr:false REM Package mkdir Build cmd /c %nuget% pack "Bloyteg.AW.Model.RWX\Bloyteg.AW.Model.RWX.fsproj" -symbols -o Build -p Configuration=%config% %version% -IncludeReferencedProjects
Add nuget package restore step.
Add nuget package restore step.
Batchfile
apache-2.0
Bloyteg/AW.Model.RWX,Bloyteg/AW.Model.RWX
a0b3e5b3196ba30520d209fd14a97ed722fea182
build.bat
build.bat
@echo off @setlocal rem ------------------------------------------------------ rem Check environment variables if not "%JAVA_HOME%" == "" goto java_home_ok echo Environment variable JAVA_HOME must be set. set ERROR=true :java_home_ok if not "%DEBUG_ENABLED%" == "" goto debug_enabled_ok set DEBUG_ENABLED=false :debug_enabled_ok if not "%WEBLOGIC_HOME%" == "" goto weblogic_home_ok set WEBLOGIC_HOME=C:\bea\weblogic700\server :weblogic_home_ok if "%ERROR%" == "true" goto end rem ------------------------------------------------------ rem Run Ant for %%I in (.) do set BUILD_ROOT=%%~fI set CLASSPATH=.\lib\junit.jar set PATH=%JAVA_HOME%\bin;%PATH% set ANT_HOME=tools\ant "%ANT_HOME%\bin\ant.bat" "-Djava.home=%JAVA_HOME%" "-Dant.home=%ANT_HOME%" "-Dbuild.root=%BUILD_ROOT%" "-Ddebug.enabled=%DEBUG_ENABLED%" "-Dweblogic.home=%WEBLOGIC_HOME%" %1 %2 %3 %4 %5 %6 %7 %8 %9 :end
@echo off @setlocal rem ------------------------------------------------------ rem Check environment variables if not "%JAVA_HOME%" == "" goto java_home_ok echo Environment variable JAVA_HOME must be set. set ERROR=true :java_home_ok if not "%DEBUG_ENABLED%" == "" goto debug_enabled_ok set DEBUG_ENABLED=false :debug_enabled_ok if not "%WEBLOGIC_HOME%" == "" goto weblogic_home_ok set WEBLOGIC_HOME=C:\bea\weblogic700\server :weblogic_home_ok if "%ERROR%" == "true" goto end rem ------------------------------------------------------ rem Run Ant set target=%1 set default_target=orbeon-dist-packages if not defined target ( set target=%default_target% echo Defaulting to target %default_target% ) for %%I in (.) do set BUILD_ROOT=%%~fI set CLASSPATH=.\lib\junit.jar set PATH=%JAVA_HOME%\bin;%PATH% set ANT_HOME=tools\ant "%ANT_HOME%\bin\ant.bat" "-Djava.home=%JAVA_HOME%" "-Dant.home=%ANT_HOME%" "-Dbuild.root=%BUILD_ROOT%" "-Ddebug.enabled=%DEBUG_ENABLED%" "-Dweblogic.home=%WEBLOGIC_HOME%" %target% %2 %3 %4 %5 %6 %7 %8 %9 :end
Set default target to orbeon-dist-packages
Set default target to orbeon-dist-packages
Batchfile
lgpl-2.1
ajw625/orbeon-forms,martinluther/orbeon-forms,joansmith/orbeon-forms,tanbo800/orbeon-forms,orbeon/orbeon-forms,wesley1001/orbeon-forms,joansmith/orbeon-forms,orbeon/orbeon-forms,brunobuzzi/orbeon-forms,ajw625/orbeon-forms,evlist/orbeon-forms,evlist/orbeon-forms,evlist/orbeon-forms,ajw625/orbeon-forms,joansmith/orbeon-forms,brunobuzzi/orbeon-forms,wesley1001/orbeon-forms,tanbo800/orbeon-forms,martinluther/orbeon-forms,wesley1001/orbeon-forms,brunobuzzi/orbeon-forms,martinluther/orbeon-forms,evlist/orbeon-forms,tanbo800/orbeon-forms,orbeon/orbeon-forms,tanbo800/orbeon-forms,martinluther/orbeon-forms,evlist/orbeon-forms,brunobuzzi/orbeon-forms,orbeon/orbeon-forms,wesley1001/orbeon-forms,ajw625/orbeon-forms,joansmith/orbeon-forms
3d79a3d0461360a1a2cd3a04d8278b20188b5466
build.cmd
build.cmd
nuget restore md artifacts\bin MSBuild.exe AzureSiteReplicator\AzureSiteReplicator.csproj /t:pipelinePreDeployCopyAllFilesToOneFolder /p:_PackageTempDir="..\artifacts";AutoParameterizationWebConfigConnectionStrings=false;Configuration=Release;SolutionDir="." copy "%ProgramW6432%\IIS\Microsoft Web Deploy V3\Microsoft.Web.Deployment.dll" artifacts\bin copy "%ProgramW6432%\IIS\Microsoft Web Deploy V3\Microsoft.Web.Deployment.Tracing.dll" artifacts\bin copy "%ProgramW6432%\IIS\Microsoft Web Deploy V3\Microsoft.Web.Delegation.dll" artifacts\bin nuget pack
nuget restore md artifacts\bin MSBuild.exe AzureSiteReplicator\AzureSiteReplicator.csproj /t:pipelinePreDeployCopyAllFilesToOneFolder /p:_PackageTempDir="..\artifacts";AutoParameterizationWebConfigConnectionStrings=false;Configuration=Release;SolutionDir="." copy "%ProgramW6432%\IIS\Microsoft Web Deploy V3\Microsoft.Web.Deployment.dll" artifacts\bin copy "%ProgramW6432%\IIS\Microsoft Web Deploy V3\Microsoft.Web.Deployment.Tracing.dll" artifacts\bin copy "%ProgramW6432%\IIS\Microsoft Web Deploy V3\Microsoft.Web.Delegation.dll" artifacts\bin nuget pack -NoPackageAnalysis
Remove package analysis in nuget pack call
Remove package analysis in nuget pack call
Batchfile
apache-2.0
projectkudu/AzureSiteReplicator,projectkudu/AzureSiteReplicator,projectkudu/AzureSiteReplicator
1115dd0bbf97259185f4916d0c38f55eb40e8f31
start.bat
start.bat
@ECHO OFF ECHO ----------------------------------------- ECHO Welcome to the microbit-vagrants control. ECHO ----------------------------------------- ECHO 1 - Espruino ECHO 2 - MicroPython ECHO 3 - RIOT-OS Environment ECHO 4 - PXT ECHO 5 - Exit SET /P C=Type the number you want from above then press enter: IF %C%==1 GOTO ESPRUINO IF %C%==2 GOTO MICROPYTHON IF %C%==3 GOTO RIOT IF %C%==4 GOTO PXT IF %C%==5 EXIT :ESPRUINO @ECHO ON cd Espruino vagrant up :MICROPYTHON @ECHO ON cd micropython vagrant up :RIOT @ECHO ON cd RIOT vagrant up :PXT @ECHO ON cd PXT vagrant up
@ECHO ON vagrant plugin install vagrant-auto_network @ECHO OFF ECHO ----------------------------------------- ECHO Welcome to the microbit-vagrants control. ECHO ----------------------------------------- ECHO 1 - Espruino ECHO 2 - MicroPython ECHO 3 - RIOT-OS Environment ECHO 4 - PXT ECHO 5 - Exit SET /P C=Type the number you want from above then press enter: IF %C%==1 GOTO ESPRUINO IF %C%==2 GOTO MICROPYTHON IF %C%==3 GOTO RIOT IF %C%==4 GOTO PXT IF %C%==5 EXIT :ESPRUINO @ECHO ON cd Espruino vagrant up :MICROPYTHON @ECHO ON cd micropython vagrant up :RIOT @ECHO ON cd RIOT vagrant up :PXT @ECHO ON cd PXT vagrant up
Add very simple vagrant plugin install for the autonetwork
Add very simple vagrant plugin install for the autonetwork
Batchfile
mit
bfayers/microbit-vagrants,bfayers/microbit-vagrants
2003c4962ee2afa15e32fb04c8c936335647a6aa
dependencies/setupSundials.bat
dependencies/setupSundials.bat
@ECHO OFF REM $Id$ REM Bat script to build Sundials dependency automatically REM Author: Robert Braun [email protected] setlocal set basedir=%~dp0 set name=sundials set codedir=%basedir%\%name%-code set builddir=%basedir%\%name%-build set installdir=%basedir%\%name% REM Setup paths call setHopsanBuildPaths.bat set PATH=%PATH_WITH_MSYS% REM Build mkdir %builddir% cd %builddir% sundials_cmake_args="-Wno-dev -DBUILD_STATIC_LIBS=OFF -DBUILD_ARKODE=OFF -DBUILD_IDAS=OFF -DBUILD_IDA=OFF -DBUILD_CVODE=OFF -DBUILD_CVODES=OFF -DBUILD_KINSOL=ON -DBUILD_EXAMPLES_C=OFF -DEXAMPLES_INSTALL=OFF -DCMAKE_INSTALL_LIBDIR=lib" REM Configure cmake ${sundials_cmake_args} -DCMAKE_INSTALL_PREFIX=${installdir} ${codedir} REM Build and install mingw32-make -j8 mingw32-make install REM Return to basedir cd %basedir%echo. echo setSundials.bat Done if "%HOPSAN_BUILD_SCRIPT_NOPAUSE%" == "" ( pause ) endlocal
@ECHO OFF REM $Id$ REM Bat script to build Sundials dependency automatically REM Author: Robert Braun [email protected] setlocal set basedir=%~dp0 set name=sundials set codedir=%basedir%\%name%-code set builddir=%basedir%\%name%-build set installdir=%basedir%\%name% REM Setup paths call setHopsanBuildPaths.bat set PATH=%PATH_WITH_MSYS% REM build if exist %builddir% ( echo Removing existing build directory %builddir% rmdir /S /Q %builddir% ) mkdir %builddir% cd %builddir% set sundials_cmake_args="-Wno-dev -DBUILD_STATIC_LIBS=OFF -DBUILD_ARKODE=OFF -DBUILD_IDAS=OFF -DBUILD_IDA=OFF -DBUILD_CVODE=OFF -DBUILD_CVODES=OFF -DBUILD_KINSOL=ON -DBUILD_EXAMPLES_C=OFF -DEXAMPLES_INSTALL=OFF -DCMAKE_INSTALL_LIBDIR=lib" REM Configure cmake ${sundials_cmake_args} -DCMAKE_INSTALL_PREFIX=%installdir% %codedir% cmake --build . --parallel 8 cmake --build . --target install REM Return to basedir cd %basedir% echo. echo setSundials.bat Done if "%HOPSAN_BUILD_SCRIPT_NOPAUSE%" == "" ( pause ) endlocal
Fix error in Sundials bat script
Fix error in Sundials bat script
Batchfile
apache-2.0
Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan
72a47249b51d49906d784fdd7ca649eff070b464
bin/create-rmi-keystore.bat
bin/create-rmi-keystore.bat
@echo off 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 keytool -genkey -keyalg RSA -alias rmi -keystore rmi_keystore.jks -storepass changeit -validity 7 -keysize 2048 echo "Copy the generated rmi_keystore.jks to jmeter/bin folder or reference it in property 'server.rmi.ssl.keystore.file'"
@echo off 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 keytool -genkey -keyalg RSA -alias rmi -keystore rmi_keystore.jks -storepass changeit -validity 7 -keysize 2048 echo "Copy the generated rmi_keystore.jks to jmeter/bin folder or reference it in property 'server.rmi.ssl.keystore.file'"
Set svn:eol-style for new unix and windows shell scripts
Set svn:eol-style for new unix and windows shell scripts git-svn-id: 5ccfe34f605a6c2f9041ff2965ab60012c62539a@1822060 13f79535-47bb-0310-9956-ffa450edef68
Batchfile
apache-2.0
vherilier/jmeter,vherilier/jmeter,ubikloadpack/jmeter,ubikloadpack/jmeter,vherilier/jmeter,vherilier/jmeter,etnetera/jmeter,etnetera/jmeter,etnetera/jmeter,ubikloadpack/jmeter,ubikloadpack/jmeter,etnetera/jmeter,etnetera/jmeter
8267f2360e380ea08b9eb5507479f9e642c7c927
ci/test-win.bat
ci/test-win.bat
echo Running Windows build and testscript %cd%/matlab/CIBuildAndTest.m call "C:\Program Files\MATLAB\R2015b\bin\matlab.exe" -wait -nodisplay -nosplash -nodesktop -r "try, run('%cd%\matlab\CIBuildAndTest.m'), catch ex, disp(['Exception during CIBuildAndTest.m: ' ex.message]), exit(1), end, exit(0);" if not "%ERRORLEVEL%" == "0" ( echo Exit Code = %ERRORLEVEL% exit /b 1 )
echo Running Windows build and testscript %cd%\matlab\CIBuildAndTest.m call "C:\Program Files\MATLAB\R2015b\bin\matlab.exe" -wait -nodisplay -nosplash -nodesktop -r "try, run('%~dp0%\matlab\CIBuildAndTest.m'), catch ex, disp(['Exception during CIBuildAndTest.m: ' ex.message]), exit(1), end, exit(0);" if not "%ERRORLEVEL%" == "0" ( echo Exit Code = %ERRORLEVEL% exit /b 1 )
Update windows CI script to point to catch file calling directory
Update windows CI script to point to catch file calling directory
Batchfile
bsd-3-clause
gift-surg/SlicSeg,gift-surg/SlicSeg,gift-surg/SlicSeg
20fc9333346b814700faa1732aa7985fa728d141
buildRelease.cmd
buildRelease.cmd
@echo off REM initial cleanup rd .\build\Release /s /q rd .\build\Output /s /q mkdir .\build\Release mkdir .\build\Output build\nuget.exe restore REM build solution build\msbuild.bat . /p:Configuration=Release /p:Platform=x86 REM copy web overlays robocopy .\webOverlay .\build\Release\Files\Web /E pause
@echo off REM initial cleanup rd .\build\Release /s /q rd .\build\Output /s /q mkdir .\build\Release mkdir .\build\Output build\nuget.exe restore REM build solution build\msbuild.bat . /p:Configuration=Release /p:Platform="Any CPU" REM copy web overlays robocopy .\webOverlay .\build\Release\Files\Web /E pause
Adjust local build script to use AnyCPU builds
Misc: Adjust local build script to use AnyCPU builds
Batchfile
mit
Piotrekol/StreamCompanion,Piotrekol/StreamCompanion
c28cfd3539723ddfcec3f6ee65cbe505223771be
recipes/openblas/bld.bat
recipes/openblas/bld.bat
:: Set $HOME to the current dir so msys runs here set HOME=%cd% :: Configure, build, test, and install using `nmake`. bash -lc "make" if errorlevel 1 exit 1 bash -lc "make DYNAMIC_ARCH=1 BINARY=$ARCH NO_LAPACK=0 NO_AFFINITY=1 USE_THREAD=1 PREFIX=$LIBRARY_PREFIX install" if errorlevel 1 exit 1
:: Set $HOME to the current dir so msys runs here set HOME=%cd% :: Configure, build, test, and install using `make`. bash -lc "make DYNAMIC_ARCH=1 BINARY=$ARCH NO_LAPACK=0 NO_AFFINITY=1 USE_THREAD=1 PREFIX=$LIBRARY_PREFIX" if errorlevel 1 exit 1 bash -lc "make test" if errorlevel 1 exit 1 bash -lc "make PREFIX=$LIBRARY_PREFIX install" if errorlevel 1 exit 1
Move args to `make` and run tests.
openblas: Move args to `make` and run tests.
Batchfile
bsd-3-clause
cpaulik/staged-recipes,conda-forge/staged-recipes,bmabey/staged-recipes,jochym/staged-recipes,valgur/staged-recipes,jcb91/staged-recipes,jochym/staged-recipes,rmcgibbo/staged-recipes,dfroger/staged-recipes,Cashalow/staged-recipes,guillochon/staged-recipes,mcs07/staged-recipes,chrisburr/staged-recipes,grlee77/staged-recipes,ceholden/staged-recipes,ericdill/staged-recipes,dschreij/staged-recipes,valgur/staged-recipes,data-exp-lab/staged-recipes,gqmelo/staged-recipes,rmcgibbo/staged-recipes,stuertz/staged-recipes,rolando-contrib/staged-recipes,bmabey/staged-recipes,dfroger/staged-recipes,birdsarah/staged-recipes,goanpeca/staged-recipes,shadowwalkersb/staged-recipes,Savvysherpa/staged-recipes,vamega/staged-recipes,sannykr/staged-recipes,rvalieris/staged-recipes,SylvainCorlay/staged-recipes,hajapy/staged-recipes,ReimarBauer/staged-recipes,gqmelo/staged-recipes,mcernak/staged-recipes,jjhelmus/staged-recipes,Juanlu001/staged-recipes,glemaitre/staged-recipes,johanneskoester/staged-recipes,benvandyke/staged-recipes,isuruf/staged-recipes,larray-project/staged-recipes,planetarypy/staged-recipes,JohnGreeley/staged-recipes,Juanlu001/staged-recipes,isuruf/staged-recipes,kwilcox/staged-recipes,johanneskoester/staged-recipes,glemaitre/staged-recipes,tylere/staged-recipes,kwilcox/staged-recipes,jakirkham/staged-recipes,hadim/staged-recipes,jjhelmus/staged-recipes,synapticarbors/staged-recipes,patricksnape/staged-recipes,shadowwalkersb/staged-recipes,johannesring/staged-recipes,petrushy/staged-recipes,data-exp-lab/staged-recipes,barkls/staged-recipes,hadim/staged-recipes,ceholden/staged-recipes,vamega/staged-recipes,birdsarah/staged-recipes,OpenPIV/staged-recipes,khallock/staged-recipes,dharhas/staged-recipes,atedstone/staged-recipes,cpaulik/staged-recipes,dschreij/staged-recipes,SylvainCorlay/staged-recipes,synapticarbors/staged-recipes,scopatz/staged-recipes,hbredin/staged-recipes,rolando-contrib/staged-recipes,stuertz/staged-recipes,blowekamp/staged-recipes,OpenPIV/staged-recipes,jcb91/staged-recipes,jerowe/staged-recipes,richardotis/staged-recipes,ericdill/staged-recipes,jakirkham/staged-recipes,arokem/staged-recipes,atedstone/staged-recipes,mariusvniekerk/staged-recipes,mcs07/staged-recipes,pmlandwehr/staged-recipes,grlee77/staged-recipes,sodre/staged-recipes,nicoddemus/staged-recipes,Savvysherpa/staged-recipes,dharhas/staged-recipes,asmeurer/staged-recipes,koverholt/staged-recipes,ReimarBauer/staged-recipes,scopatz/staged-recipes,rvalieris/staged-recipes,conda-forge/staged-recipes,larray-project/staged-recipes,hbredin/staged-recipes,benvandyke/staged-recipes,pmlandwehr/staged-recipes,barkls/staged-recipes,arokem/staged-recipes,guillochon/staged-recipes,caspervdw/staged-recipes,mariusvniekerk/staged-recipes,johannesring/staged-recipes,pstjohn/staged-recipes,blowekamp/staged-recipes,ocefpaf/staged-recipes,sodre/staged-recipes,igortg/staged-recipes,sannykr/staged-recipes,hajapy/staged-recipes,patricksnape/staged-recipes,mcernak/staged-recipes,petrushy/staged-recipes,tylere/staged-recipes,planetarypy/staged-recipes,chrisburr/staged-recipes,koverholt/staged-recipes,chohner/staged-recipes,goanpeca/staged-recipes,sodre/staged-recipes,nicoddemus/staged-recipes,JohnGreeley/staged-recipes,asmeurer/staged-recipes,caspervdw/staged-recipes,khallock/staged-recipes,richardotis/staged-recipes,Cashalow/staged-recipes,chohner/staged-recipes,ocefpaf/staged-recipes,basnijholt/staged-recipes,jerowe/staged-recipes,basnijholt/staged-recipes,NOAA-ORR-ERD/staged-recipes,igortg/staged-recipes,NOAA-ORR-ERD/staged-recipes,pstjohn/staged-recipes
15850a94a50b44249add72aaace978f2e2aa1756
src/BatchFiles/SonarPreBuild.bat
src/BatchFiles/SonarPreBuild.bat
@echo Running Sonar pre-build script... @set SonarRunnerProperties=%1 @set ProjectKey=%2 @set ConfigFolder=%3 @echo Sonar runner properties location: %SonarRunnerProperties% @echo Sonar project key: %ProjectKey% @echo Sonar config location: %ConfigFolder% @echo Creating the Sonar config folder... @rmdir %ConfigFolder% /S /Q @mkdir %ConfigFolder% @echo Dumping environment variables... (TODO - REMOVE) @~dp0\DumpEnvironmentVars.exe @echo Generating Sonar FxCop file... @%~dp0\Sonar.FxCopRuleset.exe "%SonarRunnerProperties%" "%ProjectKey%" "%ConfigFolder%\SonarAnalysis.ruleset" @echo ...done. @echo Sonar pre-build steps complete.
@echo Running Sonar pre-build script... @set SonarRunnerProperties=%1 @set ConfigFolder=%2 @echo Sonar runner properties location: %SonarRunnerProperties% @echo Sonar config location: %ConfigFolder% @echo Creating the Sonar config folder... @rmdir %ConfigFolder% /S /Q @mkdir %ConfigFolder% @echo Generating Sonar FxCop file... REM @%~dp0\Sonar.FxCopRuleset.exe %SonarRunnerProperties% "%ConfigFolder%\SonarAnalysis.ruleset" @echo ...done. @echo Copying a dummy ruleset for the time being... copy %~dp0\Example.ruleset %ConfigFolder%\SonarAnalysis.ruleset @echo Sonar pre-build steps complete.
Revert "Updated prebuild script to pass the Sonar project key"
Revert "Updated prebuild script to pass the Sonar project key" This reverts commit 8643823a98ac984f7e1f28305c44cf803c76f876.
Batchfile
mit
jessehouwing/sonar-msbuild-runner,jabbera/sonar-msbuild-runner,dbolkensteyn/sonar-msbuild-runner,LunicLynx/sonar-msbuild-runner,HSAR/sonar-msbuild-runner,SonarSource/sonar-msbuild-runner,LunicLynx/sonar-msbuild-runner,SonarSource-VisualStudio/sonar-scanner-msbuild,jango2015/sonar-msbuild-runner,SonarSource-VisualStudio/sonar-msbuild-runner,SonarSource-DotNet/sonar-msbuild-runner,SonarSource-VisualStudio/sonar-scanner-msbuild,SonarSource-VisualStudio/sonar-msbuild-runner,duncanpMS/sonar-msbuild-runner,duncanpMS/sonar-msbuild-runner,jessehouwing/sonar-msbuild-runner,duncanpMS/sonar-msbuild-runner,SonarSource-VisualStudio/sonar-scanner-msbuild
e51a8b075f43fdb962938fb7b3db43d3ba8d2e15
libexec/rbenv---version.bat
libexec/rbenv---version.bat
@echo off setlocal if "%1" == "--help" ( echo Usage: rbenv --version echo. echo Displays the version number of this rbenv release, including the echo current revision from git, if available. echo. echo The format of the git revision is: echo ^<version^>-^<num_commits^>-^<git_sha^> echo where `num_commits` is the number of commits since `version` was echo tagged. echo. EXIT /B ) echo rbenv 0.0.2-03
@echo off setlocal if "%1" == "--help" ( echo Usage: rbenv --version echo. echo Displays the version number of this rbenv release, including the echo current revision from git, if available. echo. echo The format of the git revision is: echo ^<version^>-^<num_commits^>-^<git_sha^> echo where `num_commits` is the number of commits since `version` was echo tagged. echo. EXIT /B ) echo rbenv 0.0.3-04
Change Version number for release
Change Version number for release
Batchfile
mit
nak1114/rbenv-win,nak1114/rbenv-win,nak1114/rbenv-win
681dc4cde0c8dfbabcb257c6e4647ed09e7181ee
ci/msvc_install.bat
ci/msvc_install.bat
Robocopy "./tools/googletest/googlemock" "./tools/protobuf/gmock" /E /MT:2 /R:0 /DCOPY:T Robocopy "./tools/googletest/googletest" "./tools/protobuf/gmock/gtest" /E /MT:2 /R:0 /DCOPY:T
Robocopy "./tools/googletest/googlemock" "./tools/protobuf/gmock" /E /MT:2 /R:0 /DCOPY:T Robocopy "./tools/googletest/googletest" "./tools/protobuf/gmock/gtest" /E /MT:2 /R:0 /DCOPY:T IF %ERRORLEVEL% LSS 8 goto end goto :eof :end exit 0
Fix appveyor failing on a successful robocopy
Fix appveyor failing on a successful robocopy
Batchfile
apache-2.0
dev-osrose/osIROSE-new,dev-osrose/osIROSE-new,RavenX8/osIROSE-new,RavenX8/osIROSE-new,RavenX8/osIROSE-new,dev-osrose/osIROSE-new
5f68179036fac46a6edc4c7ee4d16279f88b7a25
.ci/run-tests.bat
.ci/run-tests.bat
@echo off echo Executing tests with No Compression, No SSL && copy /y tests\SideBySide.New\config.json.example tests\SideBySide.New\config.json && dotnet test tests/SideBySide.New --configuration Release echo Executing tests with Compression, No SSL && copy /y .ci\config.compression.json tests\SideBySide.New\config.json && dotnet test tests/SideBySide.New --configuration Release echo Executing tests with No Compression, SSL && copy /y .ci\config.ssl.json tests\SideBySide.New\config.json && dotnet test tests/SideBySide.New --configuration Release echo Executing tests with Compression, SSL && copy /y ".ci\config.compression+ssl.json" tests\SideBySide.New\config.json && dotnet test tests/SideBySide.New --configuration Release
@echo off echo Executing tests with No Compression, No SSL && copy /y tests\SideBySide.New\config.json.example tests\SideBySide.New\config.json && dotnet test tests/SideBySide.New --configuration Release echo Executing tests with Compression, No SSL && copy /y .ci\config\config.compression.json tests\SideBySide.New\config.json && dotnet test tests/SideBySide.New --configuration Release echo Executing tests with No Compression, SSL && copy /y .ci\config\config.ssl.json tests\SideBySide.New\config.json && dotnet test tests/SideBySide.New --configuration Release echo Executing tests with Compression, SSL && copy /y ".ci\config\config.compression+ssl.json" tests\SideBySide.New\config.json && dotnet test tests/SideBySide.New --configuration Release
Update to new CI paths.
Update to new CI paths.
Batchfile
mit
mysql-net/MySqlConnector,gitsno/MySqlConnector,gitsno/MySqlConnector,mysql-net/MySqlConnector
0268876db0983d93ff5a7626ec8e42463a5d903c
virtualenv_embedded/activate.bat
virtualenv_embedded/activate.bat
@echo off set "VIRTUAL_ENV=__VIRTUAL_ENV__" if defined _OLD_VIRTUAL_PROMPT ( set "PROMPT=%_OLD_VIRTUAL_PROMPT%" ) else ( if not defined PROMPT ( set "PROMPT=$P$G" ) set "_OLD_VIRTUAL_PROMPT=%PROMPT%" ) set "PROMPT=__VIRTUAL_WINPROMPT__ %PROMPT%" REM Don't use () to avoid problems with them in %PATH% if not defined _OLD_VIRTUAL_PYTHONHOME set "_OLD_VIRTUAL_PYTHONHOME=%PYTHONHOME%" set PYTHONHOME= if defined _OLD_VIRTUAL_PATH set "PATH=%_OLD_VIRTUAL_PATH%" if not defined _OLD_VIRTUAL_PATH set "_OLD_VIRTUAL_PATH=%PATH%" set "PATH=%VIRTUAL_ENV%\__BIN_NAME__;%PATH%"
@echo off set "VIRTUAL_ENV=__VIRTUAL_ENV__" if defined _OLD_VIRTUAL_PROMPT ( set "PROMPT=%_OLD_VIRTUAL_PROMPT%" ) else ( if not defined PROMPT ( set "PROMPT=$P$G" ) set "_OLD_VIRTUAL_PROMPT=%PROMPT%" ) set "PROMPT=__VIRTUAL_WINPROMPT__ %PROMPT%" REM Don't use () to avoid problems with them in %PATH% if defined _OLD_VIRTUAL_PYTHONHOME goto ENDIFVHOME set "_OLD_VIRTUAL_PYTHONHOME=%PYTHONHOME%" :ENDIFVHOME set PYTHONHOME= REM if defined _OLD_VIRTUAL_PATH ( if not defined _OLD_VIRTUAL_PATH goto ENDIFVPATH1 set "PATH=%_OLD_VIRTUAL_PATH%" :ENDIFVPATH1 REM ) else ( if defined _OLD_VIRTUAL_PATH goto ENDIFVPATH2 set "_OLD_VIRTUAL_PATH=%PATH%" :ENDIFVPATH2 set "PATH=%VIRTUAL_ENV%\__BIN_NAME__;%PATH%"
Correct syntax and control logic flow
Correct syntax and control logic flow
Batchfile
mit
dstufft/virtualenv,dstufft/virtualenv,techtonik/virtualenv,techtonik/virtualenv
f47b53ec10af2d6f8551dc291f658898528140bd
test.cmd
test.cmd
REM REM Run tests for all available versions of Python between 2.3 & 3.3 REM @echo off for /l %%n in (23,1,33) do if exist c:\python%%n\python.exe (echo. & echo python%%n & c:\python%%n\python.exe -W ignore test_active_directory.py) pause
REM REM Run tests for all available versions of Python between 2.3 & 3.3 REM @echo off for /l %%n in (24,1,33) do if exist c:\python%%n\python.exe (echo. & echo python%%n & c:\python%%n\python.exe -W ignore test_active_directory.py) pause
Switch to 2.4 as the lowest supported version
Switch to 2.4 as the lowest supported version
Batchfile
mit
tjguk/active_directory
9817f0a025e2b0e51ec02ba0b7a93da5d4d0507e
init.bat
init.bat
@echo off chcp 65001>nul prompt [%USERNAME%@%COMPUTERNAME% $p]$_$$$s rem Fake a UNIX environment doskey clear=cls doskey ls=dir /d $* doskey cp=copy $* doskey mv=move $* doskey rm=del $* doskey cat=type $* rem Easier navigation doskey cd=cd /D $* doskey cd..=cd .. doskey ..=cd .. doskey ...=cd ../.. doskey ....=cd ../../.. rem List files properly doskey l=dir /b $* doskey ll=dir /b $* rem Edit functionality IF NOT EXIST "C:\Program Files\Sublime Text 3" GOTO NOSUBLIME doskey edit="C:\Program Files\Sublime Text 3\sublime_text" $* :NOSUBLIME rem Open functionality doskey open=start $* @echo on
@echo off chcp 65001>nul prompt [%USERNAME%@%COMPUTERNAME% $p]$_$$$s rem Fake a UNIX environment doskey clear=cls doskey ls=dir /d $* doskey cp=copy $* doskey mv=move $* doskey rm=del $* doskey cat=type $* doskey touch=type nul>>$* rem Easier navigation doskey cd=cd /D $* doskey cd..=cd .. doskey ..=cd .. doskey ...=cd ../.. doskey ....=cd ../../.. rem List files properly doskey l=dir /b $* doskey ll=dir /b $* rem Edit functionality IF NOT EXIST "C:\Program Files\Sublime Text 3" GOTO NOSUBLIME doskey edit="C:\Program Files\Sublime Text 3\sublime_text" $* :NOSUBLIME rem Open functionality doskey open=start $* @echo on
Add touch tool that creates file if it does not exist
Add touch tool that creates file if it does not exist
Batchfile
mit
ArloL/dotfiles,ArloL/dotfiles
0165e7fab7afae38dddfdc0430d912c91027b9b3
Bin/DarunGrim3/CopySrc.bat
Bin/DarunGrim3/CopySrc.bat
REM Start copying files mkdir Src copy ..\..\Src\UI\Web\*.py Src\ copy ..\..\Src\UI\Web\*.bat Src\ xcopy /y /s /I ..\..\Src\UI\Web\data Src\data copy "..\..\Src\Bin Collector\*.py" Src\ copy "..\..\Src\Diff Inspector\*.py" Src\ copy "..\..\Src\Bin Collector\Bin\*.pyd" Src\ copy SetupDist.py Src\ copy ..\..\Src\UI\Web\DarunGrim3Sample01.cfg Src\DarunGrim3.cfg
REM Start copying files mkdir Src xcopy /D /S /I /Y ..\..\Src\UI\Web\*.py Src\ xcopy /D /S /I /Y ..\..\Src\UI\Web\*.bat Src\ xcopy /D /S /I /Y ..\..\Src\UI\Web\data Src\data xcopy /D /S /I /Y "..\..\Src\Bin Collector\*.py" Src\ xcopy /D /S /I /Y "..\..\Src\Diff Inspector\*.py" Src\ xcopy /D /S /I /Y "..\..\Src\Bin Collector\Bin\*.pyd" Src\ xcopy /D /S /I /Y SetupDist.py Src\ xcopy /D /S /I /Y ..\..\Src\UI\Web\DarunGrim3Sample01.cfg Src\DarunGrim3.cfg
Use xcopy to copy source files
Use xcopy to copy source files
Batchfile
bsd-3-clause
jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim
915f00864a47132436c7aa90d01a69d6246775f6
build.bat
build.bat
@echo off cls jshell --show-version ^ --enable-preview ^ -R-ea ^ -R-Djava.util.logging.config.file=src/logging.properties ^ -R-Debug ^ build.jsh
@echo off cls jshell --show-version ^ --enable-preview ^ -R-ea ^ -R-Djava.util.logging.config.file=src/logging.properties ^ -R-Debug ^ build.jsh java .bach/src/Bach.java help .bach/workspace/image/bin/bach version
Call generated single-file source-code program and custom runtime image
Call generated single-file source-code program and custom runtime image
Batchfile
mit
sormuras/bach,sormuras/bach
e0d280882d2dc4981e20cca378e873dff25b74c5
scripts/install.bat
scripts/install.bat
@ECHO on SETLOCAL FOR /f %%i IN ( 'dir /ad /b "C:\" |findstr /I "mongo"' ) DO CALL :movedir %%i :movedir SET "dest=%1" ECHO MOVE "C:\"%1 "C:\mongodb\" setx MYPATH "%PATH%;C:\mongodb\bin"
ECHO on FOR /f %%i IN ( 'dir /ad /b "C:\" ^|findstr /I "mongo"' ) DO CALL :movedir %%i :movedir SET "dest=%1" ECHO MOVE "C:\"%1 "C:\mongodb\" setx MYPATH "%PATH%;C:\mongodb\bin"
Revert "Minor change in batch script for finding directory"
Revert "Minor change in batch script for finding directory" This reverts commit b8b7b5670acb4ac43dedd8893df3f6fc2ba5232b.
Batchfile
apache-2.0
ThatGeoGuy/ENGO500-Webserver,ThatGeoGuy/ENGO500-Webserver
f365fd29393bd4c8e10d847412166312846453e6
sql/src/test/BugTracker/Tests/local_temp_table.SF-1865953.SQL.bat
sql/src/test/BugTracker/Tests/local_temp_table.SF-1865953.SQL.bat
@echo off echo user=monetdb> .monetdb echo password=monetdb>> .monetdb set LANG=en_US.UTF-8 prompt # $t $g echo on call mjclient -h %HOST% -p %MAPIPORT% -d %TSTDB% -f "%RELSRCDIR%\local_temp_table_data.SF-1865953.sql" call mjclient -h %HOST% -p %MAPIPORT% -d %TSTDB% " @del .monetdb
@echo off echo user=monetdb> .monetdb echo password=monetdb>> .monetdb set LANG=en_US.UTF-8 prompt # $t $g echo on call mclient -lsql -h %HOST% -p %MAPIPORT% -d %TSTDB% "%RELSRCDIR%\local_temp_table_data.SF-1865953.sql" call mclient -lsql -h %HOST% -p %MAPIPORT% -d %TSTDB% " @del .monetdb
Align it with the sh script....
Align it with the sh script....
Batchfile
mpl-2.0
zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb,zyzyis/monetdb
eafdae19b5d7bac54835cdca95383013eb356643
src/application.bat
src/application.bat
### application.bat - 2015 - Merel ### echo "Copyright Benoit MEREL - 2015" version = "2" build_hour = "11H00" echo "Build ${build_hour}" echo "version ${version}"
### application.bat - 2015 - Guillet ### echo "Copyright Thomas Guillet - 2015" version = "2" build_hour = "11H00" echo "Build ${build_hour}" echo "version ${version}"
Update header for New Member
Update header for New Member
Batchfile
apache-2.0
Benoitmerel/TP-git
8389e09681c960128eaab772898838fbfbd3fe73
fop.bat
fop.bat
@ECHO OFF rem %~dp0 is the expanded pathname of the current script under NT set LOCAL_FOP_HOME= if "%OS%"=="Windows_NT" set LOCAL_FOP_HOME=%~dp0 set LIBDIR=%LOCAL_FOP_HOME%lib set LOCALCLASSPATH=%LOCAL_FOP_HOME%build\fop.jar set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\xml-apis.jar set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\xercesImpl-2.2.1.jar set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\xalan-2.4.1.jar set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\batik.jar set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\avalon-framework-4.1.4.jar set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\commons-io-1.0-dev.jar set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\jimi-1.0.jar set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\jai_core.jar set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\jai_codec.jar java -cp %LOCALCLASSPATH% org.apache.fop.apps.Fop %1 %2 %3 %4 %5 %6 %7 %8
@ECHO OFF rem %~dp0 is the expanded pathname of the current script under NT set LOCAL_FOP_HOME= if "%OS%"=="Windows_NT" set LOCAL_FOP_HOME=%~dp0 set LIBDIR=%LOCAL_FOP_HOME%lib set LOCALCLASSPATH=%LOCAL_FOP_HOME%build\fop.jar set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\xml-apis.jar set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\xercesImpl-2.2.1.jar set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\xalan-2.4.1.jar set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\batik.jar set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\avalon-framework-4.1.4.jar set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\commons-io-dev-20030703.jar set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\jimi-1.0.jar set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\jai_core.jar set LOCALCLASSPATH=%LOCALCLASSPATH%;%LIBDIR%\jai_codec.jar java -cp %LOCALCLASSPATH% org.apache.fop.apps.Fop %1 %2 %3 %4 %5 %6 %7 %8
Adjust to version change of Commons IO
Adjust to version change of Commons IO git-svn-id: 102839466c3b40dd9c7e25c0a1a6d26afc40150a@196594 13f79535-47bb-0310-9956-ffa450edef68
Batchfile
apache-2.0
Distrotech/fop,StrategyObject/fop,argv-minus-one/fop,argv-minus-one/fop,spepping/fop-cs,Distrotech/fop,argv-minus-one/fop,argv-minus-one/fop,argv-minus-one/fop,spepping/fop-cs,StrategyObject/fop,spepping/fop-cs,StrategyObject/fop,StrategyObject/fop,Distrotech/fop,Distrotech/fop,StrategyObject/fop,spepping/fop-cs
5e3832ce7fe9fe79b0b42e3388d55c5196e89c41
tools/bin/jruby.bat
tools/bin/jruby.bat
@ECHO OFF set TOOLS_BIN=%~dp0 set JRUBY_BASE=%~dp0\..\jruby-1.7.11 set GEM_HOME= set GEM_PATH= set PATH=%TOOLS_BIN%\;%JRUBY_BASE%\bin;%PATH% set JRUBY_OPTS="-J-XX:+TieredCompilation -J-XX:TieredStopAtLevel=1 -J-Djruby.compile.invokedynamic=false -J-Djruby.compile.mode=OFF" %JRUBY_BASE%\bin\jruby.bat %*
@ECHO OFF set TOOLS_BIN=%~dp0 set JRUBY_BASE=%~dp0\..\jruby-1.7.11 set GEM_HOME= set GEM_PATH= set PATH=%TOOLS_BIN%\;%JRUBY_BASE%\bin;%PATH% set JRUBY_OPTS='-J-XX:+TieredCompilation -J-XX:TieredStopAtLevel=1 -J-Djruby.compile.invokedynamic=false -J-Djruby.compile.mode=OFF %JRUBY_OPTS%' %JRUBY_BASE%\bin\jruby.bat %*
Append to JRUBY_OPTS instead of overriding it
Append to JRUBY_OPTS instead of overriding it
Batchfile
apache-2.0
marques-work/gocd,Skarlso/gocd,VibyJocke/gocd,ketan/gocd,Skarlso/gocd,marques-work/gocd,zabil/gocd,tomzo/gocd,gocd/gocd,arvindsv/gocd,aj-jaswanth/gocd,kierarad/gocd,aj-jaswanth/gocd,kyleolivo/gocd,jyotisingh/gocd,aj-jaswanth/gocd,ibnc/gocd,arvindsv/gocd,stevem999/gocd,zabil/gocd,naveenbhaskar/gocd,marques-work/gocd,ibnc/gocd,ibnc/gocd,ibnc/gocd,zabil/gocd,soundcloud/gocd,tomzo/gocd,ketan/gocd,gocd/gocd,tomzo/gocd,kierarad/gocd,bdpiparva/gocd,bdpiparva/gocd,GaneshSPatil/gocd,ibnc/gocd,sghill/gocd,VibyJocke/gocd,jyotisingh/gocd,marques-work/gocd,VibyJocke/gocd,GaneshSPatil/gocd,Skarlso/gocd,stevem999/gocd,soundcloud/gocd,jyotisingh/gocd,GaneshSPatil/gocd,sghill/gocd,ketan/gocd,jyotisingh/gocd,arvindsv/gocd,tomzo/gocd,ind9/gocd,varshavaradarajan/gocd,ketan/gocd,stevem999/gocd,Skarlso/gocd,arvindsv/gocd,kyleolivo/gocd,jyotisingh/gocd,naveenbhaskar/gocd,naveenbhaskar/gocd,aj-jaswanth/gocd,naveenbhaskar/gocd,ollie314/gocd,sghill/gocd,soundcloud/gocd,sghill/gocd,varshavaradarajan/gocd,varshavaradarajan/gocd,ind9/gocd,kyleolivo/gocd,ibnc/gocd,GaneshSPatil/gocd,Skarlso/gocd,naveenbhaskar/gocd,bdpiparva/gocd,MFAnderson/gocd,GaneshSPatil/gocd,naveenbhaskar/gocd,varshavaradarajan/gocd,kyleolivo/gocd,ollie314/gocd,stephen-murby/gocd,gocd/gocd,stephen-murby/gocd,stephen-murby/gocd,zabil/gocd,kierarad/gocd,gocd/gocd,ind9/gocd,bdpiparva/gocd,aj-jaswanth/gocd,bdpiparva/gocd,soundcloud/gocd,arvindsv/gocd,MFAnderson/gocd,varshavaradarajan/gocd,soundcloud/gocd,MFAnderson/gocd,varshavaradarajan/gocd,kyleolivo/gocd,kierarad/gocd,ollie314/gocd,ollie314/gocd,jyotisingh/gocd,ketan/gocd,stephen-murby/gocd,stevem999/gocd,arvindsv/gocd,kierarad/gocd,ketan/gocd,bdpiparva/gocd,VibyJocke/gocd,marques-work/gocd,stephen-murby/gocd,Skarlso/gocd,GaneshSPatil/gocd,MFAnderson/gocd,sghill/gocd,ollie314/gocd,MFAnderson/gocd,stevem999/gocd,VibyJocke/gocd,ind9/gocd,kierarad/gocd,marques-work/gocd,tomzo/gocd,gocd/gocd,zabil/gocd,tomzo/gocd,ind9/gocd,gocd/gocd
110b91c530561eef86de461ff05703be76ca1e33
recipes/cspice/bld.bat
recipes/cspice/bld.bat
mkdir %LIBRARY_INC%\cspice copy "makeDynamicSpice.bat" %SRC_DIR%\src\cspice cd %SRC_DIR%\src\cspice call makeDynamicSpice.bat copy "cspice.dll" %LIBRARY_LIB% if errorlevel 1 exit 1 cd %SRC_DIR% copy "include\\*.h" %LIBRARY_INC%\cspice if errorlevel 1 exit 1
mkdir %LIBRARY_INC%\cspice copy "%RECIPE_DIR%\\makeDynamicSpice.bat" %SRC_DIR%\src\cspice copy "%RECIPE_DIR%\\cspice.def" %SRC_DIR%\src\cspice cd %SRC_DIR%\src\cspice call makeDynamicSpice.bat copy "cspice.dll" %LIBRARY_LIB% if errorlevel 1 exit 1 cd %SRC_DIR% copy "include\\*.h" %LIBRARY_INC%\cspice if errorlevel 1 exit 1
Copy required files to source directory
Copy required files to source directory
Batchfile
bsd-3-clause
johanneskoester/staged-recipes,Juanlu001/staged-recipes,goanpeca/staged-recipes,cpaulik/staged-recipes,stuertz/staged-recipes,kwilcox/staged-recipes,rvalieris/staged-recipes,ocefpaf/staged-recipes,dschreij/staged-recipes,asmeurer/staged-recipes,barkls/staged-recipes,scopatz/staged-recipes,goanpeca/staged-recipes,patricksnape/staged-recipes,petrushy/staged-recipes,jjhelmus/staged-recipes,conda-forge/staged-recipes,chrisburr/staged-recipes,NOAA-ORR-ERD/staged-recipes,sodre/staged-recipes,sodre/staged-recipes,synapticarbors/staged-recipes,scopatz/staged-recipes,pmlandwehr/staged-recipes,chohner/staged-recipes,mariusvniekerk/staged-recipes,rvalieris/staged-recipes,johanneskoester/staged-recipes,rmcgibbo/staged-recipes,NOAA-ORR-ERD/staged-recipes,basnijholt/staged-recipes,igortg/staged-recipes,patricksnape/staged-recipes,SylvainCorlay/staged-recipes,glemaitre/staged-recipes,guillochon/staged-recipes,dschreij/staged-recipes,synapticarbors/staged-recipes,birdsarah/staged-recipes,ReimarBauer/staged-recipes,SylvainCorlay/staged-recipes,jochym/staged-recipes,shadowwalkersb/staged-recipes,Cashalow/staged-recipes,pmlandwehr/staged-recipes,mcs07/staged-recipes,birdsarah/staged-recipes,basnijholt/staged-recipes,Juanlu001/staged-recipes,chohner/staged-recipes,ceholden/staged-recipes,jochym/staged-recipes,conda-forge/staged-recipes,jjhelmus/staged-recipes,barkls/staged-recipes,kwilcox/staged-recipes,hadim/staged-recipes,guillochon/staged-recipes,isuruf/staged-recipes,Cashalow/staged-recipes,ReimarBauer/staged-recipes,mariusvniekerk/staged-recipes,sodre/staged-recipes,sannykr/staged-recipes,igortg/staged-recipes,hadim/staged-recipes,ceholden/staged-recipes,ocefpaf/staged-recipes,petrushy/staged-recipes,jakirkham/staged-recipes,jakirkham/staged-recipes,asmeurer/staged-recipes,chrisburr/staged-recipes,stuertz/staged-recipes,isuruf/staged-recipes,mcs07/staged-recipes,shadowwalkersb/staged-recipes,cpaulik/staged-recipes,rmcgibbo/staged-recipes,sannykr/staged-recipes,glemaitre/staged-recipes
418f0e8dd2c2db316a5b2822c78d0dfa4e64c0b3
src/build/do_build.bat
src/build/do_build.bat
@echo off echo This script is meant for the Couchbase build server. It cannot be used by developers. pushd %~dp0..\Couchbase.Lite if not exist ..\couchbase.snk ( echo Private key not found, aborting... popd exit /b 1 ) "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\MSBuild.exe" Couchbase.Lite.csproj /t:Transform /p:TransformFile="Properties\DynamicAssemblyInfo.tt" dotnet restore dotnet build -c Packaging pushd ..\Couchbase.Lite.Support.UWP if not exist ..\..\nuget.exe ( powershell -Command "Invoke-WebRequest https://dist.nuget.org/win-x86-commandline/latest/nuget.exe -OutFile ..\..\nuget.exe" ) ..\..\nuget.exe restore "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\MSBuild.exe" Couchbase.Lite.Support.UWP.csproj /p:Configuration=Packaging popd popd
@echo off echo This script is meant for the Couchbase build server. It cannot be used by developers. pushd %~dp0..\Couchbase.Lite if not exist ..\couchbase.snk ( echo Private key not found, aborting... popd exit /b 1 ) if not defined NUGET_REPO ( echo NUGET_REPO not defined, aborting... popd exit /b 1 ) "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\MSBuild.exe" Couchbase.Lite.csproj /t:Transform /p:TransformFile="Properties\DynamicAssemblyInfo.tt" dotnet restore -s %NUGET_REPO% dotnet build -c Packaging pushd ..\Couchbase.Lite.Support.UWP if not exist ..\..\nuget.exe ( powershell -Command "Invoke-WebRequest https://dist.nuget.org/win-x86-commandline/latest/nuget.exe -OutFile ..\..\nuget.exe" ) ..\..\nuget.exe restore -Source %NUGET_REPO% "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\MSBuild.exe" Couchbase.Lite.Support.UWP.csproj /p:Configuration=Packaging popd popd
Modify build script to pass in the source of the CI nuget packages
Modify build script to pass in the source of the CI nuget packages
Batchfile
apache-2.0
couchbase/couchbase-lite-net,couchbase/couchbase-lite-net,couchbase/couchbase-lite-net
5536aba5eda12ccdd4d26e19a2456e49208c4d0b
installer/scripts/setup.bat
installer/scripts/setup.bat
@echo off rem $Id$ ::remove any quotes from JAVA_HOME and EXIST_HOME env var, will be re-added below for /f "delims=" %%G IN (%JAVA_HOME%) DO SET JAVA_HOME=%%G for /f "delims=" %%G IN (%EXIST_HOME%) DO SET EXIST_HOME=%%G rem will be set by the installer set EXIST_HOME=$INSTALL_PATH rem will be set by the installer set JAVA_HOME=$JAVA_HOME :gotJavaHome set JAVA_CMD="%JAVA_HOME%\bin\java" set JAVA_OPTS="-Xms64m -Xmx768m" rem make sure there's the jetty tmp directory mkdir "%EXIST_HOME%\tools\jetty\tmp" rem echo "JAVA_HOME: %JAVA_HOME%" rem echo "EXIST_HOME: %EXIST_HOME%" echo %JAVA_OPTS% %JAVA_CMD% "%JAVA_OPTS%" -Dexist.home="%EXIST_HOME%" -Duse.autodeploy.feature=false -jar "%EXIST_HOME%\start.jar" org.exist.installer.Setup %1 %2 %3 %4 %5 %6 %7 %8 %9 :eof
@echo off ::will be set by the installer set JAVA_HOME="$JAVA_HOME" set EXIST_HOME="$INSTALL_PATH" ::remove any quotes from JAVA_HOME and EXIST_HOME env var, will be re-added below for /f "delims=" %%G IN (%JAVA_HOME%) DO SET JAVA_HOME=%%G for /f "delims=" %%G IN (%EXIST_HOME%) DO SET EXIST_HOME=%%G :gotJavaHome set JAVA_CMD="%JAVA_HOME%\bin\java" set JAVA_OPTS="-Xms64m -Xmx768m" ::make sure there's the jetty tmp directory mkdir "%EXIST_HOME%\tools\jetty\tmp" echo "JAVA_HOME: [%JAVA_HOME%]" echo "EXIST_HOME: [%EXIST_HOME%]" echo "EXIST_OPTS: [%JAVA_OPTS%]" echo: echo: %JAVA_CMD% "%JAVA_OPTS%" -Dexist.home="%EXIST_HOME%" -Duse.autodeploy.feature=false -jar "%EXIST_HOME%\start.jar" org.exist.installer.Setup %1 %2 %3 %4 %5 %6 %7 %8 %9 :eof
Make sure to correctly quote/unquote Windows paths in the installer
[bugfix] Make sure to correctly quote/unquote Windows paths in the installer
Batchfile
lgpl-2.1
eXist-db/exist,wolfgangmm/exist,windauer/exist,ambs/exist,dizzzz/exist,eXist-db/exist,dizzzz/exist,hungerburg/exist,adamretter/exist,opax/exist,hungerburg/exist,opax/exist,opax/exist,lcahlander/exist,eXist-db/exist,lcahlander/exist,dizzzz/exist,wolfgangmm/exist,olvidalo/exist,ambs/exist,dizzzz/exist,eXist-db/exist,hungerburg/exist,ambs/exist,windauer/exist,dizzzz/exist,dizzzz/exist,lcahlander/exist,lcahlander/exist,hungerburg/exist,olvidalo/exist,olvidalo/exist,adamretter/exist,windauer/exist,wolfgangmm/exist,lcahlander/exist,adamretter/exist,wolfgangmm/exist,eXist-db/exist,wolfgangmm/exist,adamretter/exist,olvidalo/exist,opax/exist,adamretter/exist,olvidalo/exist,hungerburg/exist,windauer/exist,windauer/exist,ambs/exist,eXist-db/exist,opax/exist,windauer/exist,lcahlander/exist,ambs/exist,adamretter/exist,ambs/exist,wolfgangmm/exist
353b0c5e3d48ac2203971e2046b5794019710ab6
HexEdit/MakeHelpMap.bat
HexEdit/MakeHelpMap.bat
echo Creating map files copy /y helpid.hm+resource.hm+hlp\HexEdit.hm+I:\Micros~1\vc98\mfc\include\afxhelp.hm+D:\bcg590\BCGControlBar\help\BCGControlBar.hm HexeditMap.tmp sed "s/^HID/#define HID/" <HexeditMap.tmp >HexeditMap2.tmp del HexeditMap.tmp sed "s/^AFX_HID/#define AFX_HID/" <HexeditMap2.tmp >HTMLHelp\HexeditMap.hm del HexeditMap2.tmp
echo Creating map files REM Get MFC help IDs rem copy /y I:\Micros~1\vc98\mfc\include\afxhelp.hm afxhelp.tmp copy /y "C:\Program Files\Microsoft Visual Studio .NET\Vc7\atlmfc\include\afxhelp.hm" afxhelp.tmp REM Get BCG help IDs rem copy /y D:\bcg590\BCGControlBar\help\BCGControlBar.hm bcghelp.tmp copy /y "I:\Devel\BCG6_2\BCGControlBar\Help\BCGControlBar.hm" .\bcghelp.tmp REM Copy all help IDs into one file copy /y helpid.hm+resource.hm+hlp\HexEdit.hm+afxhelp.tmp+bcghelp.tmp HexeditMap.tmp rem del afxhelp.tmp rem del bcghelp.tmp REM Make sure they all start with #define which is what RoboHelp expects sed "s/^HID/#define HID/" <HexeditMap.tmp >HexeditMap2.tmp rem del HexeditMap.tmp sed "s/^AFX_HID/#define AFX_HID/" <HexeditMap2.tmp >HTMLHelp\HexeditMap.h rem del HexeditMap2.tmp
Fix creation of help map file for Robohelp - different location for MFC and BCG .hm file - changes needed to handle spaces in file name - output to HexEditMap.h (not .hm)
Fix creation of help map file for Robohelp - different location for MFC and BCG .hm file - changes needed to handle spaces in file name - output to HexEditMap.h (not .hm) git-svn-id: c806da28ca781a1e2f2d0b1fde2a9d9a144b325a@158 295070fd-a27b-da4f-a32e-77c6a882a0e3
Batchfile
mit
AndrewWPhillips/HexEdit,AndrewWPhillips/HexEdit,Andrew-Phillips/HexEdit,AndrewWPhillips/HexEdit,Andrew-Phillips/HexEdit,Andrew-Phillips/HexEdit
832b6ac9aba883d97c6cf5eec694c03323a85d4f
scripts/win-build.bat
scripts/win-build.bat
:: Helper script to build Spectrecoin on Windows using VS2017 and QT. IF "%QTDIR%" == "" GOTO NOQT :YESQT set CALL_DIR=%cd% set SRC_DIR=%cd%\src set DIST_DIR=%SRC_DIR%\dist set BUILD_DIR=%SRC_DIR%\build set OUT_DIR=%SRC_DIR%\bin call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat" cd cd %SRC_DIR% dir echo on rmdir /S /Q "%DIST_DIR%" mkdir "%DIST_DIR%" mkdir "%BUILD_DIR%" mkdir "%OUT_DIR%" pushd "%BUILD_DIR%" %QTDIR%\bin\qmake.exe ^ -spec win32-msvc ^ "CONFIG += release" ^ "%SRC_DIR%\src.pro" nmake popd %QTDIR%\bin\windeployqt "%OUT_DIR%\Spectrecoin.exe" ::ren "%OUT_DIR%" Spectrecoin ::echo "The prepared package is in: %SRC_DIR%\Spectrecoin" echo "Everything is OK" GOTO END :NOQT @ECHO The QTDIR environment variable was NOT detected! :END cd %CALL_DIR%
:: Helper script to build Spectrecoin on Windows using VS2017 and QT. IF "%QTDIR%" == "" GOTO NOQT :YESQT set CALL_DIR=%cd% set SRC_DIR=%cd%\src set DIST_DIR=%SRC_DIR%\dist set BUILD_DIR=%SRC_DIR%\build set OUT_DIR=%SRC_DIR%\bin call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat" cd cd %SRC_DIR% dir echo on del "%OUT_DIR%\Spectrecoin.exe" 2>nul rmdir /S /Q "%DIST_DIR%" mkdir "%DIST_DIR%" mkdir "%BUILD_DIR%" mkdir "%OUT_DIR%" pushd "%BUILD_DIR%" %QTDIR%\bin\qmake.exe ^ -spec win32-msvc ^ "CONFIG += release" ^ "%SRC_DIR%\src.pro" nmake popd %QTDIR%\bin\windeployqt "%OUT_DIR%\Spectrecoin.exe" ::ren "%OUT_DIR%" Spectrecoin ::echo "The prepared package is in: %SRC_DIR%\Spectrecoin" echo "Everything is OK" GOTO END :NOQT @ECHO The QTDIR environment variable was NOT detected! :END cd %CALL_DIR%
Remove previous win executable before build
Remove previous win executable before build
Batchfile
mit
spectrecoin/spectre,spectrecoin/spectre,spectrecoin/spectre,spectrecoin/spectre,spectrecoin/spectre,spectrecoin/spectre
54f5f616b92173e4855dcba4294829a5eb1b209f
Dependencies/setupFMILibrary.bat
Dependencies/setupFMILibrary.bat
@ECHO OFF REM $Id$ REM Bat script building FMILibrary dependency automatically REM Author: Peter Nordin [email protected] set basedir=%~dp0 set name=FMILibrary set codedir=%basedir%\%name%_code set builddir=%basedir%\%name%_build set installdir=%basedir%\%name% set OLDPATH=%PATH% call setHopsanBuildPaths.bat REM We don want msys in the path so we have to set it manually set PATH=%mingw_path%;%cmake_path%;%OLDPATH% REM build mkdir %builddir% cd %builddir% cmake -Wno-dev -G "MinGW Makefiles" -DFMILIB_FMI_PLATFORM="win64" -DFMILIB_INSTALL_PREFIX=%installdir% %codedir% mingw32-make.exe -j4 mingw32-make.exe install cd %basedir% echo. echo setupFMILibrary.bat done pause
@ECHO OFF REM $Id$ REM Bat script building FMILibrary dependency automatically REM Author: Peter Nordin [email protected] set basedir=%~dp0 set name=FMILibrary set zipdir=%name%-2.0.2 set zipfile=tools\%zipdir%-src.zip set codedir=%basedir%\%name%_code set builddir=%basedir%\%name%_build set installdir=%basedir%\%name% REM Unpack echo. echo Clearing old directory (if it exists) if exist %codedir% rd /s/q %codedir% echo Unpacking %zipfile% tools\7z\7za.exe x %zipfile% -y > nul move %zipdir% %codedir% set OLDPATH=%PATH% call setHopsanBuildPaths.bat REM We don want msys in the path so we have to set it manually set PATH=%mingw_path%;%cmake_path%;%OLDPATH% REM build mkdir %builddir% cd %builddir% cmake -Wno-dev -G "MinGW Makefiles" -DFMILIB_FMI_PLATFORM="win64" -DFMILIB_INSTALL_PREFIX=%installdir% %codedir% mingw32-make.exe -j4 mingw32-make.exe install cd %basedir% echo. echo setupFMILibrary.bat done pause
Add zip file unpacking to FMILibrary windows setup script
Add zip file unpacking to FMILibrary windows setup script
Batchfile
apache-2.0
Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan
1eec721c7babec5470844ee0b1e91bb7f5ecf423
run_local.cmd
run_local.cmd
@echo off pushd %~dp0 set DEPLOYMENT=deploy set NUGET=packages echo > build.info call deploy.cmd call run_tests.cmd %* popd
@echo off pushd %~dp0 set DEPLOYMENT=deploy set NUGET=packages echo. 2> build.info call deploy.cmd call run_tests.cmd %* popd
Write empty build.info on local run
Write empty build.info on local run
Batchfile
apache-2.0
Omenia/robotframework-whitelibrary,Omenia/robotframework-whitelibrary
6603f9a92596316ea7a67a4d351dc398a822584a
BuildScript/build.cmd
BuildScript/build.cmd
@echo off pushd %~dp0 SET PACKAGEPATH=.\packages\ SET NUGET=.\tools\nuget\NuGet.exe SET NUGETOPTIONS=-ConfigFile .\tools\nuget\NuGet.Config -OutputDirectory %PACKAGEPATH% -ExcludeVersion IF NOT EXIST %PACKAGEPATH%FAKE\Ver_4.23.0 ( %NUGET% install FAKE -Version 4.23.0 %NUGETOPTIONS% COPY NUL %PACKAGEPATH%FAKE\Ver_4.23.0 ) IF NOT EXIST %PACKAGEPATH%FAKE.BuildLib\Ver_0.1.4 ( %NUGET% install FAKE.BuildLib -Version 0.1.4 %NUGETOPTIONS% COPY NUL %PACKAGEPATH%FAKE.BuildLib\Ver_0.1.4 ) set encoding=utf-8 "%PACKAGEPATH%FAKE\tools\FAKE.exe" build.fsx %* popd
@echo off pushd %~dp0 SET PACKAGEPATH=.\packages\ SET NUGET=.\tools\nuget\NuGet.exe SET NUGETOPTIONS=-ConfigFile .\tools\nuget\NuGet.Config -OutputDirectory %PACKAGEPATH% -ExcludeVersion IF NOT EXIST %PACKAGEPATH%FAKE\Ver_4.23.0 ( %NUGET% install FAKE -Version 4.23.0 %NUGETOPTIONS% COPY NUL %PACKAGEPATH%FAKE\Ver_4.23.0 ) IF NOT EXIST %PACKAGEPATH%FAKE.BuildLib\Ver_0.1.5 ( %NUGET% install FAKE.BuildLib -Version 0.1.5 %NUGETOPTIONS% COPY NUL %PACKAGEPATH%FAKE.BuildLib\Ver_0.1.5 ) set encoding=utf-8 "%PACKAGEPATH%FAKE\tools\FAKE.exe" build.fsx %* popd
Use Fake.BuildLib 0.1.5 in Build.cmd
Use Fake.BuildLib 0.1.5 in Build.cmd
Batchfile
mit
SaladLab/BuildToolkit,SaladLab/BuildToolkit
abbfcec5922bfe7eb1f741d5ec174b99090f3ea1
PackUp.bat
PackUp.bat
"c:\Program Files\7-Zip\7z" a -tzip ..\folderAccountBeta.xpi * -x!PackUp.bat
"c:\Program Files\7-Zip\7z" a -tzip ..\folderAccountBeta.xpi * -x!PackUp.bat -x!.git
Fix packup script to work with git repo
Fix packup script to work with git repo
Batchfile
mit
eykamp/Folder-Account
e2f89c347f4f89dc10e70588a780d1ddb6dc0e6b
bat/run.cmd
bat/run.cmd
@echo off cd C:\Users\dzony\Documents\projects\system\env\system\Scripts start cmd /k "activate && cd C:\Users\dzony\Documents\projects\system\server__client\ && python start_server.py" sleep 0.1 start cmd /k "activate && cd C:\Users\dzony\Documents\projects\system\backend\ && python start.py"
@echo off cd C:\Users\dzony\Documents\projects\system\env\system\Scripts start cmd /k "activate && cd C:\Users\dzony\Documents\projects\system\server__client\ && python start.py" sleep 0.1 start cmd /k "activate && cd C:\Users\dzony\Documents\projects\system\backend\ && python start.py"
Update bat file for starting system
Update bat file for starting system
Batchfile
mit
dzon4xx/system,dzon4xx/system,dzon4xx/system
337a17e3582fae2972b7ff2fc41f4ed57313c830
windows/nsis-installer/oq-console.bat
windows/nsis-installer/oq-console.bat
@echo off setlocal set mypath=%~dp0 set PATH=%PATH%;%mypath%\python2.7 set PYTHONPATH=%mypath%\lib set OQ_SITE_CFG_PATH=%mypath% doskey oq=python.exe -m openquake.commands.__main__ $* doskey oq-engine=python.exe -m openquake.commonlib.commands engine $* echo OpenQuake environment loaded cmd /k endlocal
@echo off setlocal set mypath=%~dp0 set PATH=%PATH%;%mypath%\python2.7 set PYTHONPATH=%mypath%\lib set OQ_SITE_CFG_PATH=%mypath% 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 deprecation warnign and fix a command
Add deprecation warnign and fix a command
Batchfile
agpl-3.0
gem/oq-installers,gem/oq-nsis,gem/oq-installers
b668f23167d7e6e5a475aa4e374c1397e413c924
scripts/build_windows.cmd
scripts/build_windows.cmd
@echo Off echo ====== Starting to build dvc installer for Windows... ====== if not exist dvc\NUL (echo Error: Please run this script from repository root && goto :error) rmdir /Q /S build rmdir /Q /S dist del /Q /S dvc.spec del /Q /S "dvc-*.exe" where pip if %errorlevel% neq 0 (echo Error: pip not found && goto :error) if not exist "C:\Program Files (x86)\Inno Setup 5\ISCC.exe" (echo Error: Couldn't find Inno Setup compiler. Please go to jrsoftware.org/isinfo.php and install Inno Setup 5 && goto :error) echo ====== Installing requirements... ====== call pip install -r requirements.txt || goto :error call pip install pyinstaller || goto :error echo ====== Building dvc binary... ====== call pyinstaller --onefile --additional-hooks-dir scripts\hooks dvc/__main__.py --name dvc --specpath build echo ====== Building dvc installer... ====== set PYTHONPATH=%cd% call python scripts\innosetup\config_gen.py || goto :error call "C:\Program Files (x86)\Inno Setup 5\iscc" scripts\innosetup\setup.iss || goto :error echo ====== DONE ====== goto :EOF :error echo ====== FAIL ====== exit /b 1
@echo Off echo ====== Starting to build dvc installer for Windows... ====== if not exist dvc\NUL (echo Error: Please run this script from repository root && goto :error) rmdir /Q /S build rmdir /Q /S dist del /Q /S dvc.spec del /Q /S "dvc-*.exe" where pip if %errorlevel% neq 0 (echo Error: pip not found && goto :error) if not exist "C:\Program Files (x86)\Inno Setup 5\ISCC.exe" (echo Error: Couldn't find Inno Setup compiler. Please go to jrsoftware.org/isinfo.php and install Inno Setup 5 && goto :error) echo ====== Installing requirements... ====== call pip install -r requirements.txt || goto :error call pip install pyinstaller || goto :error echo ====== Building dvc binary... ====== call pyinstaller --onefile --additional-hooks-dir scripts\hooks dvc/__main__.py --name dvc --specpath build echo ====== Copying additional files... ====== copy scripts\innosetup\addSymLinkPermissions.ps1 dist\ || goto :error echo ====== Building dvc installer... ====== set PYTHONPATH=%cd% call python scripts\innosetup\config_gen.py || goto :error call "C:\Program Files (x86)\Inno Setup 5\iscc" scripts\innosetup\setup.iss || goto :error echo ====== DONE ====== goto :EOF :error echo ====== FAIL ====== exit /b 1
Revert "build: win: don't look for symlink ps script"
Revert "build: win: don't look for symlink ps script" This reverts commit 4164eddb920ad4df2b9dd805497424eb53caebf9.
Batchfile
apache-2.0
dmpetrov/dataversioncontrol,efiop/dvc,dataversioncontrol/dvc,dataversioncontrol/dvc,dmpetrov/dataversioncontrol,efiop/dvc
0e3d952a4889d839c640b0af25e2c583fd2ee78f
phalcon.bat
phalcon.bat
@echo off set PTOOLSPATH="%~dp0\" php %PTOOLSPATH%phalcon.php %*
@echo off set PTOOLSPATH=%~dp0 php %PTOOLSPATH%phalcon.php %*
Fix initialization home directory in Windows batch file.
Fix initialization home directory in Windows batch file.
Batchfile
bsd-3-clause
rodrigoramosrx2/phalcon-devtools,rodrigoramosrx2/phalcon-devtools,rodrigoramosrx2/phalcon-devtools,rodrigoramosrx2/phalcon-devtools
a52e50cc49e84cddbaf868b767b7f6fe046b3ec3
chrome/7-Zip.bat
chrome/7-Zip.bat
"C:\Program Files\7-Zip\7z.exe" u -uq0 -mx9 psdle.zip ./psdle/* -r -x!*.db -x!*.ini
"C:\Program Files\7-Zip\7z.exe" u -uq0 -mx9 psdle.zip -mtc- ./psdle/* -r -x!*.db -x!*.ini
Update Chrome 7z bat file.
Update Chrome 7z bat file.
Batchfile
mit
RePod/psdle
ca7c57b2c5ab36a1f03c98704f1e03fdf9bcce67
build/RunTests.bat
build/RunTests.bat
dotnet test "test\Infrastructure\Skeleton.Common.Tests" -c %1 dotnet test "test\Infrastructure\Skeleton.CQRS.Implementations.Tests" -c %1 dotnet test "test\Infrastructure\Skeleton.Dapper.Tests" -c %1 cd "test\Web.Tests" dotnet test -c %1
dotnet test "test\Infrastructure\Skeleton.Common.Tests" -c %1 dotnet test "test\Infrastructure\Skeleton.CQRS.Implementations.Tests" -c %1 dotnet test "test\Infrastructure\Skeleton.Dapper.Tests" -c %1 cd "test\Web.Tests" dotnet test -c %1 cd "..\.."
Fix for tests running script was added
Fix for tests running script was added
Batchfile
mit
litichevskiydv/WebInfrastructure,litichevskiydv/WebInfrastructure
1b6c49f6b349589db6f3f6247dd78b3974973392
virtualenv_install.bat
virtualenv_install.bat
@ECHO OFF :: Performs necessary setup steps to allow the use of :: virtualenv commands such as "mkvirtualenv [ENV_NAME]" :: for creating and using Python virtual environments. python -m pip install --upgrade virtualenv python -m pip install --upgrade virtualenvwrapper-win echo: echo: echo: *** You may now use virtualenv commands in your command shell. *** echo: echo: virtualenv commands: echo: * "mkvirtualenv [ENV_NAME]" - Create a Python virtual environment echo: * "deactivate" - Exit the current virtual environment echo: * "workon [ENV_NAME]" - Enter an existing virtual environment echo: * "lsvirtualenv" OR "workon" - List all virtual environments echo: * "rmvirtualenv [ENV_NAME]" - Delete a virtual environment echo: echo: Example: echo: mkvirtualenv seleniumbase echo: mkvirtualenv seleniumbase --python=[PATH_TO_PYTHON] echo:
@ECHO OFF :: Performs necessary setup steps to allow the use of :: virtualenv commands such as "mkvirtualenv [ENV_NAME]" :: for creating and using Python virtual environments. python -m pip install --upgrade virtualenvwrapper-win echo: echo: echo: *** You may now use virtualenv commands in your command shell. *** echo: echo: virtualenv commands: echo: * "mkvirtualenv [ENV_NAME]" - Create a Python virtual environment echo: * "deactivate" - Exit the current virtual environment echo: * "workon [ENV_NAME]" - Enter an existing virtual environment echo: * "lsvirtualenv" OR "workon" - List all virtual environments echo: * "rmvirtualenv [ENV_NAME]" - Delete a virtual environment echo: echo: Example: echo: mkvirtualenv seleniumbase echo: mkvirtualenv seleniumbase --python=[PATH_TO_PYTHON] echo:
Simplify virtualenv installation on Windows
Simplify virtualenv installation on Windows
Batchfile
mit
seleniumbase/SeleniumBase,mdmintz/SeleniumBase,mdmintz/SeleniumBase,seleniumbase/SeleniumBase,seleniumbase/SeleniumBase,mdmintz/SeleniumBase,mdmintz/SeleniumBase,seleniumbase/SeleniumBase
84493a8bb6cc3f201ddd00d402028fc1e386b024
cmake/scripts/msvc_build.bat
cmake/scripts/msvc_build.bat
@call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsDevCmd.bat" SET PATH=%PROJECT_PATH%\3rdparty\bin;%MYSQL_CONNECTOR_PATH%\lib;%MYSQL_PATH%\bin;%PYTHON_PATH%\Scripts;%PATH% cp "%MYSQL_CONNECTOR_PATH%\lib\libmysql.dll" "%PROJECT_PATH%\build\bin\%CONFIGURATION% cp "%MYSQL_CONNECTOR_PATH%\lib\libmysql.dll" "%PROJECT_PATH%\build\bin\ cmake -GNinja -D%CONFIGURATION%=TRUE -DCMAKE_BUILD_TYPE=%CONFIGURATION% .. cmake --build . --config %CONFIGURATION%
@call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsDevCmd.bat" SET PATH=%PROJECT_PATH%\3rdparty\bin;%MYSQL_CONNECTOR_PATH%\lib;%MYSQL_PATH%\bin;%PYTHON_PATH%\Scripts;%PATH% REM cp "%MYSQL_CONNECTOR_PATH%\lib\libmysql.dll" "%PROJECT_PATH%\build\bin\%CONFIGURATION% cp "%MYSQL_CONNECTOR_PATH%\lib\libmysql.dll" "%PROJECT_PATH%\build\bin\" %PROJECT_PATH%\cmake\scripts\robocopy.bat "%PROJECT_PATH%\scripts" "%PROJECT_PATH%\build\bin\scripts" "*.lua" cmake -GNinja -D%CONFIGURATION%=TRUE -DCMAKE_BUILD_TYPE=%CONFIGURATION% .. cmake --build . --config %CONFIGURATION%
Update uploaded artifact on appveyor to include the scripts dir
Update uploaded artifact on appveyor to include the scripts dir
Batchfile
apache-2.0
RavenX8/osIROSE-new,RavenX8/osIROSE-new,dev-osrose/osIROSE-new,RavenX8/osIROSE-new,dev-osrose/osIROSE-new,dev-osrose/osIROSE-new
c53fa47adc39d4a261379d8036a96c84b6fb4a9a
install.bat
install.bat
@echo off pushd "%~dp0" if exist cs (goto okcs) else (echo "No cs folder found." && goto exit) :okcs if exist vb (goto okvb) else (echo "No vb folder found." && goto exit) :okvb if [%1]==[] ( echo Please specify Visual Studio version, e.g., 2017 goto exit ) else ( echo Using version %1 set "D=%userprofile%\Documents\Visual Studio %1\Templates\ProjectTemplates" ) set "F=%TEMP%\Revit2020AddinWizardCs0.zip" echo Creating C# wizard archive %F%... cd cs ..\zip\zip.exe -r "%F%" * cd .. echo Copying C# wizard archive to %D%\Visual C#... copy "%F%" "%D%\Visual C#" set "F=%TEMP%\Revit2020AddinWizardVb0.zip" echo Creating VB wizard archive %F%... cd vb ..\zip\zip.exe -r "%F%" * cd .. echo Copying VB wizard archive to %D%\Visual Basic... copy "%F%" "%D%\Visual Basic" :exit
@echo off pushd "%~dp0" if exist cs (goto okcs) else (echo "No cs folder found." && goto exit) :okcs if exist vb (goto okvb) else (echo "No vb folder found." && goto exit) :okvb if [%1]==[] ( echo Please specify Visual Studio version, e.g., 2017 goto exit ) else ( echo Using version %1 set "D=%userprofile%\Documents\Visual Studio %1\Templates\ProjectTemplates" ) set "F=%TEMP%\Revit2020AddinWizardCs0.zip" echo Creating C# wizard archive %F%... cd cs ..\zip\zip.exe -r "%F%" * cd .. echo Copying C# wizard archive to %D%\Visual C#... xcopy "%F%" "%D%\Visual C#\" set "F=%TEMP%\Revit2020AddinWizardVb0.zip" echo Creating VB wizard archive %F%... cd vb ..\zip\zip.exe -r "%F%" * cd .. echo Copying VB wizard archive to %D%\Visual Basic... xcopy "%F%" "%D%\Visual Basic\" :exit
Use xcopy rather than copy
Use xcopy rather than copy Use xcopy rather than copy because copy creates the directory as a file without an extension rather than a directory.
Batchfile
mit
jeremytammik/VisualStudioRevitAddinWizard
0d3007c1e60545b245bae13e9b74c4eda5b1b14c
Tools/AppVeyor/Test.cmd
Tools/AppVeyor/Test.cmd
@echo off call "..\VsDevCmd.cmd" set platform="%1" if "%1" == "AnyCPU" ( set platform="x86" ) set vstest="%VSINSTALLDIR%Common7\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe" for /r ..\..\Tests\Magick.NET.Tests\bin %%a in (*.dll) do ( if "%%~nxa"=="Magick.NET.Tests.dll" ( echo "Running tests from: %%~dpnxa" %vstest% %%~dpnxa /inIsolation /platform:%platform% /TestAdapterPath:%%~dpa /logger:AppVeyor if %errorlevel% neq 0 exit /b %errorlevel% ) )
@echo off call "..\VsDevCmd.cmd" set platform="%1" if "%1" == "AnyCPU" ( set platform="x86" ) set vstest="%VSINSTALLDIR%\Common7\IDE\Extensions\TestPlatform\vstest.console.exe" for /r ..\..\Tests\Magick.NET.Tests\bin %%a in (*.dll) do ( if "%%~nxa"=="Magick.NET.Tests.dll" ( echo "Running tests from: %%~dpnxa" %vstest% %%~dpnxa /inIsolation /platform:%platform% /TestAdapterPath:%%~dpa /logger:AppVeyor if %errorlevel% neq 0 exit /b %errorlevel% ) )
Use correct path for vstest.console.exe
Use correct path for vstest.console.exe
Batchfile
apache-2.0
dlemstra/Magick.NET,dlemstra/Magick.NET
1eb6bdafb09b8ebd392bea37eab3fc7e69204808
bin/iex.bat
bin/iex.bat
@if defined ELIXIR_CLI_ECHO (@echo on) else (@echo off) setlocal if /I ""%1""==""--help"" goto documentation if /I ""%1""==""-h"" goto documentation if /I ""%1""==""/h"" goto documentation if ""%1""==""/?"" goto documentation goto run :documentation echo Usage: %~nx0 [options] [.exs file] [data] echo. echo The following options are exclusive to IEx: echo. echo --dot-iex "PATH" Overrides default .iex.exs file and uses path instead; echo path can be empty, then no file will be loaded echo --remsh NAME Connects to a node using a remote shell echo --werl Uses Erlang's Windows shell GUI (Windows only) echo. echo Set the IEX_WITH_WERL environment variable to always use werl. echo It accepts all other options listed by "elixir --help". goto end :run if defined IEX_WITH_WERL (@set __ELIXIR_IEX_FLAGS=--werl) else (set __ELIXIR_IEX_FLAGS=) call "%~dp0\elixir.bat" --no-halt --erl "-noshell -user Elixir.IEx.CLI" +iex %__ELIXIR_IEX_FLAGS% %* :end endlocal
@if defined ELIXIR_CLI_ECHO (@echo on) else (@echo off) setlocal if /I ""%1""==""--help"" goto documentation if /I ""%1""==""-h"" goto documentation if /I ""%1""==""/h"" goto documentation if ""%1""==""/?"" goto documentation goto run :documentation echo Usage: %~nx0 [options] [.exs file] [data] echo. echo The following options are exclusive to IEx: echo. echo --dot-iex "PATH" Overrides default .iex.exs file and uses path instead; echo path can be empty, then no file will be loaded echo --remsh NAME Connects to a node using a remote shell echo --werl Uses Erlang's Windows shell GUI (Windows only) echo. echo Set the IEX_WITH_WERL environment variable to always use werl. echo It accepts all other options listed by "elixir --help". goto end :run if defined IEX_WITH_WERL (set __ELIXIR_IEX_FLAGS=--werl) else (set __ELIXIR_IEX_FLAGS=) call "%~dp0\elixir.bat" --no-halt --erl "-noshell -user Elixir.IEx.CLI" +iex %__ELIXIR_IEX_FLAGS% %* :end endlocal
Remove unecessary @ in bat file
Remove unecessary @ in bat file
Batchfile
apache-2.0
michalmuskala/elixir,joshprice/elixir,elixir-lang/elixir
ef2b6971842be7e94d6174f3fde6a995de8309b9
test-w32-dl-loadlib-shellcode.cmd
test-w32-dl-loadlib-shellcode.cmd
@ECHO OFF ECHO + Checking shellcode for NULL bytes: ECHO + w32-dl-loadlib-shellcode.bin BETA3 h --nullfree w32-dl-loadlib-shellcode.bin > nul IF ERRORLEVEL 1 GOTO :FAILED ECHO + w32-dl-loadlib-shellcode-esp.bin BETA3 h --nullfree w32-dl-loadlib-shellcode-esp.bin > nul IF ERRORLEVEL 1 GOTO :FAILED ECHO + Running shellcode: ECHO + w32-dl-loadlib-shellcode.bin w32-testival.exe [$]=ascii:w32-dl-loadlib-shellcode.bin eip=$ --EH | match_output.py "Hello, world![\r\n]*" --verbose > nul IF ERRORLEVEL 1 GOTO :FAILED ECHO + w32-dl-loadlib-shellcode-esp.bin w32-testival.exe [$+800]=ascii:w32-dl-loadlib-shellcode-esp.bin eip=$+800 esp=$+7FF --EH | match_output.py "Hello, world![\r\n]*" --verbose > nul IF ERRORLEVEL 1 GOTO :FAILED EXIT /B 0 :FAILED ECHO * Test failed! EXIT /B %ERRORLEVEL%
@ECHO OFF ECHO + Checking shellcode for NULL bytes: ECHO + w32-dl-loadlib-shellcode.bin CALL BETA3 h --nullfree w32-dl-loadlib-shellcode.bin > nul IF ERRORLEVEL 1 GOTO :FAILED ECHO + w32-dl-loadlib-shellcode-esp.bin CALL BETA3 h --nullfree w32-dl-loadlib-shellcode-esp.bin > nul IF ERRORLEVEL 1 GOTO :FAILED ECHO + Running shellcode: ECHO + w32-dl-loadlib-shellcode.bin w32-testival.exe [$]=ascii:w32-dl-loadlib-shellcode.bin eip=$ --EH | match_output.py "Hello, world![\r\n]*" --verbose > nul IF ERRORLEVEL 1 GOTO :FAILED ECHO + w32-dl-loadlib-shellcode-esp.bin w32-testival.exe [$+800]=ascii:w32-dl-loadlib-shellcode-esp.bin eip=$+800 esp=$+7FF --EH | match_output.py "Hello, world![\r\n]*" --verbose > nul IF ERRORLEVEL 1 GOTO :FAILED EXIT /B 0 :FAILED ECHO * Test failed! EXIT /B %ERRORLEVEL%
Use CALL for BETA3 as it may be a .cmd file, which would terminate this script
Use CALL for BETA3 as it may be a .cmd file, which would terminate this script
Batchfile
bsd-3-clause
ohio813/w32-dl-loadlib-shellcode,SkyLined/w32-dl-loadlib-shellcode,ohio813/w32-dl-loadlib-shellcode,r3dbrain/w32-dl-loadlib-shellcode
7e1d36038bd99fa08ec8d7c5d8ace4881ea047f5
runTests.bat
runTests.bat
del "spec/*.js" call tsc "spec/ActorSpec.ts" -out "spec/ActorSpec.js" call tsc "spec/ColorSpec.ts" -out "spec/ColorSpec.js" call tsc "spec/PromiseSpec.ts" -out "spec/PromiseSpec.js" call tsc "spec/CollectionSpec.ts" -out "spec/CollectionSpec.js" call tsc "spec/LogSpec.ts" -out "spec/LogSpec.js" call jasmine-node --verbose spec/
del "spec/*.js" call tsc "spec/ActorSpec.ts" -out "spec/ActorSpec.js" call tsc "spec/ColorSpec.ts" -out "spec/ColorSpec.js" call tsc "spec/PromiseSpec.ts" -out "spec/PromiseSpec.js" call tsc "spec/CollectionSpec.ts" -out "spec/CollectionSpec.js" call tsc "spec/LogSpec.ts" -out "spec/LogSpec.js" call tsc "spec/ClassSpec.ts" -out "spec/ClassSpec.js" call tsc "spec/TimerSpec.ts" -out "spec/TimerSpec.js" call jasmine-node --verbose spec/
Add new specs to bat
Add new specs to bat
Batchfile
bsd-2-clause
excaliburjs/Excalibur,htalat/Excalibur,excaliburjs/Excalibur,htalat/Excalibur,htalat/Excalibur,excaliburjs/Excalibur
f12c7a927b07b26167a4047288d57bd280ab8fc0
run-test.cmd
run-test.cmd
@echo off :: To run tests outside of MSBuild.exe :: %1 is the path to the tests\<OSConfig> folder pushd %1 FOR /D %%F IN (*.Tests) DO ( pushd %%F\dnxcore50 @echo "corerun.exe xunit.console.netcore.exe %%F.dll -xml testResults.xml -notrait category=failing -notrait category=nonwindowstests" corerun.exe xunit.console.netcore.exe %%F.dll -notrait category=failing -notrait category=nonwindowstests popd ) popd
@echo off :: To run tests outside of MSBuild.exe :: %1 is the path to the tests\<OSConfig> folder pushd %1 FOR /D %%F IN (*.Tests) DO ( pushd %%F\dnxcore50 @echo "corerun.exe xunit.console.netcore.exe %%F.dll -xml testResults.xml -notrait category=failing -notrait category=nonwindowstests -notrait Benchmark=true" corerun.exe xunit.console.netcore.exe %%F.dll -notrait category=failing -notrait category=nonwindowstests -notrait Benchmark=true popd ) popd
Exclude perf tests from nano runs.
Exclude perf tests from nano runs.
Batchfile
mit
shahid-pk/corefx,ellismg/corefx,nchikanov/corefx,richlander/corefx,billwert/corefx,cartermp/corefx,seanshpark/corefx,pallavit/corefx,stone-li/corefx,Chrisboh/corefx,kkurni/corefx,ptoonen/corefx,seanshpark/corefx,axelheer/corefx,the-dwyer/corefx,JosephTremoulet/corefx,rjxby/corefx,ericstj/corefx,weltkante/corefx,lggomez/corefx,JosephTremoulet/corefx,ptoonen/corefx,seanshpark/corefx,ViktorHofer/corefx,manu-silicon/corefx,shmao/corefx,cartermp/corefx,Ermiar/corefx,alexperovich/corefx,alphonsekurian/corefx,khdang/corefx,dotnet-bot/corefx,rjxby/corefx,wtgodbe/corefx,lggomez/corefx,billwert/corefx,tijoytom/corefx,Jiayili1/corefx,mazong1123/corefx,MaggieTsang/corefx,cydhaselton/corefx,axelheer/corefx,krytarowski/corefx,krytarowski/corefx,jcme/corefx,rjxby/corefx,ravimeda/corefx,fgreinacher/corefx,ellismg/corefx,stephenmichaelf/corefx,rahku/corefx,dotnet-bot/corefx,jcme/corefx,rahku/corefx,stephenmichaelf/corefx,zhenlan/corefx,weltkante/corefx,yizhang82/corefx,alphonsekurian/corefx,cartermp/corefx,Ermiar/corefx,ericstj/corefx,billwert/corefx,kkurni/corefx,twsouthwick/corefx,khdang/corefx,rjxby/corefx,parjong/corefx,kkurni/corefx,zhenlan/corefx,adamralph/corefx,elijah6/corefx,yizhang82/corefx,iamjasonp/corefx,seanshpark/corefx,jhendrixMSFT/corefx,krytarowski/corefx,stone-li/corefx,axelheer/corefx,richlander/corefx,nbarbettini/corefx,nchikanov/corefx,benjamin-bader/corefx,JosephTremoulet/corefx,rjxby/corefx,tstringer/corefx,tijoytom/corefx,ViktorHofer/corefx,rubo/corefx,ericstj/corefx,Chrisboh/corefx,richlander/corefx,Priya91/corefx-1,ericstj/corefx,shahid-pk/corefx,jhendrixMSFT/corefx,mazong1123/corefx,wtgodbe/corefx,marksmeltzer/corefx,jlin177/corefx,lggomez/corefx,gkhanna79/corefx,Priya91/corefx-1,ptoonen/corefx,mmitche/corefx,DnlHarvey/corefx,elijah6/corefx,krk/corefx,jhendrixMSFT/corefx,yizhang82/corefx,stephenmichaelf/corefx,YoupHulsebos/corefx,krytarowski/corefx,billwert/corefx,alphonsekurian/corefx,jcme/corefx,cydhaselton/corefx,nchikanov/corefx,stephenmichaelf/corefx,nchikanov/corefx,seanshpark/corefx,mmitche/corefx,ellismg/corefx,tstringer/corefx,richlander/corefx,Chrisboh/corefx,rahku/corefx,rjxby/corefx,stone-li/corefx,nbarbettini/corefx,parjong/corefx,twsouthwick/corefx,gkhanna79/corefx,lggomez/corefx,tstringer/corefx,wtgodbe/corefx,fgreinacher/corefx,ericstj/corefx,wtgodbe/corefx,nchikanov/corefx,the-dwyer/corefx,mmitche/corefx,DnlHarvey/corefx,mazong1123/corefx,alphonsekurian/corefx,JosephTremoulet/corefx,manu-silicon/corefx,rahku/corefx,ellismg/corefx,SGuyGe/corefx,benjamin-bader/corefx,Priya91/corefx-1,axelheer/corefx,Jiayili1/corefx,tstringer/corefx,ViktorHofer/corefx,Chrisboh/corefx,Petermarcu/corefx,ptoonen/corefx,SGuyGe/corefx,cartermp/corefx,dhoehna/corefx,lggomez/corefx,krk/corefx,tstringer/corefx,ptoonen/corefx,fgreinacher/corefx,yizhang82/corefx,ellismg/corefx,iamjasonp/corefx,stephenmichaelf/corefx,shmao/corefx,wtgodbe/corefx,ericstj/corefx,YoupHulsebos/corefx,jlin177/corefx,Jiayili1/corefx,gkhanna79/corefx,krk/corefx,YoupHulsebos/corefx,gkhanna79/corefx,ravimeda/corefx,alphonsekurian/corefx,cydhaselton/corefx,marksmeltzer/corefx,ptoonen/corefx,elijah6/corefx,JosephTremoulet/corefx,zhenlan/corefx,seanshpark/corefx,parjong/corefx,Ermiar/corefx,cartermp/corefx,tijoytom/corefx,Ermiar/corefx,jcme/corefx,SGuyGe/corefx,jlin177/corefx,nbarbettini/corefx,marksmeltzer/corefx,Petermarcu/corefx,Chrisboh/corefx,nbarbettini/corefx,MaggieTsang/corefx,Jiayili1/corefx,Priya91/corefx-1,shimingsg/corefx,jcme/corefx,ravimeda/corefx,khdang/corefx,pallavit/corefx,manu-silicon/corefx,ravimeda/corefx,parjong/corefx,manu-silicon/corefx,rubo/corefx,pallavit/corefx,khdang/corefx,jlin177/corefx,jhendrixMSFT/corefx,dhoehna/corefx,khdang/corefx,JosephTremoulet/corefx,rahku/corefx,elijah6/corefx,BrennanConroy/corefx,shmao/corefx,gkhanna79/corefx,cartermp/corefx,marksmeltzer/corefx,BrennanConroy/corefx,MaggieTsang/corefx,tijoytom/corefx,weltkante/corefx,shmao/corefx,Ermiar/corefx,jcme/corefx,shimingsg/corefx,iamjasonp/corefx,rahku/corefx,alexperovich/corefx,twsouthwick/corefx,kkurni/corefx,Petermarcu/corefx,SGuyGe/corefx,dotnet-bot/corefx,shmao/corefx,richlander/corefx,stone-li/corefx,marksmeltzer/corefx,Petermarcu/corefx,tijoytom/corefx,alexperovich/corefx,pallavit/corefx,benjamin-bader/corefx,elijah6/corefx,benjamin-bader/corefx,weltkante/corefx,Jiayili1/corefx,ravimeda/corefx,DnlHarvey/corefx,adamralph/corefx,MaggieTsang/corefx,dotnet-bot/corefx,rahku/corefx,billwert/corefx,iamjasonp/corefx,alexperovich/corefx,dsplaisted/corefx,tijoytom/corefx,manu-silicon/corefx,Ermiar/corefx,Petermarcu/corefx,marksmeltzer/corefx,pallavit/corefx,dhoehna/corefx,weltkante/corefx,nchikanov/corefx,rubo/corefx,parjong/corefx,iamjasonp/corefx,mmitche/corefx,cydhaselton/corefx,MaggieTsang/corefx,cydhaselton/corefx,elijah6/corefx,ravimeda/corefx,jlin177/corefx,jlin177/corefx,Jiayili1/corefx,shahid-pk/corefx,axelheer/corefx,zhenlan/corefx,stone-li/corefx,benjamin-bader/corefx,shimingsg/corefx,mazong1123/corefx,shahid-pk/corefx,mazong1123/corefx,tstringer/corefx,gkhanna79/corefx,weltkante/corefx,zhenlan/corefx,manu-silicon/corefx,lggomez/corefx,yizhang82/corefx,twsouthwick/corefx,DnlHarvey/corefx,nchikanov/corefx,shmao/corefx,benjamin-bader/corefx,shimingsg/corefx,krk/corefx,alphonsekurian/corefx,jhendrixMSFT/corefx,shimingsg/corefx,twsouthwick/corefx,Chrisboh/corefx,lggomez/corefx,nbarbettini/corefx,krk/corefx,fgreinacher/corefx,parjong/corefx,shahid-pk/corefx,MaggieTsang/corefx,zhenlan/corefx,YoupHulsebos/corefx,dotnet-bot/corefx,dhoehna/corefx,yizhang82/corefx,JosephTremoulet/corefx,kkurni/corefx,ViktorHofer/corefx,DnlHarvey/corefx,zhenlan/corefx,jlin177/corefx,dotnet-bot/corefx,stone-li/corefx,Priya91/corefx-1,YoupHulsebos/corefx,DnlHarvey/corefx,nbarbettini/corefx,ptoonen/corefx,shahid-pk/corefx,Petermarcu/corefx,krytarowski/corefx,ellismg/corefx,mmitche/corefx,alexperovich/corefx,Priya91/corefx-1,richlander/corefx,marksmeltzer/corefx,khdang/corefx,the-dwyer/corefx,dhoehna/corefx,billwert/corefx,manu-silicon/corefx,tijoytom/corefx,ViktorHofer/corefx,Ermiar/corefx,BrennanConroy/corefx,the-dwyer/corefx,krk/corefx,mazong1123/corefx,stephenmichaelf/corefx,billwert/corefx,shimingsg/corefx,jhendrixMSFT/corefx,cydhaselton/corefx,dotnet-bot/corefx,krk/corefx,mmitche/corefx,axelheer/corefx,ravimeda/corefx,dsplaisted/corefx,shmao/corefx,adamralph/corefx,stephenmichaelf/corefx,twsouthwick/corefx,twsouthwick/corefx,parjong/corefx,rjxby/corefx,mmitche/corefx,gkhanna79/corefx,pallavit/corefx,krytarowski/corefx,ViktorHofer/corefx,Jiayili1/corefx,rubo/corefx,SGuyGe/corefx,cydhaselton/corefx,Petermarcu/corefx,alphonsekurian/corefx,DnlHarvey/corefx,the-dwyer/corefx,YoupHulsebos/corefx,kkurni/corefx,stone-li/corefx,alexperovich/corefx,richlander/corefx,ViktorHofer/corefx,elijah6/corefx,dsplaisted/corefx,nbarbettini/corefx,dhoehna/corefx,rubo/corefx,MaggieTsang/corefx,iamjasonp/corefx,ericstj/corefx,weltkante/corefx,wtgodbe/corefx,iamjasonp/corefx,seanshpark/corefx,wtgodbe/corefx,dhoehna/corefx,krytarowski/corefx,shimingsg/corefx,YoupHulsebos/corefx,mazong1123/corefx,the-dwyer/corefx,the-dwyer/corefx,SGuyGe/corefx,alexperovich/corefx,yizhang82/corefx,jhendrixMSFT/corefx
4ba954a3eb4d74a51c32d6db3b5c02453a842f30
tools/release/kokoro.bat
tools/release/kokoro.bat
@rem Copyright 2018 gRPC authors. @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. @echo "Starting Windows build" cd /d %~dp0 cd ..\.. git submodule update --init git submodule foreach --recursive git submodule update --init set ARTIFACTS_OUT=artifacts cd packages\grpc-native-core call tools\run_tests\artifacts\build_artifact_node.bat cd ..\.. move packages\grpc-native-core\artifacts .
@rem Copyright 2018 gRPC authors. @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. @echo "Starting Windows build" cd /d %~dp0 cd ..\.. git submodule update --init git submodule foreach --recursive git submodule update --init set ARTIFACTS_OUT=artifacts cd packages\grpc-native-core call tools\run_tests\artifacts\build_artifact_node.bat || goto :error cd ..\.. move packages\grpc-native-core\artifacts . goto :EOF :error exit /b 1
Build failures on Windows should be noticed.
Build failures on Windows should be noticed.
Batchfile
apache-2.0
grpc/grpc-node,grpc/grpc-node,grpc/grpc-node,grpc/grpc-node
39caf8454361f11a63fb9e6e59f4171a958c9b59
AppVeyorTestDolphinVM.cmd
AppVeyorTestDolphinVM.cmd
ECHO Clone Dolphin image environment git clone -q --branch=master https://github.com/dolphinsmalltalk/Dolphin.git Dolphin ECHO Copy executables copy ..\..\Dolphin7.exe Dolphin copy ..\..\DolphinVM7.dll Dolphin copy ..\..\DolphinCR7.dll Dolphin copy ..\..\DolphinDR7.dll Dolphin copy ..\..\DolphinSureCrypto.dll Dolphin ECHO Boot and test image cd Dolphin Dolphin7 DBOOT.img7 DolphinProfessional DIR DBOOT*, DPRO* CALL TestDPRO set errorCode=%ERRORLEVEL% DIR DPRO* EXIT errorCode
ECHO Clone Dolphin image environment git clone -q --branch=master https://github.com/dolphinsmalltalk/Dolphin.git Dolphin ECHO Copy executables copy ..\..\Dolphin7.exe Dolphin copy ..\..\DolphinVM7.dll Dolphin copy ..\..\DolphinCR7.dll Dolphin copy ..\..\DolphinDR7.dll Dolphin copy ..\..\DolphinSureCrypto.dll Dolphin ECHO Boot and test image cd Dolphin Dolphin7 DBOOT.img7 DolphinProfessional DIR DBOOT*, DPRO* CALL TestDPRO set errorCode=%ERRORLEVEL% DIR DPRO* EXIT %errorCode%
Use proper reference to error code.
Use proper reference to error code.
Batchfile
mit
blairmcg/Dolphin,dolphinsmalltalk/DolphinVM,dolphinsmalltalk/Dolphin,shoshanatech/Dolphin,objectarts/DolphinVM,dolphinsmalltalk/DolphinVM,jgfoster/Dolphin,shoshanatech/Dolphin,blairmcg/Dolphin,dolphinsmalltalk/Dolphin,objectarts/DolphinVM,jgfoster/Dolphin,shoshanatech/Dolphin,jgfoster/Dolphin,blairmcg/Dolphin,dolphinsmalltalk/Dolphin,blairmcg/Dolphin,objectarts/Dolphin,objectarts/Dolphin,shoshanatech/Dolphin,dolphinsmalltalk/Dolphin,jgfoster/Dolphin
64dc85c6fe681dc41411d2e1ea7fe63be539cc81
bin/mysql-simple-example.bat
bin/mysql-simple-example.bat
@echo off set DIR=%~dp0 set LIB="%DIR%\..\lib\*" set BIN="%DIR%\..\bin\*" REM ??? echo {^ "type" : "jdbc",^ "jdbc" : {^ "url" : "jdbc:mysql://localhost:3306/test",^ "user" : "",^ "password" : "",^ "sql" : "select *, page_id as _id from page",^ "treat_binary_as_string" : true,^ "elasticsearch" : {^ "cluster" : "elasticsearch",^ "host" : "localhost",^ "port" : 9300^ },^ "index" : "metawiki"^ }^ } "%JAVA_HOME%\bin\java" -cp "%LIB%" -Dlog4j.configurationFile="%BIN%\log4j2.xml" "org.xbib.tools.Runner" "org.xbib.tools.JDBCImporter"
@echo off set DIR=%~dp0 set LIB=%DIR%..\lib\* set BIN=%DIR%..\bin REM ??? echo {^ "type" : "jdbc",^ "jdbc" : {^ "url" : "jdbc:mysql://localhost:3306/test",^ "user" : "",^ "password" : "",^ "sql" : "select *, page_id as _id from page",^ "treat_binary_as_string" : true,^ "elasticsearch" : {^ "cluster" : "elasticsearch",^ "host" : "localhost",^ "port" : 9300^ },^ "index" : "metawiki"^ }^ }^ | "%JAVA_HOME%\bin\java" -cp "%LIB%" -Dlog4j.configurationFile="%BIN%\log4j2.xml" "org.xbib.tools.Runner" "org.xbib.tools.JDBCImporter"
Update the windows bat file to make it work.Pass the parameters to next java command as an argument
Update the windows bat file to make it work.Pass the parameters to next java command as an argument
Batchfile
apache-2.0
msimons/elasticsearch-river-jdbc,jprante/elasticsearch-jdbc,msimons/elasticsearch-river-jdbc,msimons/elasticsearch-jdbc,msimons/elasticsearch-jdbc,msimons/elasticsearch-river-jdbc,msimons/elasticsearch-jdbc,jprante/elasticsearch-jdbc,jprante/elasticsearch-jdbc
6ad1143617bd088364bae749efcec14b80659db0
cmd/runall/some.cmd
cmd/runall/some.cmd
@echo on ::
@echo on :: :: Demo _some_ of the stompngo examples. :: IF [%SNGD%]==[] SET SNGD=C:\gosrc\src\github.com\gmallard\stompngo_examples echo %SNGD% IF [%STOMP_HOST%]==[] SET STOMP_HOST=192.168.1.200 echo %STOMP_HOST% :: set STOMP_NMSGS=1 set STOMP_NQS=1 :: cd %SNGD% :: set STOMP_DEST=/queue/snge.ack go run publish\publish.go set STOMP_DEST=/queue/snge.ack.1 go run ack\ack.go :: set STOMP_USEEOF=y set STOMP_DEST=/queue/snge.rdr go run publish\publish.go set STOMP_USEEOF=y set STOMP_DEST=/queue/snge.rdr.1 go run adhoc\reader\reader.go :: go run conndisc\conndisc.go :: :: Port 61611: AMQ, TLS, No cert required set STOMP_PORT=61611 go run conndisc_tls\conndisc_tls.go :: set STOMP_PORT=61613 go run srmgor_1conn\srmgor_1conn.go go run srmgor_1smrconn\srmgor_1smrconn.go go run srmgor_2conn\srmgor_2conn.go go run srmgor_manyconn\srmgor_manyconn.go :: set STOMP_USEEOF=y set STOMP_DEST=/queue/snge.sub go run publish\publish.go set STOMP_USEEOF=y set STOMP_DEST=/queue/snge.sub.1 set STOMP_NMSGS=2 go run subscribe\subscribe.go ::
Add Windows version of demo.
Add Windows version of demo.
Batchfile
apache-2.0
gmallard/stompngo_examples,gmallard/stompngo_examples,gmallard/stompngo_examples
d0d31762c8cb8b1dae0f4b2fa4a71f95eaa01a07
Build/Build.cmd
Build/Build.cmd
@echo on call "%VS110COMNTOOLS%vsvars32.bat" REM Portable project msbuild.exe /ToolsVersion:4.0 "..\Espera\Espera.sln" /p:configuration=Release set ReleaseDir=..\Release\ REM Cleanup before we create and copy everything rmdir %ReleaseDir% /s /q set ReleaseDirPortable=%ReleaseDir%Portable\ mkdir %ReleaseDirPortable% set bin=..\Espera\Espera.View\bin\Release\ copy %bin%*.dll %ReleaseDirPortable% copy %bin%Espera.exe %ReleaseDirPortable% copy %bin%Espera.exe.config %ReleaseDirPortable% copy ..\Changelog.txt %ReleaseDirPortable% REM ClickOnce project msbuild.exe /target:publish /p:configuration=Release ..\Espera\Espera.sln" set ReleaseDirSetup=%ReleaseDir%Setup\ mkdir %ReleaseDirSetup% xcopy /S /Y %bin%\app.publish %ReleaseDirSetup% pause
@echo on call "%VS110COMNTOOLS%vsvars32.bat" REM Portable project msbuild.exe /ToolsVersion:4.0 /p:configuration=Release /v:minimal "..\Espera\Espera.sln" set ReleaseDir=..\Release\ REM Cleanup before we create and copy everything rmdir %ReleaseDir% /s /q set ReleaseDirPortable=%ReleaseDir%Portable\ mkdir %ReleaseDirPortable% set bin=..\Espera\Espera.View\bin\Release\ copy %bin%*.dll %ReleaseDirPortable% copy %bin%Espera.exe %ReleaseDirPortable% copy %bin%Espera.exe.config %ReleaseDirPortable% copy ..\Changelog.txt %ReleaseDirPortable% REM ClickOnce project msbuild.exe /target:publish /p:configuration=Release /v:minimal ..\Espera\Espera.sln" set ReleaseDirSetup=%ReleaseDir%Setup\ mkdir %ReleaseDirSetup% xcopy /S /Y %bin%\app.publish %ReleaseDirSetup% pause
Make build script less verbose
Make build script less verbose
Batchfile
mit
flagbug/Espera,punker76/Espera
6a6710176fb76cf5e52261be3c196067386157c3
nugetpack.bat
nugetpack.bat
@ECHO OFF REM GIT Tag and Build nuget package IF "%1" == "" GOTO SyntaxError IF "%2" == "" GOTO SyntaxError REM main code git tag -a %1 -m "%2" cd GFDN.ThaiBahtText nuget pack GFDN.ThaiBahtText.csproj ^ -Version %1 ^ -Prop Configuration=Release ^ -OutputDirectory "Nuget Packages" cd .. @ECHO. @ECHO Push to GitHub git push origin --tags @ECHO. @ECHO Push to NuGet nuget push "GFDN.ThaiBahtText\NuGet Packages\ThaiBahtText.%1.nupkg" GOTO End :SyntaxError @ECHO Usage syntax: @ECHO. @ECHO nugetpack tag_number tag_name @ECHO. @ECHO Sample: @ECHO nugetpack 0.1 baby-peter GOTO End :End @ECHO ON
@ECHO OFF REM GIT Tag and Build nuget package IF "%1" == "" GOTO SyntaxError IF "%2" == "" GOTO SyntaxError REM main code git tag -a %1 -m "%2" cd GFDN.ThaiBahtText nuget pack GFDN.ThaiBahtText.csproj ^ -Version %1 ^ -Prop Configuration=Release ^ -OutputDirectory "Nuget Packages" cd .. @ECHO. @ECHO Push to GitHub git push origin master git push origin --tags @ECHO. @ECHO Push to NuGet nuget push "GFDN.ThaiBahtText\NuGet Packages\ThaiBahtText.%1.nupkg" GOTO End :SyntaxError @ECHO Usage syntax: @ECHO. @ECHO nugetpack tag_number tag_name @ECHO. @ECHO Sample: @ECHO nugetpack 0.1 baby-peter GOTO End :End @ECHO ON
Make sure that push all updates before tagging them
Make sure that push all updates before tagging them
Batchfile
mit
greatfriends/ThaiBahtText,greatfriends/ThaiBahtText,greatfriends/ThaiBahtText
cb2733344557e98b1a00576aaf037c67dbc8d9c8
python-pcl/bld.bat
python-pcl/bld.bat
@echo off rem This needed for pkg-config to detect pcl and eigen3 pc files set PKG_CONFIG_PATH=%LIBRARY_LIB%\pkgconfig rem Override distutils VS detection set DISTUTILS_USE_SDK=1 set MSSdk=1 rem Renames necessary for python-pcl to detect the libraries it needs for %%x in (io registration segmentation features filters sample_consensus surface search kdtree octree common) do ( copy /y %LIBRARY_LIB%\pcl_%%x_release.lib %LIBRARY_LIB%\pcl_%%x.lib > nul if errorlevel 1 exit 1 ) copy /y %LIBRARY_LIB%\flann_cpp_s.lib %LIBRARY_LIB%\flann_cpp.lib > nul if errorlevel 1 exit 1 rem Compile extension python setup.py config --compiler=msvc build --compiler=msvc install if errorlevel 1 exit 1 rem Remove library renames for %%x in (io registration segmentation features filters sample_consensus surface search kdtree octree common) do ( del %LIBRARY_LIB%\pcl_%%x.lib if errorlevel 1 exit 1 ) del %LIBRARY_LIB%\flann_cpp.lib if errorlevel 1 exit 1
@echo off rem This is needed for pkg-config to detect pcl and eigen3 pc files set PKG_CONFIG_PATH=%LIBRARY_LIB%\pkgconfig rem Override distutils VS detection set DISTUTILS_USE_SDK=1 set MSSdk=1 rem Renames necessary for python-pcl to detect the libraries it needs for %%x in (io registration segmentation features filters sample_consensus surface search kdtree octree common) do ( copy /y %LIBRARY_LIB%\pcl_%%x_release.lib %LIBRARY_LIB%\pcl_%%x.lib > nul if errorlevel 1 exit 1 ) copy /y %LIBRARY_LIB%\flann_cpp_s.lib %LIBRARY_LIB%\flann_cpp.lib > nul if errorlevel 1 exit 1 rem Compile extension python setup.py config --compiler=msvc build --compiler=msvc install if errorlevel 1 exit 1 rem Remove library renames for %%x in (io registration segmentation features filters sample_consensus surface search kdtree octree common) do ( del %LIBRARY_LIB%\pcl_%%x.lib if errorlevel 1 exit 1 ) del %LIBRARY_LIB%\flann_cpp.lib if errorlevel 1 exit 1
Fix grammar in a comment
Python-pcl: Fix grammar in a comment
Batchfile
bsd-2-clause
ccordoba12/pcl-conda-recipes,ccordoba12/pcl-conda-recipes
abe53f2f5fa6b2a7833d0296ac0f6b87a2c3fd73
init.bat
init.bat
@echo off chcp 65001>nul prompt [%USERNAME%@%COMPUTERNAME% $p]$_$$$s rem Fake a UNIX environment doskey clear=cls doskey ls=dir /d $* doskey cp=copy $* doskey mv=move $* doskey rm=del $* doskey cat=type $* doskey touch=type nul$G$G$* rem Easier navigation doskey cd=cd /D $* doskey cd..=cd .. doskey ..=cd .. doskey ...=cd ../.. doskey ....=cd ../../.. rem List files properly doskey l=dir /b $* doskey ll=dir /b $* rem Edit functionality IF NOT EXIST "C:\Program Files\Sublime Text 3" GOTO NOSUBLIME doskey edit="C:\Program Files\Sublime Text 3\sublime_text" $* :NOSUBLIME rem Open functionality doskey open=start $* @echo on
@echo off chcp 65001>nul prompt [%USERNAME%@%COMPUTERNAME% $p]$_$$$s rem Fake a UNIX environment doskey clear=cls doskey ls=dir /d $* doskey cp=copy $* doskey mv=move $* doskey rm=del $* doskey cat=type $* doskey touch=type nul$G$G$* rem Easier navigation doskey cd=cd /D $* doskey cd..=cd .. doskey ..=cd .. doskey ...=cd ../.. doskey ....=cd ../../.. rem List files properly doskey l=dir /b $* doskey ll=dir /b $* rem Edit functionality IF NOT EXIST "C:\Program Files (x86)\Microsoft VS Code" GOTO NOVSCODE doskey edit="C:\Program Files (x86)\Microsoft VS Code\bin\code.cmd" $* GOTO NOSUBLIME :NOVSCODE IF NOT EXIST "C:\Program Files\Sublime Text 3" GOTO NOSUBLIME doskey edit="C:\Program Files\Sublime Text 3\sublime_text" $* :NOSUBLIME rem Open functionality doskey open=start $* @echo on
Use vscode as editor in windows
Use vscode as editor in windows
Batchfile
mit
ArloL/dotfiles,ArloL/dotfiles
2c090498fd82b9f8cc4e7072e750dd789401b67c
build/GenerateBookHelper.bat
build/GenerateBookHelper.bat
Set Book=%BookName%%1 Call Generate %Book% name SongTi FontSize48 Call Generate %Book% name QuanZiKuFont FontSize48 :: The following fonts generated unreadable characters. :: Call Generate %Book% name FangSong FontSize48 :: Call Generate %Book% name KaiTi FontSize48 :: The following fonts generated incomplete text. :: Call Generate %Book% name BeiShiDaFont FontSize48 :: Call Generate %Book% name JinWen FontSize48 :: Call Generate %Book% name LiShu FontSize48 :: Call Generate %Book% name JiaGuWen FontSize48 Set Destinaton=%OutputFolder%\%1 RmDir %Destinaton% /s /q MkDir %Destinaton% Move /Y %Book%*.pdf %Destinaton%
Set Book=%BookName%%1 Call Generate %Book% name SongTi FontSize48 Call Generate %Book% name QuanZiKuFont FontSize48 :: The following fonts generated unreadable characters. :: Call Generate %Book% name FangSong FontSize48 :: Call Generate %Book% name KaiTi FontSize48 :: The following fonts generated incomplete text. REM Call Generate %Book% name BeiShiDaFont FontSize48 REM Call Generate %Book% name JinWen FontSize48 REM Call Generate %Book% name LiShu FontSize48 REM Call Generate %Book% name JiaGuWen FontSize48 Set Destinaton=%OutputFolder%\%1 RmDir %Destinaton% /s /q MkDir %Destinaton% Move /Y %Book%*.pdf %Destinaton%
Create more books for other font families
Create more books for other font families
Batchfile
mit
fan-jiang/Dujing
144c53e166d034a491669efa9278bec868473b78
appveyor-install.cmd
appveyor-install.cmd
"%sdkverpath%" -q -version:"%sdkver%" call setenv /x64 rem install python packages pip install --cache-dir C:/egg_cache nose pip install --cache-dir C:/egg_cache coverage pip install --cache-dir C:/egg_cache numpy pip install --cache-dir C:/egg_cache cython pip install --cache-dir C:/egg_cache babel==1.3 pip install --cache-dir C:/egg_cache Sphinx rem install traits python setup.py develop
"%sdkverpath%" -q -version:"%sdkver%" call setenv /x64 rem install python packages pip install --cache-dir C:/egg_cache nose pip install --cache-dir C:/egg_cache coverage pip install --cache-dir C:/egg_cache numpy pip install --cache-dir C:/egg_cache cython rem Work around bug in babel 2.0: see mitsuhiko/babel#174 pip install --cache-dir C:/egg_cache babel==1.3 pip install --cache-dir C:/egg_cache Sphinx rem install traits python setup.py develop
Add comment explaining why we're forcing babel 1.3
Add comment explaining why we're forcing babel 1.3
Batchfile
bsd-3-clause
burnpanck/traits,burnpanck/traits
3bcaef26b4b5a5b115bdbe37287b2d72f831554e
install.bat
install.bat
@echo off NET SESSION >nul 2>&1 IF %ERRORLEVEL% NEQ 0 ( ECHO Not an admin, exiting. EXIT /B 1 ) setlocal EnableDelayedExpansion :: ############################ :: # Create symlinks from the home directory to any desired dotfiles directory. :: ############################ :: dotfiles directory set dotfilesdir=%USERPROFILE%\.dotfiles :: backup directory set backupdir=%USERPROFILE%\dotfiles_backup :: list of files/folders to symlink in homedir set dotfiles=bashrc bash_profile bash dir_colors inputrc minttyrc gitconfig for %%A in (%dotfiles%) DO ( set target=%dotfilesdir%\%%A set link=%USERPROFILE%\.%%A set linkExists="0" if exist "!link!" ( set Z=&& for %%B in ("!link!") do set Z=%%~aB if "!Z:~8,1!" == "l" ( set linkExists="1" ) else ( if not exist "%backupdir%" ( mkdir "%backupdir%"" ) echo Moving existing !link! to %backupdir% move "!link!" "%backupdir%" ) ) if !linkExists! == "0" ( if exist "!target!\" ( mklink /d "!link!" "!target!" ) else ( mklink "!link!" "!target!" ) ) )
@echo off NET SESSION >nul 2>&1 IF %ERRORLEVEL% NEQ 0 ( ECHO Not an admin, exiting. EXIT /B 1 ) setlocal EnableDelayedExpansion :: ############################ :: # Create symlinks from the home directory to any desired dotfiles directory. :: ############################ :: dotfiles directory set dotfilesdir=%USERPROFILE%\.dotfiles :: backup directory set backupdir=%USERPROFILE%\dotfiles_backup :: list of files/folders to symlink in homedir set dotfiles=bashrc bash_profile bash dir_colors inputrc minttyrc gitconfig for %%A in (%dotfiles%) DO ( set target=%dotfilesdir%\%%A set link=%USERPROFILE%\.%%A set linkExists="0" if exist "!link!" ( set Z=&& for %%B in ("!link!") do set Z=%%~aB if "!Z:~8,1!" == "l" ( set linkExists="1" ) else ( if not exist "%backupdir%" ( mkdir "%backupdir%"" ) echo Moving existing !link! to %backupdir% move "!link!" "%backupdir%" ) ) if !linkExists! == "0" ( if exist "!target!\" ( mklink /d "!link!" "!target!" ) else ( mklink "!link!" "!target!" ) attrib /L "!link!" +h ) )
Set hidden attribute of links
Set hidden attribute of links
Batchfile
mit
ArloL/dotfiles,ArloL/dotfiles
f89d3210cd630c55961125a8bdfd64327a9cbad6
bin/reader_archive.bat
bin/reader_archive.bat
@echo off set PYTHONPATH=%CD% C:\Python27\python.exe reader_archive\reader_archive.py %*
@echo off set PYTHONPATH=%CD% python reader_archive\reader_archive.py %*
Replace absolute path of python
Replace absolute path of python
Batchfile
apache-2.0
mihaip/readerisdead,mihaip/readerisdead,mihaip/readerisdead,mihaip/readerisdead,mihaip/readerisdead
064bc95e9c4f9166e899ef472a3e921bac443e80
src/win32/embed_manifests.cmd
src/win32/embed_manifests.cmd
SETLOCAL call call_vcvars.cmd set "_=%CD%" cd .. for /F %%1 in ('dir *.exe /B /S /A:-D') do (mt.exe -manifest "%%1.manifest" -outputresource:"%%1";1) for /F %%1 in ('dir *.dll /B /S /A:-D') do (mt.exe -manifest "%%1.manifest" -outputresource:"%%1";2) cd %_% ENDLOCAL pause
@echo off SETLOCAL call call_vcvars.cmd set "_=%CD%" cd .. for /F "delims=" %%1 in ('dir *.exe /B /S /A:-D') do (echo "%%1" && mt.exe -nologo -manifest "%%1.manifest" -outputresource:"%%1";1) for /F "delims=" %%1 in ('dir *.dll /B /S /A:-D') do (echo "%%1" && mt.exe -nologo -manifest "%%1.manifest" -outputresource:"%%1";2) cd %_% ENDLOCAL
Embed manifests in all files
Embed manifests in all files
Batchfile
lgpl-2.1
mndrix/swipl-devel,koryonik/swipl-devel,jn7163/swipl-devel,edechter/swipl-devel,mndrix/swipl-devel,edechter/swipl-devel,koryonik/swipl-devel,koryonik/swipl-devel,edechter/swipl-devel,mndrix/swipl-devel,jn7163/swipl-devel,mndrix/swipl-devel,edechter/swipl-devel,koryonik/swipl-devel,koryonik/swipl-devel,edechter/swipl-devel,jn7163/swipl-devel,jn7163/swipl-devel,mndrix/swipl-devel,jn7163/swipl-devel
b2ba421ac02433d6605dd285bb07acb30f7327ea
recipes/capytaine/bld.bat
recipes/capytaine/bld.bat
set CFG=%USERPROFILE%\pydistutils.cfg echo [config] > "%CFG%" echo compiler=mingw32 >> "%CFG%" echo [build] >> "%CFG%" echo compiler=mingw32 >> "%CFG%" echo [build_ext] >> "%CFG%" echo compiler=mingw32 >> "%CFG%" "%PYTHON%" setup.py install --single-version-externally-managed if errorlevel 1 exit 1
set CFG=%USERPROFILE%\pydistutils.cfg echo [config] > "%CFG%" echo compiler=mingw32 >> "%CFG%" echo [build] >> "%CFG%" echo compiler=mingw32 >> "%CFG%" echo [build_ext] >> "%CFG%" echo compiler=mingw32 >> "%CFG%" "%PYTHON%" -m pip install . --no-deps -vv if errorlevel 1 exit 1
Replace setup.py by pip install.
Replace setup.py by pip install.
Batchfile
bsd-3-clause
birdsarah/staged-recipes,ReimarBauer/staged-recipes,rmcgibbo/staged-recipes,Juanlu001/staged-recipes,jjhelmus/staged-recipes,isuruf/staged-recipes,jakirkham/staged-recipes,chrisburr/staged-recipes,cpaulik/staged-recipes,ocefpaf/staged-recipes,petrushy/staged-recipes,johanneskoester/staged-recipes,stuertz/staged-recipes,basnijholt/staged-recipes,ceholden/staged-recipes,kwilcox/staged-recipes,asmeurer/staged-recipes,mcs07/staged-recipes,goanpeca/staged-recipes,patricksnape/staged-recipes,igortg/staged-recipes,petrushy/staged-recipes,dschreij/staged-recipes,SylvainCorlay/staged-recipes,stuertz/staged-recipes,jakirkham/staged-recipes,synapticarbors/staged-recipes,chrisburr/staged-recipes,cpaulik/staged-recipes,asmeurer/staged-recipes,basnijholt/staged-recipes,hadim/staged-recipes,scopatz/staged-recipes,patricksnape/staged-recipes,SylvainCorlay/staged-recipes,rmcgibbo/staged-recipes,ceholden/staged-recipes,scopatz/staged-recipes,jjhelmus/staged-recipes,jochym/staged-recipes,ocefpaf/staged-recipes,ReimarBauer/staged-recipes,birdsarah/staged-recipes,kwilcox/staged-recipes,Juanlu001/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,synapticarbors/staged-recipes,isuruf/staged-recipes,dschreij/staged-recipes,mcs07/staged-recipes,igortg/staged-recipes,conda-forge/staged-recipes,mariusvniekerk/staged-recipes,mariusvniekerk/staged-recipes,jochym/staged-recipes,johanneskoester/staged-recipes,hadim/staged-recipes
8e4e210aaebdcb58abb795df122ea9cf795b1443
build/CreateMakefile.bat
build/CreateMakefile.bat
@echo off set CURDIR=%CD% cd /d %~dp0 rem Create Makefile by MakeItSo ======================================= ..\3rdparty\makeitso\output\MakeItSo.exe -file=makefile.sln -config=MakeItSo.config rem Copy Makefie ====================================================== xcopy /Y /D ..\vs2015\*.makefile .\ cd /d %CURDIR% exit /b 0 :error cd /d %CURDIR% echo "Error=====" pause exit /b 1
@echo off set CURDIR=%CD% cd /d %~dp0 rem Create Makefile by MakeItSo ======================================= ..\3rdparty\makeitso\output\MakeItSo.exe -file=makefile.sln -config=MakeItSo.config -nl=crlf rem Copy Makefie ====================================================== xcopy /Y /D ..\vs2015\*.makefile .\ cd /d %CURDIR% exit /b 0 :error cd /d %CURDIR% echo "Error=====" pause exit /b 1
Add option to specify line feed type.
Add option to specify line feed type.
Batchfile
mit
nakdai/aten,nakdai/aten
ba5db0b1bd1fae1eb0b6d8cd88b67cba0a77c915
build.cmd
build.cmd
@ECHO OFF :: Note: We're not using parallel build (/m) because it doesn't seem to :: work with Sandcastle Help File Builder. "%ProgramFiles(x86)%\MSBuild\12.0\Bin\MSBuild.exe" %~dp0\build.proj /nologo /v:m /flp:verbosity=detailed %1 %2 %3 %4 %5 %6 %7 %8 %9
@ECHO OFF :: Note: We're not using parallel build (/m) because it doesn't seem to :: work with Sandcastle Help File Builder. "%ProgramFiles(x86)%\MSBuild\12.0\Bin\MSBuild.exe" %~dp0\build.proj /nologo /v:m /flp:verbosity=detailed %*
Replace individual parameters with wildcard
Replace individual parameters with wildcard It's not that we ever want to pass more than ten arguments; it's about the fact that we'd like to be able to pass arguments like this: .\build.cmd /p:OutDir='D:\test\' Using individual arguments, MSBuild is called like this: MSBuild.exe /p:OutDir D:\test\ That's because the equal sign is considered a separator in batch files.
Batchfile
mit
terrajobst/xsddoc
b1835045bfffcbc23d170b7675bf4156bc02e215
build.bat
build.bat
@mkdir .shake 2> nul @set ghcArgs=--make ^ -Wall ^ src/Main.hs ^ -isrc ^ -rtsopts ^ -with-rtsopts=-I0 ^ -outputdir=.shake ^ -j ^ -O ^ -o .shake/build @set shakeArgs=--lint ^ --directory ^ ".." ^ %* @rem Unset GHC_PACKAGE_PATH variable, as otherwise ghc-cabal complains @if defined GHC_PACKAGE_PATH ( set GHC_PACKAGE_PATH ) @ghc %ghcArgs% && .shake\build %shakeArgs%
@mkdir .shake 2> nul @set ghcArgs=--make ^ -Wall ^ src/Main.hs ^ -isrc ^ -rtsopts ^ -with-rtsopts=-I0 ^ -outputdir=.shake ^ -j ^ -O ^ -o .shake/build @set shakeArgs=--lint ^ --directory ^ ".." ^ %* @rem Unset GHC_PACKAGE_PATH variable, as otherwise ghc-cabal complains @set GHC_PACKAGE_PATH= @ghc %ghcArgs% && .shake\build %shakeArgs%
Reset GHC_PACKAGE_PATH varialbe (4th try).
Reset GHC_PACKAGE_PATH varialbe (4th try). See #110. [skip ci]
Batchfile
bsd-3-clause
izgzhen/hadrian,snowleopard/shaking-up-ghc,sdiehl/ghc,sdiehl/ghc,sdiehl/ghc,sdiehl/ghc,sdiehl/ghc,snowleopard/hadrian,sdiehl/ghc,sdiehl/ghc,bgamari/shaking-up-ghc
a29f5ec1655871e1ba28c4d815dda1f8714dc042
src/RNGLR.EBNFParser.Test/gen_parser.cmd
src/RNGLR.EBNFParser.Test/gen_parser.cmd
del log.txt ..\..\Bin\Release\v40\YC.YaccConstructor.exe -i .\..\..\..\YC.Abstract.SQL\src\TSQL\mssqlNonAbstract.yrd -c Linearize -g "RNGLR.Generator -table LALR -o RNGLR.sql.yrd.fs" ..\..\Bin\Release\v40\YC.YaccConstructor.exe -i .\..\..\..\YC.Abstract.SQL\src\TSQL\mssqlNonAbstract.yrd -c Linearize -g "RNGLR.EBNFGenerator -table LALR -o RNGLREBNF.sql.yrd.fs"
del log.txt ..\..\Bin\Release\v40\YC.YaccConstructor.exe -i .\..\..\..\YC.Abstract.SQL\src\Grammars\TSQL\mssqlNonAbstract.yrd -c Linearize -g "RNGLR.EBNFGenerator -table LALR -o RNGLREBNF.sql.yrd.fs"
Change script for gen pasrer
Change script for gen pasrer
Batchfile
apache-2.0
YaccConstructor/YaccConstructor,YaccConstructor/YaccConstructor,YaccConstructor/YaccConstructor
7e5ffdf0ca8dc4e6a0d211f30ec2c52383f0ec96
build/InstallGit.cmd
build/InstallGit.cmd
@ECHO OFF SET oldPath=%PATH% git.exe 2> NUL if %ERRORLEVEL%==9009 GOTO :trydefaultpath GOTO :EOF :trydefaultpath path=C:\Program Files (x86)\Git\cmd;%PATH% git.exe 2> NUL if %ERRORLEVEL%==9009 GOTO :showerror GOTO :EOF :showerror path=%oldPath% ECHO Git is not in your path and could not be found in C:\Program Files (x86)\Git\bin set /p install=" Do you want to install Git through Chocolatey [y/n]? " %=% if %install%==y ( GOTO :installgit ) else ( GOTO :cantcontinue ) :cantcontinue ECHO Can't complete the build without Git being in the path. Please add it to be able to continue. GOTO :EOF :installgit ECHO Installing Chocolatey first @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin ECHO Installing Git through Chocolatey choco install git path=C:\Program Files (x86)\Git\cmd;%path%
@ECHO OFF SET oldPath=%PATH% git.exe 2> NUL if %ERRORLEVEL%==9009 GOTO :trydefaultpath GOTO :EOF :trydefaultpath path=C:\Program Files (x86)\Git\cmd;C:\Program Files\Git\cmd;%PATH% git.exe 2> NUL if %ERRORLEVEL%==9009 GOTO :showerror GOTO :EOF :showerror path=%oldPath% ECHO Git is not in your path and could not be found in C:\Program Files (x86)\Git\cmd set /p install=" Do you want to install Git through Chocolatey [y/n]? " %=% if %install%==y ( GOTO :installgit ) else ( GOTO :cantcontinue ) :cantcontinue ECHO Can't complete the build without Git being in the path. Please add it to be able to continue. GOTO :EOF :installgit ECHO Installing Chocolatey first @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin ECHO Installing Git through Chocolatey choco install git path=C:\Program Files (x86)\Git\cmd;%path%
Update in case people have 64bit git installed
Update in case people have 64bit git installed
Batchfile
mit
JimBobSquarePants/Umbraco-CMS,abjerner/Umbraco-CMS,aaronpowell/Umbraco-CMS,leekelleher/Umbraco-CMS,abryukhov/Umbraco-CMS,neilgaietto/Umbraco-CMS,tompipe/Umbraco-CMS,gkonings/Umbraco-CMS,neilgaietto/Umbraco-CMS,abryukhov/Umbraco-CMS,umbraco/Umbraco-CMS,TimoPerplex/Umbraco-CMS,base33/Umbraco-CMS,NikRimington/Umbraco-CMS,KevinJump/Umbraco-CMS,abryukhov/Umbraco-CMS,tcmorris/Umbraco-CMS,nul800sebastiaan/Umbraco-CMS,sargin48/Umbraco-CMS,romanlytvyn/Umbraco-CMS,rasmusfjord/Umbraco-CMS,dawoe/Umbraco-CMS,robertjf/Umbraco-CMS,lars-erik/Umbraco-CMS,marcemarc/Umbraco-CMS,aadfPT/Umbraco-CMS,gavinfaux/Umbraco-CMS,romanlytvyn/Umbraco-CMS,kasperhhk/Umbraco-CMS,lars-erik/Umbraco-CMS,gkonings/Umbraco-CMS,base33/Umbraco-CMS,rustyswayne/Umbraco-CMS,madsoulswe/Umbraco-CMS,mittonp/Umbraco-CMS,neilgaietto/Umbraco-CMS,TimoPerplex/Umbraco-CMS,arknu/Umbraco-CMS,tompipe/Umbraco-CMS,JeffreyPerplex/Umbraco-CMS,WebCentrum/Umbraco-CMS,tcmorris/Umbraco-CMS,aaronpowell/Umbraco-CMS,gkonings/Umbraco-CMS,tcmorris/Umbraco-CMS,Phosworks/Umbraco-CMS,PeteDuncanson/Umbraco-CMS,rustyswayne/Umbraco-CMS,umbraco/Umbraco-CMS,hfloyd/Umbraco-CMS,romanlytvyn/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,arknu/Umbraco-CMS,NikRimington/Umbraco-CMS,kasperhhk/Umbraco-CMS,umbraco/Umbraco-CMS,bjarnef/Umbraco-CMS,WebCentrum/Umbraco-CMS,bjarnef/Umbraco-CMS,leekelleher/Umbraco-CMS,Phosworks/Umbraco-CMS,marcemarc/Umbraco-CMS,kasperhhk/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,hfloyd/Umbraco-CMS,rasmuseeg/Umbraco-CMS,kgiszewski/Umbraco-CMS,bjarnef/Umbraco-CMS,gkonings/Umbraco-CMS,gavinfaux/Umbraco-CMS,KevinJump/Umbraco-CMS,hfloyd/Umbraco-CMS,KevinJump/Umbraco-CMS,rasmusfjord/Umbraco-CMS,TimoPerplex/Umbraco-CMS,gavinfaux/Umbraco-CMS,JeffreyPerplex/Umbraco-CMS,marcemarc/Umbraco-CMS,KevinJump/Umbraco-CMS,dawoe/Umbraco-CMS,leekelleher/Umbraco-CMS,NikRimington/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,rasmuseeg/Umbraco-CMS,mattbrailsford/Umbraco-CMS,kgiszewski/Umbraco-CMS,mattbrailsford/Umbraco-CMS,mattbrailsford/Umbraco-CMS,TimoPerplex/Umbraco-CMS,neilgaietto/Umbraco-CMS,leekelleher/Umbraco-CMS,mittonp/Umbraco-CMS,TimoPerplex/Umbraco-CMS,umbraco/Umbraco-CMS,sargin48/Umbraco-CMS,base33/Umbraco-CMS,nul800sebastiaan/Umbraco-CMS,gavinfaux/Umbraco-CMS,lars-erik/Umbraco-CMS,gavinfaux/Umbraco-CMS,romanlytvyn/Umbraco-CMS,sargin48/Umbraco-CMS,jchurchley/Umbraco-CMS,aaronpowell/Umbraco-CMS,neilgaietto/Umbraco-CMS,JeffreyPerplex/Umbraco-CMS,aadfPT/Umbraco-CMS,rasmusfjord/Umbraco-CMS,arknu/Umbraco-CMS,abjerner/Umbraco-CMS,gkonings/Umbraco-CMS,mittonp/Umbraco-CMS,robertjf/Umbraco-CMS,abjerner/Umbraco-CMS,robertjf/Umbraco-CMS,hfloyd/Umbraco-CMS,Phosworks/Umbraco-CMS,tcmorris/Umbraco-CMS,leekelleher/Umbraco-CMS,PeteDuncanson/Umbraco-CMS,nul800sebastiaan/Umbraco-CMS,robertjf/Umbraco-CMS,marcemarc/Umbraco-CMS,rasmusfjord/Umbraco-CMS,rustyswayne/Umbraco-CMS,sargin48/Umbraco-CMS,rustyswayne/Umbraco-CMS,mittonp/Umbraco-CMS,KevinJump/Umbraco-CMS,abjerner/Umbraco-CMS,abryukhov/Umbraco-CMS,rasmusfjord/Umbraco-CMS,madsoulswe/Umbraco-CMS,dawoe/Umbraco-CMS,mittonp/Umbraco-CMS,kasperhhk/Umbraco-CMS,madsoulswe/Umbraco-CMS,robertjf/Umbraco-CMS,romanlytvyn/Umbraco-CMS,dawoe/Umbraco-CMS,JimBobSquarePants/Umbraco-CMS,marcemarc/Umbraco-CMS,sargin48/Umbraco-CMS,mattbrailsford/Umbraco-CMS,WebCentrum/Umbraco-CMS,lars-erik/Umbraco-CMS,bjarnef/Umbraco-CMS,tcmorris/Umbraco-CMS,rustyswayne/Umbraco-CMS,hfloyd/Umbraco-CMS,PeteDuncanson/Umbraco-CMS,aadfPT/Umbraco-CMS,arknu/Umbraco-CMS,rasmuseeg/Umbraco-CMS,lars-erik/Umbraco-CMS,kgiszewski/Umbraco-CMS,Phosworks/Umbraco-CMS,dawoe/Umbraco-CMS,tompipe/Umbraco-CMS,Phosworks/Umbraco-CMS,tcmorris/Umbraco-CMS,kasperhhk/Umbraco-CMS,jchurchley/Umbraco-CMS,jchurchley/Umbraco-CMS
e733a2662791931bf885227c73557dc5833b72f4
buildscripts/nightly/test_build.bat
buildscripts/nightly/test_build.bat
@echo off rem This batch file is not actually used for the nightly build, but performs rem similar steps and is handy for testing the build with similar settings. rem It also demonstrates how to set up an automated build by calling Ant rem directly. rem Note, however, that this batch file will not clean the source tree before rem building. set batch_file_dir=%~dp0 set src_root=%batch_file_dir%\..\.. set log_filename=%src_root%\buildlog.xml set report_filename=%src_root%\buildreport.html if exist %log_filename% ( del %log_filename% ) call ant -f %src_root%\buildscripts\nightly\nightlybuild_Windows.xml ^ -listener org.apache.tools.ant.XmlLogger ^ -logger org.apache.tools.ant.listener.SimpleBigProjectLogger ^ -DXmlLogger.file=%log_filename% ^ -Dmm.versionstring=test_build if not exist %log_filename% ( echo Ant failed without producing XML log file exit /b 1 ) python -c "import sys" -c "if sys.version_info.major != 3 or sys.version_info.minor < 3: sys.exit(1)" if errorlevel 1 ( echo Python 3.3 or later required to generate build error report exit /b ) python %src_root%\buildscripts\nightly\genreport_Windows.py %src_root% %log_filename% %report_filename% start %report_filename%
@echo off setlocal enableextensions enabledelayedexpansion rem This batch file is not actually used for the nightly build, but performs rem similar steps and is handy for testing the build with similar settings. rem It also demonstrates how to set up an automated build by calling Ant rem directly. rem Note, however, that this batch file will not clean the source tree before rem building. set batch_file_dir=%~dp0 set src_root=%batch_file_dir%\..\.. set log_filename=%src_root%\buildlog.xml set report_filename=%src_root%\buildreport.html if exist %log_filename% ( del %log_filename% ) rem Prevent 'only one logger' error. set ANT_ARGS= call ant -f %src_root%\buildscripts\nightly\nightlybuild_Windows.xml ^ -listener org.apache.tools.ant.XmlLogger ^ -logger org.apache.tools.ant.listener.SimpleBigProjectLogger ^ -DXmlLogger.file=%log_filename% ^ -Dmm.versionstring=test_build if not exist %log_filename% ( echo Ant failed without producing XML log file exit /b 1 ) python -c "import sys" -c "if sys.version_info.major != 3 or sys.version_info.minor < 3: sys.exit(1)" if errorlevel 1 ( echo Python 3.3 or later required to generate build error report exit /b ) python %src_root%\buildscripts\nightly\genreport_Windows.py %src_root% %log_filename% %report_filename% start %report_filename%
Tweak nightly build test script.
Tweak nightly build test script. git-svn-id: 03a8048b5ee8463be5048a3801110fb50f378627@12237 d0ab736e-dc22-4aeb-8dc9-08def0aa14fd
Batchfile
mit
kmdouglass/Micro-Manager,kmdouglass/Micro-Manager
fbf3265f5af7cbcc5d68f9b16b058e0ddf2292a7
script/cibuild.cmd
script/cibuild.cmd
SET BUILD_ATOM_RELEASES_S3_KEY=%BUILD_ATOM_WIN_RELEASES_S3_KEY% SET BUILD_ATOM_RELEASES_S3_SECRET=%BUILD_ATOM_WIN_RELEASES_S3_SECRET% SET BUILD_ATOM_RELEASES_S3_BUCKET=%BUILD_ATOM_WIN_RELEASES_S3_BUCKET% ECHO Here I go Windowsing again @IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\cibuild" %* ) ELSE ( node "%~dp0\cibuild" %* )
SET BUILD_ATOM_RELEASES_S3_KEY=%BUILD_ATOM_WIN_RELEASES_S3_KEY% SET BUILD_ATOM_RELEASES_S3_SECRET=%BUILD_ATOM_WIN_RELEASES_S3_SECRET% SET BUILD_ATOM_RELEASES_S3_BUCKET=%BUILD_ATOM_WIN_RELEASES_S3_BUCKET% @IF EXIST "%~dp0\node.exe" ( "%~dp0\node.exe" "%~dp0\cibuild" %* ) ELSE ( node "%~dp0\cibuild" %* )
Revert "Let's see if we get here."
Revert "Let's see if we get here." This reverts commit 481cacb5d31d28251da8ee276dba6b203753e869.
Batchfile
mit
ashneo76/atom,rlugojr/atom,Mokolea/atom,jordanbtucker/atom,bolinfest/atom,t9md/atom,wiggzz/atom,stinsonga/atom,helber/atom,andrewleverette/atom,chfritz/atom,Austen-G/BlockBuilder,ardeshirj/atom,decaffeinate-examples/atom,johnhaley81/atom,CraZySacX/atom,AlexxNica/atom,bj7/atom,alexandergmann/atom,gontadu/atom,transcranial/atom,Mokolea/atom,florianb/atom,johnhaley81/atom,stinsonga/atom,brumm/atom,bj7/atom,kaicataldo/atom,brumm/atom,brettle/atom,andrewleverette/atom,t9md/atom,liuderchi/atom,andrewleverette/atom,decaffeinate-examples/atom,svanharmelen/atom,gontadu/atom,jordanbtucker/atom,liuderchi/atom,scippio/atom,bsmr-x-script/atom,rlugojr/atom,FIT-CSE2410-A-Bombs/atom,helber/atom,me-benni/atom,CraZySacX/atom,scippio/atom,ardeshirj/atom,alfredxing/atom,atom/atom,Ingramz/atom,xream/atom,seedtigo/atom,bj7/atom,ashneo76/atom,dijs/atom,chfritz/atom,hellendag/atom,xream/atom,PKRoma/atom,florianb/atom,dijs/atom,me-benni/atom,chfritz/atom,Mokolea/atom,stinsonga/atom,hellendag/atom,ardeshirj/atom,alexandergmann/atom,CraZySacX/atom,decaffeinate-examples/atom,alexandergmann/atom,sotayamashita/atom,decaffeinate-examples/atom,kevinrenaers/atom,bsmr-x-script/atom,Ingramz/atom,Austen-G/BlockBuilder,FIT-CSE2410-A-Bombs/atom,florianb/atom,sotayamashita/atom,sotayamashita/atom,wiggzz/atom,PKRoma/atom,svanharmelen/atom,daxlab/atom,atom/atom,rlugojr/atom,hellendag/atom,xream/atom,seedtigo/atom,kandros/atom,FIT-CSE2410-A-Bombs/atom,kevinrenaers/atom,AlexxNica/atom,transcranial/atom,stinsonga/atom,liuderchi/atom,Austen-G/BlockBuilder,PKRoma/atom,johnhaley81/atom,tjkr/atom,dijs/atom,AdrianVovk/substance-ide,Arcanemagus/atom,jordanbtucker/atom,Ingramz/atom,bolinfest/atom,scippio/atom,bolinfest/atom,wiggzz/atom,bsmr-x-script/atom,AdrianVovk/substance-ide,Austen-G/BlockBuilder,helber/atom,liuderchi/atom,florianb/atom,Austen-G/BlockBuilder,kandros/atom,brettle/atom,Arcanemagus/atom,daxlab/atom,alfredxing/atom,daxlab/atom,kevinrenaers/atom,AlexxNica/atom,svanharmelen/atom,Arcanemagus/atom,brettle/atom,t9md/atom,kaicataldo/atom,seedtigo/atom,transcranial/atom,AdrianVovk/substance-ide,me-benni/atom,kandros/atom,tjkr/atom,brumm/atom,atom/atom,florianb/atom,ashneo76/atom,tjkr/atom,kaicataldo/atom,alfredxing/atom,Austen-G/BlockBuilder,gontadu/atom
195df5f2a18d35e61b16d82721638b4147a78c4b
ci/jenkins.cmd
ci/jenkins.cmd
@ECHO OFF SET BASEDIR=%~dp0.. SET USERINI=%BASEDIR%\user.ini FOR /F "tokens=1,2 delims=:" %%a in ("%STEELTOE_PCF_CREDENTIALS%") do ( set CF_USER=%%a set CF_PASS=%%b ) SET PYTHON_HOME=C:\Python36 SET DOTNET_HOME=C:\Program Files\dotnet SET JAVA_HOME=C:\opt\oracle-jdk-8 SET GIT_HOME=C:\Program Files\Git SET MAVEN_HOME=C:\opt\apache-maven-3.3.9 SET CF_HOME=C:\ProgramData\chocolatey\bin SET TEST_OUT=C:\st\%~nx1 ECHO [behave.userdata] > %USERINI% ECHO cf_apiurl = api.run.pcfbeta.io >> %USERINI% ECHO cf_org = STEELTOE >> %USERINI% ECHO cf_username = %CF_USER% >> %USERINI% ECHO cf_password = %CF_PASS% >> %USERINI% ECHO cf_max_attempts = 250 >> %USERINI% ECHO output = %TEST_OUT% >> %USERINI% SET PATH=%PYTHON_HOME%;%PYTHON_HOME%\Scripts;%DOTNET_HOME%;%CF_HOME%;%JAVA_HOME%\bin;%GIT_HOME%\bin;%MAVEN_HOME%\bin;%PATH% PATH RMDIR /S /Q %TEST_OUT% REM CALL %BASEDIR%\test-setup REM CALL %BASEDIR%\test-run %* behave %*
@ECHO OFF SET BASEDIR=%~dp0.. SET USERINI=%BASEDIR%\user.ini FOR /F "tokens=1,2 delims=:" %%a in ("%STEELTOE_PCF_CREDENTIALS%") do ( set CF_USER=%%a set CF_PASS=%%b ) SET PYTHON_HOME=C:\Python36 SET DOTNET_HOME=C:\Program Files\dotnet SET JAVA_HOME=C:\opt\oracle-jdk-8 SET GIT_HOME=C:\Program Files\Git SET MAVEN_HOME=C:\opt\apache-maven-3.3.9 SET CF_HOME=C:\ProgramData\chocolatey\bin SET TEST_OUT=C:\st\%~nx1 ECHO [behave.userdata] > %USERINI% ECHO cf_apiurl = api.run.pcfbeta.io >> %USERINI% ECHO cf_org = STEELTOE >> %USERINI% ECHO cf_username = %CF_USER% >> %USERINI% ECHO cf_password = %CF_PASS% >> %USERINI% ECHO cf_max_attempts = 250 >> %USERINI% REM ECHO output = %TEST_OUT% >> %USERINI% SET PATH=%PYTHON_HOME%;%PYTHON_HOME%\Scripts;%DOTNET_HOME%;%CF_HOME%;%JAVA_HOME%\bin;%GIT_HOME%\bin;%MAVEN_HOME%\bin;%PATH% PATH RMDIR /S /Q %TEST_OUT% REM CALL %BASEDIR%\test-setup REM CALL %BASEDIR%\test-run %* behave %*
Remove override of output dir on Windows
Remove override of output dir on Windows
Batchfile
apache-2.0
SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples
b54c260d32b68a11a197b60efc6606114220cf90
setup.bat
setup.bat
@ECHO OFF ECHO This will install Topographica and its package dependencies. if "%1"=="" ECHO If default path is not acceptable, enter path as parameter to setup.bat if NOT "%1"=="" ECHO Target is %1\Topographica\ REM Developer's Note: Install Python then call the setup.py script REM inside the external/win32 directory. REM $Id: setup.bat,v 1.6 2004/06/30 15:43:59 judah Exp $ external\win32\util\Y_OR_N /Q /A "Do you wish to continue? [Y/n]" IF ERRORLEVEL 3 GOTO :INSTALL IF ERRORLEVEL 2 GOTO :EXIT IF ERRORLEVEL 1 GOTO :INSTALL :INSTALL ftype Python.File | findstr "Python.File=" IF ERRORLEVEL 1 GOTO :INSTALL_PYTHON IF ERRORLEVEL 0 GOTO :RUN_SETUP :INSTALL_PYTHON ECHO Python file associations not detected: Installing Python 2.4 start /wait external\win32\python-2.4.msi :RUN_SETUP cd external\win32 cd start /wait setup.py configure start /wait /B setup.py install %1 :EXIT ECHO Install Complete
@ECHO OFF ECHO This will install Topographica and its package dependencies. if "%1"=="" ECHO If default path is not acceptable, enter path as parameter to setup.bat if NOT "%1"=="" ECHO Target is %1\Topographica\ REM Developer's Note: Install Python then call the setup.py script REM inside the external/win32 directory. REM $Id: setup.bat,v 1.6 2004/06/30 15:43:59 judah Exp $ external\win32\util\Y_OR_N /Q /A "Do you wish to continue? [Y/n]" IF ERRORLEVEL 3 GOTO :INSTALL IF ERRORLEVEL 2 GOTO :EXIT IF ERRORLEVEL 1 GOTO :INSTALL :INSTALL ftype Python.File | findstr "Python.File=" IF ERRORLEVEL 1 GOTO :INSTALL_PYTHON IF ERRORLEVEL 0 GOTO :RUN_SETUP :INSTALL_PYTHON ECHO Python file associations not detected: Installing Python 2.4 start /wait external\win32\python-2.4.2.msi :RUN_SETUP cd external\win32 cd start /wait setup.py configure start /wait /B setup.py install %1 :EXIT ECHO Install Complete
Upgrade Python 2.4.2 for Windows
Upgrade Python 2.4.2 for Windows
Batchfile
bsd-3-clause
ioam/svn-history,ioam/svn-history,ioam/svn-history,ioam/svn-history,ioam/svn-history
0573398770861dfb170f3d58ba8da23f411ffe32
src/SDK/UninstallOrleansVSTools.cmd
src/SDK/UninstallOrleansVSTools.cmd
@setlocal @prompt $G$S @set CMDHOME=%~dp0. @if NOT "%VS120COMNTOOLS%"=="" ( @set VSTOOLSDIR="%VS120COMNTOOLS%" @set VSVER=Visual Studio 2013 ) else ( @set VSTOOLSDIR="%VS110COMNTOOLS%" @set VSVER=Visual Studio 2012 ) @set PKG=Orleans Tools for %VSVER% @echo --- Uninstalling %PKG% @Echo -- VS Tools directory = %VSTOOLSDIR% @Echo - Unsetting OrleansSDK environment variable SetX.exe OrleansSDK "" @ECHO - Uninstalling Visual Studio extension package %PKG% %VSTOOLSDIR%\..\IDE\vsixinstaller.exe /uninstall:462db41f-31a4-48f0-834c-1bdcc0578511 @echo --- Finished uninstalling %PKG% @pause
@setlocal @prompt $G$S @set CMDHOME=%~dp0. @if NOT "%VS140COMNTOOLS%"=="" ( @set VSTOOLSDIR="%VS140COMNTOOLS%" @set VSVER=Visual Studio 2015 ) else ( @if NOT "%VS120COMNTOOLS%"=="" ( @set VSTOOLSDIR="%VS120COMNTOOLS%" @set VSVER=Visual Studio 2013 ) else ( @set VSTOOLSDIR="%VS110COMNTOOLS%" @set VSVER=Visual Studio 2012 ) ) @set PKG=Orleans Tools for %VSVER% @echo --- Uninstalling %PKG% @Echo -- VS Tools directory = %VSTOOLSDIR% @Echo - Unsetting OrleansSDK environment variable SetX.exe OrleansSDK "" @ECHO - Uninstalling Visual Studio extension package %PKG% %VSTOOLSDIR%\..\IDE\vsixinstaller.exe /uninstall:462db41f-31a4-48f0-834c-1bdcc0578511 @echo --- Finished uninstalling %PKG% @pause
Add path to 2015 VS Tools.
Add path to 2015 VS Tools.
Batchfile
mit
xclayl/orleans,jokin/orleans,sebastianburckhardt/orleans,MikeHardman/orleans,hoopsomuah/orleans,dotnet/orleans,SoftWar1923/orleans,pherbel/orleans,xclayl/orleans,galvesribeiro/orleans,brhinescot/orleans,benjaminpetit/orleans,ElanHasson/orleans,sergeybykov/orleans,shayhatsor/orleans,rrector/orleans,shayhatsor/orleans,amccool/orleans,sebastianburckhardt/orleans,jason-bragg/orleans,tsibelman/orleans,galvesribeiro/orleans,waynemunro/orleans,ashkan-saeedi-mazdeh/orleans,gabikliot/orleans,ibondy/orleans,amccool/orleans,bstauff/orleans,LoveElectronics/orleans,Carlm-MS/orleans,ibondy/orleans,dVakulen/orleans,jokin/orleans,Joshua-Ferguson/orleans,ReubenBond/orleans,yevhen/orleans,ticup/orleans,shlomiw/orleans,dotnet/orleans,bstauff/orleans,MikeHardman/orleans,jdom/orleans,Carlm-MS/orleans,gigya/orleans,jkonecki/orleans,gabikliot/orleans,jkonecki/orleans,Joshua-Ferguson/orleans,amccool/orleans,shlomiw/orleans,LoveElectronics/orleans,kylemc/orleans,waynemunro/orleans,kylemc/orleans,veikkoeeva/orleans,dVakulen/orleans,jokin/orleans,centur/orleans,sergeybykov/orleans,Liversage/orleans,gigya/orleans,Liversage/orleans,tsibelman/orleans,dVakulen/orleans,jdom/orleans,brhinescot/orleans,ashkan-saeedi-mazdeh/orleans,centur/orleans,Liversage/orleans,yevhen/orleans,rrector/orleans,ElanHasson/orleans,SoftWar1923/orleans,ashkan-saeedi-mazdeh/orleans,brhinescot/orleans,jthelin/orleans,ticup/orleans,hoopsomuah/orleans,pherbel/orleans
1373fe4b0a313f6babaddabbc92196bd603ad0ed
ci/install.bat
ci/install.bat
curl -sSf https://static.rust-lang.org/dist/rust-1.22.1-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-sys,KyleMayes/clang-sys
66012cbac6056ae1c7952b78512f90f94af3be83
start_node.bat
start_node.bat
REM Start Max patch START "" "C:\Program Files\Cycling '74\Max Runtime 6.1\maxRT.exe" C:\eim\EiMpatch\EmotionInMotion.maxproj TIMEOUT 15 REM Set Node.js environment to production SET NODE_ENV=production REM Switch to EiM directory CD c:\eim REM Start Node.js server C:\Users\EmotionInMotionV2\AppData\Roaming\npm\grunt default
REM Start Max patch START "" "C:\Program Files\Cycling '74\Max Runtime 6.1\maxRT.exe" C:\eim\MaxMSP\EmotionInMotion\EmotionInMotion.maxproj TIMEOUT 15 REM Set Node.js environment to production SET NODE_ENV=production REM Switch to EiM directory CD c:\eim REM Start Node.js server #C:\Users\EmotionInMotionV2\AppData\Roaming\npm\grunt default node server.js
Update startup script with new path and to bypass Grunt
Update startup script with new path and to bypass Grunt
Batchfile
mit
brennon/eim,brennon/eim,brennon/eim,brennon/eim
395a90fbeb870890e6b3d48a18bfc222d922087a
scripts/docker/install-docker.bat
scripts/docker/install-docker.bat
powershell -File A:\scripts\docker\add-docker-group.ps1 powershell -File A:\scripts\docker\install-docker.ps1 powershell -File A:\scripts\docker\open-docker-insecure-port.ps1 powershell -File A:\scripts\docker\remove-docker-key-json.ps1
powershell -File A:\add-docker-group.ps1 powershell -File A:\install-docker.ps1 powershell -File A:\open-docker-insecure-port.ps1 powershell -File A:\remove-docker-key-json.ps1
Fix path to floppy files
Fix path to floppy files
Batchfile
mit
plossys/packer-windows
617d2ecc88a406fb3a3ebdb3bbb754551ce607e4
Source/build-dist-examples.cmd
Source/build-dist-examples.cmd
@echo off setlocal cd "%~dp0" if exist "dist-examples" rmdir /s /q "dist-examples" for /d %%a in ("Examples/WPF/*") do ( echo Examples/WPF/%%~a mkdir "dist-examples/WPF/%%~a" xcopy /s /d /q "Examples/WPF/%%~a/bin/Release" "dist-examples/WPF/%%~a\" ) for /d %%a in ("Examples/WPF.SharpDX/*") do ( echo Examples/WPF.SharpDX/%%~a mkdir "dist-examples/WPF.SharpDX/%%~a" xcopy /s /d /q "Examples/WPF.SharpDX/%%~a/bin/Release" "dist-examples/WPF.SharpDX/%%~a\" )
@echo off setlocal cd "%~dp0" if exist "dist-examples" rmdir /s /q "dist-examples" for /d %%a in ("Examples/WPF/*") do ( echo Examples/WPF/%%~a mkdir "dist-examples/WPF/%%~a" xcopy /s /d /q "Examples/WPF/%%~a/bin/Release" "dist-examples/WPF/%%~a\" ) for /d %%a in ("Examples/WPF.SharpDX/*") do ( echo Examples/WPF.SharpDX/%%~a mkdir "dist-examples/WPF.SharpDX/%%~a" xcopy /s /d /q "Examples/WPF.SharpDX/%%~a/bin/Release" "dist-examples/WPF.SharpDX/%%~a\" ) for /d %%a in ("Examples/WPF.SharpDX/*") do ( echo Examples/SharpDX.Core/%%~a mkdir "dist-examples/SharpDX.Core/%%~a" xcopy /s /d /q "Examples/SharpDX.Core/%%~a/bin/Release" "dist-examples/SharpDX.Core/%%~a\" )
Add SharpDX.Core examples into example package
Add SharpDX.Core examples into example package
Batchfile
mit
chrkon/helix-toolkit,helix-toolkit/helix-toolkit,JeremyAnsel/helix-toolkit,holance/helix-toolkit
5281ae4a76789bb32e2c3f5b90b87de49f79e19e
recipe/build_base.bat
recipe/build_base.bat
set LIB=%LIBRARY_LIB%;%LIB% set LIBPATH=%LIBRARY_LIB%;%LIBPATH% set INCLUDE=%LIBRARY_INC%;%INCLUDE% ECHO [directories] > setup.cfg ECHO basedirlist = %LIBRARY_PREFIX% >> setup.cfg ECHO [packages] >> setup.cfg ECHO tests = False >> setup.cfg ECHO sample_data = False >> setup.cfg ECHO toolkits_tests = False >> setup.cfg rem matplotlib will link to png, zlib statically if it exists. Replace the static library with shared del %LIBRARY_LIB%\libpng16_static.lib copy %LIBRARY_LIB%\libpng16.lib %LIBRARY_LIB%\libpng16_static.lib del %LIBRARY_LIB%\zlibstatic.lib copy %LIBRARY_LIB%\z.lib %LIBRARY_LIB%\zlibstatic.lib %PYTHON% -m pip install . --no-deps -vv if errorlevel 1 exit 1
set LIB=%LIBRARY_LIB%;%LIB% set LIBPATH=%LIBRARY_LIB%;%LIBPATH% set INCLUDE=%LIBRARY_INC%;%INCLUDE% ECHO [directories] > setup.cfg ECHO basedirlist = %LIBRARY_PREFIX% >> setup.cfg ECHO [packages] >> setup.cfg ECHO tests = False >> setup.cfg ECHO sample_data = False >> setup.cfg ECHO toolkits_tests = False >> setup.cfg %PYTHON% -m pip install . --no-deps -vv if errorlevel 1 exit 1
Remove unneeded handling of static libraries on windows
Remove unneeded handling of static libraries on windows Matplotlib no longer depends on these.
Batchfile
bsd-3-clause
conda-forge/matplotlib-feedstock
485580b19c40cdbd1e046f90d59407eb4d6a40ce
launch.bat
launch.bat
java -Xmx256m -Xms32m -jar SimpleServer.jar pause
@echo off java -Xmx256m -Xms32m -jar SimpleServer.jar pause
Revert "fix console input echo"
Revert "fix console input echo" Didn't work. This reverts commit 110f7c87aee87e59940b8ce3ecfe0a2298b644cc.
Batchfile
mit
SimpleServer/SimpleServer,iBotPeaches/SimpleServer,SimpleServer/SimpleServer,iBotPeaches/SimpleServer
e5949ec2af3bb4fce0261665105d845144a5ab9f
tools/createNugetPackages.cmd
tools/createNugetPackages.cmd
@ECHO OFF pushd "%~dp0.." SET parentDir=%cd% popd SET SUFFIX=%1 IF '%SUFFIX%' == '' GOTO NOSUFFIX for /f %%a in ('findstr /sm packOptions %parentDir%\src\project.json') do dotnet pack %%a --no-build -c Release -o "%parentDir%\nugets" --version-suffix %SUFFIX% "%~dp0\nuget.exe" pack "%parentDir%\nuspecs\Suite\Microsoft.Diagnostics.EventFlow.Suite.nuspec" -OutputDirectory "%parentDir%\nugets" -Suffix %SUFFIX% GOTO END :NOSUFFIX for /f %%a in ('findstr /sm packOptions %parentDir%\src\project.json') do dotnet pack %%a --no-build -c Release -o "%parentDir%\nugets" "%~dp0\nuget.exe" pack "%parentDir%\nuspecs\Suite\Microsoft.Diagnostics.EventFlow.Suite.nuspec" -OutputDirectory "%parentDir%\nugets" GOTO END :END
@ECHO OFF pushd "%~dp0.." SET parentDir=%cd% popd SET CONFIGURATION=%2 IF '%CONFIGURATION%' == '' SET CONFIGURATION=Release SET SUFFIX=%1 IF '%SUFFIX%' == '' GOTO NOSUFFIX for /f %%a in ('findstr /sm packOptions %parentDir%\src\project.json') do dotnet pack %%a --no-build -c %CONFIGURATION% -o "%parentDir%\nugets" --version-suffix %SUFFIX% "%~dp0\nuget.exe" pack "%parentDir%\nuspecs\Suite\Microsoft.Diagnostics.EventFlow.Suite.nuspec" -OutputDirectory "%parentDir%\nugets" -Suffix %SUFFIX% GOTO END :NOSUFFIX for /f %%a in ('findstr /sm packOptions %parentDir%\src\project.json') do dotnet pack %%a --no-build -c %CONFIGURATION% -o "%parentDir%\nugets" "%~dp0\nuget.exe" pack "%parentDir%\nuspecs\Suite\Microsoft.Diagnostics.EventFlow.Suite.nuspec" -OutputDirectory "%parentDir%\nugets" GOTO END :END
Allow building Nuget packages out of Debug binaries
Allow building Nuget packages out of Debug binaries
Batchfile
mit
karolz-ms/diagnostics-eventflow
f85ff86c047e4ada2fdf5168bf946f1186716320
bin/pill.bat
bin/pill.bat
@echo off echo "Not yet"
@echo off IF "%~1"=="" ( goto usage ) ELSE IF "%~1"=="init" ( mkdir _pill\bin set CONDA_BIN_PATH="conda info --root" set CONDA_DEFAULT_ENV ) ELSE IF "%~1"=="in" ( echo "Ready to go in" ) ELSE IF "%~1" == "out" ( echo "Ready to go out" ) ELSE ( echo "error" goto usage exit /b 1 ) exit /b :usage echo usage: pill [COMMAND] echo. echo SYNOPSIS echo Create a local python and conda environment in the current directory. echo When activated all the libraries will be installed and imported from echo the '_pill' directory in the root of your project. echo. echo USAGE echo Create and run temporal/local environments. echo. echo $ pill init echo $ source pill in echo $ source pill out echo. echo COMMANDS echo init Creates the .pill directory and create links. echo in Modifies CONDA_DEFAULT_ENV and PATH to use echo the .pill directory and sets the PILL_NAME variable. echo out Restores the previous CONDA_DEFAULT_ENV and PATH. Also echo unsets PILL_NAME. echo. exit /b :create_symlinks exit /b :backup set PILL_OLD_PATH=%PATH% set PILL_OLD_CONDA_DEFAULT_ENV=%CONDA_DEFAULT_ENV% set PILL_PROMPT=%PROMPT% exit /b :remove_current_conda set CONDA_BIN_PATH="conda info --root" set CONDA_BIN_PATH="%CONDA_BIN_PATH%\bin" PATH=:$PATH: PATH=${PATH//:$CONDA_BIN_PATH:/:} exit /b
Switch statement in batch file
Switch statement in batch file
Batchfile
mit
malev/pill
db677c56f819e953b09a1a9d759111ea6e5c0c35
package.bat
package.bat
@echo off echo. echo === TEST === echo. dotnet test --configuration Release src/DeepEqual.Test/DeepEqual.Test.csproj echo. echo === PACKAGE === echo. dotnet pack --include-symbols --include-source --configuration Release --output ..\.. src\DeepEqual\DeepEqual.csproj echo. pause
@echo off echo. echo === TEST === echo. dotnet test --configuration Release src/DeepEqual.Test/DeepEqual.Test.csproj echo. echo === PACKAGE === echo. dotnet pack ^ --include-symbols ^ -p:SymbolPackageFormat=snupkg ^ --include-source ^ --configuration Release ^ --output . ^ src\DeepEqual\DeepEqual.csproj dotnet pack ^ --include-symbols ^ -p:SymbolPackageFormat=snupkg ^ --include-source ^ --configuration Release ^ --output . ^ src\DeepEqual.System.Text.Json\DeepEqual.System.Text.Json.csproj echo. pause
Add steps for packaging Json extension. Use snupkg format for symbols.
Add steps for packaging Json extension. Use snupkg format for symbols.
Batchfile
mit
jamesfoster/DeepEqual
d15cf2baa952b94645c903281aa5e95109d73aa0
contrib/packaging-python/conda/bld.bat
contrib/packaging-python/conda/bld.bat
REM To avoid building in work/ alongside the source. Rather build in work/build/ mkdir build cd build REM Remove dot from PY_VER for use in library name set MY_PY_VER=%PY_VER:.=% REM Configure step cmake -G "%CMAKE_GENERATOR%" ^ -DPYTHON_EXECUTABLE:FILEPATH="%PYTHON%" ^ -DPYTHON_INCLUDE_DIR:PATH="%PREFIX%"/include ^ -DPYTHON_LIBRARY:FILEPATH="%PREFIX%"/libs/python%MY_PY_VER%.lib ^ --config "%CONFIGURATION%" ^ -DENABLE_MODULE_IRRLICHT=ON ^ -DENABLE_MODULE_FEA=OFF ^ -DENABLE_MODULE_POSTPROCESS=OFF ^ -DENABLE_MODULE_PYTHON=ON ^ -DBUILD_DEMOS=OFF ^ -DBUILD_TESTING=OFF ^ -DCH_IRRLICHTDIR="C:\irrlicht-1.8.2" ^ -DCH_IRRLICHTLIB="C:\irrlicht-1.8.2\lib\Win64-visualStudio\Irrlicht.lib" ^ .. if errorlevel 1 exit 1 REM Build step cmake --build . --config "%CONFIGURATION%" if errorlevel 1 exit 1 REM Install step cmake --build . --config "%CONFIGURATION%" --target install if errorlevel 1 exit 1 REM Install step REM ninja install REM if errorlevel 1 exit 1
REM To avoid building in work/ alongside the source. Rather build in work/build/ mkdir build cd build REM Remove dot from PY_VER for use in library name set MY_PY_VER=%PY_VER:.=% REM Configure step cmake -G "%CMAKE_GENERATOR%" ^ -DCMAKE_INSTALL_PREFIX="%PREFIX%" ^ -DPYTHON_EXECUTABLE:FILEPATH="%PYTHON%" ^ -DPYTHON_INCLUDE_DIR:PATH="%PREFIX%"/include ^ -DPYTHON_LIBRARY:FILEPATH="%PREFIX%"/libs/python%MY_PY_VER%.lib ^ --config "%CONFIGURATION%" ^ -DENABLE_MODULE_IRRLICHT=ON ^ -DENABLE_MODULE_FEA=OFF ^ -DENABLE_MODULE_POSTPROCESS=OFF ^ -DENABLE_MODULE_PYTHON=ON ^ -DBUILD_DEMOS=OFF ^ -DBUILD_TESTING=OFF ^ -DCH_IRRLICHTDIR="C:\irrlicht-1.8.2" ^ -DCH_IRRLICHTLIB="C:\irrlicht-1.8.2\lib\Win64-visualStudio\Irrlicht.lib" ^ .. if errorlevel 1 exit 1 REM Build step cmake --build . --config "%CONFIGURATION%" if errorlevel 1 exit 1 REM Install step cmake --build . --config "%CONFIGURATION%" --target install if errorlevel 1 exit 1 REM Install step REM ninja install REM if errorlevel 1 exit 1
Build into virtual environment of Conda
Build into virtual environment of Conda
Batchfile
bsd-3-clause
rserban/chrono,dariomangoni/chrono,rserban/chrono,projectchrono/chrono,rserban/chrono,projectchrono/chrono,projectchrono/chrono,rserban/chrono,rserban/chrono,rserban/chrono,armanpazouki/chrono,armanpazouki/chrono,Milad-Rakhsha/chrono,projectchrono/chrono,Milad-Rakhsha/chrono,dariomangoni/chrono,projectchrono/chrono,dariomangoni/chrono,Milad-Rakhsha/chrono,Milad-Rakhsha/chrono,Milad-Rakhsha/chrono,armanpazouki/chrono,dariomangoni/chrono,armanpazouki/chrono,Milad-Rakhsha/chrono,rserban/chrono,dariomangoni/chrono,dariomangoni/chrono,projectchrono/chrono,armanpazouki/chrono,armanpazouki/chrono
bd4bff77ce049e573a8e8bbefc6911ab9bb764f1
Build/ZipRelease.cmd
Build/ZipRelease.cmd
call DeletePdbFiles.cmd ..\Output\NET45\Examples call DeletePdbFiles.cmd ..\Output\NET40\Examples del /S /Q ..\Output\NET40\Examples "C:\Program Files\7-Zip\7z.exe" a -r ..\Output\HelixToolkit-%1.zip ..\Output\*.* > ZipRelease.log
mkdir ..\Output\Release mkdir ..\Output\Release\NET40 mkdir ..\Output\Release\NET45 copy ..\Output\NET45\HelixToolkit.??? ..\Output\Release copy ..\Output\NET45\HelixToolkit.Wpf.??? ..\Output\Release\NET45 copy ..\Output\NET40\HelixToolkit.Wpf.??? ..\Output\Release\NET40 copy ..\Output\NET45\HelixToolkit.Wpf.Input.??? ..\Output\Release\NET45 copy ..\Output\NET40\HelixToolkit.Wpf.Input.??? ..\Output\Release\NET40 copy ..\Output\NET45\HelixToolkit.Wpf.SharpDX.??? ..\Output\Release\NET45 copy ..\Output\NET40\HelixToolkit.Wpf.SharpDX.??? ..\Output\Release\NET40 "C:\Program Files\7-Zip\7z.exe" a -r ..\Output\HelixToolkit-%1.zip ..\Output\Release\*.* > ZipRelease.log
Remove examples from Codeplex Release package.
Remove examples from Codeplex Release package.
Batchfile
mit
helix-toolkit/helix-toolkit,lcouz/helix-toolkit,smischke/helix-toolkit,Iluvatar82/helix-toolkit,CobraCalle/helix-toolkit,jotschgl/helix-toolkit,vidstige/helix-toolkit,DynamoDS/helix-toolkit,holance/helix-toolkit,aparajit-pratap/helix-toolkit,JeremyAnsel/helix-toolkit,0x53A/helix-toolkit,chrkon/helix-toolkit,huoxudong125/helix-toolkit
379665993006121567346340662bd352f91d4c1f
server/bin/server.bat
server/bin/server.bat
@echo off set NODE_ENV=production set AUTH_TOKEN=changeme set PORT=80 if %AUTH_TOKEN%==changeme ( echo ***************************************************** echo Please change the AUTH_TOKEN in server/bin/server.bat echo ***************************************************** pause > nul EXIT ) coffee ./bin/server.coffee
@echo off set NODE_ENV=production set AUTH_TOKEN=changeme set PORT=80 if %AUTH_TOKEN%==changeme ( echo ***************************************************** echo Please change the AUTH_TOKEN in server/bin/server.bat echo ***************************************************** pause > nul EXIT ) forever ./bin/server.coffee
Make app use forever on windows
Make app use forever on windows
Batchfile
bsd-3-clause
unepwcmc/NRT,unepwcmc/NRT
0e5e8f161d205aa96d6ada7d6c73ba920886b42f
zipsrc.bat
zipsrc.bat
cd .. del/q scite.zip zip scite.zip scintilla\*.* scintilla\*\*.* scite\*.* scite\*\*.* scite\*\*\*.* scite\*\*\*\*.* -x *.o -x *.obj -x *.lib -x *.dll -x *.exe -x *.pdb -x *.res -x *.exp -x *.ncb -x *.sbr -x *.bsc -x *.ilk -x *.idb -x *.dpsession -x *.bak cd scite
cd .. del/q scite.zip zip scite.zip scintilla\*.* scintilla\*\*.* scintilla\*\*\*.* scintilla\*\*\*\*.* scintilla\*\*\*\*\*.* scite\*.* scite\*\*.* scite\*\*\*.* scite\*\*\*\*.* -x *.o -x *.obj -x *.lib -x *.dll -x *.exe -x *.pdb -x *.res -x *.exp -x *.ncb -x *.sbr -x *.bsc -x *.ilk -x *.idb -x *.dpsession -x *.bak cd scite
Store OS X files in zips.
Store OS X files in zips.
Batchfile
isc
R1dO/scite_clone,R1dO/scite_clone,R1dO/scite_clone,R1dO/scite_clone
5d8b3cdf7eff724698e58887d96e63b422c5c993
Package.bat
Package.bat
nuget pack AgateLib/AgateLib.csproj nuget pack AgateLib.AgateSDL/AgateLib.SDL.csproj nuget pack AgateLib.OpenGL/AgateLib.OpenGL.csproj nuget pack AgateLib.Platform.WinForms/AgateLib.Platform.WinForms.csproj nuget pack AgateLib.Platform.Test/AgateLib.Platform.Test.csproj nuget pack AgateLib.Platform.IntegrationTest/AgateLib.Platform.IntegrationTest.csproj mkdir packages move *.nupkg packages
nuget pack AgateLib/AgateLib.csproj if %ERRORLEVEL% NEQ 0 exit /b %ERRORLEVEL% nuget pack AgateLib.AgateSDL/AgateLib.SDL.csproj if %ERRORLEVEL% NEQ 0 exit /b %ERRORLEVEL% nuget pack AgateLib.OpenGL/AgateLib.OpenGL.csproj if %ERRORLEVEL% NEQ 0 exit /b %ERRORLEVEL% nuget pack AgateLib.Platform.WinForms/AgateLib.Platform.WinForms.csproj if %ERRORLEVEL% NEQ 0 exit /b %ERRORLEVEL% nuget pack AgateLib.Platform.Test/AgateLib.Platform.Test.csproj if %ERRORLEVEL% NEQ 0 exit /b %ERRORLEVEL% nuget pack AgateLib.Platform.IntegrationTest/AgateLib.Platform.IntegrationTest.csproj if %ERRORLEVEL% NEQ 0 exit /b %ERRORLEVEL%
Add error checking to package.bat.
Add error checking to package.bat.
Batchfile
mit
eylvisaker/AgateLib
fac8d5b65e78a5e04ef3ffc08eb59988c912356e
init.bat
init.bat
@echo off chcp 65001>nul prompt [%USERNAME%@%COMPUTERNAME% $p]$_$$$s rem Fake a UNIX environment doskey clear=cls doskey ls=dir /b $* doskey cp=copy $* doskey mv=move $* doskey rm=del $* doskey cat=type $* rem Easier navigation doskey cd=cd /D $* doskey cd..=cd .. doskey ..=cd .. doskey ...=cd ../.. doskey ....=cd ../../.. rem List files properly doskey l=dir /b $* doskey ll=dir /b $* rem Edit functionality IF NOT EXIST "C:\Program Files\Sublime Text 3" GOTO NOSUBLIME doskey edit="C:\Program Files\Sublime Text 3\sublime_text" $* :NOSUBLIME rem Open functionality doskey open=start $* @echo on
@echo off chcp 65001>nul prompt [%USERNAME%@%COMPUTERNAME% $p]$_$$$s rem Fake a UNIX environment doskey clear=cls doskey ls=dir /d $* doskey cp=copy $* doskey mv=move $* doskey rm=del $* doskey cat=type $* rem Easier navigation doskey cd=cd /D $* doskey cd..=cd .. doskey ..=cd .. doskey ...=cd ../.. doskey ....=cd ../../.. rem List files properly doskey l=dir /b $* doskey ll=dir /b $* rem Edit functionality IF NOT EXIST "C:\Program Files\Sublime Text 3" GOTO NOSUBLIME doskey edit="C:\Program Files\Sublime Text 3\sublime_text" $* :NOSUBLIME rem Open functionality doskey open=start $* @echo on
Use /d switch for ls
Use /d switch for ls
Batchfile
mit
ArloL/dotfiles,ArloL/dotfiles
6e2838bce2879478df056cb9e6d8adbf124b0dc7
Framework/Emlid.WindowsIoT.Hardware/Package.cmd
Framework/Emlid.WindowsIoT.Hardware/Package.cmd
@echo off rem NuGet Package Script rem ==================== rem Creates a release build then generates the NuGet package into the output directory. rem Remember to update the version number and release notes in the "nuspec" file before each release. echo. echo Creating Release build msbuild "%~dp0Emlid.WindowsIot.Hardware.csproj" /p:Configuration=Release if %errorlevel% neq 0 goto error echo. echo Creating NuGet Package "%~dp0..\..\Tools\NuGet\nuget.exe" pack "%~dp0Emlid.WindowsIot.Hardware.csproj" -Prop Configuration=Release -OutputDirectory "%~dp0bin\ARM\Release" if %errorlevel% neq 0 goto error echo. echo Packaging successful. exit /b 0 :error set result=%errorlevel% echo. echo Error %result% exit /b %result%
@echo off rem NuGet Package Script rem ==================== rem Creates a release build then generates the NuGet package into the output directory. rem Remember to update the version number and release notes in the "nuspec" file before each release. echo. echo Initializing Visual Studio tools... call "%vs140comntools%\vsvars32.bat" if %errorlevel% neq 0 goto error echo. echo Creating Release build msbuild "%~dp0Emlid.WindowsIot.Hardware.csproj" /p:Configuration=Release if %errorlevel% neq 0 goto error echo. echo Creating NuGet Package "%~dp0..\..\Tools\NuGet\nuget.exe" pack "%~dp0Emlid.WindowsIot.Hardware.csproj" -Prop Configuration=Release -OutputDirectory "%~dp0bin\ARM\Release" if %errorlevel% neq 0 goto error echo. echo Packaging successful. exit /b 0 :error set result=%errorlevel% echo. echo Error %result% exit /b %result%
Add VS tools initialization to NuGet package command so it can run standalone.
Add VS tools initialization to NuGet package command so it can run standalone.
Batchfile
apache-2.0
emlid/Navio-SDK-Windows-IoT,emlid/Navio-SDK-Windows-IoT,emlid/Navio-SDK-Windows-IoT