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
|
---|---|---|---|---|---|---|---|---|---|
22882b2915ef4e49a07d2d5884c202772302edc6
|
deploy.cmd
|
deploy.cmd
|
:: Symbolically link to all of the dot files in this directory from the
:: home directory.
@echo off
net file >nul 2> nul && goto :Elevated
echo error: Administrator rights are required to make symbolic links on Windows.
exit /b 1
:Elevated
if not defined HOME (
set HOME=%USERPROFILE%
)
for %%f in (%~dp0.\.*) do (
if exist %HOME%\%%~nxf (
del /P %HOME%\%%~nxf
)
mklink %HOME%\%%~nxf %%f
)
|
:: Symbolically link to all of the dot files in this directory from the
:: home directory.
@echo off
net file >nul 2> nul && goto :Elevated
echo error: Administrator rights are required to make symbolic links on Windows.
exit /b 1
:Elevated
if not defined HOME (
set HOME=%USERPROFILE%
)
setx HOME %HOME%
for %%f in (%~dp0.\.*) do (
if exist %HOME%\%%~nxf (
del /P %HOME%\%%~nxf
)
mklink %HOME%\%%~nxf %%f
)
|
Make HOME environment var permanent on Windows
|
Make HOME environment var permanent on Windows
|
Batchfile
|
mit
|
nguerrera/.dot
|
cc657805b7ae63ad57c9820310e2cd178ec82d65
|
build-release-package.cmd
|
build-release-package.cmd
|
set app_title=WhackEd4
set app_description=A Windows Dehacked editor.
set app_name=WhackEd4
set app_name_lower=whacked4
set app_version=1.2.1
set app_version_value=1.2.1
set app_version_title=1.2.1
set build_path=".\build\exe.win32-2.7"
set python_interpreter="c:\python27\python.exe"
set setup_compiler="C:\Program Files (x86)\Inno Setup 5\ISCC.exe"
set zip=7za
rmdir .\build /S /Q
%python_interpreter% setup.py build
del %app_name_lower%-setup-*.exe
%setup_compiler% %app_name_lower%.iss
del %app_name_lower%-*.7z
%zip% a %app_name_lower%-%app_version%.7z %build_path%\* -r -mx=9 -ms=on
pause
|
set app_title=WhackEd4
set app_description=A Windows Dehacked editor.
set app_name=WhackEd4
set app_name_lower=whacked4
set app_version=1.2.1
set app_version_value=1.2.1
set app_version_title=1.2.1
set build_path=".\build\exe.win32-2.7"
set python_interpreter="c:\python27\python.exe"
set setup_compiler="C:\Program Files (x86)\Inno Setup 5\ISCC.exe"
set zip=7za
rmdir .\build /S /Q
%python_interpreter% setup.py build
rmdir .\build\exe.win32-2.7\wx\tools /S /Q
del %app_name_lower%-setup-*.exe
%setup_compiler% %app_name_lower%.iss
del %app_name_lower%-*.7z
%zip% a %app_name_lower%-%app_version%.7z %build_path%\* -r -mx=9 -ms=on
pause
|
Reduce installer and package size a little bit by excluding some unneeded wxWidgets files.
|
Reduce installer and package size a little bit by excluding some unneeded wxWidgets files.
|
Batchfile
|
bsd-2-clause
|
GitExl/WhackEd4,GitExl/WhackEd4
|
a36faf89e35c3ad67bfa04934be29464df4d4cc7
|
csharp/Unity/win.bat
|
csharp/Unity/win.bat
|
"C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" ..\Yoga\Yoga.vcxproj /p:configuration=Release /property:Platform=x64
xcopy "..\Yoga\x64\Release\yoga.dll" %~dp0 /s /d /y
|
"C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" ..\Yoga\Yoga.vcxproj /p:configuration=Release /property:Platform=x64
xcopy "..\Yoga\bin\x64\Release\yoga.dll" %~dp0 /s /d /y
|
Fix dll path in Unity build script
|
Fix dll path in Unity build script
Summary: sync with vcproj
Reviewed By: emilsjolander
Differential Revision: D4384510
fbshipit-source-id: 964c5b84c063a5241b3aab0f276b2b5a080677aa
|
Batchfile
|
mit
|
facebook/yoga,facebook/css-layout,facebook/yoga,facebook/css-layout,yihuang/css-layout,facebook/css-layout,facebook/yoga,facebook/yoga,facebook/yoga,yihuang/css-layout,facebook/yoga,rmarinho/yoga,rmarinho/yoga,yihuang/css-layout,facebook/yoga,rmarinho/yoga,rmarinho/yoga,yihuang/css-layout,rmarinho/yoga,rmarinho/yoga,facebook/css-layout,facebook/css-layout,facebook/css-layout,yihuang/css-layout,yihuang/css-layout,facebook/css-layout,rmarinho/yoga,facebook/yoga,rmarinho/yoga,yihuang/css-layout,facebook/css-layout,rmarinho/yoga,yihuang/css-layout,rmarinho/yoga,facebook/yoga,yihuang/css-layout,facebook/yoga,yihuang/css-layout,facebook/css-layout
|
0e5972991de60a8e6a940c4bd71ab4bd153d3c41
|
runbot.bat
|
runbot.bat
|
@ECHO off
CHCP 65001 > NUL
CD /d "%~dp0"
SETLOCAL ENABLEEXTENSIONS
SET KEY_NAME="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
SET VALUE_NAME=HideFileExt
FOR /F "usebackq tokens=1-3" %%A IN (`REG QUERY %KEY_NAME% /v %VALUE_NAME% 2^>nul`) DO (
SET ValueName=%%A
SET ValueType=%%B
SET ValueValue=%%C
)
IF x%ValueValue:0x0=%==x%ValueValue% (
ECHO Unhiding file extensions...
START CMD /c REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v HideFileExt /t REG_DWORD /d 0 /f
)
ENDLOCAL
IF EXIST %SYSTEMROOT%\py.exe (
CMD /k py.exe -3.5 run.py
EXIT
)
python --version > NUL 2>&1
IF %ERRORLEVEL% NEQ 0 GOTO nopython
CMD /k python run.py
GOTO end
:nopython
ECHO ERROR: Python has either not been installed or not added to your PATH.
:end
PAUSE
|
@ECHO off
CHCP 65001 > NUL
CD /d "%~dp0"
SETLOCAL ENABLEEXTENSIONS
SET KEY_NAME="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
SET VALUE_NAME=HideFileExt
FOR /F "usebackq tokens=1-3" %%A IN (`REG QUERY %KEY_NAME% /v %VALUE_NAME% 2^>nul`) DO (
SET ValueName=%%A
SET ValueType=%%B
SET ValueValue=%%C
)
IF x%ValueValue:0x0=%==x%ValueValue% (
ECHO Unhiding file extensions...
START CMD /c REG ADD HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v HideFileExt /t REG_DWORD /d 0 /f
)
ENDLOCAL
IF EXIST %SYSTEMROOT%\py.exe (
CMD /k %SYSTEMROOT%\py.exe -3.5 run.py
EXIT
)
python --version > NUL 2>&1
IF %ERRORLEVEL% NEQ 0 GOTO nopython
CMD /k python run.py
GOTO end
:nopython
ECHO ERROR: Python has either not been installed or not added to your PATH.
:end
PAUSE
|
Use sysroot var in py.exe invoke
|
Use sysroot var in py.exe invoke
Stupid path issues
|
Batchfile
|
mit
|
reddit-diabetes/musicbot-cloud,DiscordMusicBot/MusicBot,Crims101/SymmetraBot,Crims101/SymmetraBot,reddit-diabetes/musicbot-cloud
|
6a35a24ebf398f19d375026572d65dc06c6d65d2
|
deploy.cmd
|
deploy.cmd
|
:: hard link to all of the dot files in this directory from the
:: home directory.
@echo off
setx HOME %HOME%
for %%f in (%~dp0.\.*) do (
if exist %HOME%\%%~nxf (
del /P %HOME%\%%~nxf
)
mklink /h %HOME%\%%~nxf %%f
)
|
:: hard link to all of the dot files in this directory from the
:: home directory.
@echo off
if not defined HOME (
set HOME=%USERPROFILE%
)
setx HOME %HOME%
for %%f in (%~dp0.\.*) do (
if exist %HOME%\%%~nxf (
del /P %HOME%\%%~nxf
)
mklink /h %HOME%\%%~nxf %%f
)
|
Set HOME to USERPROFILE by default
|
Set HOME to USERPROFILE by default
|
Batchfile
|
mit
|
nguerrera/.dot
|
65697dfe085349669cc3436f27a2c38c95da93c7
|
batch/clear_mpc-hc_favorites.bat
|
batch/clear_mpc-hc_favorites.bat
|
REG DELETE "HKEY_CURRENT_USER\Software\MPC-HC\MPC-HC\Favorites\Files" /va /f
|
@echo off
CLS
ECHO.
ECHO =============================
ECHO Running Admin shell
ECHO =============================
:init
setlocal DisableDelayedExpansion
set cmdInvoke=1
set winSysFolder=System32
set "batchPath=%~0"
for %%k in (%0) do set batchName=%%~nk
set "vbsGetPrivileges=%temp%\OEgetPriv_%batchName%.vbs"
setlocal EnableDelayedExpansion
:checkPrivileges
NET FILE 1>NUL 2>NUL
if '%errorlevel%' == '0' ( goto gotPrivileges ) else ( goto getPrivileges )
:getPrivileges
if '%1'=='ELEV' (echo ELEV & shift /1 & goto gotPrivileges)
ECHO.
ECHO **************************************
ECHO Invoking UAC for Privilege Escalation
ECHO **************************************
ECHO Set UAC = CreateObject^("Shell.Application"^) > "%vbsGetPrivileges%"
ECHO args = "ELEV " >> "%vbsGetPrivileges%"
ECHO For Each strArg in WScript.Arguments >> "%vbsGetPrivileges%"
ECHO args = args ^& strArg ^& " " >> "%vbsGetPrivileges%"
ECHO Next >> "%vbsGetPrivileges%"
if '%cmdInvoke%'=='1' goto InvokeCmd
ECHO UAC.ShellExecute "!batchPath!", args, "", "runas", 1 >> "%vbsGetPrivileges%"
goto ExecElevation
:InvokeCmd
ECHO args = "/c """ + "!batchPath!" + """ " + args >> "%vbsGetPrivileges%"
ECHO UAC.ShellExecute "%SystemRoot%\%winSysFolder%\cmd.exe", args, "", "runas", 1 >> "%vbsGetPrivileges%"
:ExecElevation
"%SystemRoot%\%winSysFolder%\WScript.exe" "%vbsGetPrivileges%" %*
exit /B
:gotPrivileges
setlocal & cd /d %~dp0
if '%1'=='ELEV' (del "%vbsGetPrivileges%" 1>nul 2>nul & shift /1)
::::::::::::::::::::::::::::
::START
::::::::::::::::::::::::::::
SET startDirectory=%~dp0
SET iniFile="C:\Program Files\MPC-HC\mpc-hc64.ini"
SET iniFileModified="C:\Program Files\MPC-HC\mpc-hc64.ini.modified"
IF EXIST %iniFile% (
REM If favorites are stored in the INI file
node "%startDirectory%..\js\remove_mpc-hc_favorites.js" %iniFile% %iniFileModified%
) ELSE (
REM If favorites are stored in the Registry
REG DELETE "HKEY_CURRENT_USER\Software\MPC-HC\MPC-HC\Favorites\Files" /va /f
)
ECHO MPC-HC favorites deleted successfully
|
Support case where settings are not stored in the Registry but on disk
|
Support case where settings are not stored in the Registry but on disk
|
Batchfile
|
mit
|
teddy-gustiaux/scripts,teddy-gustiaux/scripts
|
8310c9b9acbf772f4ad2b23d38c445057cf767b4
|
bin/iex.bat
|
bin/iex.bat
|
@if defined ELIXIR_CLI_ECHO (@echo on) else (@echo off)
call "%~dp0\elixir.bat" +iex --erl "-user Elixir.IEx.CLI" --no-halt %ELIXIR_IEX_FLAGS% %*
|
@if defined ELIXIR_CLI_ECHO (@echo on) else (@echo off)
@if defined IEX_WITH_WERL (@set __ELIXIR_IEX_FLAGS=--werl) else (set __ELIXIR_IEX_FLAGS=)
call "%~dp0\elixir.bat" +iex --erl "-user Elixir.IEx.CLI" --no-halt %__ELIXIR_IEX_FLAGS% %*
@set __ELIXIR_IEX_FLAGS=
|
Use IEX_WITH_WERL environment variable to enable --werl by default.
|
Use IEX_WITH_WERL environment variable to enable --werl by default.
|
Batchfile
|
apache-2.0
|
gfvcastro/elixir,kimshrier/elixir,antipax/elixir,kimshrier/elixir,kelvinst/elixir,pedrosnk/elixir,lexmag/elixir,pedrosnk/elixir,elixir-lang/elixir,gfvcastro/elixir,antipax/elixir,michalmuskala/elixir,ggcampinho/elixir,beedub/elixir,lexmag/elixir,joshprice/elixir,beedub/elixir,ggcampinho/elixir,kelvinst/elixir
|
9d28be612f7246c5d706188092284fd5df9861eb
|
recipes/EQcorrscan/bld.bat
|
recipes/EQcorrscan/bld.bat
|
@echo off
set "INCLUDE=%LIBRARY_INC%;%INCLUDE%"
set "LIB=%LIBRARY_LIB%;%LIB%"
xcopy %LIBRARY_LIB%\fftw3.lib %LIBRARY_LIB%\libfftw3-3.lib
%PYTHON% setup.py build
%PYTHON% setup.py install --single-version-externally-managed --record=record.txt
|
@echo off
set "INCLUDE=%LIBRARY_INC%;%INCLUDE%"
set "LIB=%LIBRARY_LIB%;%LIB%"
xcopy /i %LIBRARY_LIB%\fftw3.lib %LIBRARY_LIB%\libfftw3-3.lib
%PYTHON% setup.py build
%PYTHON% setup.py install --single-version-externally-managed --record=record.txt
|
Copy fftw library to correct file-name
|
Copy fftw library to correct file-name
|
Batchfile
|
bsd-3-clause
|
dschreij/staged-recipes,chohner/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,SylvainCorlay/staged-recipes,shadowwalkersb/staged-recipes,pmlandwehr/staged-recipes,chrisburr/staged-recipes,hadim/staged-recipes,sodre/staged-recipes,conda-forge/staged-recipes,ReimarBauer/staged-recipes,isuruf/staged-recipes,conda-forge/staged-recipes,synapticarbors/staged-recipes,cpaulik/staged-recipes,sannykr/staged-recipes,jakirkham/staged-recipes,goanpeca/staged-recipes,rvalieris/staged-recipes,petrushy/staged-recipes,guillochon/staged-recipes,johanneskoester/staged-recipes,pmlandwehr/staged-recipes,grlee77/staged-recipes,scopatz/staged-recipes,mcs07/staged-recipes,ceholden/staged-recipes,kwilcox/staged-recipes,asmeurer/staged-recipes,dschreij/staged-recipes,sodre/staged-recipes,Juanlu001/staged-recipes,ceholden/staged-recipes,basnijholt/staged-recipes,synapticarbors/staged-recipes,glemaitre/staged-recipes,scopatz/staged-recipes,mcs07/staged-recipes,mariusvniekerk/staged-recipes,igortg/staged-recipes,shadowwalkersb/staged-recipes,jjhelmus/staged-recipes,petrushy/staged-recipes,jjhelmus/staged-recipes,guillochon/staged-recipes,asmeurer/staged-recipes,rmcgibbo/staged-recipes,johanneskoester/staged-recipes,jochym/staged-recipes,Cashalow/staged-recipes,barkls/staged-recipes,patricksnape/staged-recipes,stuertz/staged-recipes,mariusvniekerk/staged-recipes,grlee77/staged-recipes,hadim/staged-recipes,rvalieris/staged-recipes,NOAA-ORR-ERD/staged-recipes,Juanlu001/staged-recipes,sannykr/staged-recipes,SylvainCorlay/staged-recipes,basnijholt/staged-recipes,birdsarah/staged-recipes,larray-project/staged-recipes,cpaulik/staged-recipes,sodre/staged-recipes,birdsarah/staged-recipes,stuertz/staged-recipes,larray-project/staged-recipes,chohner/staged-recipes,rmcgibbo/staged-recipes,ReimarBauer/staged-recipes,ocefpaf/staged-recipes,isuruf/staged-recipes,NOAA-ORR-ERD/staged-recipes,patricksnape/staged-recipes,glemaitre/staged-recipes,ocefpaf/staged-recipes,kwilcox/staged-recipes,barkls/staged-recipes,jochym/staged-recipes,Cashalow/staged-recipes,igortg/staged-recipes,chrisburr/staged-recipes
|
768a02acad043a9077b9ca977c7f16f6d6ad9e77
|
scripts/sonarqube-scan.cmd
|
scripts/sonarqube-scan.cmd
|
mvn clean jacoco:prepare-agent verify jacoco:report -Dmaven.javadoc.failOnError=false -s dev\settings-sonarqube.xml %*
|
mvn clean jacoco:prepare-agent verify jacoco:report sonar:sonar -Dmaven.javadoc.failOnError=false -s dev\settings-sonarqube.xml %*
|
Add missing `sonar:sonar` for windows script
|
Add missing `sonar:sonar` for windows script
|
Batchfile
|
apache-2.0
|
excella-core/excella-reports
|
29153ee6b14436e2ca67388bd8ad71260fc907d3
|
exec_wrappers/templates/conda/run-in.bat
|
exec_wrappers/templates/conda/run-in.bat
|
@echo off
@REM This script was based on the original conda activate.bat
@setlocal
@set "CONDA_DEFAULT_ENV=__CONDA_ENV_DIR__"
@set PATH="%CONDA_DEFAULT_ENV%";"%CONDA_DEFAULT_ENV%\Scripts";"%CONDA_DEFAULT_ENV%\Library\bin";%PATH%
@REM Run any activate scripts
@if exist "%CONDA_DEFAULT_ENV%\etc\conda\activate.d" (
@pushd "%CONDA_DEFAULT_ENV%\etc\conda\activate.d"
@for %%g in (*.bat) do @call "%%g"
@popd
)
@REM Execute the given command
%*
@endlocal
|
@echo off
@REM This script was based on the original conda activate.bat
@setlocal
@set "CONDA_DEFAULT_ENV=__CONDA_ENV_DIR__"
@set "PATH=%CONDA_DEFAULT_ENV%;%CONDA_DEFAULT_ENV%\Scripts;%CONDA_DEFAULT_ENV%\Library\bin;%PATH%"
@REM Run any activate scripts
@if exist "%CONDA_DEFAULT_ENV%\etc\conda\activate.d" (
@pushd "%CONDA_DEFAULT_ENV%\etc\conda\activate.d"
@for %%g in (*.bat) do @call "%%g"
@popd
)
@REM Execute the given command
%*
@endlocal
|
Fix conda wrapper for Windows
|
Fix conda wrapper for Windows
The conda paths were being wrongly set with "
|
Batchfile
|
mit
|
gqmelo/exec-wrappers,gqmelo/exec-wrappers
|
6252d1c42418d93ed6fa3047a7062233900f0b30
|
scripts/igv.bat
|
scripts/igv.bat
|
::Get the current batch file's short path
for %%x in (%0) do set BatchPath=%%~dpsx
for %%x in (%BatchPath%) do set BatchPath=%%~dpsx
java -Xmx1200m -Dproduction=true -Djava.net.preferIPv4Stack=true -Dsun.java2d.noddraw=true -jar %BatchPath%\igv.jar %*
|
::Get the current batch file's short path
for %%x in (%0) do set BatchPath=%%~dpsx
for %%x in (%BatchPath%) do set BatchPath=%%~dpsx
java -Xmx4000m -Dproduction=true -Djava.net.preferIPv4Stack=true -Dsun.java2d.noddraw=true -jar %BatchPath%\igv.jar %*
|
Update memory settings for window .bat file (from 1200 mb to 4000 mb)
|
Update memory settings for window .bat file (from 1200 mb to 4000 mb)
|
Batchfile
|
mit
|
igvteam/igv,igvteam/igv,igvteam/igv,igvteam/igv,amwenger/igv,amwenger/igv,amwenger/igv,amwenger/igv,amwenger/igv,igvteam/igv
|
d04a7741f38e2499b72e7fc5644955ab75ebe932
|
ci/cli/tasks/gats-windows.bat
|
ci/cli/tasks/gats-windows.bat
|
SET GOPATH=%CD%\gopath
SET GATSPATH=%GOPATH%\src\code.cloudfoundry.org\cli-acceptance-tests
SET PATH=C:\Go\bin;%PATH%
SET PATH=C:\Program Files\Git\cmd\;%PATH%
SET PATH=%GOPATH%\bin;%PATH%
SET PATH=C:\Program Files\GnuWin32\bin;%PATH%
SET PATH=C:\Program Files\cURL\bin;%PATH%
SET PATH=%CD%;%PATH%
SET /p DOMAIN=<%CD%\bosh-lite-lock\name
SET CF_API=api.%DOMAIN%
call %CD%\cli-ci\ci\cli\tasks\create-cats-config.bat
SET CONFIG=%CD%\config.json
pushd %CD%\cf-cli-binaries
gzip -d cf-cli-binaries.tgz
tar -xvf cf-cli-binaries.tar
MOVE %CD%\cf-cli_winx64.exe ..\cf.exe
popd
go get -v github.com/onsi/ginkgo/ginkgo
cd %GATSPATH%
ginkgo.exe -r -nodes=4 $GINKGO_ARGS
|
SET GOPATH=%CD%\gopath
SET GATSPATH=%GOPATH%\src\code.cloudfoundry.org\cli-acceptance-tests
SET PATH=C:\Go\bin;%PATH%
SET PATH=C:\Program Files\Git\cmd\;%PATH%
SET PATH=%GOPATH%\bin;%PATH%
SET PATH=C:\Program Files\GnuWin32\bin;%PATH%
SET PATH=C:\Program Files\cURL\bin;%PATH%
SET PATH=%CD%;%PATH%
SET /p DOMAIN=<%CD%\bosh-lite-lock\name
SET CF_API=api.%DOMAIN%
call %CD%\cli-ci\ci\cli\tasks\create-cats-config.bat
SET CONFIG=%CD%\config.json
pushd %CD%\cf-cli-binaries
gzip -d cf-cli-binaries.tgz
tar -xvf cf-cli-binaries.tar
MOVE %CD%\cf-cli_winx64.exe ..\cf.exe
popd
go get -v github.com/onsi/ginkgo/ginkgo
cd %GATSPATH%
ginkgo.exe -r -nodes=4 %GINKGO_ARGS%
|
Use Windows environment variable substitution
|
Use Windows environment variable substitution
[#131571315]
|
Batchfile
|
apache-2.0
|
fujitsu-cf/cli,fujitsu-cf/cli,fujitsu-cf/cli,simonleung8/cli,simonleung8/cli,simonleung8/cli
|
4be336c011440f3adadb5f001f6e2c23e3e870a6
|
perfload-demo-installer/src/main/scripts/DemoInstaller.cmd
|
perfload-demo-installer/src/main/scripts/DemoInstaller.cmd
|
@REM
@REM Copyright (c) 2013 mgm technology partners GmbH
@REM
@REM Licensed under the Apache License, Version 2.0 (the "License");
@REM you may not use this file except in compliance with the License.
@REM You may obtain a copy of the License at
@REM
@REM http://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless required by applicable law or agreed to in writing, software
@REM distributed under the License is distributed on an "AS IS" BASIS,
@REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@REM See the License for the specific language governing permissions and
@REM limitations under the License.
@REM
@echo off
@setlocal
cd %~dp0
if exist setenv.cmd call setenv.cmd
@echo Initializing...
gradlew -b DemoInstaller.gradle -q
pause
@endlocal
|
@REM
@REM Copyright (c) 2013 mgm technology partners GmbH
@REM
@REM Licensed under the Apache License, Version 2.0 (the "License");
@REM you may not use this file except in compliance with the License.
@REM You may obtain a copy of the License at
@REM
@REM http://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless required by applicable law or agreed to in writing, software
@REM distributed under the License is distributed on an "AS IS" BASIS,
@REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@REM See the License for the specific language governing permissions and
@REM limitations under the License.
@REM
@echo off
@setlocal
cd %~dp0
if exist setenv.cmd call setenv.cmd
@echo Initializing...
call gradlew -b DemoInstaller.gradle -q
pause
@endlocal
|
Use "call" for running Gradle
|
Use "call" for running Gradle
|
Batchfile
|
apache-2.0
|
mgm-tp/perfload-demo,mgm-tp/perfload-demo
|
e0c34d2caca4a4ade7197ecb37ae8a19c3c8aea0
|
rossum.cmd
|
rossum.cmd
|
@echo off
python "%~dp0\rossum.py" %*
|
@echo off
REM
REM Copyright (c) 2016, G.A. vd. Hoorn
REM
REM Licensed under the Apache License, Version 2.0 (the "License");
REM you may not use this file except in compliance with the License.
REM You may obtain a copy of the License at
REM
REM http://www.apache.org/licenses/LICENSE-2.0
REM
REM Unless required by applicable law or agreed to in writing, software
REM distributed under the License is distributed on an "AS IS" BASIS,
REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
REM See the License for the specific language governing permissions and
REM limitations under the License.
REM
python "%~dp0\rossum.py" %*
|
Add missing license to wrapper batch.
|
Add missing license to wrapper batch.
|
Batchfile
|
apache-2.0
|
gavanderhoorn/rossum
|
77339d697edb8afcd6408e2933b0fda1f2bc4cdc
|
Kudu.Services.Web/updateNodeModules.cmd
|
Kudu.Services.Web/updateNodeModules.cmd
|
@echo off
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
if exist %1\node_modules\azure-cli\bin\azure (
cmd /c npm update https://github.com/amitapl/azure-sdk-tools-xplat/tarball/kudu
) else (
cmd /c npm install https://github.com/amitapl/azure-sdk-tools-xplat/tarball/kudu
)
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %counter% GEQ %attempts% goto :lastError
goto retry
:lastError
popd
echo An error has occured during npm install.
exit /b 1
:end
popd
echo Finished successfully.
exit /b 0
|
@echo off
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
if exist %1\node_modules\azure-cli\bin\azure (
cmd /c npm update https://github.com/amitapl/azure-sdk-tools-xplat/tarball/kudu_s20
) else (
cmd /c npm install https://github.com/amitapl/azure-sdk-tools-xplat/tarball/kudu_s20
)
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %counter% GEQ %attempts% goto :lastError
goto retry
:lastError
popd
echo An error has occured during npm install.
exit /b 1
:end
popd
echo Finished successfully.
exit /b 0
|
Update azure-cli's kudu specific branch.
|
Update azure-cli's kudu specific branch.
|
Batchfile
|
apache-2.0
|
kali786516/kudu,bbauya/kudu,chrisrpatterson/kudu,badescuga/kudu,puneet-gupta/kudu,WeAreMammoth/kudu-obsolete,uQr/kudu,kenegozi/kudu,duncansmart/kudu,shanselman/kudu,juoni/kudu,juoni/kudu,kenegozi/kudu,uQr/kudu,sitereactor/kudu,shrimpy/kudu,badescuga/kudu,EricSten-MSFT/kudu,duncansmart/kudu,dev-enthusiast/kudu,barnyp/kudu,juoni/kudu,dev-enthusiast/kudu,bbauya/kudu,shibayan/kudu,kali786516/kudu,mauricionr/kudu,dev-enthusiast/kudu,barnyp/kudu,juvchan/kudu,YOTOV-LIMITED/kudu,shibayan/kudu,shrimpy/kudu,oliver-feng/kudu,MavenRain/kudu,YOTOV-LIMITED/kudu,juoni/kudu,puneet-gupta/kudu,shibayan/kudu,sitereactor/kudu,kali786516/kudu,EricSten-MSFT/kudu,puneet-gupta/kudu,uQr/kudu,shrimpy/kudu,YOTOV-LIMITED/kudu,badescuga/kudu,projectkudu/kudu,juvchan/kudu,barnyp/kudu,EricSten-MSFT/kudu,EricSten-MSFT/kudu,sitereactor/kudu,barnyp/kudu,kenegozi/kudu,WeAreMammoth/kudu-obsolete,YOTOV-LIMITED/kudu,kali786516/kudu,shrimpy/kudu,WeAreMammoth/kudu-obsolete,puneet-gupta/kudu,projectkudu/kudu,MavenRain/kudu,oliver-feng/kudu,MavenRain/kudu,shibayan/kudu,shanselman/kudu,badescuga/kudu,kenegozi/kudu,juvchan/kudu,MavenRain/kudu,puneet-gupta/kudu,oliver-feng/kudu,bbauya/kudu,badescuga/kudu,chrisrpatterson/kudu,juvchan/kudu,shibayan/kudu,chrisrpatterson/kudu,juvchan/kudu,duncansmart/kudu,chrisrpatterson/kudu,duncansmart/kudu,projectkudu/kudu,oliver-feng/kudu,shanselman/kudu,dev-enthusiast/kudu,projectkudu/kudu,EricSten-MSFT/kudu,bbauya/kudu,projectkudu/kudu,mauricionr/kudu,sitereactor/kudu,sitereactor/kudu,mauricionr/kudu,mauricionr/kudu,uQr/kudu
|
d40dea3b0ba063c1a891f9d2b8171cc7794384f4
|
Kudu.Services.Web/updateNodeModules.cmd
|
Kudu.Services.Web/updateNodeModules.cmd
|
@echo off
pushd %1
if exist %1\node_modules\azure-cli\bin\azure (
cmd /c npm update azure-cli
) else (
cmd /c npm install azure-cli
)
IF %ERRORLEVEL% NEQ 0 goto error
if exist %1\node_modules\kudusync\bin\kudusync (
cmd /c npm update kudusync
) else (
cmd /c npm install kudusync
)
IF %ERRORLEVEL% NEQ 0 goto error
popd
goto end
:error
echo An error has occured during npm install.
exit /b 1
:end
echo Finished successfully.
|
@echo off
pushd %1
if exist %1\node_modules\azure-cli\bin\azure (
cmd /c npm update https://github.com/amitapl/azure-sdk-tools-xplat/tarball/latest
) else (
cmd /c npm install https://github.com/amitapl/azure-sdk-tools-xplat/tarball/latest
)
IF %ERRORLEVEL% NEQ 0 goto error
if exist %1\node_modules\kudusync\bin\kudusync (
cmd /c npm update kudusync
) else (
cmd /c npm install kudusync
)
IF %ERRORLEVEL% NEQ 0 goto error
popd
goto end
:error
echo An error has occured during npm install.
exit /b 1
:end
echo Finished successfully.
|
Change script to install azure-cli from a private branch, so we have the latest fixes (not dependant on azure-cli schedule for them).
|
Change script to install azure-cli from a private branch, so we have the latest fixes (not dependant on azure-cli schedule for them).
|
Batchfile
|
apache-2.0
|
juvchan/kudu,mauricionr/kudu,MavenRain/kudu,juoni/kudu,shanselman/kudu,dev-enthusiast/kudu,projectkudu/kudu,badescuga/kudu,kenegozi/kudu,badescuga/kudu,puneet-gupta/kudu,shibayan/kudu,shibayan/kudu,projectkudu/kudu,kali786516/kudu,YOTOV-LIMITED/kudu,projectkudu/kudu,shanselman/kudu,mauricionr/kudu,bbauya/kudu,barnyp/kudu,barnyp/kudu,kali786516/kudu,bbauya/kudu,mauricionr/kudu,shrimpy/kudu,duncansmart/kudu,shanselman/kudu,dev-enthusiast/kudu,MavenRain/kudu,puneet-gupta/kudu,oliver-feng/kudu,mauricionr/kudu,kali786516/kudu,badescuga/kudu,juoni/kudu,kenegozi/kudu,WeAreMammoth/kudu-obsolete,kenegozi/kudu,shrimpy/kudu,shrimpy/kudu,EricSten-MSFT/kudu,dev-enthusiast/kudu,puneet-gupta/kudu,EricSten-MSFT/kudu,MavenRain/kudu,puneet-gupta/kudu,uQr/kudu,EricSten-MSFT/kudu,YOTOV-LIMITED/kudu,sitereactor/kudu,juvchan/kudu,bbauya/kudu,projectkudu/kudu,kenegozi/kudu,sitereactor/kudu,chrisrpatterson/kudu,uQr/kudu,sitereactor/kudu,oliver-feng/kudu,YOTOV-LIMITED/kudu,EricSten-MSFT/kudu,shibayan/kudu,juvchan/kudu,WeAreMammoth/kudu-obsolete,dev-enthusiast/kudu,shrimpy/kudu,chrisrpatterson/kudu,badescuga/kudu,sitereactor/kudu,duncansmart/kudu,EricSten-MSFT/kudu,barnyp/kudu,kali786516/kudu,juoni/kudu,chrisrpatterson/kudu,MavenRain/kudu,YOTOV-LIMITED/kudu,juvchan/kudu,uQr/kudu,WeAreMammoth/kudu-obsolete,oliver-feng/kudu,uQr/kudu,duncansmart/kudu,barnyp/kudu,projectkudu/kudu,bbauya/kudu,juvchan/kudu,oliver-feng/kudu,chrisrpatterson/kudu,juoni/kudu,badescuga/kudu,shibayan/kudu,shibayan/kudu,puneet-gupta/kudu,sitereactor/kudu,duncansmart/kudu
|
69ed26e959c5770080b5e0e44a1fd57d7edf54fb
|
startcmd.bat
|
startcmd.bat
|
@echo off
REM This file is part of the DITA Open Toolkit project hosted on
REM Sourceforge.net. See the accompanying license.txt file for
REM applicable licenses.
REM (c) Copyright IBM Corp. 2006 All Rights Reserved.
REM Get the absolute path of DITAOT's home directory
set DITA_DIR=%~dp0
REM Set environment variables
set ANT_OPTS=-Xmx512m %ANT_OPTS%
set ANT_OPTS=%ANT_OPTS% -Djavax.xml.transform.TransformerFactory=net.sf.saxon.TransformerFactoryImpl
set ANT_HOME=%DITA_DIR%tools\ant
set PATH=%DITA_DIR%tools\ant\bin;%PATH%
set CLASSPATH=%DITA_DIR%lib;%DITA_DIR%lib\dost.jar;%DITA_DIR%lib\commons-codec-1.4.jar;%DITA_DIR%lib\dost.jar;%DITA_DIR%lib\resolver.jar;%DITA_DIR%lib\icu4j.jar;%CLASSPATH%
set CLASSPATH=%DITA_DIR%lib\saxon\saxon9.jar;%DITA_DIR%lib\saxon\saxon9-dom.jar;%CLASSPATH%
start "DITA-OT" cmd.exe
|
@echo off
REM This file is part of the DITA Open Toolkit project hosted on
REM Sourceforge.net. See the accompanying license.txt file for
REM applicable licenses.
REM (c) Copyright IBM Corp. 2006 All Rights Reserved.
REM Get the absolute path of DITAOT's home directory
set DITA_DIR=%~dp0
REM Set environment variables
set ANT_OPTS=-Xmx512m %ANT_OPTS%
set ANT_OPTS=%ANT_OPTS% -Djavax.xml.transform.TransformerFactory=net.sf.saxon.TransformerFactoryImpl
set ANT_HOME=%DITA_DIR%tools\ant
set PATH=%DITA_DIR%tools\ant\bin;%PATH%
set CLASSPATH=%DITA_DIR%lib;%DITA_DIR%lib\dost.jar;%DITA_DIR%lib\commons-codec-1.4.jar;%DITA_DIR%lib\resolver.jar;%DITA_DIR%lib\icu4j.jar;%CLASSPATH%
set CLASSPATH=%DITA_DIR%lib\saxon\saxon9.jar;%DITA_DIR%lib\saxon\saxon9-dom.jar;%CLASSPATH%
start "DITA-OT" cmd.exe
|
Remove duplicate dost.jar from CLASSPATH - ID: 3499953
|
Remove duplicate dost.jar from CLASSPATH - ID: 3499953
|
Batchfile
|
apache-2.0
|
queshaw/dita-ot,drmacro/dita-ot,queshaw/dita-ot,robander/dita-ot,zanyants/dita-ot,infotexture/dita-ot,drmacro/dita-ot,doctales/dita-ot,dita-ot/dita-ot,zanyants/dita-ot,dita-ot/dita-ot,zanyants/dita-ot,shaneataylor/dita-ot,robander/dita-ot,doctales/dita-ot,infotexture/dita-ot,infotexture/dita-ot,doctales/dita-ot,Hasimir/dita-ot,eerohele/dita-ot,infotexture/dita-ot,robander/dita-ot,Hasimir/dita-ot,jelovirt/muuntaja,drmacro/dita-ot,robander/dita-ot,shaneataylor/dita-ot,dita-ot/dita-ot,robander/dita-ot,shaneataylor/dita-ot,eerohele/dita-ot,jelovirt/muuntaja,jelovirt/muuntaja,zanyants/dita-ot,doctales/dita-ot,drmacro/dita-ot,dita-ot/dita-ot,eerohele/dita-ot,Hasimir/dita-ot,queshaw/dita-ot,shaneataylor/dita-ot,infotexture/dita-ot,Hasimir/dita-ot,shaneataylor/dita-ot,queshaw/dita-ot,eerohele/dita-ot,drmacro/dita-ot,dita-ot/dita-ot
|
bd67239955bad98ba01b6d01086ebc3c4d9d47fa
|
cl.bat
|
cl.bat
|
@C:\Python26\python.exe %~dp0\clcache.py %*
|
@echo off
if exist C:\Python26\python.exe (
C:\Python26\python.exe %~dp0\clcache.py %*
) else (
python.exe %~dp0\clcache.py %*
)
|
Use "python.exe" in PATH too, instead of only relying on fixed location.
|
Use "python.exe" in PATH too, instead of only relying on fixed location.
|
Batchfile
|
bsd-3-clause
|
webmaster128/clcache,webmaster128/clcache,webmaster128/clcache
|
95c74fcffee53be4b33908a40e6a894bf5d7932d
|
bin/create-db.bat
|
bin/create-db.bat
|
@echo off
echo [INFO] create db.
echo [INFO] please confirm db encoding utf-8.
echo [INFO] please confirm has modified es/web/pom.xml--^>profile--^>development---^>connection.admin.url/connection.username/password
cd %~dp0
cd ../web
call mvn db:create -e -X
cd ../bin
pause
|
@echo off
echo [INFO] create db.
echo [INFO] please confirm db encoding utf-8.
echo [INFO] please confirm has modified es/web/pom.xml--^>profile--^>development---^>connection.admin.url/connection.username/password
cd %~dp0
cd ../web
call mvn db:create
cd ../bin
pause
|
Revert "print detailed debug info when creating DB"
|
Revert "print detailed debug info when creating DB"
This reverts commit 976cb30fbeae2de2a39cdd0ff8ff73f152dd7f15.
|
Batchfile
|
apache-2.0
|
xiuxin/Huntering,xiuxin/Huntering,xiuxin/Huntering,xiuxin/Huntering
|
f0ef4ea18afc4b4516d8e59bdc36271a930b69fa
|
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%
CALL %BASEDIR%\test-setup
CALL %BASEDIR%\test-run %*
|
@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 %*
|
Disable Python virtualenv on Jenkins
|
Disable Python virtualenv on Jenkins
|
Batchfile
|
apache-2.0
|
SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples,SteelToeOSS/Samples
|
9b59b7f3f3ce30f5fd2d4a652f0cfc5311c3553a
|
common/platform-dotnet/push-packages.cmd
|
common/platform-dotnet/push-packages.cmd
|
if "%NUGET_API_KEY%" == "" goto NO_KEY
if "%1" == "" goto MISSING_INPUT_FOLDER
REM dotnet nuget push %1\*.nupkg --api-key %NUGET_API_KEY%
for %%f in (%1\*.nupkg) do dotnet nuget push %%f --api-key %NUGET_API_KEY% --source https://nuget.org/
GOTO END
:NO_KEY
ECHO Couldn't find 'NUGET_API_KEY' environment variable.
EXIT /B 1
:MISSING_INPUT_FOLDER
ECHO You must supply the folder in which the nuget packages live.
EXIT /B 2
:END
|
@ECHO OFF
if "%NUGET_API_KEY%" == "" goto NO_KEY
if "%1" == "" goto MISSING_INPUT_FOLDER
REM dotnet nuget push %1\*.nupkg --api-key %NUGET_API_KEY%
for %%f in (%1\*.nupkg) do dotnet nuget push %%f --api-key %NUGET_API_KEY% --source https://nuget.org/
GOTO END
:NO_KEY
ECHO Couldn't find 'NUGET_API_KEY' environment variable.
EXIT /B 1
:MISSING_INPUT_FOLDER
ECHO You must supply the folder in which the nuget packages live.
EXIT /B 2
:END
|
Remove echo so the API key doesn't appear on screen.
|
Remove echo so the API key doesn't appear on screen.
|
Batchfile
|
mit
|
SoundMetrics/aris-integration-sdk,SoundMetrics/aris-integration-sdk,SoundMetrics/aris-integration-sdk,SoundMetrics/aris-integration-sdk,SoundMetrics/aris-integration-sdk
|
c7e314fff5d0f0f5df9e04aec7f0b50a51e88663
|
tests/test-recipes/metadata/source_git/bld.bat
|
tests/test-recipes/metadata/source_git/bld.bat
|
if not exist .git exit 1
git describe
if errorlevel 1 exit 1
for /f "delims=" %%i in ('git describe') do set gitdesc=%%i
if errorlevel 1 exit 1
echo "%gitdesc%"
if not "%gitdesc%"=="1.8.1" exit 1
git status
if errorlevel 1 exit 1
set PYTHONPATH=.
python -c "import conda_build; assert conda_build.__version__ == '1.8.1', conda_build.__version__"
if errorlevel 1 exit 1
|
if not exist .git exit 1
git describe --tags --dirty
if errorlevel 1 exit 1
for /f "delims=" %%i in ('git describe') do set gitdesc=%%i
if errorlevel 1 exit 1
echo "%gitdesc%"
if not "%gitdesc%"=="1.8.1" exit 1
git status
if errorlevel 1 exit 1
set PYTHONPATH=.
python -c "import conda_build; assert conda_build.__version__ == '1.8.1', conda_build.__version__"
if errorlevel 1 exit 1
|
Use proper flags to git describe command in test
|
Use proper flags to git describe command in test
|
Batchfile
|
bsd-3-clause
|
mwcraig/conda-build,frol/conda-build,mwcraig/conda-build,dan-blanchard/conda-build,dan-blanchard/conda-build,ilastik/conda-build,frol/conda-build,ilastik/conda-build,mwcraig/conda-build,frol/conda-build,sandhujasmine/conda-build,ilastik/conda-build,sandhujasmine/conda-build,rmcgibbo/conda-build,dan-blanchard/conda-build,rmcgibbo/conda-build,sandhujasmine/conda-build,rmcgibbo/conda-build
|
e8dd22c1366892dc8426809e35d6f0e522cc74e0
|
Make.bat
|
Make.bat
|
@ECHO off
IF NOT "x%1" == "x" GOTO :%1
:luvit
IF NOT EXIST lit.exe CALL Make.bat lit
ECHO "Building luvit"
SET LUVI_APP=app/
SET LUVI_TARGET=luvit.exe
lit\luvi-binaries\Windows\luvi.exe
SET "LUVI_APP="
SET "LUVI_TARGET="
GOTO :end
:lit
ECHO "Building lit"
git clone --recursive --depth 10 https://github.com/luvit/lit.git lit
SET LUVI_APP=lit/
SET LUVI_TARGET=lit.exe
lit\luvi-binaries\Windows\luvi.exe
SET "LUVI_APP="
SET "LUVI_TARGET="
GOTO :end
:test
IF NOT EXIST luvit.exe CALL Make.bat luvit
SET LUVI_APP=app
luvit.exe tests\run.lua
SET "LUVI_APP="
GOTO :end
:clean
IF EXIST luvit.exe DEL /F /Q luvit.exe
IF EXIST lit.exe DEL /F /Q lit.exe
IF EXIST lit RMDIR /S /Q lit
IF EXIST luvi-binaries RMDIR /S /Q luvi-binaries
:end
|
@ECHO off
IF NOT "x%1" == "x" GOTO :%1
:luvit
IF NOT EXIST lit.exe CALL Make.bat lit
ECHO "Building luvit"
lit.exe make
GOTO :end
:lit
ECHO "Building lit"
PowerShell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://github.com/luvit/lit/raw/0.9.8/web-install.ps1'))"
IF EXIST lit.zip DEL /F /Q lit.zip
GOTO :end
:test
IF NOT EXIST luvit.exe CALL Make.bat luvit
ECHO "Testing luvit"
SET LUVI_APP=.
luvit.exe tests\run.lua
SET "LUVI_APP="
GOTO :end
:clean
IF EXIST luvit.exe DEL /F /Q luvit.exe
IF EXIST lit.exe DEL /F /Q lit.exe
:end
|
Move luvit windows make to new style
|
Move luvit windows make to new style
|
Batchfile
|
apache-2.0
|
bsn069/luvit,rjeli/luvit,kaustavha/luvit,GabrielNicolasAvellaneda/luvit-upstream,kaustavha/luvit,rjeli/luvit,zhaozg/luvit,DBarney/luvit,zhaozg/luvit,kaustavha/luvit,GabrielNicolasAvellaneda/luvit-upstream,bsn069/luvit,DBarney/luvit,DBarney/luvit,DBarney/luvit,luvit/luvit,rjeli/luvit,luvit/luvit,GabrielNicolasAvellaneda/luvit-upstream,bsn069/luvit,rjeli/luvit,GabrielNicolasAvellaneda/luvit-upstream
|
0d7b3a08b3d7beaca9a205bc4d24e06869e8db39
|
tests/test_veriblelint/lint/verilog_lint.cmd
|
tests/test_veriblelint/lint/verilog_lint.cmd
|
-lint_fatal -parse_fatal sv_file.sv
-lint_fatal -parse_fatal vlog_file.v
-lint_fatal -parse_fatal vlog05_file.v
|
--lint_fatal --parse_fatal sv_file.sv
--lint_fatal --parse_fatal vlog_file.v
--lint_fatal --parse_fatal vlog05_file.v
|
Fix golden reference in verible lint test
|
Fix golden reference in verible lint test
|
Batchfile
|
bsd-2-clause
|
lowRISC/edalize,SymbiFlow/edalize,SymbiFlow/edalize,lowRISC/edalize
|
a3d185228bcd6da2a26faa369f4511bb163a287c
|
build.cmd
|
build.cmd
|
@echo off
rem Optional batch file to quickly build with some defaults.
rem Alternatively, this batch file can be invoked passing msbuild parameters, like: build.cmd /v:detailed /t:Rebuild
cd %~dp0
SETLOCAL
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
IF EXIST %CACHED_NUGET% goto copynuget
echo Downloading latest version of NuGet.exe...
IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '%CACHED_NUGET%'"
:copynuget
IF EXIST .nuget\nuget.exe goto restore
md .nuget
copy %CACHED_NUGET% .nuget\nuget.exe > nul
.nuget\nuget.exe update -self
:restore
rem Build script packages have no version in the path, so we install them to .nuget\packages to avoid conflicts with
rem solution/project packages.
IF NOT EXIST packages.config goto run
.nuget\NuGet.exe install packages.config -OutputDirectory .nuget\packages -ExcludeVersion
:run
rem NOTE: this needs to be a developer command prompt with MSBuild in the path.
msbuild build.proj /t:build,test,package /v:normal %1 %2 %3 %4 %5 %6 %7 %8 %9
|
@echo off
rem Optional batch file to quickly build with some defaults.
rem Alternatively, this batch file can be invoked passing msbuild parameters, like: build.cmd /v:detailed /t:Rebuild
cd %~dp0
SETLOCAL
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
IF EXIST %CACHED_NUGET% goto copynuget
echo Downloading latest version of NuGet.exe...
IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://dist.nuget.org/win-x86-commandline/v3.3.0/nuget.exe' -OutFile '%CACHED_NUGET%'"
:copynuget
IF EXIST .nuget\nuget.exe goto restore
md .nuget
copy %CACHED_NUGET% .nuget\nuget.exe > nul
.nuget\nuget.exe update -self
:restore
rem Build script packages have no version in the path, so we install them to .nuget\packages to avoid conflicts with
rem solution/project packages.
IF NOT EXIST packages.config goto run
.nuget\NuGet.exe install packages.config -OutputDirectory .nuget\packages -ExcludeVersion
:run
rem NOTE: this needs to be a developer command prompt with MSBuild in the path.
msbuild build.proj /t:build,test,package /v:normal %1 %2 %3 %4 %5 %6 %7 %8 %9
|
Switch to using the latest v3.3 nuget.exe
|
Switch to using the latest v3.3 nuget.exe
|
Batchfile
|
mit
|
MobileEssentials/Merq,kzu/Merq,adalon/Merq
|
0a8de10ca69d4f6e8f25bd49372eb68c11ba56ae
|
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
|
chunlinyao/fop,chunlinyao/fop,apache/fop,apache/fop,apache/fop,apache/fop,apache/fop,chunlinyao/fop,chunlinyao/fop,chunlinyao/fop
|
570c98fbfc3c88ad6e4f3cab5ead156a70b7656d
|
tools/run.bat
|
tools/run.bat
|
thrift-0.9.1.exe -gen java -strict -out src\main\java jdbc.thrift
pause
|
thrift-0.9.1.exe -gen java -strict -out ..\src\main\java jdbc.thrift
pause
|
Fix path in thrift compiler tool
|
Fix path in thrift compiler tool
|
Batchfile
|
apache-2.0
|
damiencarol/thrift-jdbc-server
|
b151ed2db2e0efc856fde871c6ecad3a0e7fea1e
|
appveyor-install.cmd
|
appveyor-install.cmd
|
"%sdkver%" -q -version:v7.0
call setenv /x64
rem install python packages
pip install --cache-dir c:/temp nose
pip install --cache-dir c:/temp Sphinx
pip install --cache-dir c:/temp coverage
pip install --cache-dir c:/temp numpy
pip install --cache-dir c:/temp pyside
pip install --cache-dir c:/temp git+http://github.com/enthought/traits.git#egg=traits
pip install --cache-dir c:/temp git+http://github.com/enthought/traitsui.git#egg=traitsui
pip install --cache-dir c:/temp git+http://github.com/enthought/apptools.git#egg=apptools
pip install --cache-dir c:/temp git+http://github.com/enthought/pyface.git#egg=pyface
pip install --cache-dir c:/temp git+http://github.com/enthought/envisage.git#egg=envisage
rem install mayavi
python setup.py develop
|
"%sdkver%" -q -version:v7.0
call setenv /x64
rem install python packages
pip install --cache-dir c:/temp nose
pip install --cache-dir c:/temp Sphinx
pip install --cache-dir c:/temp coverage
pip install --cache-dir c:/temp numpy
pip install --cache-dir c:/temp pyside
pip install --cache-dir c:/temp psutil
pip install --cache-dir c:/temp git+http://github.com/enthought/traits.git#egg=traits
pip install --cache-dir c:/temp git+http://github.com/enthought/traitsui.git#egg=traitsui
pip install --cache-dir c:/temp git+http://github.com/enthought/apptools.git#egg=apptools
pip install --cache-dir c:/temp git+http://github.com/enthought/pyface.git#egg=pyface
pip install --cache-dir c:/temp git+http://github.com/enthought/envisage.git#egg=envisage
rem install mayavi
python setup.py develop
|
Add missing psutil dependency for appveyor
|
Add missing psutil dependency for appveyor
|
Batchfile
|
bsd-3-clause
|
liulion/mayavi,dmsurti/mayavi,liulion/mayavi,alexandreleroux/mayavi,dmsurti/mayavi,alexandreleroux/mayavi
|
531ad18c2eacfadb891ae0d418390682941af55b
|
build.bat
|
build.bat
|
call .\packages\psake.4.2.0.1\tools\psake.cmd build.ps1 %*
pause
|
set EnableNuGetPackageRestore=true
call .\packages\psake.4.2.0.1\tools\psake.cmd build.ps1 %*
pause
|
Build script and nuget now automatically grabs missing dependencies
|
Build script and nuget now automatically grabs missing dependencies
|
Batchfile
|
mit
|
nelsonsar/raygun4net,ddunkin/raygun4net,tdiehl/raygun4net,nelsonsar/raygun4net,articulate/raygun4net,MindscapeHQ/raygun4net,MindscapeHQ/raygun4net,MindscapeHQ/raygun4net,ddunkin/raygun4net,articulate/raygun4net,tdiehl/raygun4net
|
e0481ed9c18da46e9e55c1728fe6123893dfc733
|
build.cmd
|
build.cmd
|
@echo off
setlocal enabledelayedexpansion
where /q msbuild
if "%ERRORLEVEL%" == "0" (
goto :SkipDeveloperSetup
)
set DeveloperCommandPrompt=%VS140COMNTOOLS%\VsDevCmd.bat
if not exist "%DeveloperCommandPrompt%" (
echo In order to build this repository, you either need 'msbuild' on the path or Visual Studio 2015 installed.
echo.
echo Visit this page to download:
echo.
echo https://go.microsoft.com/fwlink/?LinkId=691978^&clcid=0x409
exit /b 1
)
call "%DeveloperCommandPrompt%" || goto :BuildFailed
:SkipDeveloperSetup
powershell -NoProfile -NoLogo -ExecutionPolicy Bypass -Command "& \"%~dp0build.ps1\" %*; exit $LastExitCode;"
exit /b %ERRORLEVEL%
:BuildFailed
echo Build failed with ERRORLEVEL %ERRORLEVEL%
exit /b 1
|
@echo off
setlocal enabledelayedexpansion
where /q msbuild
if "%ERRORLEVEL%" == "0" (
goto :SkipDeveloperSetup
)
set DeveloperCommandPrompt=%VS150COMNTOOLS%\VsDevCmd.bat
if not exist "%DeveloperCommandPrompt%" (
echo In order to build this repository, you either need 'msbuild' on the path or Visual Studio 2015 installed.
echo.
echo Visit this page to download:
echo.
echo https://go.microsoft.com/fwlink/?LinkId=691978^&clcid=0x409
exit /b 1
)
call "%DeveloperCommandPrompt%" || goto :BuildFailed
:SkipDeveloperSetup
powershell -NoProfile -NoLogo -ExecutionPolicy Bypass -Command "& \"%~dp0build.ps1\" %*; exit $LastExitCode;"
exit /b %ERRORLEVEL%
:BuildFailed
echo Build failed with ERRORLEVEL %ERRORLEVEL%
exit /b 1
|
Build with VS 15 dev tools
|
Build with VS 15 dev tools
|
Batchfile
|
mit
|
nkolev92/sdk,nkolev92/sdk
|
2b3d805c0214f32ec17db0c06a7f76d15f820af7
|
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\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 /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 /platform:%platform% /TestAdapterPath:%%~dpa
if %errorlevel% neq 0 exit /b %errorlevel%
)
)
|
Disable logger because it does not work with this preview version of vstest.console.exe
|
Disable logger because it does not work with this preview version of vstest.console.exe
|
Batchfile
|
apache-2.0
|
dlemstra/Magick.NET,dlemstra/Magick.NET
|
3d7c309d1ececa6e05856daf84831df73af01fd8
|
Make.cmd
|
Make.cmd
|
# © 2013 the Mid Authors under the MIT license. See AUTHORS for the list of authors.
T := $(TARG)
TARG := cmd/$(T)/$(T)
ALL += $(TARG)
OFILES := $(OFILES:%=cmd/$(T)/%)
ALLO += $(OFILES)
LIBHFILES := $(LIBDEPS:%=include/%.h)
LIBDEPS := $(shell echo $(LIBDEPS) | awk '{ for(i = 1; i <= NF; i++) printf("lib/%s/%s.a ", $$i, $$i) }')
HFILES := $(HFILES:%=cmd/$(T)/%) $(LIBHFILES)
$(TARG): $(OFILES) $(LIBDEPS)
@echo ld -o $@
@$(LD) -o $@ $^ $(LDFLAGS)
$(OFILES): $(HFILES) $(LIBHFILES)
|
# © 2013 the Mid Authors under the MIT license. See AUTHORS for the list of authors.
T := $(TARG)
TARG := cmd/$(T)/$(T)
ALL += $(TARG)
OFILES := $(OFILES:%=cmd/$(T)/%)
ALLO += $(OFILES)
LIBHFILES := $(LIBDEPS:%=include/%.h)
LIBDEPS := $(shell echo $(LIBDEPS) | awk '{ for(i = 1; i <= NF; i++) printf("lib/%s/%s.a ", $$i, $$i) }')
HFILES := $(HFILES:%=cmd/$(T)/%) $(LIBHFILES)
$(TARG): $(OFILES) $(LIBDEPS)
@echo ld $@
@$(LD) -o $@ $^ $(LDFLAGS)
$(OFILES): $(HFILES) $(LIBHFILES)
|
Remove that -o; everybody knows what's going on
|
Remove that -o; everybody knows what's going on
|
Batchfile
|
mit
|
velour/mid,velour/mid,velour/mid
|
d0ad6b7d8283df1b0126832b5f58a5d56545c9a1
|
file-utility-code/SoundMetrics.Aris.BeamWidths/build-beam-width-files.cmd
|
file-utility-code/SoundMetrics.Aris.BeamWidths/build-beam-width-files.cmd
|
SET SOL_DIR=%1
SET ALT_SOL_DIR=..\
IF "%SOL_DIR%" == "" SET SOL_DIR=%ALT_SOL_DIR%
IF "%SOL_DIR%" == "*Undefined*" SET SOL_DIR=%ALT_SOL_DIR%
echo SOL_DIR is %SOL_DIR%
SET PROJ_DIR=%2
SET ALT_PROJ_DIR=%SOL_DIR%\SoundMetrics.Aris.BeamWidths\
IF "%PROJ_DIR%" == "" SET PROJ_DIR=%ALT_PROJ_DIR%
IF "%PROJ_DIR%" == "*Undefined*" SET PROJ_DIR=%ALT_PROJ_DIR%
echo PROJ_DIR is %PROJ_DIR%
IF NOT EXIST "%PROJ_DIR%\generated" MKDIR "%PROJ_DIR%\generated"
for %%f in (BeamWidths_ARIS_Telephoto_48 BeamWidths_ARIS_Telephoto_96 BeamWidths_ARIS1800_96 BeamWidths_ARIS1800_1200_48 BeamWidths_ARIS3000_64 BeamWidths_ARIS3000_128) do ^
call %SOL_DIR%\run-fsi.cmd "%PROJ_DIR%ParseBeamWidthDefs.fsx" -- "%SOL_DIR%..\beam-width-metrics\%%f.h" "%PROJ_DIR%generated\%%f.cs"
dir "%PROJ_DIR%\generated\"
|
SET SOL_DIR=%1
SET ALT_SOL_DIR=..\
IF "%SOL_DIR%" == "" SET SOL_DIR=%ALT_SOL_DIR%
IF "%SOL_DIR%" == "*Undefined*" SET SOL_DIR=%ALT_SOL_DIR%
echo SOL_DIR is %SOL_DIR%
SET PROJ_DIR=%2
SET ALT_PROJ_DIR=%SOL_DIR%\SoundMetrics.Aris.BeamWidths\
IF "%PROJ_DIR%" == "" SET PROJ_DIR=%ALT_PROJ_DIR%
IF "%PROJ_DIR%" == "*Undefined*" SET PROJ_DIR=%ALT_PROJ_DIR%
echo PROJ_DIR is %PROJ_DIR%
IF NOT EXIST "%PROJ_DIR%\generated" MKDIR "%PROJ_DIR%\generated"
for %%f in (BeamWidths_ARIS_Telephoto_48 BeamWidths_ARIS_Telephoto_96 BeamWidths_ARIS1800_96 BeamWidths_ARIS1800_1200_48 BeamWidths_ARIS3000_64 BeamWidths_ARIS3000_128) do ^
call %SOL_DIR%\run-fsi.cmd "%PROJ_DIR%ParseBeamWidthDefs.fsx" -- "%SOL_DIR%..\beam-width-metrics\%%f.h" "%PROJ_DIR%generated\%%f.cs"
dir "%PROJ_DIR%\generated\"
|
Convert script from Unicode to ANSI
|
Convert script from Unicode to ANSI
|
Batchfile
|
mit
|
SoundMetrics/aris-file-sdk,SoundMetrics/aris-file-sdk,SoundMetrics/aris-file-sdk
|
b20fd103c8e442b73c2a47fa1bfef8168b890748
|
recipes/tcplotter/bld.bat
|
recipes/tcplotter/bld.bat
|
:: Build tcplotter command-line utilities using cmake
:: Change working directory to archive directory
cd "%PKG_NAME%"
:: Create build directory
cd "src"
mkdir build
if errorlevel 1 exit 1
cd build
if errorlevel 1 exit 1
:: Build with cmake
cmake -G "MinGW Makefiles" ..
if errorlevel 1 exit 1
cmake --build -DCMAKE_CXX_STANDARD=11 .
if errorlevel 1 exit 1
:: Install executables to bin directory
cmake --build . --target install --prefix=%PREFIX%
if errorlevel 1 exit 1
:: Install tcplotter
cd "%SRC_DIR%"
$PYTHON -m pip install . -vv
|
:: Build tcplotter command-line utilities using cmake
:: Change working directory to archive directory
cd "%PKG_NAME%"
:: Create build directory
cd "src"
mkdir build
if errorlevel 1 exit 1
cd build
if errorlevel 1 exit 1
:: Build with cmake
cmake -G "MinGW Makefiles" -DCMAKE_CXX_STANDARD=11 ..
if errorlevel 1 exit 1
cmake --build .
if errorlevel 1 exit 1
:: Install executables to bin directory
cmake --build . --target install --prefix=%PREFIX%
if errorlevel 1 exit 1
:: Install tcplotter
cd "%SRC_DIR%"
$PYTHON -m pip install . -vv
|
Fix typo in Windows build
|
Fix typo in Windows build
|
Batchfile
|
bsd-3-clause
|
ocefpaf/staged-recipes,conda-forge/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,kwilcox/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes
|
92710b3d0e0850d45243a482f9a8a814f52784bb
|
run-nofib.bat
|
run-nofib.bat
|
@ECHO OFF
if not "%1" == "" goto continue
for %%i in (imaginary) do for %%j in (yca\%%i\*.yca) do call %0 %%j
goto end
:continue
echo Processing %1
firstify %1 -himlv > %1.txt 2>&1
:end
|
@ECHO OFF
if "%1" == "goto" shift && goto continue
REM If they enter nothing, do all the benchmarks
set def=imaginary,spectral,real
if not "%1" == "" set def=%1
for %%i in (%def%) do for %%j in (yca\%%i\*.yca) do call %0 goto %%j
goto end
:continue
echo Processing %1
firstify %1 -himlv > %1.txt 2>&1
:end
|
Add support for specifying what benchmark suite you want to run
|
Add support for specifying what benchmark suite you want to run
|
Batchfile
|
bsd-3-clause
|
ndmitchell/firstify
|
1fe246278c96b0a9745e999f4b2c75e11cec4fd6
|
Algorithm.Python/build.bat
|
Algorithm.Python/build.bat
|
REM QuantConnect Lean Engine -- Python Build Script.
del Python.Runtime.dll
REM Python Compile the Algorithm with all the files in current directory
nPython -m compileall -lq .
REM Copy to the Lean Algorithm Project
copy *.pyc ..\..\..\Launcher\bin\Debug >NUL
copy *.pyc ..\..\..\Launcher\bin\Release >NUL
copy *.pyc ..\..\..\Tests\bin\Debug >NUL
|
REM QuantConnect Lean Engine -- Python Build Script.
del Python.Runtime.dll
REM Python Compile the Algorithm with all the files in current directory
nPython -m compileall -lq .
REM Copy to the Lean Algorithm Project
copy *.pyc ..\..\..\Launcher\bin\Debug >NUL
copy *.pyc ..\..\..\Launcher\bin\Release >NUL
copy *.pyc ..\..\..\Tests\bin\Debug >NUL
|
Remove the byte order mark
|
Remove the byte order mark
Used Notepad++ to chang the file encoding from UTF-8-BOM to UTF-8 (i.e.
removed the byte order mark) which seems to be confusing the Windows
shell. Fixes issue mentioned in #915
|
Batchfile
|
apache-2.0
|
AnshulYADAV007/Lean,young-zhang/Lean,andrewhart098/Lean,AlexCatarino/Lean,tomhunter-gh/Lean,redmeros/Lean,jameschch/Lean,AlexCatarino/Lean,jameschch/Lean,StefanoRaggi/Lean,Mendelone/forex_trading,AlexCatarino/Lean,StefanoRaggi/Lean,tomhunter-gh/Lean,QuantConnect/Lean,AnshulYADAV007/Lean,QuantConnect/Lean,JKarathiya/Lean,AlexCatarino/Lean,AnshulYADAV007/Lean,StefanoRaggi/Lean,tomhunter-gh/Lean,Jay-Jay-D/LeanSTP,AnshulYADAV007/Lean,JKarathiya/Lean,young-zhang/Lean,tomhunter-gh/Lean,redmeros/Lean,young-zhang/Lean,andrewhart098/Lean,Jay-Jay-D/LeanSTP,young-zhang/Lean,Jay-Jay-D/LeanSTP,AnshulYADAV007/Lean,redmeros/Lean,jameschch/Lean,Jay-Jay-D/LeanSTP,andrewhart098/Lean,QuantConnect/Lean,jameschch/Lean,kaffeebrauer/Lean,Mendelone/forex_trading,andrewhart098/Lean,Mendelone/forex_trading,JKarathiya/Lean,kaffeebrauer/Lean,kaffeebrauer/Lean,StefanoRaggi/Lean,JKarathiya/Lean,Jay-Jay-D/LeanSTP,kaffeebrauer/Lean,StefanoRaggi/Lean,jameschch/Lean,Mendelone/forex_trading,redmeros/Lean,kaffeebrauer/Lean,QuantConnect/Lean
|
4c74b21e6f5f4203d87a06db985ce85030019f9a
|
WinPreBuild.bat
|
WinPreBuild.bat
|
@echo off
Rem Generate visual studio project files
Rem This file is a part of llbc library
echo Visual Studio solution and project files generate tool.
echo For now supported Visual Studio versions:
echo vs2005
echo vs2008
echo vs2010
echo vs2012
echo vs2013
echo vs2015
set /p choose=Please input:
cd tools\premake && premake5_windows.exe %choose%
if errorlevel 1 (
echo Failed to generate Visual Studio solution and project files, error: %errorlevel%
pause
) else (
echo Succcess to generate Visual Studio solution and project files
echo Solution file path: build/%choose%/llbc_%choose%.sln
echo Press any key to open target directory...
pause >nul
explorer ..\..\build\%choose%
)
|
@echo off
Rem Generate visual studio project files
Rem This file is a part of llbc library
echo Visual Studio solution and project files generate tool.
echo For now supported Visual Studio versions:
echo vs2005
echo vs2008
echo vs2010
echo vs2012
echo vs2013
echo vs2015
set /p choose=Please input:
cd tools\premake && premake5_windows.exe %choose%
if errorlevel 1 (
echo Failed to generate Visual Studio solution and project files, error: %errorlevel%
pause
) else (
echo Succcess to generate Visual Studio solution and project files
echo Solution file path: build/%choose%/llbc_%choose%.sln
explorer ..\..\build\%choose%
)
|
Delete pause command after generated visual studio solution
|
Delete pause command after generated visual studio solution
|
Batchfile
|
mit
|
lailongwei/llbc,lailongwei/llbc,lailongwei/llbc,lailongwei/llbc,lailongwei/llbc
|
faa95649eda7971d5305240791cfee178a556571
|
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
chef gem install kitchen-all
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
|
@"%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
|
Install seems to stop after the kitch gem install. Putting at end
|
Install seems to stop after the kitch gem install. Putting at end
|
Batchfile
|
unlicense
|
iaingblack/Automation,iaingblack/Automation
|
738227496d6dd78b541ac00afe5a45fbeb9fa45e
|
bin/release.bat
|
bin/release.bat
|
@echo off
if exist %1\web.config (
set message=Warning: We detected a Web.config in your app. This probably means that you want to use the hwc-buildpack. If you really want to use the binary-buildpack, you must specify a start command.
) else (
set message=Error: no start command specified during staging or launch
)
echo ---
echo default_process_types:
echo web: "cmd /c \"echo %message% ^>^&2 ^& exit 1\""
|
@echo off
if exist %1\web.config (
set message=Warning: We detected a Web.config in your app. This probably means that you want to use the HWC Buildpack (run cf buildpacks for exact buildpack name). If you really want to use the Binary Buildpack, you must specify a start command.
) else (
set message=Error: no start command specified during staging or launch
)
echo ---
echo default_process_types:
echo web: "cmd /c \"echo %message% ^>^&2 ^& exit 1\""
|
Update warning message with clear buildpack names
|
Update warning message with clear buildpack names
[#162625493]
|
Batchfile
|
apache-2.0
|
cloudfoundry/binary-buildpack,rakutentech/binary-buildpack,cloudfoundry/binary-buildpack,rakutentech/binary-buildpack,rakutentech/binary-buildpack,cloudfoundry/binary-buildpack
|
aac89e98153175ead096c808e5c083f8001cb9a8
|
presetup-win.cmd
|
presetup-win.cmd
|
REM Installing Chocolatey
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
REM Installing virtualbox
choco install virtualbox -y
REM Killing the default adapter and DHCP server to avoid network issues down the road
VBoxManage dhcpserver remove --netname "HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter"
VBoxManage hostonlyif remove "VirtualBox Host-Only Ethernet Adapter"
REM Installing vagrant
choco install vagrant -y
|
REM Installing Chocolatey
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin
REM Installing virtualbox
choco install virtualbox -y
REM Killing the default adapter and DHCP server to avoid network issues down the road
"C:\Program Files\Oracle\VirtualBox\VBoxManage" dhcpserver remove --netname "HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter"
"C:\Program Files\Oracle\VirtualBox\VBoxManage" hostonlyif remove "VirtualBox Host-Only Ethernet Adapter"
REM Installing vagrant
choco install vagrant -y
|
Fix path to VirtualBox in PATH on Windows
|
Fix path to VirtualBox in PATH on Windows
|
Batchfile
|
mit
|
blinkreaction/boot2docker-vagrant
|
092194484e2e9d7768d62da3a4e5f14317a4fe97
|
make.bat
|
make.bat
|
@ECHO off
IF NOT "x%1" == "x" GOTO :%1
GOTO :tiny
:large
ECHO "Building large"
cmake -DWithOpenSSL=ON -DWithSharedOpenSSL=OFF -H. -Bbuild
GOTO :build
:tiny
ECHO "Building tiny"
cmake -H. -Bbuild
GOTO :build
:build
cmake --build build --config Release -- /maxcpucount
COPY build\Release\luvi.exe .
GOTO :end
:test
SET LUVI_APP=samples\test.app
luvi.exe
SET LUVI_TARGET=test.exe
luvi.exe
SET "LUVI_APP="
SET "LUVI_TARGET="
test.exe
DEL /Q test.exe
GOTO :end
:clean
IF EXIST build RMDIR /S /Q build
IF EXIST luvi.exe DEL /F /Q luvi.exe
GOTO :end
:publish
ECHO "Building all versions"
git submodule update --init --recursive
CALL make.bat clean
CALL make.bat tiny
CALL make.bat test
COPY build\Release\luvi.exe luvi-binaries\Windows\luvi-tiny.exe
CALL make.bat clean
CALL make.bat large
CALL make.bat test
COPY build\Release\luvi.exe luvi-binaries\Windows\luvi.exe
CD luvi-binaries
git pull
git add Windows
git commit
git push
CD ..
:end
|
@ECHO off
IF NOT "x%1" == "x" GOTO :%1
GOTO :tiny
:large
ECHO "Building large"
cmake -DWithOpenSSL=ON -DWithSharedOpenSSL=OFF -DWithZLIB=ON -DWithSharedZLIB=OFF -H. -Bbuild
GOTO :build
:tiny
ECHO "Building tiny"
cmake -H. -Bbuild
GOTO :build
:build
cmake --build build --config Release -- /maxcpucount
COPY build\Release\luvi.exe .
GOTO :end
:test
SET LUVI_APP=samples\test.app
luvi.exe
SET LUVI_TARGET=test.exe
luvi.exe
SET "LUVI_APP="
SET "LUVI_TARGET="
test.exe
DEL /Q test.exe
GOTO :end
:clean
IF EXIST build RMDIR /S /Q build
IF EXIST luvi.exe DEL /F /Q luvi.exe
GOTO :end
:publish
ECHO "Building all versions"
git submodule update --init --recursive
CALL make.bat clean
CALL make.bat tiny
CALL make.bat test
COPY build\Release\luvi.exe luvi-binaries\Windows\luvi-tiny.exe
CALL make.bat clean
CALL make.bat large
CALL make.bat test
COPY build\Release\luvi.exe luvi-binaries\Windows\luvi.exe
CD luvi-binaries
git pull
git add Windows
git commit
git push
CD ..
:end
|
Enable zlib in the Windows build
|
Enable zlib in the Windows build
|
Batchfile
|
apache-2.0
|
virgo-agent-toolkit/luvi,luvit/luvi,joerg-krause/luvi,brimworks/luvi,zhaozg/luvi,virgo-agent-toolkit/luvi,zhaozg/luvi,kidaa/luvi,joerg-krause/luvi,brimworks/luvi,luvit/luvi
|
28637ef1885715915346604328c5c6d1332baf29
|
recipes/r-nlmixr/bld.bat
|
recipes/r-nlmixr/bld.bat
|
"%R%" CMD INSTALL --build .
IF %ERRORLEVEL% NEQ 0 exit 1
|
%SRC_DIR%>set "CXX_STD=CXX14"
%SRC_DIR%>set "CXX14STD=-std=c++1y"
"%R%" CMD INSTALL --build .
IF %ERRORLEVEL% NEQ 0 exit 1
|
Test set CXX14 for win build
|
Test set CXX14 for win build
|
Batchfile
|
bsd-3-clause
|
hadim/staged-recipes,dschreij/staged-recipes,asmeurer/staged-recipes,igortg/staged-recipes,jochym/staged-recipes,johanneskoester/staged-recipes,SylvainCorlay/staged-recipes,jochym/staged-recipes,mariusvniekerk/staged-recipes,jakirkham/staged-recipes,conda-forge/staged-recipes,ocefpaf/staged-recipes,ReimarBauer/staged-recipes,conda-forge/staged-recipes,Juanlu001/staged-recipes,hadim/staged-recipes,stuertz/staged-recipes,mariusvniekerk/staged-recipes,kwilcox/staged-recipes,patricksnape/staged-recipes,petrushy/staged-recipes,dschreij/staged-recipes,igortg/staged-recipes,chrisburr/staged-recipes,asmeurer/staged-recipes,stuertz/staged-recipes,SylvainCorlay/staged-recipes,goanpeca/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,scopatz/staged-recipes,chrisburr/staged-recipes,Juanlu001/staged-recipes,johanneskoester/staged-recipes,petrushy/staged-recipes,ReimarBauer/staged-recipes,birdsarah/staged-recipes,ocefpaf/staged-recipes,scopatz/staged-recipes,patricksnape/staged-recipes,birdsarah/staged-recipes
|
1ee8ddec9da31c01284fba2d434a316543e994f2
|
dev.jeka.core/src/main/java/META-INF/bin/jeka.bat
|
dev.jeka.core/src/main/java/META-INF/bin/jeka.bat
|
@echo off
@rem Change here the default JVM options
@rem SET JEKA_OPTS == ""
@rem set terminal encoding to utf-8
chcp 65001 > nul
if not "%JEKA_JDK%" == "" set "JAVA_HOME=%JEKA_JDK%"
if "%JAVA_HOME%" == "" set "JAVA_CMD=java"
if not "%JAVA_HOME%" == "" set "JAVA_CMD=%JAVA_HOME%\bin\java"
if exist %cd%\jeka\boot set "LOCAL_BUILD_DIR=.\jeka\boot\*;"
if "%JEKA_HOME%" == "" set "JEKA_HOME=%~dp0"
set "COMMAND="%JAVA_CMD%" %JEKA_OPTS% -cp "%LOCAL_BUILD_DIR%%JEKA_HOME%\dev.jeka.jeka-core.jar" dev.jeka.core.tool.Main %*"
if not "%JEKA_ECHO_CMD%" == "" (
@echo on
echo %COMMAND%
@echo off)
%COMMAND%
|
@echo off
@rem Change here the default JVM options
@rem SET JEKA_OPTS == ""
@rem set terminal encoding to utf-8
chcp 65001 > nul
if not "%JEKA_JDK%" == "" set "JAVA_HOME=%JEKA_JDK%"
if "%JAVA_HOME%" == "" set "JAVA_CMD=java"
if not "%JAVA_HOME%" == "" set "JAVA_CMD=%JAVA_HOME%\bin\java"
if exist %cd%\jeka\boot set "LOCAL_BUILD_DIR=.\jeka\boot\*;"
if "%JEKA_HOME%" == "" set "JEKA_HOME=%~dp0"
rem Ensure that the Jeka jar is actually in JEKA_HOME
if not exist %JEKA_HOME%\dev.jeka.jeka-core.jar (
echo Could not find "dev.jeka.jeka-core.jar" in "%JEKA_HOME%"
echo Please ensure JEKA_HOME points to the correct directory
echo or that the distrib.zip file has been extracted fully
rem Pause before exiting so the user can read the message first
pause
exit /b 1
)
set "COMMAND="%JAVA_CMD%" %JEKA_OPTS% -cp "%LOCAL_BUILD_DIR%%JEKA_HOME%\dev.jeka.jeka-core.jar" dev.jeka.core.tool.Main %*"
if not "%JEKA_ECHO_CMD%" == "" (
@echo on
echo %COMMAND%
@echo off)
%COMMAND%
|
Check the Jeka jar is actually present at JEKA_HOME
|
Check the Jeka jar is actually present at JEKA_HOME
Fixes any potential problems from using the current directory where the distrib.zip might not have been extracted
|
Batchfile
|
apache-2.0
|
jerkar/jerkar,jerkar/jerkar,jerkar/jerkar
|
4232fad550da4c478285b45a6e9bd0ef2b971446
|
config.bat
|
config.bat
|
@echo off
rem config.bat: master configuration file for the batch files
rem Running this command directly has no effect,
rem but you can tweak the settings to your liking.
rem Set the amount of RAM available to the command line tools.
set JFLAGS=-Xmx512m
rem Set the NO_UPDATE_CHECK flag to skip the update check.
rem NO_UPDATE_CHECK=1
rem If you are behind a proxy server, the host name and port must be set.
set PROXY_HOST=
set PROXY_PORT=
rem If your CLASSPATH already includes the needed classes,
rem you can set the SCIFIO_DEVEL environment variable to
rem disable the required JAR library checks.
rem SCIFIO_DEVEL=1
|
@echo off
rem config.bat: master configuration file for the batch files
rem Running this command directly has no effect,
rem but you can tweak the settings to your liking.
rem Set the amount of RAM available to the command line tools.
set JFLAGS=-Xmx512m
rem Set the NO_UPDATE_CHECK flag to skip the update check.
rem set NO_UPDATE_CHECK=1
rem If you are behind a proxy server, the host name and port must be set.
set PROXY_HOST=
set PROXY_PORT=
rem If your CLASSPATH already includes the needed classes,
rem you can set the SCIFIO_DEVEL environment variable to
rem disable the required JAR library checks.
rem set SCIFIO_DEVEL=1
|
Add missing set commands to commented-out code
|
Add missing set commands to commented-out code
|
Batchfile
|
bsd-2-clause
|
scifio/scifio-cli
|
3d5db7e5d5c550f298a267336c384f2d3cdc85cb
|
mcedit-debug.bat
|
mcedit-debug.bat
|
@echo off
SET STATUS=,
:START:
python.exe mcedit.py
ECHO.
ECHO ^|-----------------^|
ECHO ^|Mcedit Terminated^|
ECHO ^|-----------------^|
ECHO.
SET /P K=Press R or Enter to restart MCEdit%STATUS% any other key to exit:
IF /I %K%==R GOTO CLEAR
GOTO EXIT
:CLEAR:
CLS
SET STATUS= again,
GOTO START
:EXIT:
|
@echo off
SET STATUS=,
:START:
python.exe mcedit.py
ECHO.
ECHO ^|-----------------^|
ECHO ^|Mcedit Terminated^|
ECHO ^|-----------------^|
ECHO.
SET K==R
SET /P K=Press R or Enter to restart MCEdit%STATUS% any other key to exit:
IF /I %K%==R GOTO CLEAR
GOTO EXIT
:CLEAR:
CLS
SET STATUS= again,
GOTO START
:EXIT:
|
Improve bat not accepting enter first loop
|
Improve bat not accepting enter first loop
|
Batchfile
|
isc
|
skinny121/MCEdit-TallWorlds,skinny121/MCEdit-TallWorlds,skinny121/MCEdit-Unified,OniOniOn-/MCEdit-Unified,Neui/MCEdit-Unified,skinny121/MCEdit-Unified,OniOniOn-/MCEdit-Unified,fhfuih/MCEdit-Unified,DragonQuiz/MCEdit-Unified,DragonQuiz/MCEdit-Unified,Neui/MCEdit-Unified,Khroki/MCEdit-Unified,fhfuih/MCEdit-Unified,Khroki/MCEdit-Unified,violine1101/MCEdit-Unified,gpmidi/MCEdit-Unified,gpmidi/MCEdit-Unified,Khroki/MCEdit-Unified,Neui/MCEdit-Unified,OniOniOn-/MCEdit-Unified,skinny121/MCEdit-TallWorlds,violine1101/MCEdit-Unified,DragonQuiz/MCEdit-Unified,gpmidi/MCEdit-Unified,fhfuih/MCEdit-Unified
|
d5ed8650fc3d05144c177a58300c30701cf06d0a
|
tests/test-recipes/metadata/source_git/bld.bat
|
tests/test-recipes/metadata/source_git/bld.bat
|
if not exist .git exit 1
git describe
if errorlevel 1 exit 1
for /f "delims=" %%i in ('git describe') do set gitdesc=%%i
if errorlevel 1 exit 1
echo "%gitdesc%"
if not "%gitdesc%"=="1.8.1" exit 1
set PYTHONPATH=.
python -c "import conda_build; assert conda_build.__version__ == '1.8.1', conda_build.__version__"
if errorlevel 1 exit 1
|
if not exist .git exit 1
git describe
if errorlevel 1 exit 1
for /f "delims=" %%i in ('git describe') do set gitdesc=%%i
if errorlevel 1 exit 1
echo "%gitdesc%"
if not "%gitdesc%"=="1.8.1" exit 1
git status
if errorlevel 1 exit 1
set PYTHONPATH=.
python -c "import conda_build; assert conda_build.__version__ == '1.8.1', conda_build.__version__"
if errorlevel 1 exit 1
|
Add git status debug output to test
|
Add git status debug output to test
|
Batchfile
|
bsd-3-clause
|
frol/conda-build,ilastik/conda-build,ilastik/conda-build,mwcraig/conda-build,rmcgibbo/conda-build,sandhujasmine/conda-build,dan-blanchard/conda-build,mwcraig/conda-build,frol/conda-build,sandhujasmine/conda-build,frol/conda-build,ilastik/conda-build,mwcraig/conda-build,dan-blanchard/conda-build,dan-blanchard/conda-build,rmcgibbo/conda-build,rmcgibbo/conda-build,sandhujasmine/conda-build
|
eb12280ec38fda6570b317dd07d6cfed66c58f2f
|
vshax.bat
|
vshax.bat
|
powershell -Command "(gc .build/projects/vs2015/unit_test.vcxproj) -replace '<ExceptionHandling>false', '<ExceptionHandling>Sync' | Out-File -encoding UTF8 .build/projects/vs2015/unit_test.vcxproj"
powershell -Command "(gc .build/projects/vs2015/unit_test.vcxproj) -replace '<RuntimeTypeInfo>false', '<RuntimeTypeInfo>true' | Out-File -encoding UTF8 .build/projects/vs2015/unit_test.vcxproj"
|
powershell -Command "(gc .build/projects/%1/unit_test.vcxproj) -replace '<ExceptionHandling>false', '<ExceptionHandling>Sync' | Out-File -encoding UTF8 .build/projects/%1/unit_test.vcxproj"
powershell -Command "(gc .build/projects/%1/unit_test.vcxproj) -replace '<RuntimeTypeInfo>false', '<RuntimeTypeInfo>true' | Out-File -encoding UTF8 .build/projects/%1/unit_test.vcxproj"
|
Add toolset as commandline parameter
|
Add toolset as commandline parameter
|
Batchfile
|
mit
|
siquel/kulma,siquel/kulma
|
9db44a8dadbfc7c47996ecabe9d58cad74c9f6b0
|
packages/MSDOS/djmake.bat
|
packages/MSDOS/djmake.bat
|
@echo off
if exist src\fscanner.l goto dir_okay
echo !!!! Must run this batch file from the main source directory!
exit
:dir_okay
echo ---- Start by patching the ylwrap script to avoid problems
echo with "ln -s":
patch -p1 -i contrib/msdos/ylwrap.pat
echo ---- Now configure and make it.
echo -- NOTE --: this assumes you have pdcurses installed!
echo -- NOTE --: Will be using '-f' mode of flex, for faster scanning
bash configure
make CURSES_LIBS=-lpdcurses LFLAGS="-f8B"
echo ---- You may now call "make install", if desired.
echo -- DONE --
|
@echo off
if exist src\fscanner.l goto dir_okay
echo !!!! Must run this batch file from the main source directory!
exit
:dir_okay
echo ---- Start by patching the ylwrap script to avoid problems
echo with "ln -s":
patch -p1 -i packages/MSDOS/ylwrap.pat
echo ---- Now configure and make it.
echo -- NOTE --: this assumes you have pdcurses installed!
echo -- NOTE --: Will be using '-f' mode of flex, for faster scanning
bash configure
make CURSES_LIBS=-lpdcurses LFLAGS="-f8B"
echo ---- You may now call "make install", if desired.
echo -- DONE --
|
Fix pathname of patch file
|
Fix pathname of patch file
|
Batchfile
|
bsd-3-clause
|
lboulard/cscope,lboulard/cscope,lboulard/cscope
|
46fac6e0971c9d110fc51441c7476ae1b1bec532
|
contrib/easywinbuilder/6_gather_dlls.bat
|
contrib/easywinbuilder/6_gather_dlls.bat
|
@call set_vars.bat
copy %QTPATH%\Qt5Charts.dll %ROOTPATH%\release\
copy %QTPATH%\Qt5Core.dll %ROOTPATH%\release\
copy %QTPATH%\Qt5Gui.dll %ROOTPATH%\release\
copy %QTPATH%\Qt5Network.dll %ROOTPATH%\release\
copy %QTPATH%\Qt5Widgets.dll %ROOTPATH%\release\
copy %QTPATH%\libgcc_s_dw2-1.dll %ROOTPATH%\release\
copy %QTPATH%\libstdc++-6.dll %ROOTPATH%\release\
copy %QTPATH%\libgcc_s_dw2-1.dll %ROOTPATH%\release\
copy %QTPATH%\libwinpthread-1.dll %ROOTPATH%\release\
@if not "%RUNALL%"=="1" pause
|
@call set_vars.bat
copy %QTDIR%\5.8\mingw53_32\Qt5Charts.dll %ROOTPATH%\release\
copy %QTDIR%\5.8\mingw53_32\Qt5Core.dll %ROOTPATH%\release\
copy %QTDIR%\5.8\mingw53_32\Qt5Gui.dll %ROOTPATH%\release\
copy %QTDIR%\5.8\mingw53_32\Qt5Network.dll %ROOTPATH%\release\
copy %QTDIR%\5.8\mingw53_32\Qt5Widgets.dll %ROOTPATH%\release\
copy %QTDIR%\5.8\mingw53_32\bin\libgcc_s_dw2-1.dll %ROOTPATH%\release\
copy "%QTDIR%\5.8\mingw53_32\bin\libstdc++-6.dll" %ROOTPATH%\release\
copy %QTDIR%\5.8\mingw53_32\bin\libwinpthread-1.dll %ROOTPATH%\release\
copy %QTDIR%\5.8\mingw53_32\plugins\iconengines\qsvgicon.dll %ROOTPATH%\release\iconengines\qsvgicon.dll
copy %QTDIR%\5.8\mingw53_32\plugins\imageformats\qsvg.dll %ROOTPATH%\release\imageformats\qsvg.dll
copy %QTDIR%\5.8\mingw53_32\plugins\platforms\qwindows.dll %ROOTPATH%\release\platforms\qwindows.dll
@if not "%RUNALL%"=="1" pause
|
Add other dlls to copy for release. Fix libstc++-6.dll not being found as requires quotations
|
Add other dlls to copy for release. Fix libstc++-6.dll not being found as requires quotations
|
Batchfile
|
mit
|
caraka/gridcoinresearch,gridcoin/Gridcoin-Research,tomasbrod/Gridcoin-Research,Lederstrumpf/Gridcoin-Research,Lederstrumpf/Gridcoin-Research,theMarix/Gridcoin-Research,Git-Jiro/Gridcoin-Research,caraka/gridcoinresearch,Git-Jiro/Gridcoin-Research,TheCharlatan/Gridcoin-Research,TheCharlatan/Gridcoin-Research,tomasbrod/Gridcoin-Research,TheCharlatan/Gridcoin-Research,caraka/gridcoinresearch,Git-Jiro/Gridcoin-Research,caraka/gridcoinresearch,theMarix/Gridcoin-Research,tomasbrod/Gridcoin-Research,theMarix/Gridcoin-Research,theMarix/Gridcoin-Research,Git-Jiro/Gridcoin-Research,Lederstrumpf/Gridcoin-Research,gridcoin/Gridcoin-Research,caraka/gridcoinresearch,tomasbrod/Gridcoin-Research,Lederstrumpf/Gridcoin-Research,gridcoin/Gridcoin-Research,TheCharlatan/Gridcoin-Research,theMarix/Gridcoin-Research,gridcoin/Gridcoin-Research,caraka/gridcoinresearch,Git-Jiro/Gridcoin-Research,Lederstrumpf/Gridcoin-Research,gridcoin/Gridcoin-Research,tomasbrod/Gridcoin-Research,TheCharlatan/Gridcoin-Research,gridcoin/Gridcoin-Research,theMarix/Gridcoin-Research,Lederstrumpf/Gridcoin-Research
|
607f79a4218d9dd247096c98312dc4fd9be4c07a
|
src/Q42.RijksmuseumApi/NuGet/CreateNuGetPackage.cmd
|
src/Q42.RijksmuseumApi/NuGet/CreateNuGetPackage.cmd
|
@echo off
..\..\.nuget\NuGet.exe pack ..\Q42.RijksmuseumApi.nuspec -Prop Configuration=Release
|
@echo off
..\..\.nuget\NuGet.exe pack ..\Q42.RijksmuseumApi.csproj -Prop Configuration=Release
|
Create NuGet package based on csproj instead of nuspec
|
Create NuGet package based on csproj instead of nuspec
|
Batchfile
|
mit
|
Q42/Q42.RijksmuseumApi
|
6ff68633ed730dbd1500f06639dd093513b4278e
|
makezip.bat
|
makezip.bat
|
@echo off
rem Repack the installer contents into a ZIP archive.
mkdir .\unpacked
msiexec /a CormanLispInstaller.msi /qn TARGETDIR="%~dp0unpacked"
del CormanLispBinaries.zip
powershell Compress-Archive -Path \"%~dp0unpacked\Corman Lisp\" -DestinationPath \"%~dp0CormanLispBinaries.zip\"
rd /s /q .\unpacked
|
@echo off
rem Repack the installer contents into a ZIP archive.
mkdir .\unpacked
msiexec /a CormanLispInstaller.msi /qn TARGETDIR="%~dp0unpacked"
move ".\unpacked\System\*" ".\unpacked\Corman Lisp\"
del CormanLispBinaries.zip
rem rem Visual C++ Runtime DLL files and Universal CRT files Local Deployment
rem copy "%VS140COMNTOOLS%..\..\VC\redist\x86\Microsoft.VC140.CRT\*.dll" ".\unpacked\Corman Lisp\"
rem copy "%VS140COMNTOOLS%..\..\VC\redist\x86\Microsoft.VC140.MFC\*.dll" ".\unpacked\Corman Lisp\"
rem copy "%VS140COMNTOOLS%..\..\VC\redist\x86\Microsoft.VC140.MFCLOC\*.dll" ".\unpacked\Corman Lisp\"
rem rem Visual Studio 2015 only
rem if exist "%SystemRoot%\SysWOW64\" (
rem copy "%SystemRoot%\SysWOW64\mfc140.dll" ".\unpacked\Corman Lisp\"
rem copy "%SystemRoot%\SysWOW64\mfcm140.dll" ".\unpacked\Corman Lisp\"
rem ) else (
rem copy "%SystemRoot%\System32\mfc140.dll" ".\unpacked\Corman Lisp\"
rem copy "%SystemRoot%\System32\mfcm140.dll" ".\unpacked\Corman Lisp\"
rem )
rem rem Universal C Runtime
rem if exist "%ProgramFiles(x86)%\" (
rem copy "%ProgramFiles(x86)%\Windows Kits\10\Redist\ucrt\DLLs\x86\*.dll" ".\unpacked\Corman Lisp\"
rem ) else (
rem copy "%ProgramFiles%\Windows Kits\10\Redist\ucrt\DLLs\x86\*.dll" ".\unpacked\Corman Lisp\"
rem )
powershell Compress-Archive -Path \"%~dp0unpacked\Corman Lisp\" -DestinationPath \"%~dp0CormanLispBinaries.zip\"
rd /s /q .\unpacked
|
Copy the necessary Visual C++ Runtime files into the ZIP archive.
|
Copy the necessary Visual C++ Runtime files into the ZIP archive.
|
Batchfile
|
mit
|
sharplispers/cormanlisp,sharplispers/cormanlisp,sharplispers/cormanlisp,sharplispers/cormanlisp,sharplispers/cormanlisp,sharplispers/cormanlisp,sharplispers/cormanlisp,sharplispers/cormanlisp
|
9d5c2e0c884d9f233f28adec20b4a966efaa27b4
|
perl/settings.cmd
|
perl/settings.cmd
|
@echo off
set drive=%~dp0
set drivep=%drive%
set PERLVER=5.20.3.1
set PERLDIR=%drivep%\%ARCH%\perl
set RELVERSION=3.3.0_01
if #%drive:~-1%# == #\# set drivep=%drive:~0,-1%
set PATH=%PERLDIR%\perl\site\bin;%PERLDIR%\perl\bin;%PERLDIR%\c\bin;%PATH%
|
@echo off
set drive=%~dp0
set drivep=%drive%
set PERLVER=5.20.3.1
set PERLDIR=%drivep%\%ARCH%\perl
set RELVERSION=3.3.0_02
if #%drive:~-1%# == #\# set drivep=%drive:~0,-1%
set PATH=%PERLDIR%\perl\site\bin;%PERLDIR%\perl\bin;%PERLDIR%\c\bin;%PATH%
|
Update perl module version to be built
|
Update perl module version to be built
|
Batchfile
|
mit
|
mgreter/libsass-msi-installer,mgreter/libsass-msi-installer,mgreter/libsass-msi-installer
|
8d34443fc69c1d91af888c41a841aa921352f7ac
|
make.bat
|
make.bat
|
@ECHO off
@SET LIT_VERSION=1.1.4
IF NOT "x%1" == "x" GOTO :%1
:luvit
IF NOT EXIST lit.exe CALL make.bat lit
ECHO "Building luvit"
lit.exe make
GOTO :end
:lit
ECHO "Building lit"
PowerShell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://github.com/luvit/lit/raw/%LIT_VERSION%/get-lit.ps1'))"
GOTO :end
:test
IF NOT EXIST luvit.exe CALL make.bat luvit
ECHO "Testing luvit"
SET LUVI_APP=.
luvit.exe tests\run.lua
SET "LUVI_APP="
GOTO :end
:clean
IF EXIST luvit.exe DEL /F /Q luvit.exe
IF EXIST lit.exe DEL /F /Q lit.exe
:end
|
@ECHO off
@SET LIT_VERSION=1.1.8
IF NOT "x%1" == "x" GOTO :%1
:luvit
IF NOT EXIST lit.exe CALL make.bat lit
ECHO "Building luvit"
lit.exe make
GOTO :end
:lit
ECHO "Building lit"
PowerShell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://github.com/luvit/lit/raw/%LIT_VERSION%/get-lit.ps1'))"
GOTO :end
:test
IF NOT EXIST luvit.exe CALL make.bat luvit
ECHO "Testing luvit"
SET LUVI_APP=.
luvit.exe tests\run.lua
SET "LUVI_APP="
GOTO :end
:clean
IF EXIST luvit.exe DEL /F /Q luvit.exe
IF EXIST lit.exe DEL /F /Q lit.exe
:end
|
Update lit version to fix windows build
|
Update lit version to fix windows build
|
Batchfile
|
apache-2.0
|
bsn069/luvit,zhaozg/luvit,luvit/luvit,kaustavha/luvit,bsn069/luvit,kaustavha/luvit,luvit/luvit,zhaozg/luvit,bsn069/luvit,kaustavha/luvit
|
708d678a223eb89eb3801cafcc49e0d578ef6eef
|
run_windows.bat
|
run_windows.bat
|
@echo off
chcp 65001 > NUL
set PIPENV_VENV_IN_PROJECT=1
python --version > NUL 2>&1
if %ERRORLEVEL% neq 0 (
echo Cannot find Python executable, make sure it is installed and added to your PATH.
pause
exit /B 0
)
python -c "import pipenv" > NUL 2>&1
if %ERRORLEVEL% neq 0 (
python -m pip install --user pipenv
)
pipenv --version > NUL 2>&1
if %ERRORLEVEL% neq 0 (
echo Adding pipenv to PATH...
for /F %%p IN ('python -m site --user-site') do set path_pipenv=%%p
set PATH=%PATH%;%path_pipenv:site-packages=Scripts%
)
if not exist ".venv" ( pipenv --bare install )
pipenv run python3 -c "exit(__import__('discord').opus.is_loaded())" > NUL 2>&1
if %ERRORLEVEL% equ 0 (
echo Cannot find libopus on your system, make sure it is installed.
pause
exit /B 0
)
del /Q panda.log
pipenv run python panda.py
pause
|
@echo off
SETLOCAL EnableDelayedExpansion
chcp 65001 > NUL
set PIPENV_VENV_IN_PROJECT=1
python --version > NUL 2>&1
if %ERRORLEVEL% neq 0 (
echo Cannot find Python executable, make sure it is installed and added to your PATH.
pause
exit /B 0
)
python -c "import pipenv" > NUL 2>&1
if %ERRORLEVEL% neq 0 (
python -m pip install --user pipenv
)
pipenv --version > NUL 2>&1
if %ERRORLEVEL% neq 0 (
echo Adding pipenv to PATH...
for /F %%p IN ('python -m site --user-site') do set path_pipenv=%%p
set PATH=!PATH!;!path_pipenv:site-packages=Scripts!
)
if not exist ".venv" ( pipenv --bare install )
pipenv run python3 -c "exit(__import__('discord').opus.is_loaded())" > NUL 2>&1
if %ERRORLEVEL% equ 0 (
echo Cannot find libopus on your system, make sure it is installed.
pause
exit /B 0
)
del /Q panda.log
pipenv run python panda.py
pause
|
Fix pipenv addition to PATH when PATH contains parenthsis.
|
Fix pipenv addition to PATH when PATH contains parenthsis.
|
Batchfile
|
mit
|
PapyrusThePlant/MusicPanda,PapyrusThePlant/MusicPanda
|
16a7e9e6eba613e5bda47538fb52fee1cf9b2a14
|
popcorn.cmd
|
popcorn.cmd
|
@echo off
setlocal
|
@echo off
setlocal
set "output=nul"
set "times=1"
:help
:parseArgs
if "%~1" == "" goto main
if /i "%~1" == "-?" goto help
if /i "%~1" == "-h" goto help
if /i "%~1" == "--help" goto help
if /i "%~1" == "-t" (
set "times=%~2"
shift
)
if /i "%~1" == "--times" (
set "times=%~2"
shift
)
if /i "%~1" == "-o" (
set "output=%~2"
shift
)
if /i "%~1" == "--output" (
set "output=%~2"
shift
)
shift
:curl
@powershell -NoProfile "iwr %~1 -OutFile %~2" 2> nul
goto :eof
:downloadPackage
set "url=https://www.nuget.org/api/v2/package/%~1"
call :curl "%url%" %2
goto :eof
:main
for /l %%i in (1, 1, %times%) do (
call :downloadPackage "%package%" "%output%"
)
|
Add the logic for the Windows script
|
Add the logic for the Windows script
|
Batchfile
|
mit
|
jamesqo/popcorn
|
72d280b61b99be28abaeb520fc473bdc77452081
|
build-msvc-release.bat
|
build-msvc-release.bat
|
scons withMSVC=1 custom=custom-msvc.py useJack=0 buildRelease=1 buildCsoundVST=1 buildvst4cs=1 buildInterfaces=1 buildCsoundAC=1 buildJavaWrapper=1 useOSC=1 buildPythonOpcodes=1 buildLoris=0 buildStkOpcodes=1 buildWinsound=1 noFLTKThreads=0 noDebug=1 buildPDClass=1 buildVirtual=1 buildCsound5GUI=1 buildTclcsound=1 buildLua=1 useDouble=1 dynamicCsoundLibrary=1 buildCSEditor=1 %1 %2 %3 %4
|
scons withMSVC=1 custom=custom-msvc.py useJack=0 buildRelease=1 buildCsoundVST=1 buildvst4cs=1 buildInterfaces=1 buildCsoundAC=1 buildJavaWrapper=1 useOSC=0 buildPythonOpcodes=1 buildLoris=0 buildStkOpcodes=1 buildWinsound=1 noFLTKThreads=0 noDebug=1 buildPDClass=0 buildVirtual=1 buildCsound5GUI=1 buildTclcsound=1 buildLua=1 useDouble=1 dynamicCsoundLibrary=1 buildCSEditor=1 %1 %2 %3 %4
|
Use MSVC import lib for MSVC DLL for Fluidsynth in MSVC build.
|
Use MSVC import lib for MSVC DLL for Fluidsynth in MSVC build.
|
Batchfile
|
lgpl-2.1
|
max-ilse/csound,audiokit/csound,max-ilse/csound,mcanthony/csound,max-ilse/csound,iver56/csound,audiokit/csound,max-ilse/csound,nikhilsinghmus/csound,Angeldude/csound,iver56/csound,iver56/csound,audiokit/csound,iver56/csound,audiokit/csound,max-ilse/csound,max-ilse/csound,iver56/csound,Angeldude/csound,nikhilsinghmus/csound,audiokit/csound,iver56/csound,Angeldude/csound,mcanthony/csound,Angeldude/csound,mcanthony/csound,mcanthony/csound,mcanthony/csound,audiokit/csound,mcanthony/csound,nikhilsinghmus/csound,max-ilse/csound,nikhilsinghmus/csound,nikhilsinghmus/csound,audiokit/csound,nikhilsinghmus/csound,audiokit/csound,max-ilse/csound,nikhilsinghmus/csound,Angeldude/csound,max-ilse/csound,nikhilsinghmus/csound,audiokit/csound,audiokit/csound,mcanthony/csound,iver56/csound,Angeldude/csound,iver56/csound,mcanthony/csound,nikhilsinghmus/csound,iver56/csound,max-ilse/csound,Angeldude/csound,Angeldude/csound,mcanthony/csound,iver56/csound,Angeldude/csound,Angeldude/csound,nikhilsinghmus/csound,mcanthony/csound
|
9b62acd12fa259e67fe7dea65bcc4f56a54557b2
|
build_win64.bat
|
build_win64.bat
|
cd conda-skeletons
conda install conda-build anaconda-client
conda config --add channels matsci
conda config --set anaconda_upload yes
FOR %%A IN (ase latexcodec pybtex spglib pyhull pymatgen pymatgen-db seekpath) DO conda build --user matsci %%A
cd ..
|
cd conda-skeletons
conda install conda-build anaconda-client
conda config --add channels matsci
conda config --set anaconda_upload yes
FOR %%A IN (ase latexcodec pybtex spglib pyhull pymatgen pymatgen-db seekpath) DO conda build --skip-existing --user matsci %%A
cd ..
|
Add skip existing to appveyor.
|
Add skip existing to appveyor.
|
Batchfile
|
bsd-3-clause
|
materialsvirtuallab/materials.sh,materialsvirtuallab/materials.sh
|
8a8a809760d8b5118f7d77d256c8a19f6073bb41
|
Tools/signAll.bat
|
Tools/signAll.bat
|
@echo off
call "%~dp0\SetVsEnv.bat" x86
for /r "%~dp0\..\" %%i in (*.sys) do "signtool.exe" sign /f "%~dp0\VirtIOTestCert.pfx" "%%i"
for /r "%~dp0\..\" %%i in (*.cat) do "signtool.exe" sign /f "%~dp0\VirtIOTestCert.pfx" "%%i"
|
@echo off
call "%~dp0\SetVsEnv.bat" x86
for /r "%~dp0\..\" %%i in (*.sys) do "signtool.exe" sign /fd SHA256 /f "%~dp0\VirtIOTestCert.pfx" "%%i"
for /r "%~dp0\..\" %%i in (*.cat) do "signtool.exe" sign /fd SHA256 /f "%~dp0\VirtIOTestCert.pfx" "%%i"
|
Update command line for new version of signtool
|
singAll: Update command line for new version of signtool
Signed-off-by: Kostiantyn Kostiuk <[email protected]>
|
Batchfile
|
bsd-3-clause
|
daynix/kvm-guest-drivers-windows,YanVugenfirer/kvm-guest-drivers-windows,virtio-win/kvm-guest-drivers-windows,vrozenfe/kvm-guest-drivers-windows,YanVugenfirer/kvm-guest-drivers-windows,daynix/kvm-guest-drivers-windows,daynix/kvm-guest-drivers-windows,YanVugenfirer/kvm-guest-drivers-windows,virtio-win/kvm-guest-drivers-windows,daynix/kvm-guest-drivers-windows,YanVugenfirer/kvm-guest-drivers-windows,virtio-win/kvm-guest-drivers-windows,YanVugenfirer/kvm-guest-drivers-windows,virtio-win/kvm-guest-drivers-windows,vrozenfe/kvm-guest-drivers-windows,daynix/kvm-guest-drivers-windows,virtio-win/kvm-guest-drivers-windows,vrozenfe/kvm-guest-drivers-windows,vrozenfe/kvm-guest-drivers-windows,vrozenfe/kvm-guest-drivers-windows
|
d2f0ab2529594c1b248f10c5a1871611616bfcf5
|
slave/run_slave.bat
|
slave/run_slave.bat
|
@echo off
setlocal
title Build slave
if not exist %~dp0..\..\depot_tools\. (
echo You must put a copy of depot_tools in %~dp0..\depot_tools
echo Did you read the instructions carefully??
goto :EOF
)
set PATH=%~dp0..\..\depot_tools;%PATH%
:: Running it once will make sure svn and python were downloaded.
call gclient.bat > nul
:: run_slave.py will overwrite the PATH and PYTHONPATH environment variables.
python %~dp0\run_slave.py --no_save -y buildbot.tac %*
|
@echo off
setlocal
title Build slave
if not exist %~dp0..\..\depot_tools\. (
echo You must put a copy of depot_tools in %~dp0..\depot_tools
echo Did you read the instructions carefully??
goto :EOF
)
set PATH=%~dp0..\..\depot_tools;%PATH%
cd /d %~dp0
:: Running it once will make sure svn and python were downloaded.
call gclient.bat > nul
:: run_slave.py will overwrite the PATH and PYTHONPATH environment variables.
python %~dp0\run_slave.py --no_save -y buildbot.tac %*
|
Fix auto-sync on start for Windows.
|
Fix auto-sync on start for Windows.
Otherwise it is run from the script's shortcut directory. A good example is when
a shortcut is used in the Startup Menu. So "gclient sync" fails.
[email protected]
BUG=
TEST=
Review URL: https://chromiumcodereview.appspot.com/10783034
git-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@147030 0039d316-1c4b-4281-b951-d872f2087c98
|
Batchfile
|
bsd-3-clause
|
eunchong/build,eunchong/build,eunchong/build,eunchong/build
|
41c31ca694b54d6cf6302613d2f9a597f6357e33
|
src/scripts/ci/setup_appveyor.bat
|
src/scripts/ci/setup_appveyor.bat
|
echo Current build setup MSVS="%MSVS%" PLATFORM="%PLATFORM%" TARGET="%TARGET%"
if %MSVS% == 2013 call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %PLATFORM%
if %MSVS% == 2015 call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %PLATFORM%
if %MSVS% == 2017 call "%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" %PLATFORM%
rem check compiler version
cl
appveyor DownloadFile http://download.qt.io/official_releases/jom/jom.zip -FileName jom.zip
7z e jom.zip
|
echo Current build setup MSVS="%MSVS%" PLATFORM="%PLATFORM%" TARGET="%TARGET%"
if %MSVS% == 2013 call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %PLATFORM%
if %MSVS% == 2015 call "%ProgramFiles(x86)%\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %PLATFORM%
if %MSVS% == 2017 call "%ProgramFiles(x86)%\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" %PLATFORM%
rem check compiler version
cl
git clone --depth 1 https://github.com/randombit/botan-ci-tools
7z e botan-ci-tools/jom_1_1_2.zip
|
Use jom via botan-ci-tools repo
|
Use jom via botan-ci-tools repo
download.qt.io seems to be down ...
|
Batchfile
|
bsd-2-clause
|
Rohde-Schwarz-Cybersecurity/botan,Rohde-Schwarz-Cybersecurity/botan,Rohde-Schwarz-Cybersecurity/botan,Rohde-Schwarz-Cybersecurity/botan,randombit/botan,webmaster128/botan,randombit/botan,Rohde-Schwarz-Cybersecurity/botan,webmaster128/botan,randombit/botan,webmaster128/botan,webmaster128/botan,webmaster128/botan,randombit/botan,randombit/botan,Rohde-Schwarz-Cybersecurity/botan
|
1207080a013ebe653cbeb599253b99b83f58396b
|
recipes/openjdk/scripts/activate.bat
|
recipes/openjdk/scripts/activate.bat
|
export set "JAVA_HOME_CONDA_BACKUP=%JAVA_HOME%"
export set "JAVA_HOME=%CONDA_PREFIX%\Library"
|
set "JAVA_HOME_CONDA_BACKUP=%JAVA_HOME%"
set "JAVA_HOME=%CONDA_PREFIX%\Library"
|
Remove export from windows script.
|
Remove export from windows script.
|
Batchfile
|
bsd-3-clause
|
ocefpaf/staged-recipes,koverholt/staged-recipes,jerowe/staged-recipes,dfroger/staged-recipes,Cashalow/staged-recipes,ocefpaf/staged-recipes,petrushy/staged-recipes,birdsarah/staged-recipes,hbredin/staged-recipes,cpaulik/staged-recipes,pstjohn/staged-recipes,kwilcox/staged-recipes,jochym/staged-recipes,glemaitre/staged-recipes,mariusvniekerk/staged-recipes,patricksnape/staged-recipes,sodre/staged-recipes,scopatz/staged-recipes,sodre/staged-recipes,kwilcox/staged-recipes,asmeurer/staged-recipes,NOAA-ORR-ERD/staged-recipes,Cashalow/staged-recipes,JohnGreeley/staged-recipes,gqmelo/staged-recipes,mcernak/staged-recipes,jjhelmus/staged-recipes,planetarypy/staged-recipes,pmlandwehr/staged-recipes,isuruf/staged-recipes,mcs07/staged-recipes,SylvainCorlay/staged-recipes,Juanlu001/staged-recipes,blowekamp/staged-recipes,synapticarbors/staged-recipes,johanneskoester/staged-recipes,rvalieris/staged-recipes,atedstone/staged-recipes,rvalieris/staged-recipes,NOAA-ORR-ERD/staged-recipes,conda-forge/staged-recipes,hajapy/staged-recipes,SylvainCorlay/staged-recipes,larray-project/staged-recipes,pmlandwehr/staged-recipes,pstjohn/staged-recipes,mariusvniekerk/staged-recipes,cpaulik/staged-recipes,mcs07/staged-recipes,dharhas/staged-recipes,shadowwalkersb/staged-recipes,mcernak/staged-recipes,hadim/staged-recipes,rmcgibbo/staged-recipes,stuertz/staged-recipes,asmeurer/staged-recipes,rmcgibbo/staged-recipes,bmabey/staged-recipes,ReimarBauer/staged-recipes,synapticarbors/staged-recipes,barkls/staged-recipes,johanneskoester/staged-recipes,stuertz/staged-recipes,johannesring/staged-recipes,caspervdw/staged-recipes,Savvysherpa/staged-recipes,petrushy/staged-recipes,scopatz/staged-recipes,chohner/staged-recipes,sannykr/staged-recipes,sodre/staged-recipes,igortg/staged-recipes,patricksnape/staged-recipes,hadim/staged-recipes,guillochon/staged-recipes,benvandyke/staged-recipes,Savvysherpa/staged-recipes,guillochon/staged-recipes,sannykr/staged-recipes,JohnGreeley/staged-recipes,benvandyke/staged-recipes,goanpeca/staged-recipes,chohner/staged-recipes,johannesring/staged-recipes,barkls/staged-recipes,conda-forge/staged-recipes,caspervdw/staged-recipes,dschreij/staged-recipes,hbredin/staged-recipes,chrisburr/staged-recipes,chrisburr/staged-recipes,jakirkham/staged-recipes,larray-project/staged-recipes,glemaitre/staged-recipes,ceholden/staged-recipes,basnijholt/staged-recipes,jerowe/staged-recipes,Juanlu001/staged-recipes,bmabey/staged-recipes,isuruf/staged-recipes,basnijholt/staged-recipes,igortg/staged-recipes,dschreij/staged-recipes,goanpeca/staged-recipes,koverholt/staged-recipes,jakirkham/staged-recipes,birdsarah/staged-recipes,tylere/staged-recipes,jochym/staged-recipes,tylere/staged-recipes,grlee77/staged-recipes,jjhelmus/staged-recipes,ReimarBauer/staged-recipes,planetarypy/staged-recipes,dfroger/staged-recipes,hajapy/staged-recipes,blowekamp/staged-recipes,ceholden/staged-recipes,dharhas/staged-recipes,grlee77/staged-recipes,gqmelo/staged-recipes,shadowwalkersb/staged-recipes,atedstone/staged-recipes
|
05d09c45065ac2da2b81e217b7553bff8953cc46
|
Springboard365.Tools.CommandLine.Core/NuGet/NuGetPush.bat
|
Springboard365.Tools.CommandLine.Core/NuGet/NuGetPush.bat
|
NuGet.exe pack ../Springboard365.Tools.CommandLine.Core.csproj -Build -symbols
pause
|
NuGet.exe pack ../Springboard365.Tools.CommandLine.Core.csproj -Build -symbols
NuGet.exe push *.nupkg
pause
|
Add NuGet push to NuGet build script.
|
Add NuGet push to NuGet build script.
|
Batchfile
|
apache-2.0
|
SpringBoard365/Springboard365.Tools.CommandLine.Core
|
3a56b326fdd88e78b9c725fa19dc19d471757682
|
start_blockserver_cmd.bat
|
start_blockserver_cmd.bat
|
REM @echo off
set MYDIRBLOCK=%~dp0
call %MYDIRBLOCK%..\..\..\config_env_base.bat
%HIDEWINDOW% h
set EPICS_CAS_INTF_ADDR_LIST=127.0.0.1
set EPICS_CAS_BEACON_ADDR_LIST=127.255.255.255
set PYTHONUNBUFFERED=TRUE
set MYDIRGATE=%MYDIRBLOCK%..\..\..\gateway\master
if exist "%ICPSETTINGSDIR%/gwblock.pvlist" (
set GWBLOCK_PVLIST=%ICPSETTINGSDIR%/gwblock.pvlist
) else (
set GWBLOCK_PVLIST=%MYDIRGATE%\gwblock_dummy.pvlist
)
set MYDIRVC=%MYDIRBLOCK%..\..\ConfigVersionControl\master
%PYTHONW% %MYDIRBLOCK%BlockServer\block_server.py -od %MYDIRBLOCK%..\..\..\iocstartup -sd %MYDIRBLOCK%..\..\..\schema\configurations -cd %ICPCONFIGROOT% -pv %GWBLOCK_PVLIST%
|
REM @echo off
set MYDIRBLOCK=%~dp0
call %MYDIRBLOCK%..\..\..\config_env_base.bat
%HIDEWINDOW% h
set EPICS_CAS_INTF_ADDR_LIST=127.0.0.1
set EPICS_CAS_BEACON_ADDR_LIST=127.255.255.255
set PYTHONUNBUFFERED=TRUE
set MYDIRGATE=%MYDIRBLOCK%..\..\..\gateway
if exist "%ICPSETTINGSDIR%/gwblock.pvlist" (
set GWBLOCK_PVLIST=%ICPSETTINGSDIR%/gwblock.pvlist
) else (
set GWBLOCK_PVLIST=%MYDIRGATE%\gwblock_dummy.pvlist
)
set MYDIRVC=%MYDIRBLOCK%..\..\ConfigVersionControl\master
%PYTHONW% %MYDIRBLOCK%BlockServer\block_server.py -od %MYDIRBLOCK%..\..\..\iocstartup -sd %MYDIRBLOCK%..\..\..\schema\configurations -cd %ICPCONFIGROOT% -pv %GWBLOCK_PVLIST%
|
Fix path to dummy pvlist file
|
Fix path to dummy pvlist file
|
Batchfile
|
bsd-3-clause
|
ISISComputingGroup/EPICS-inst_servers,ISISComputingGroup/EPICS-inst_servers
|
20aa25776952aafb643044d0d53c50a10c873bfb
|
Scripts/SetDirectories.bat
|
Scripts/SetDirectories.bat
|
::THIS FILE IS BEING UNTRACKED FROM GIT with the command: git update-index --skip-worktree <file>
::To resume the tracking of changes to this file use the command: git update-index --no-skip-worktree <file>
::Set the path below as you need and then run this bat to copy the files and make them debuggeable
::SET KSPPATH=C:\work\builds\Kerbal Space Program
::Set another path in case you run two KSP instances otherwise leave empty
::SET KSPPATH2=C:\work\builds\Kerbal Space Program2
|
::THIS FILE IS BEING UNTRACKED FROM GIT with the command: git update-index --skip-worktree <file>
::To resume the tracking of changes to this file use the command: git update-index --no-skip-worktree <file>
::Set the path below as you need and then run this bat to copy the files and make them debuggeable
::SET KSPPATH=C:\Kerbal Space Program
::Set another path in case you run two KSP instances otherwise leave empty
::SET KSPPATH2=C:\Kerbal Space Program2
|
Fix example paths in batch file.
|
Fix example paths in batch file.
|
Batchfile
|
mit
|
gavazquez/LunaMultiPlayer,gavazquez/LunaMultiPlayer,DaggerES/LunaMultiPlayer,gavazquez/LunaMultiPlayer
|
896dd038b6e1cc74310dfd7869a4f052ae6d4e85
|
src/SharpLang.RuntimeInline/BuildRuntime.bat
|
src/SharpLang.RuntimeInline/BuildRuntime.bat
|
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86
..\..\deps\llvm\build\RelWithDebInfo\bin\clang Runtime.c -emit-llvm -c -o Runtime.bc -O3
..\..\deps\llvm\build\RelWithDebInfo\bin\llc -march=cpp Runtime.bc -cppgen=functions -o RuntimeInline.inc
|
call "%VS120COMNTOOLS%..\..\VC\vcvarsall.bat" x86
..\..\deps\llvm\build\RelWithDebInfo\bin\clang Runtime.c -emit-llvm -c -o Runtime.bc -O3
..\..\deps\llvm\build\RelWithDebInfo\bin\llc -march=cpp Runtime.bc -cppgen=functions -o RuntimeInline.inc
|
Use %VS120COMNTOOLS% to find vcvarsall.bat when building inline runtime
|
Use %VS120COMNTOOLS% to find vcvarsall.bat when building inline runtime
|
Batchfile
|
bsd-2-clause
|
xen2/SharpLang,xen2/SharpLang,xen2/SharpLang,xen2/SharpLang,xen2/SharpLang
|
08f5a1f1bca75ba02ef9b3cdd0ce45dbd93a637a
|
build-win.bat
|
build-win.bat
|
@echo off
:: Author: Mark Gottscho <[email protected]>
echo Building X-Mem for Windows x86-64...
:: Do a little trick to ensure build datetime are correct
:: DO NOT remove this code -- otherwise X-Mem will fail to build.
set build_datetime=%DATE% %TIME%
echo #ifndef __BUILD_DATETIME_H>src\include\build_datetime.h
echo #define __BUILD_DATETIME_H>>src\include\build_datetime.h
echo #define BUILD_DATETIME "%build_datetime%">>src\include\build_datetime.h
echo #endif>>src\include\build_datetime.h
:: Build
call scons -f SConstruct_win_x64
:: Check if build was successful
if ERRORLEVEL 1 goto buildFailure
:: Copy executable
copy build\win\release\xmem.exe .\xmem.exe
echo Done! The executable is at the top of the project tree: xmem.exe
exit /B 0
:buildFailure
echo X-Mem for Windows build FAILED.
exit /B 1
|
@echo off
:: Author: Mark Gottscho <[email protected]>
set ARCH=%1
echo Building X-Mem for Windows on %ARCH%...
:: Do a little trick to ensure build datetime are correct
:: DO NOT remove this code -- otherwise X-Mem will fail to build.
set build_datetime=%DATE% %TIME%
echo #ifndef __BUILD_DATETIME_H>src\include\build_datetime.h
echo #define __BUILD_DATETIME_H>>src\include\build_datetime.h
echo #define BUILD_DATETIME "%build_datetime%">>src\include\build_datetime.h
echo #endif>>src\include\build_datetime.h
:: Build
call scons -f SConstruct_win_%ARCH%
:: Check if build was successful
if ERRORLEVEL 1 goto buildFailure
:: Copy executable
copy build\win\%ARCH%\release\xmem.exe .\xmem.exe
echo Done! The executable is at the top of the project tree: xmem.exe
exit /B 0
:buildFailure
echo X-Mem for Windows build FAILED.
exit /B 1
|
Fix to windows build script
|
Fix to windows build script
|
Batchfile
|
mit
|
Microsoft/X-Mem,nanocad-lab/X-Mem,mgottscho/X-Mem,nanocad-lab/X-Mem,nanocad-lab/X-Mem,Microsoft/X-Mem,Microsoft/X-Mem,mgottscho/X-Mem,mgottscho/X-Mem,nanocad-lab/X-Mem,mgottscho/X-Mem,Microsoft/X-Mem
|
a1b175360318b5d84b13d08082e9684d873d7a08
|
Kudu.Services.Web/updateNodeModules.cmd
|
Kudu.Services.Web/updateNodeModules.cmd
|
@echo off
setlocal enabledelayedexpansion
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/3362e1a069445bc83767cd41bb1160d239cfac7b
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %counter% GEQ %attempts% goto :lastError
goto retry
:lastError
popd
echo An error has occured during npm install.
exit /b 1
:end
popd
echo Finished successfully.
exit /b 0
|
@echo off
setlocal enabledelayedexpansion
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/cf97bbbb26b0442de8cafa99275e3ea8fedf8849
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %counter% GEQ %attempts% goto :lastError
goto retry
:lastError
popd
echo An error has occured during npm install.
exit /b 1
:end
popd
echo Finished successfully.
exit /b 0
|
Update to use latest KuduScript
|
Update to use latest KuduScript
|
Batchfile
|
apache-2.0
|
uQr/kudu,chrisrpatterson/kudu,puneet-gupta/kudu,uQr/kudu,sitereactor/kudu,sitereactor/kudu,projectkudu/kudu,chrisrpatterson/kudu,shibayan/kudu,sitereactor/kudu,puneet-gupta/kudu,barnyp/kudu,sitereactor/kudu,EricSten-MSFT/kudu,badescuga/kudu,kali786516/kudu,juvchan/kudu,uQr/kudu,badescuga/kudu,puneet-gupta/kudu,uQr/kudu,badescuga/kudu,badescuga/kudu,chrisrpatterson/kudu,kali786516/kudu,EricSten-MSFT/kudu,juvchan/kudu,projectkudu/kudu,badescuga/kudu,barnyp/kudu,juvchan/kudu,puneet-gupta/kudu,projectkudu/kudu,shibayan/kudu,barnyp/kudu,puneet-gupta/kudu,EricSten-MSFT/kudu,kali786516/kudu,bbauya/kudu,shibayan/kudu,projectkudu/kudu,bbauya/kudu,chrisrpatterson/kudu,kali786516/kudu,shibayan/kudu,shibayan/kudu,projectkudu/kudu,sitereactor/kudu,bbauya/kudu,juvchan/kudu,bbauya/kudu,juvchan/kudu,EricSten-MSFT/kudu,barnyp/kudu,EricSten-MSFT/kudu
|
334e73cf57439ed2a2e390beb37836e061a73261
|
bin/web-service.bat
|
bin/web-service.bat
|
@echo off
setlocal
set WEB_PROCESS_TITLE=Skywalking-Web
set WEB_BASE_PATH=%~dp0%..
set WEB_RUNTIME_OPTIONS="-Xms256M -Xmx512M"
set CLASSPATH=%WEB_BASE_PATH%\config;
SET CLASSPATH=%WEB_BASE_PATH%\libs\*;%CLASSPATH%
if ""%JAVA_HOME%"" == """" (
set _EXECJAVA=java
) else (
set _EXECJAVA="%JAVA_HOME%"/bin/java
)
start /MIN "%WEB_PROCESS_TITLE%" %_EXECJAVA% "%WEB_RUNTIME_OPTIONS%" -cp "%CLASSPATH%" org.skywalking.apm.ui.ApplicationStartUp &
echo Skywalking Web started successfully!
endlocal
|
@echo off
setlocal
set WEB_PROCESS_TITLE=Skywalking-Web
set WEB_BASE_PATH=%~dp0%..
set WEB_RUNTIME_OPTIONS="-Xms256M -Xmx512M"
set CLASSPATH=%WEB_BASE_PATH%\config;
SET CLASSPATH=%WEB_BASE_PATH%\libs\*;%CLASSPATH%
if defined JAVA_HOME (
set _EXECJAVA="%JAVA_HOME:"=%"\bin\java
)
if not defined JAVA_HOME (
echo "JAVA_HOME not set."
set _EXECJAVA=java
)
start /MIN "%WEB_PROCESS_TITLE%" %_EXECJAVA% "%WEB_RUNTIME_OPTIONS%" -cp "%CLASSPATH%" org.skywalking.apm.ui.ApplicationStartUp &
echo Skywalking Web started successfully!
endlocal
|
Fix windows script start failure
|
Fix windows script start failure
|
Batchfile
|
apache-2.0
|
ascrutae/sky-walking-ui,ascrutae/sky-walking-ui
|
0cb93634fa7f2b36e81d4d438ec19bd2a1277946
|
ci/jenkins_run_tests.bat
|
ci/jenkins_run_tests.bat
|
set PATH=C:\Ruby192\bin;%PATH%
REM Chef 10 contains the client in the chef/ sub-directory
cd chef
ruby -v
call bundle install --binstubs --path vendor/bundle || ( call rm Gemfile.lock && call bundle install --binstubs --path vendor/bundle )
ruby bin\rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f documentation spec/functional spec/unit
move test.xml ..
|
set PATH=C:\Ruby192\bin;%PATH%
REM Chef 10 contains the client in the chef/ sub-directory
cd chef
ruby -v
call bundle install --binstubs --path vendor/bundle || ( call rm Gemfile.lock && call bundle install --binstubs --path vendor/bundle )
ruby bin\rspec -r rspec_junit_formatter -f RspecJunitFormatter -o test.xml -f documentation spec/functional spec/unit spec/stress
move test.xml ..
|
Add stress tests to jenkins on windows
|
Add stress tests to jenkins on windows
|
Batchfile
|
apache-2.0
|
sempervictus/chef,Ppjet6/chef,AndyBoucher/Chef-Testing,andrewpsp/chef,custora/chef,skmichaelson/chef,danielsdeleo/seth,skmichaelson/chef,andrewpsp/chef,natewalck/chef,docwhat/chef,swalberg/chef,permyakovsv/chef,cmluciano/chef,nathwill/chef,gene1wood/chef,nathwill/chef,patcon/chef,nguyen-tien-mulodo/chef,josb/chef,mio-g/chef,karthikrev/chef,ducthanh/chef,mikefaille/chef,mikedodge04/chef,smurawski/chef,acaiafa/chef,b002368/chef-repo,jagdeesh109/chef,mal/chef,mal/chef,kamaradclimber/chef,joemiller/chef,cgvarela/chef,ccsplit/chef,lamont-granquist/chef,jaymzh/chef,nicklv/chef,circleback/chef,h4ck3rm1k3/chef,nsdavidson/chef,clintoncwolfe/chef,tomdoherty/chef,MsysTechnologiesllc/chef,ktpan/chef-play,sometimesfood/chef,ccsplit/chef,BackSlasher/chef,docwhat/chef,renanvicente/chef,3dinfluence/chef,chef/chef,strangelittlemonkey/chef,sometimesfood/chef,cachamber/chef,ckaushik/chef,nicklv/chef,robmul/chef,sideci-sample/sideci-sample-chef,EasonYi/chef,mattray/chef,SUSE-Cloud/chef,Ppjet6/chef,nguyen-tien-mulodo/chef,Kast0rTr0y/chef,strangelittlemonkey/chef,Igorshp/chef,OpSitters/chef,joemiller/chef,jordane/chef,ekometti/chef,malisettirammurthy/chef,custora/chef,gsaslis/chef,martinisoft/chef,brettcave/chef,baberthal/chef,sometimesfood/chef,acaiafa/chef,aaron-lane/chef,malisettirammurthy/chef,juliandunn/chef,cgvarela/chef,askl56/chef,jaymzh/chef,zshuo/chef,jkerry/chef,baberthal/chef,BackSlasher/chef,custora/chef,grubernaut/chef,webframp/chef,ChaosCloud/chef,jimmymccrory/chef,gene1wood/chef,Ppjet6/chef,nvwls/chef,nsdavidson/chef,cgvarela/chef,mikefaille/chef,sekrett/chef,BackSlasher/chef,tbriggs-curse/chef,mal/chef,tas50/chef-1,sanditiffin/chef,nvwls/chef,tbunnyman/chef,martinisoft/chef,mikedodge04/chef,smurawski/chef,jimmymccrory/chef,andrewpsp/chef,jmhardison/chef,natewalck/chef,ShadySQL/chef-merged,cachamber/chef,ChaosCloud/chef,sanditiffin/chef,oclaussen/chef,bahamas10/chef,sideci-sample/sideci-sample-chef,josb/chef,malisettirammurthy/chef,pburkholder/chef,askl56/chef,nellshamrell/chef,jagdeesh109/chef,Tensibai/chef,skmichaelson/chef,circleback/chef,renanvicente/chef,cmluciano/chef,andrewpsp/chef,SUSE-Cloud/chef,mio-g/chef,tbriggs-curse/chef,brettcave/chef,josb/chef,nguyen-tien-mulodo/chef,zuazo-forks/chef,nvwls/chef,jkerry/chef,MichaelPereira/chef,polamjag/chef,someara/chef,ccope/chef,MsysTechnologiesllc/chef,mio-g/chef,aaron-lane/chef,criteo-forks/chef,DeWaRs1206/chef,strangelittlemonkey/chef,jordane/chef,someara/chef,coderanger/chef,sekrett/chef,sempervictus/chef,nicklv/chef,nguyen-tien-mulodo/chef,nellshamrell/chef,joemiller/chef,grubernaut/chef,circleback/chef,ccope/chef,ccope/chef,ckaushik/chef,gene1wood/chef,nsdavidson/chef,jmhardison/chef,zuazo-forks/chef,polamjag/chef,EasonYi/chef,tbunnyman/chef,Kast0rTr0y/chef,juliandunn/chef,MichaelPereira/chef,b002368/chef-repo,legal90/chef,aaron-lane/chef,GabKlein/chef-merged,adamleff/chef,joemiller/chef,karthikrev/chef,zshuo/chef,ccope/chef,Kast0rTr0y/chef,criteo-forks/chef,ccsplit/chef,EasonYi/chef,ranjib/chef,mattray/chef,higanworks/chef,martinb3/chef,swalberg/chef,kamaradclimber/chef,polamjag/chef,smurawski/chef,webframp/chef,danielsdeleo/seth,strangelittlemonkey/chef,jagdeesh109/chef,pburkholder/chef,OpSitters/chef,faspl/chef,OpSitters/chef,paulmooring/chef,sideci-sample/sideci-sample-chef,onlyhavecans/chef,renanvicente/chef,jonlives/chef,martinisoft/chef,tas50/chef-1,jk47/chef,legal90/chef,brettcave/chef,mikedodge04/chef,nalingarg2/chef-1,circleback/chef,jkerry/chef,nalingarg2/chef-1,permyakovsv/chef,strangelittlemonkey/chef,josb/chef,sempervictus/chef,martinisoft/chef,oclaussen/chef,jagdeesh109/chef,BackSlasher/chef,h4ck3rm1k3/chef,lamont-granquist/chef,nalingarg2/chef-1,aaron-lane/chef,paulmooring/chef,mikefaille/chef,sysbot/chef,mwrock/chef,erkolson/chef,jordane/chef,brettcave/chef,paulmooring/chef,h4ck3rm1k3/chef,paulmooring/chef,grubernaut/chef,kaznishi/chef,ckaushik/chef,AndyBoucher/Chef-Testing,SUSE-Cloud/chef,b002368/chef-repo,tomdoherty/chef,youngjl1/chef,sideci-sample/sideci-sample-chef,swalberg/chef,jordane/chef,patcon/chef,nicklv/chef,natewalck/chef,martinb3/chef,ckaushik/chef,cmluciano/chef,kaznishi/chef,jblaine/chef,legal90/chef,martinb3/chef,ckaushik/chef,3dinfluence/chef,clintoncwolfe/chef,Ppjet6/chef,mikefaille/chef,ChaosCloud/chef,sanditiffin/chef,zuazo-forks/chef,polamjag/chef,jonlives/chef,sanditiffin/chef,jmhardison/chef,pburkholder/chef,polamjag/chef,Igorshp/chef,danielsdeleo/seth,smurawski/chef,ShadySQL/chef-merged,ranjib/chef,jblaine/chef,nellshamrell/chef,mwrock/chef,zshuo/chef,permyakovsv/chef,zuazo-forks/chef,cgvarela/chef,tbriggs-curse/chef,skmichaelson/chef,mikedodge04/chef,pburkholder/chef,nsdavidson/chef,zuazo-forks/chef,karthikrev/chef,sekrett/chef,ranjib/chef,onlyhavecans/chef,someara/chef,swalberg/chef,oclaussen/chef,BackSlasher/chef,brettcave/chef,danielsdeleo/seth,adamleff/chef,MichaelPereira/chef,antonifs/chef,jmhardison/chef,pburkholder/chef,faspl/chef,renanvicente/chef,AndyBoucher/Chef-Testing,nathwill/chef,jblaine/chef,youngjl1/chef,evan2645/chef,jagdeesh109/chef,b002368/chef-repo,sysbot/chef,ekometti/chef,AndyBoucher/Chef-Testing,evan2645/chef,nvwls/chef,GabKlein/chef-merged,DeWaRs1206/chef,jaymzh/chef,mattray/chef,GabKlein/chef-merged,cgvarela/chef,nalingarg2/chef-1,tas50/chef-1,MichaelPereira/chef,criteo-forks/chef,coderanger/chef,SUSE-Cloud/chef,nellshamrell/chef,ducthanh/chef,joemiller/chef,kamaradclimber/chef,clintoncwolfe/chef,robmul/chef,renanvicente/chef,ckaushik/chef,nathwill/chef,jblaine/chef,sekrett/chef,martinisoft/chef,h4ck3rm1k3/chef,someara/chef,antonifs/chef,sempervictus/chef,tomdoherty/chef,Ppjet6/chef,evan2645/chef,DeWaRs1206/chef,oclaussen/chef,ktpan/chef-play,antonifs/chef,acaiafa/chef,acaiafa/chef,Kast0rTr0y/chef,higanworks/chef,jaymzh/chef,martinb3/chef,andrewpsp/chef,kaznishi/chef,mal/chef,natewalck/chef,natewalck/chef,webframp/chef,paulmooring/chef,OpSitters/chef,jkerry/chef,3dinfluence/chef,ducthanh/chef,nicklv/chef,chef/chef,gsaslis/chef,bahamas10/chef,bahamas10/chef,mwrock/chef,onlyhavecans/chef,cgvarela/chef,tbunnyman/chef,askl56/chef,karthikrev/chef,legal90/chef,ekometti/chef,onlyhavecans/chef,faspl/chef,adamleff/chef,Igorshp/chef,erkolson/chef,coderanger/chef,chef/chef,permyakovsv/chef,EasonYi/chef,nathwill/chef,onlyhavecans/chef,askl56/chef,Tensibai/chef,cmluciano/chef,nsdavidson/chef,nguyen-tien-mulodo/chef,jmhardison/chef,jonlives/chef,askl56/chef,kamaradclimber/chef,faspl/chef,nvwls/chef,EasonYi/chef,swalberg/chef,criteo-forks/chef,jk47/chef,mio-g/chef,tbriggs-curse/chef,sometimesfood/chef,sempervictus/chef,jordane/chef,robmul/chef,oclaussen/chef,baberthal/chef,danielsdeleo/seth,evan2645/chef,SUSE-Cloud/chef,karthikrev/chef,jk47/chef,brettcave/chef,antonifs/chef,sometimesfood/chef,nicklv/chef,criteo-forks/chef,jkerry/chef,ShadySQL/chef-merged,onlyhavecans/chef,gene1wood/chef,juliandunn/chef,skmichaelson/chef,robmul/chef,adamleff/chef,sysbot/chef,karthikrev/chef,Tensibai/chef,malisettirammurthy/chef,3dinfluence/chef,jblaine/chef,antonifs/chef,lamont-granquist/chef,nellshamrell/chef,ktpan/chef-play,robmul/chef,mattray/chef,ranjib/chef,webframp/chef,youngjl1/chef,legal90/chef,nellshamrell/chef,docwhat/chef,nalingarg2/chef-1,acaiafa/chef,kaznishi/chef,askl56/chef,smurawski/chef,jk47/chef,youngjl1/chef,ktpan/chef-play,jk47/chef,docwhat/chef,EasonYi/chef,someara/chef,ekometti/chef,evan2645/chef,criteo-forks/chef,mikefaille/chef,jmhardison/chef,jonlives/chef,GabKlein/chef-merged,kaznishi/chef,zshuo/chef,antonifs/chef,adamleff/chef,jk47/chef,pburkholder/chef,malisettirammurthy/chef,sideci-sample/sideci-sample-chef,jimmymccrory/chef,docwhat/chef,tbriggs-curse/chef,jkerry/chef,evan2645/chef,grubernaut/chef,MichaelPereira/chef,clintoncwolfe/chef,tbunnyman/chef,faspl/chef,custora/chef,ranjib/chef,erkolson/chef,josb/chef,grubernaut/chef,sanditiffin/chef,cachamber/chef,SUSE-Cloud/chef,sysbot/chef,docwhat/chef,mal/chef,aaron-lane/chef,DeWaRs1206/chef,andrewpsp/chef,AndyBoucher/Chef-Testing,ChaosCloud/chef,webframp/chef,ranjib/chef,tas50/chef-1,ducthanh/chef,jagdeesh109/chef,circleback/chef,gsaslis/chef,martinb3/chef,erkolson/chef,lamont-granquist/chef,jblaine/chef,h4ck3rm1k3/chef,mio-g/chef,aaron-lane/chef,permyakovsv/chef,malisettirammurthy/chef,bahamas10/chef,ChaosCloud/chef,Igorshp/chef,jimmymccrory/chef,ktpan/chef-play,sempervictus/chef,clintoncwolfe/chef,ChaosCloud/chef,patcon/chef,mikefaille/chef,strangelittlemonkey/chef,gsaslis/chef,paulmooring/chef,tomdoherty/chef,erkolson/chef,OpSitters/chef,skmichaelson/chef,lamont-granquist/chef,Kast0rTr0y/chef,nguyen-tien-mulodo/chef,oclaussen/chef,b002368/chef-repo,coderanger/chef,higanworks/chef,patcon/chef,martinb3/chef,custora/chef,jonlives/chef,ekometti/chef,Igorshp/chef,DeWaRs1206/chef,ShadySQL/chef-merged,chef/chef,zuazo-forks/chef,smurawski/chef,b002368/chef-repo,kaznishi/chef,MsysTechnologiesllc/chef,cachamber/chef,ccsplit/chef,baberthal/chef,permyakovsv/chef,ktpan/chef-play,ekometti/chef,baberthal/chef,ccsplit/chef,legal90/chef,nsdavidson/chef,sekrett/chef,bahamas10/chef,AndyBoucher/Chef-Testing,juliandunn/chef,polamjag/chef,cachamber/chef,swalberg/chef,nvwls/chef,youngjl1/chef,mio-g/chef,jimmymccrory/chef,BackSlasher/chef,higanworks/chef,ducthanh/chef,higanworks/chef,tbunnyman/chef,sekrett/chef,OpSitters/chef,mal/chef,3dinfluence/chef,zshuo/chef,tbunnyman/chef,gsaslis/chef,natewalck/chef,adamleff/chef,tbriggs-curse/chef,Tensibai/chef,gsaslis/chef,erkolson/chef,sanditiffin/chef,grubernaut/chef,h4ck3rm1k3/chef,youngjl1/chef,joemiller/chef,3dinfluence/chef,cachamber/chef,acaiafa/chef,mattray/chef,bahamas10/chef,jimmymccrory/chef,juliandunn/chef,Tensibai/chef,josb/chef,clintoncwolfe/chef,tomdoherty/chef,lamont-granquist/chef,ShadySQL/chef-merged,ducthanh/chef,sysbot/chef,robmul/chef,someara/chef,ccope/chef,mwrock/chef,nalingarg2/chef-1,mikedodge04/chef,sometimesfood/chef,jonlives/chef,patcon/chef,DeWaRs1206/chef,ccsplit/chef,circleback/chef,MsysTechnologiesllc/chef,Ppjet6/chef,patcon/chef,zshuo/chef,custora/chef,renanvicente/chef,Igorshp/chef,webframp/chef,baberthal/chef,mikedodge04/chef,cmluciano/chef,MichaelPereira/chef,nathwill/chef,faspl/chef,Kast0rTr0y/chef
|
3d626dd868ecbf39fd1dc133ca0fc9d38c1811df
|
scripts/code.bat
|
scripts/code.bat
|
@echo off
setlocal
title VSCode Dev
pushd %~dp0\..
:: Get electron, compile, built-in extensions
if "%VSCODE_SKIP_PRELAUNCH%"=="" node build/lib/preLaunch.js
for /f "tokens=2 delims=:," %%a in ('findstr /R /C:"\"nameShort\":.*" product.json') do set NAMESHORT=%%~a
set NAMESHORT=%NAMESHORT: "=%
set NAMESHORT=%NAMESHORT:"=%.exe
set CODE=".build\electron\%NAMESHORT%"
:: Manage built-in extensions
if "%1"=="--builtin" goto builtin
:: Configuration
set NODE_ENV=development
set VSCODE_DEV=1
set VSCODE_CLI=1
set ELECTRON_ENABLE_LOGGING=1
set ELECTRON_ENABLE_STACK_DUMPING=1
:: Launch Code
%CODE% . %*
goto end
:builtin
%CODE% build/builtin
:end
popd
endlocal
|
@echo off
setlocal
title VSCode Dev
pushd %~dp0\..
:: Get electron, compile, built-in extensions
if "%VSCODE_SKIP_PRELAUNCH%"=="" node build/lib/preLaunch.js
for /f "tokens=2 delims=:," %%a in ('findstr /R /C:"\"nameShort\":.*" product.json') do set NAMESHORT=%%~a
set NAMESHORT=%NAMESHORT: "=%
set NAMESHORT=%NAMESHORT:"=%.exe
set CODE=".build\electron\%NAMESHORT%"
:: Manage built-in extensions
if "%~1"=="--builtin" goto builtin
:: Configuration
set NODE_ENV=development
set VSCODE_DEV=1
set VSCODE_CLI=1
set ELECTRON_ENABLE_LOGGING=1
set ELECTRON_ENABLE_STACK_DUMPING=1
:: Launch Code
%CODE% . %*
goto end
:builtin
%CODE% build/builtin
:end
popd
endlocal
|
Use "%~1" instead of "%1" in bat argument parsing.
|
Use "%~1" instead of "%1" in bat argument parsing.
|
Batchfile
|
mit
|
microsoft/vscode,Krzysztof-Cieslak/vscode,microsoft/vscode,Microsoft/vscode,microsoft/vscode,Krzysztof-Cieslak/vscode,microsoft/vscode,Krzysztof-Cieslak/vscode,microsoft/vscode,eamodio/vscode,eamodio/vscode,Microsoft/vscode,Microsoft/vscode,microsoft/vscode,eamodio/vscode,eamodio/vscode,Krzysztof-Cieslak/vscode,Krzysztof-Cieslak/vscode,Microsoft/vscode,microsoft/vscode,Microsoft/vscode,eamodio/vscode,Microsoft/vscode,eamodio/vscode,eamodio/vscode,Microsoft/vscode,eamodio/vscode,eamodio/vscode,Microsoft/vscode,microsoft/vscode,Krzysztof-Cieslak/vscode,Krzysztof-Cieslak/vscode,Krzysztof-Cieslak/vscode,eamodio/vscode,Krzysztof-Cieslak/vscode,Microsoft/vscode,Krzysztof-Cieslak/vscode,microsoft/vscode,eamodio/vscode,Krzysztof-Cieslak/vscode,microsoft/vscode,Microsoft/vscode,microsoft/vscode,Krzysztof-Cieslak/vscode,Microsoft/vscode,Krzysztof-Cieslak/vscode,Microsoft/vscode,Microsoft/vscode,microsoft/vscode,Microsoft/vscode,microsoft/vscode,Krzysztof-Cieslak/vscode,Krzysztof-Cieslak/vscode,Krzysztof-Cieslak/vscode,Microsoft/vscode,eamodio/vscode,microsoft/vscode,eamodio/vscode,eamodio/vscode,Microsoft/vscode,microsoft/vscode,eamodio/vscode,Krzysztof-Cieslak/vscode,eamodio/vscode,Microsoft/vscode,microsoft/vscode,microsoft/vscode,eamodio/vscode
|
4e48028d62f5e9c6cf40160117bb719f9a6ae3e3
|
src/RNGLR.EBNFParser.SimpleTest/gen_EBNF.cmd
|
src/RNGLR.EBNFParser.SimpleTest/gen_EBNF.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.EBNFGenerator -pos int -token int -module RNGLR.Parse%%i -translate true -table LR -o %%i.yrd.fs" >> log.txt
)
|
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.EBNFGenerator -pos int -token int -module RNGLR.Parser%%i -translate true -table LR -o %%i.yrd.fs" >> log.txt
)
|
Add unnecessary files to .gitignore
|
Add unnecessary files to .gitignore
|
Batchfile
|
apache-2.0
|
YaccConstructor/YaccConstructor,YaccConstructor/YaccConstructor,YaccConstructor/YaccConstructor
|
9c8772320c19d713917cd9c66292339bb4f4a8ac
|
run_tests.bat
|
run_tests.bat
|
@echo off
rmdir bin
mkdir bin
haxe -cp src -neko bin/HxpectTests.n -main "hxpect.tests.Main"
cd bin
neko HxpectTests.n
|
@echo off
rmdir bin
mkdir bin
haxe -cp src -neko bin/HxpectTests.n -main "hxpect.tests.Main"
cd bin
set errorlevel=
neko HxpectTests.n
exit /b %errorlevel%
|
Fix for test runner to capture a failing exit code.
|
Fix for test runner to capture a failing exit code.
|
Batchfile
|
unlicense
|
Markavian/hxpect
|
97c977b9f16a9291128cddf391c931408b9f4d36
|
make.bat
|
make.bat
|
SET BIN=%CD%\bin
SET PATH=%BIN%;%PATH%
del /F /Q windows_app_lifecycle.tgz
rmdir /S /Q packages
nuget restore || exit /b 1
MSBuild WindowsCircus.sln /t:Rebuild /p:Configuration=Release || exit /b 1
packages\nspec.0.9.68\tools\NSpecRunner.exe Builder.Tests\bin\Release\BuilderTests.dll || exit /b 1
packages\nspec.0.9.68\tools\NSpecRunner.exe Launcher.Tests\bin\Release\LauncherTests.dll || exit /b 1
packages\nspec.0.9.68\tools\NSpecRunner.exe WebAppServer.Tests\bin\Release\WebAppServer.Tests.dll || exit /b 1
bsdtar -czvf windows_app_lifecycle.tgz --exclude log -C Builder\bin . -C ..\..\Launcher\bin . -C ..\..\Healthcheck\bin . -C ..\..\WebAppServer\bin . || exit /b 1
|
SET BIN=%CD%\bin
SET PATH=%BIN%;%PATH%
:: enable some features
SET dism=%WINDIR%\SysNative\dism.exe
%dism% /online /Enable-Feature /FeatureName:IIS-WebServer /All /NoRestart
%dism% /online /Enable-Feature /FeatureName:IIS-WebSockets /All /NoRestart
%dism% /online /Enable-Feature /FeatureName:Application-Server-WebServer-Support /FeatureName:AS-NET-Framework /All /NoRestart
%dism% /online /Enable-Feature /FeatureName:IIS-HostableWebCore /All /NoRestart
del /F /Q windows_app_lifecycle.tgz
rmdir /S /Q packages
nuget restore || exit /b 1
MSBuild WindowsCircus.sln /t:Rebuild /p:Configuration=Release || exit /b 1
packages\nspec.0.9.68\tools\NSpecRunner.exe Builder.Tests\bin\Release\BuilderTests.dll || exit /b 1
packages\nspec.0.9.68\tools\NSpecRunner.exe Launcher.Tests\bin\Release\LauncherTests.dll || exit /b 1
packages\nspec.0.9.68\tools\NSpecRunner.exe WebAppServer.Tests\bin\Release\WebAppServer.Tests.dll || exit /b 1
bsdtar -czvf windows_app_lifecycle.tgz --exclude log -C Builder\bin . -C ..\..\Launcher\bin . -C ..\..\Healthcheck\bin . -C ..\..\WebAppServer\bin . || exit /b 1
|
Add back installation of windows features to build script
|
Add back installation of windows features to build script
|
Batchfile
|
apache-2.0
|
cloudfoundry-incubator/windows_app_lifecycle,cloudfoundry/windows_app_lifecycle,stefanschneider/windows_app_lifecycle
|
4aef0caab757a8738159b0b51ea20ae515832272
|
Kudu.Services.Web/updateNodeModules.cmd
|
Kudu.Services.Web/updateNodeModules.cmd
|
@echo off
setlocal enabledelayedexpansion
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/b3494d6fc023f34cc0dded832110b608635cca40
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %counter% GEQ %attempts% goto :lastError
goto retry
:lastError
popd
echo An error has occured during npm install.
exit /b 1
:end
popd
echo Finished successfully.
exit /b 0
|
@echo off
setlocal enabledelayedexpansion
pushd %1
set attempts=5
set counter=0
:retry
set /a counter+=1
echo Attempt %counter% out of %attempts%
cmd /c npm install https://github.com/projectkudu/KuduScript/tarball/b1c12f132cf357238672dd57cd7213b1f282123a
IF %ERRORLEVEL% NEQ 0 goto error
goto end
:error
if %counter% GEQ %attempts% goto :lastError
goto retry
:lastError
popd
echo An error has occured during npm install.
exit /b 1
:end
popd
echo Finished successfully.
exit /b 0
|
Update kuduscript for function changes
|
Update kuduscript for function changes
|
Batchfile
|
apache-2.0
|
shibayan/kudu,EricSten-MSFT/kudu,shibayan/kudu,projectkudu/kudu,projectkudu/kudu,projectkudu/kudu,shibayan/kudu,EricSten-MSFT/kudu,EricSten-MSFT/kudu,EricSten-MSFT/kudu,EricSten-MSFT/kudu,projectkudu/kudu,shibayan/kudu,projectkudu/kudu,shibayan/kudu
|
89c352dfac9b7b7bfa5befe40880b57653f3eda1
|
build_release.bat
|
build_release.bat
|
# Assume zip install layout. and MYSQL_INSTALL_ROOT environment variable points to the root directory of the installation
IF "%MYSQL_INSTALL_ROOT%"=="" set MYSQL_INSTALL_ROOT=C:\mysql\mariadb-5.5.28a-winx64\mariadb-5.5.28a-winx64\
set BINDIR=%MYSQL_INSTALL_ROOT%\bin
set CERTDIR=%MYSQL_INSTALL_ROOT%\mysqltest\std_data
start %BINDIR%\mysqld.exe --console --max_allowed_packet=1G --enable-named-pipe --socket=JDBC-test-socket --ssl-ca=%CERTDIR%\cacert.pem --ssl-cert=%CERTDIR%\server-cert.pem --ssl-key=%CERTDIR%\server-key.pem
timeout 20
call mvn exec:exec package -Dpackage-source
call %BINDIR%\mysqladmin -uroot shutdown
|
REM Assume zip install layout. and MYSQL_INSTALL_ROOT environment variable points to the root directory of the installation
IF "%MYSQL_INSTALL_ROOT%"=="" set MYSQL_INSTALL_ROOT=C:\mysql\mariadb-5.5.28a-winx64\mariadb-5.5.28a-winx64\
set BINDIR=%MYSQL_INSTALL_ROOT%\bin
set CERTDIR=%MYSQL_INSTALL_ROOT%\mysqltest\std_data
start %BINDIR%\mysqld.exe --console --max_allowed_packet=1G --enable-named-pipe --socket=JDBC-test-socket --ssl-ca=%CERTDIR%\cacert.pem --ssl-cert=%CERTDIR%\server-cert.pem --ssl-key=%CERTDIR%\server-key.pem
timeout 20
call mvn exec:exec package -Dpackage-source
call %BINDIR%\mysqladmin -uroot shutdown
|
Fix build/test script on Windows
|
Fix build/test script on Windows
|
Batchfile
|
lgpl-2.1
|
roidelapluie/mariadb-connector-j-travis,Mikelarg/mariadb-connector-j,MariaDB/mariadb-connector-j,roidelapluie/mariadb-connector-j-travis,Mikelarg/mariadb-connector-j,roidelapluie/mariadb-connector-j,roidelapluie/mariadb-connector-j,MariaDB/mariadb-connector-j
|
a25e9fe83ff6bfc57b4bcb247618f8d50c4de046
|
setup.bat
|
setup.bat
|
@ECHO OFF
IF NOT EXIST virtualenv GOTO DIRNOTEXISTS
:DIREXISTS
CALL virtualenv\scripts\activate
SET PYTHONPATH=%CD%\submodule\s3g;%CD%\src\main\python;%PYTHONPATH%
REM EXIT /B 0
easy_install -q submodule\conveyor_bins\python\pyserial-2.7_mb2.1-py2.7.egg
easy_install -q submodule\conveyor_bins\python\mock-1.0.1-py2.7.egg
easy_install -q submodule\conveyor_bins\python\lockfile-0.9.1-py2.7.egg
easy_install -q submodule\conveyor_bins\python\python_daemon-1.6-py2.7.egg
easy_install -q submodule\conveyor_bins\python\argparse-1.2.1-py2.7.egg
easy_install -q submodule\conveyor_bins\python\unittest2-0.5.1-py2.7.egg
easy_install -q submodule\conveyor_bins\python\pyserial-2.7_mb2.1-py2.7.egg
GOTO DONE
:DIRNOTEXISTS
IF "%1" == "" GOTO DEFAULTPY
set PYTHON=%1
GOTO VIRTUALENV
:DEFAULTPY
set PYTHON=python
:VIRTUALENV
%PYTHON% virtualenv.py --extra-search-dir=submodule/conveyor_bins/python --never-download virtualenv
GOTO DIREXISTS
:DONE
|
@ECHO OFF
IF NOT EXIST virtualenv GOTO DIRNOTEXISTS
:DIREXISTS
CALL virtualenv\scripts\activate
SET PYTHONPATH=%CD%\submodule\s3g;%CD%\src\main\python;%PYTHONPATH%
REM EXIT /B 0
easy_install -q submodule\conveyor_bins\python\pyserial-2.7_mb2.1-py2.7.egg
easy_install -q submodule\conveyor_bins\python\mock-1.0.1-py2.7.egg
easy_install -q submodule\conveyor_bins\python\lockfile-0.9.1-py2.7.egg
easy_install -q submodule\conveyor_bins\python\python_daemon-1.6-py2.7.egg
easy_install -q submodule\conveyor_bins\python\argparse-1.2.1-py2.7.egg
easy_install -q submodule\conveyor_bins\python\unittest2-0.5.1-py2.7.egg
easy_install -q submodule\conveyor_bins\python\pyserial-2.7_mb2.1-py2.7.egg
GOTO DONE
:DIRNOTEXISTS
IF "%1" == "" GOTO DEFAULTPY
set PYTHON=%1
GOTO VIRTUALENV
:DEFAULTPY
set PYTHON=python
:VIRTUALENV
"%PYTHON%" virtualenv.py --extra-search-dir=submodule/conveyor_bins/python --never-download virtualenv
GOTO DIREXISTS
:DONE
|
Put quotes around PYTHONPATH to handle the case where there's a space in the name
|
Put quotes around PYTHONPATH to handle the case where there's a space in
the name
|
Batchfile
|
agpl-3.0
|
makerbot/conveyor,makerbot/conveyor,makerbot/conveyor,makerbot/conveyor
|
6955978a6246243106588b817c271060ed12d3b6
|
build-local.bat
|
build-local.bat
|
@ECHO OFF
SETLOCAL
SET EL=0
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ %~f0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SET PLATFORM=x64
SET CONFIGURATION=Release
::SET LOCAL_DEV=1
FOR /F "tokens=*" %%i in ('git rev-parse --abbrev-ref HEAD') do SET APPVEYOR_REPO_BRANCH=%%i
ECHO APPVEYOR_REPO_BRANCH^: %APPVEYOR_REPO_BRANCH%
::SET PATH=C:\mb\windows-builds-64\tmp-bin\cmake-3.1.0-win32-x86\bin;%PATH%
SET PATH=C:\mb\windows-builds-64\tmp-bin\cmake-3.4.0-win32-x86\bin;%PATH%
SET PATH=C:\Program Files\7-Zip;%PATH%
powershell Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted -Force
IF %ERRORLEVEL% NEQ 0 GOTO ERROR
CALL appveyor-build.bat
IF %ERRORLEVEL% NEQ 0 GOTO ERROR
GOTO DONE
:ERROR
ECHO ~~~~~~~~~~~~~~~~~~~~~~ ERROR %~f0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ECHO ERRORLEVEL^: %ERRORLEVEL%
SET EL=%ERRORLEVEL%
:DONE
ECHO ~~~~~~~~~~~~~~~~~~~~~~ DONE %~f0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
EXIT /b %EL%
|
@ECHO OFF
SETLOCAL
SET EL=0
ECHO ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ %~f0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SET PLATFORM=x64
SET CONFIGURATION=Release
::SET LOCAL_DEV=1
FOR /F "tokens=*" %%i in ('git rev-parse --abbrev-ref HEAD') do SET APPVEYOR_REPO_BRANCH=%%i
ECHO APPVEYOR_REPO_BRANCH^: %APPVEYOR_REPO_BRANCH%
SET PATH=C:\mb\windows-builds-64\tmp-bin\cmake-3.4.0-win32-x86\bin;%PATH%
SET PATH=C:\Program Files\7-Zip;%PATH%
powershell Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted -Force
IF %ERRORLEVEL% NEQ 0 GOTO ERROR
CALL appveyor-build.bat
IF %ERRORLEVEL% NEQ 0 GOTO ERROR
GOTO DONE
:ERROR
ECHO ~~~~~~~~~~~~~~~~~~~~~~ ERROR %~f0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ECHO ERRORLEVEL^: %ERRORLEVEL%
SET EL=%ERRORLEVEL%
:DONE
ECHO ~~~~~~~~~~~~~~~~~~~~~~ DONE %~f0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
EXIT /b %EL%
|
Remove commented out line in windows build script. History is what git is for.
|
Remove commented out line in windows build script. History is what git is for.
|
Batchfile
|
bsd-2-clause
|
Project-OSRM/osrm-backend,neilbu/osrm-backend,deniskoronchik/osrm-backend,duizendnegen/osrm-backend,beemogmbh/osrm-backend,hydrays/osrm-backend,raymond0/osrm-backend,bjtaylor1/osrm-backend,arnekaiser/osrm-backend,raymond0/osrm-backend,KnockSoftware/osrm-backend,yuryleb/osrm-backend,oxidase/osrm-backend,neilbu/osrm-backend,raymond0/osrm-backend,bjtaylor1/osrm-backend,arnekaiser/osrm-backend,Project-OSRM/osrm-backend,raymond0/osrm-backend,beemogmbh/osrm-backend,beemogmbh/osrm-backend,frodrigo/osrm-backend,felixguendling/osrm-backend,hydrays/osrm-backend,hydrays/osrm-backend,oxidase/osrm-backend,KnockSoftware/osrm-backend,frodrigo/osrm-backend,hydrays/osrm-backend,beemogmbh/osrm-backend,felixguendling/osrm-backend,Project-OSRM/osrm-backend,duizendnegen/osrm-backend,KnockSoftware/osrm-backend,bjtaylor1/osrm-backend,deniskoronchik/osrm-backend,arnekaiser/osrm-backend,neilbu/osrm-backend,oxidase/osrm-backend,duizendnegen/osrm-backend,deniskoronchik/osrm-backend,frodrigo/osrm-backend,deniskoronchik/osrm-backend,KnockSoftware/osrm-backend,yuryleb/osrm-backend,Project-OSRM/osrm-backend,neilbu/osrm-backend,oxidase/osrm-backend,bjtaylor1/osrm-backend,felixguendling/osrm-backend,yuryleb/osrm-backend,yuryleb/osrm-backend,frodrigo/osrm-backend,duizendnegen/osrm-backend,arnekaiser/osrm-backend
|
f44c077ea4a1783bfd7b704f22653639f5f73bab
|
mb-gui.bat
|
mb-gui.bat
|
@echo off
:: Dependencies
set PYBLISH_BASE=%~dp0git\pyblish-base
set PYBLISH_MAYA=%~dp0git\pyblish-maya
set PYBLISH_NUKE=%~dp0git\pyblish-nuke
set PYBLISH_QML=%~dp0git\pyblish-qml
set PYBLISH_LITE=%~dp0git\pyblish-lite
set MINDBENDER_CORE=%~dp0git\mindbender-core
set MINDBENDER_LAUNCHER=%~dp0git\mindbender-launcher
set MINDBENDER_EXAMPLE=%~dp0git\mindbender-example\projects
set PATH=%~dp0bin\windows\syncthing;%PATH%
set PATH=%~dp0bin\windows\python36;%PATH%
set PATH=%~dp0bin\windows;%PATH%
set PATH=%~dp0bin;%PATH%
set PYTHONPATH=%MINDBENDER_LAUNCHER%;%PYTHONPATH%
:: ---------------------------------------------------------
::
:: Edit here
::
:: ---------------------------------------------------------
if "%MINDBENDER_PROJECTS%"=="" set MINDBENDER_PROJECTS=%MINDBENDER_EXAMPLE%
python -u -m launcher --root %MINDBENDER_PROJECTS%
|
@echo off
:: Dependencies
set PYBLISH_BASE=%~dp0git\pyblish-base
set PYBLISH_MAYA=%~dp0git\pyblish-maya
set PYBLISH_NUKE=%~dp0git\pyblish-nuke
set PYBLISH_QML=%~dp0git\pyblish-qml
set PYBLISH_LITE=%~dp0git\pyblish-lite
set MINDBENDER_CORE=%~dp0git\mindbender-core
set MINDBENDER_LAUNCHER=%~dp0git\mindbender-launcher
set MINDBENDER_EXAMPLE=%~dp0git\mindbender-example\projects
set PATH=%~dp0bin\windows\syncthing;%PATH%
set PATH=%~dp0bin\windows\python36;%PATH%
set PATH=%~dp0bin\windows;%PATH%
set PATH=%~dp0bin;%PATH%
set PYTHONPATH=%MINDBENDER_LAUNCHER%;%PYTHONPATH%
if "%MINDBENDER_PROJECTS%"=="" set MINDBENDER_PROJECTS=%MINDBENDER_EXAMPLE%
:: ---------------------------------------------------------
::
:: Edit here
::
:: ---------------------------------------------------------
set PYBLISHGUI=pyblish_qml
python -u -m launcher --root %MINDBENDER_PROJECTS%
|
Set Default GUI to Pyblish QML
|
Set Default GUI to Pyblish QML
|
Batchfile
|
mit
|
mottosso/mindbender-setup,mindbender-studio/setup,mindbender-studio/setup,mindbender-studio/setup,mottosso/mindbender-setup,mottosso/mindbender-setup
|
6e671266b095a3e1f3819cfc8da7dcaa8ea1d23e
|
make-windows-executables.bat
|
make-windows-executables.bat
|
rmdir %~dp0current-release\windows /s
mkdir %~dp0current-release\windows
cd %~dp0current-release\src\dbtk
python setup.py py2exe
move dist\dbtk.exe %~dp0current-release\windows
rmdir build dist /s
|
rmdir %~dp0current-release\windows /s
mkdir %~dp0current-release\windows
cd %~dp0current-release\src\dbtk
python setup.py py2exe
move dist\dbtk.exe %~dp0current-release\windows
rmdir build dist /s
del __init__.pyc
|
Update Windows build script to remove __init__.pyc.
|
Update Windows build script to remove __init__.pyc.
|
Batchfile
|
mit
|
goelakash/retriever,davharris/retriever,bendmorris/retriever,henrykironde/deletedret,davharris/retriever,goelakash/retriever,davharris/retriever,embaldridge/retriever,embaldridge/retriever,bendmorris/retriever,bendmorris/retriever,henrykironde/deletedret,embaldridge/retriever
|
c6ba542aa01fcec159c084117305fb8715bc558f
|
test.cmd
|
test.cmd
|
@echo off
setlocal
cd "%~dp0"
chcp 1252 > nul
if exist tools\NUnit.Runners goto :test
for %%i in (NuGet.exe) do set nuget=%%~dpnx$PATH:i
if "%nuget%"=="" goto :nonuget
md tools
nuget.exe install NUnit.Runners -Version 2.6.4 -OutputDirectory tools || exit /b 1
move .\tools\NUnit.Runners.2.6.4 .\tools\NUnit.Runners
if not %errorlevel%==0 exit /b %errorlevel%
:test
call build /v:m ^
&& .\tools\NUnit.Runners\tools\nunit-console.exe .\MoreLinq.Test\bin\Debug\net40\MoreLinq.Test.dll ^
&& .\tools\NUnit.Runners\tools\nunit-console.exe .\MoreLinq.Test\bin\Release\net40\MoreLinq.Test.dll ^
&& .\tools\NUnit.Runners\tools\nunit-console.exe .\MoreLinq.Test\bin\Debug\net40-client\MoreLinq.Test.dll ^
&& .\tools\NUnit.Runners\tools\nunit-console.exe .\MoreLinq.Test\bin\Release\net40-client\MoreLinq.Test.dll
goto :EOF
:nonuget
echo NuGet executable not found in PATH
echo For more on NuGet, see http://nuget.codeplex.com
exit /b 2
|
@echo off
pushd "%~dp0"
call :main %*
popd
goto :EOF
:main
setlocal
set NUNIT_CONSOLE_PATH=tools\NUnit.Runners\tools\nunit-console.exe
if exist %NUNIT_CONSOLE_PATH% goto :test-all
for %%i in (NuGet.exe) do set nuget=%%~dpnx$PATH:i
if "%nuget%"=="" goto :nonuget
nuget.exe install NUnit.Runners -Version 2.6.4 -OutputDirectory tools || exit /b 1
move tools\NUnit.Runners.2.6.4 tools\NUnit.Runners
if not %errorlevel%==0 exit /b %errorlevel%
:test-all
call build /v:m ^
&& call :test net40 ^
&& call :test net40 ^
&& call :test net40-client ^
&& call :test net40-client
goto :EOF
:test
setlocal
%NUNIT_CONSOLE_PATH% MoreLinq.Test\bin\Release\%1\MoreLinq.Test.dll
goto :EOF
:nonuget
echo NuGet executable not found in PATH
echo For more on NuGet, see http://nuget.codeplex.com
exit /b 2
|
Test script review for redundancies
|
Test script review for redundancies
|
Batchfile
|
apache-2.0
|
morelinq/MoreLINQ,morelinq/MoreLINQ,ddpruitt/morelinq,fsateler/MoreLINQ,ddpruitt/morelinq,fsateler/MoreLINQ
|
c6a2f12a42d8b47718d159d849286d1511e9cd14
|
host/scripts/install_cygwin.bat
|
host/scripts/install_cygwin.bat
|
@echo off
REM Installs Cygwin with a minimal package requirement for Kickboxer
REM Cy Rossignol <[email protected]>
REM Exit codes:
SET CYGWIN_INSTALLED=0
SET CYGWIN_NOT_INSTALLED=1
CD %CYGDIR%
%CYGWIN_SETUP% --quiet-mode --no-admin --no-shortcuts ^
--site http://mirrors.kernel.org/sourceware/cygwin/ ^
--site rsync://mirrors.kernel.org/sourceware/cygwin/ ^
--root %CYGDIR% ^
--local-package-dir %CYGDIR%\packages ^
--categories Base ^
--packages openssh >nul
IF %ERRORLEVEL% EQU 0 EXIT /B %CYGWIN_INSTALLED%
EXIT /B %CYGWIN_NOT_INSTALLED%
|
@echo off
REM Installs Cygwin with a minimal package requirement for Kickboxer
REM Cy Rossignol <[email protected]>
REM Exit codes:
SET CYGWIN_INSTALLED=0
SET CYGWIN_NOT_INSTALLED=1
CD %CYGDIR%
%CYGWIN_SETUP% --quiet-mode --no-admin --no-shortcuts ^
--site http://mirrors.kernel.org/sourceware/cygwin/ ^
--site rsync://mirrors.kernel.org/sourceware/cygwin/ ^
--root %CYGDIR% ^
--local-package-dir %CYGDIR%\packages ^
--categories Base ^
--packages git openssh >nul
IF %ERRORLEVEL% EQU 0 EXIT /B %CYGWIN_INSTALLED%
EXIT /B %CYGWIN_NOT_INSTALLED%
|
Add git to default cygwin installation
|
Add git to default cygwin installation
Signed-off-by: Cy Rossignol <[email protected]>
|
Batchfile
|
mit
|
cyrossignol/kickboxer
|
51cdce93652a1d0d6c99ca06009d8bc57e2c6c36
|
bootstrap.cmd
|
bootstrap.cmd
|
@echo off
Nuget.exe restore "Source\MSBuild.Community.Tasks.sln"
NuGet.exe install MSBuildTasks -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
Nuget.exe install ILRepack.MSBuild.Task -Version 1.1.1 -Source https://www.myget.org/F/sympa-public/api/v3/index.json -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
|
@echo off
Nuget.exe restore "Source\MSBuild.Community.Tasks.sln"
NuGet.exe install MSBuildTasks -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
Nuget.exe install ILRepack.MSBuild.Task -Version 1.1.2 -Source https://www.myget.org/F/sympa-public/api/v3/index.json -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
|
Use ILRepack.MSBuild.Task 1.1.2 from sympa public myget feed
|
Use ILRepack.MSBuild.Task 1.1.2 from sympa public myget feed
|
Batchfile
|
bsd-2-clause
|
loresoft/msbuildtasks
|
2a6a668fd09472b07df7b6c8bad8a8e1880e2afe
|
scripts/windows/startNode.bat
|
scripts/windows/startNode.bat
|
@echo off
echo.
echo --- StartNode----------------------------------------
if "%1" == "" goto usage
goto doit
:usage
echo.
echo Start a new Node
echo - 1 : the url of the node to create
echo.
echo ex : startNode rmi://localhost/node1
echo ex : startNode jini://localhost/node2
echo.
goto end
:doit
SETLOCAL
call init.bat
%JAVA_CMD% org.objectweb.proactive.StartNode %1 %2 %3 %4 %5 %6
ENDLOCAL
:end
echo.
echo ---------------------------------------------------------
|
@echo off
echo.
echo --- StartNode----------------------------------------
if "%1" == "" goto usage
goto doit
:usage
echo.
echo Start a new Node
echo - 1 : the url of the node to create
echo.
echo ex : startNode rmi://localhost/node1
echo ex : startNode jini://localhost/node2
echo.
echo Node started with a random name
echo.
goto doit
:doit
SETLOCAL
call init.bat
%JAVA_CMD% org.objectweb.proactive.StartNode %1 %2 %3 %4 %5 %6
ENDLOCAL
:end
echo.
echo ---------------------------------------------------------
|
Change the script to be able to launch it when clicking on it
|
Change the script to be able to launch it when clicking on it
git-svn-id: 9146c88ff6d39b48099bf954d15d68f687b3fa69@74 28e8926c-6b08-0410-baaa-805c5e19b8d6
|
Batchfile
|
agpl-3.0
|
ow2-proactive/scheduling,fviale/scheduling,laurianed/scheduling,fviale/scheduling,tobwiens/scheduling,lpellegr/scheduling,paraita/scheduling,yinan-liu/scheduling,zeineb/scheduling,lpellegr/scheduling,laurianed/scheduling,fviale/scheduling,paraita/scheduling,ow2-proactive/scheduling,ow2-proactive/scheduling,lpellegr/scheduling,ShatalovYaroslav/scheduling,ShatalovYaroslav/scheduling,paraita/scheduling,tobwiens/scheduling,zeineb/scheduling,lpellegr/scheduling,fviale/scheduling,sandrineBeauche/scheduling,jrochas/scheduling,sandrineBeauche/scheduling,marcocast/scheduling,marcocast/scheduling,yinan-liu/scheduling,tobwiens/scheduling,fviale/scheduling,tobwiens/scheduling,mbenguig/scheduling,laurianed/scheduling,lpellegr/scheduling,paraita/scheduling,ow2-proactive/scheduling,jrochas/scheduling,zeineb/scheduling,sandrineBeauche/scheduling,youribonnaffe/scheduling,jrochas/scheduling,sandrineBeauche/scheduling,ShatalovYaroslav/scheduling,sandrineBeauche/scheduling,youribonnaffe/scheduling,paraita/scheduling,yinan-liu/scheduling,ow2-proactive/scheduling,marcocast/scheduling,yinan-liu/scheduling,zeineb/scheduling,sgRomaric/scheduling,lpellegr/scheduling,ShatalovYaroslav/scheduling,mbenguig/scheduling,youribonnaffe/scheduling,sgRomaric/scheduling,paraita/scheduling,sgRomaric/scheduling,lpellegr/scheduling,youribonnaffe/scheduling,fviale/scheduling,yinan-liu/scheduling,zeineb/scheduling,mbenguig/scheduling,mbenguig/scheduling,sgRomaric/scheduling,laurianed/scheduling,zeineb/scheduling,mbenguig/scheduling,jrochas/scheduling,marcocast/scheduling,tobwiens/scheduling,fviale/scheduling,ShatalovYaroslav/scheduling,laurianed/scheduling,ow2-proactive/scheduling,sandrineBeauche/scheduling,marcocast/scheduling,sgRomaric/scheduling,zeineb/scheduling,yinan-liu/scheduling,ow2-proactive/scheduling,marcocast/scheduling,paraita/scheduling,mbenguig/scheduling,sandrineBeauche/scheduling,jrochas/scheduling,mbenguig/scheduling,tobwiens/scheduling,ShatalovYaroslav/scheduling,laurianed/scheduling,youribonnaffe/scheduling,laurianed/scheduling,marcocast/scheduling,jrochas/scheduling,yinan-liu/scheduling,youribonnaffe/scheduling,jrochas/scheduling,ShatalovYaroslav/scheduling,tobwiens/scheduling,sgRomaric/scheduling,sgRomaric/scheduling,youribonnaffe/scheduling
|
50e39dc1b8573b6655197e1edc393044251eedaa
|
difido-server/src/main/etc/start.bat
|
difido-server/src/main/etc/start.bat
|
@echo off
set current_dir=%~dp0\..
cd %current_dir%
set _JAVACMD=java.exe
if exist "%JAVA_HOME%\bin\java.exe" set _JAVACMD=%JAVA_HOME%\bin\java.exe
set HOST=0.0.0.0
set PORT=8080
set LOGGING_LEVEL=WARN
rem set DEBUG=-agentlib:jdwp=transport=dt_socket,server=y,address=8000,suspend=n
"%_JAVACMD%" %DEBUG% -Xms256m -Xmx1024m -Dserver.address=%HOST% -Dserver.port=%PORT% -Dlogging.level.org.springframework.web=ERROR -Dlogging.level.il.co.topq.report=%LOGGING_LEVEL% -cp "lib\difido-server.jar" org.springframework.boot.loader.JarLauncher
|
@echo off
set current_dir=%~dp0\..
cd %current_dir%
set _JAVACMD=java.exe
if exist "%JAVA_HOME%\bin\java.exe" set _JAVACMD=%JAVA_HOME%\bin\java.exe
set HOST=0.0.0.0
set PORT=8080
set LOGGING_LEVEL=WARN
rem set DEBUG=-agentlib:jdwp=transport=dt_socket,server=y,address=8000,suspend=n
"%_JAVACMD%" %DEBUG% -Xms256m -Xmx1024m -Dserver.address=%HOST% -Dserver.port=%PORT% -Dlogging.level.org.springframework.web=ERROR -Dlogging.level.il.co.topq.report=%LOGGING_LEVEL% -cp "lib\difido-server.jar;plugin\*" org.springframework.boot.loader.JarLauncher
|
Support for plugins in Windows
|
Support for plugins in Windows
|
Batchfile
|
apache-2.0
|
Top-Q/difido-reports,Top-Q/difido-reports,Top-Q/difido-reports,Top-Q/difido-reports,Top-Q/difido-reports,Top-Q/difido-reports
|
8ec822497f1e8a969cd854363d03f7575c7a2b95
|
make_w64.cmd
|
make_w64.cmd
|
@ECHO OFF
TITLE Windows Driver Kit 7.1.0
REM set target=i386
set target=amd64
set DDK=C:\WinDDK\7600.16385.1
set MSVC=%DDK%\bin\x86\%target%
set incl=/I"%DDK%\inc\crt" /I"%DDK%\inc\api"
set libs=/LIBPATH:"%DDK%\lib\crt\%target%"
set C_FLAGS=/c /Wall /O1 /Os /Ob1 /Oi /Oy /GS- /MD /TC /Fa
set LINK_FLAGS=%libs% /DLL /NOENTRY /FILEALIGN:512 /MERGE:.rdata=.text
%MSVC%\cl.exe %CD%\keyboard.c %incl% %C_FLAGS% /link %LINK_FLAGS%
%MSVC%\link.exe %LINK_FLAGS% /SUBSYSTEM:CONSOLE,5.2 keyboard.obj
pause
|
@ECHO OFF
TITLE Windows Driver Kit 7.1.0
set target=amd64
REM set target=i386
set DDK=C:\WinDDK\7600.16385.1
set MSVC=%DDK%\bin\x86\amd64
set incl=/I"%DDK%\inc\crt" /I"%DDK%\inc\api"
set libs=/LIBPATH:"%DDK%\lib\crt\%target%"
set C_FLAGS=/c /Wall /O1 /Os /Ob1 /Oi /Oy /GS- /MD /TC /Fa
set LINK_FLAGS=%libs% /DLL /NOENTRY /FILEALIGN:512 /MERGE:.rdata=.text
%MSVC%\cl.exe %CD%\keyboard.c %incl% %C_FLAGS% /link %LINK_FLAGS%
%MSVC%\link.exe %LINK_FLAGS% /SUBSYSTEM:CONSOLE,5.2 keyboard.obj
pause
|
Make it easier to test 32-bit builds.
|
Make it easier to test 32-bit builds.
|
Batchfile
|
cc0-1.0
|
cxd4/n64-keyboard,cxd4/n64-keyboard,cxd4/n64-keyboard
|
efc34b5f3b38d70fc64e6595c95a74a919a40938
|
dev/install.cmd
|
dev/install.cmd
|
@echo off
echo Update environment...
echo Update Ruby...
call gem update --system
echo Update Ruby Sass...
call gem update sass
echo Update Bourbon...
call gem update bourbon
call gem update neat
call gem update bitters
echo Update Grunt...
call npm update grunt-cli -g
echo Install project...
call npm install --save-dev
pause
|
@echo off
echo Update Grunt...
call npm update grunt-cli -g
echo Install project...
call npm install --save-dev
pause
|
Remove Ruby update from unstall
|
Remove Ruby update from unstall
|
Batchfile
|
mit
|
ideus-team/html-framework,ideus-team/html-framework
|
6c5a246218049df2f6442c2e175b03e49d2fa2cd
|
Dependencies/setupHDF5.bat
|
Dependencies/setupHDF5.bat
|
@ECHO OFF
REM $Id$
REM Bat script building libHDF5 dependency automatically
REM Author: Peter Nordin [email protected]
REM Date: 2015-07-06
set dirname=hdf5
REM Automatic code starts here
echo.
echo ======================
echo Building 64-bit version of FMILibrary
echo ======================
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%
cd %dirname%
mkdir build
cd build
cmake -Wno-dev -G "MinGW Makefiles" -DBUILD_SHARED_LIBS=ON -DHDF5_BUILD_FORTRAN=OFF -DCMAKE_INSTALL_PREFIX="../install" ../
mingw32-make.exe -j4
mingw32-make.exe install
echo.
echo Done
pause
|
@ECHO OFF
REM $Id$
REM Bat script building libHDF5 dependency automatically
REM Author: Peter Nordin [email protected]
REM Date: 2015-07-06
set dirname=hdf5
REM Automatic code starts here
echo.
echo ======================
echo Building the HDF5 library and tools
echo ======================
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%
cd %dirname%
mkdir hopsanbuild
cd hopsanbuild
cmake -Wno-dev -G "MinGW Makefiles" -DBUILD_SHARED_LIBS=ON -DHDF5_BUILD_FORTRAN=OFF -DBUILD_TESTING=OFF -DHDF5_BUILD_EXAMPLES=OFF -DCMAKE_INSTALL_PREFIX="../install" ../
REM DO NOT enable multi-core build (make -j4), we must build sequentially
mingw32-make.exe
mingw32-make.exe install
cd ..
echo.
echo Done
pause
|
Enable hdf5 1_8_18 to build by turning of tests, examples and multi-core build
|
Enable hdf5 1_8_18 to build by turning of tests, examples and multi-core build
|
Batchfile
|
apache-2.0
|
Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan,Hopsan/hopsan
|
43571eaad2a9fe88ccf4d5f8b689f7dbeca2516d
|
ci/msvc_install.bat
|
ci/msvc_install.bat
|
mkdir build
#mkdir 3rdparty\build
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/spdlog/include" "./3rdparty/include" /E /MT:2 /R:0 /DCOPY:T
IF %ERRORLEVEL% LSS 8 goto build
goto :eof
:build
exit 0
|
mkdir build
REM mkdir 3rdparty\build
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
REM Robocopy "./tools/spdlog/include" "./3rdparty/include" /E /MT:2 /R:0 /DCOPY:T
IF %ERRORLEVEL% LSS 8 goto build
goto :eof
:build
exit 0
|
Correct mistake in windows bat file
|
Correct mistake in windows bat file
|
Batchfile
|
apache-2.0
|
dev-osrose/osIROSE-new,RavenX8/osIROSE-new,dev-osrose/osIROSE-new,RavenX8/osIROSE-new,dev-osrose/osIROSE-new,RavenX8/osIROSE-new
|
2438540028dcc1c3125c1cabe1d74c9b79914027
|
src/packall.cmd
|
src/packall.cmd
|
@ECHO OFF
msbuild /v:m /m /nologo dirs.proj /t:Rebuild
FOR /F "usebackq" %%A IN (`dir %~dp0*.nuspec /s /b ^| findstr /v /i "CBT.DotNetFx"`) DO (
CALL :Pack "%%A"
)
GOTO :EOF
:Pack
"NuGet.exe" pack "%~1" -OutputDirectory %~dp0 -Properties "BinDir=%~dp0..\bin\Debug\AnyCPU\%~n1"
|
@ECHO OFF
msbuild /v:m /m /nologo dirs.proj /t:Rebuild
FOR /F "usebackq" %%A IN (`dir %~dp0*.nuspec /s /b ^| findstr /v /i "CBT.DotNetFx"`) DO (
CALL :Pack "%%A" "%~dp0.."
)
GOTO :EOF
:Pack
"NuGet.exe" pack "%~1" -OutputDirectory %~dp0 -Properties "BinDir=%~f2\bin\Debug\AnyCPU\%~n1"
|
Fix issue where CBT.NuGet.dll wasn't included in package because BinDir contained .."
|
Fix issue where CBT.NuGet.dll wasn't included in package because BinDir contained .."
|
Batchfile
|
mit
|
CommonBuildToolset/CBT.Modules,jeffkl/CBT.Modules
|
59cc9b35715fe629e81b1303dd15e6f2b2b82ccc
|
conda.recipe/bld.bat
|
conda.recipe/bld.bat
|
cd %RECIPE_DIR%\..
%PYTHON% make_version.py
%PYTHON% setup.py install --single-version-externally-managed --record=record.txt
|
cd %RECIPE_DIR%\..
%PYTHON% setup.py install --single-version-externally-managed --record=record.txt
|
Remove make_version from windows' recipe
|
Remove make_version from windows' recipe
|
Batchfile
|
bsd-3-clause
|
Anaconda-Platform/anaconda-client,Anaconda-Platform/anaconda-client,Anaconda-Platform/anaconda-client
|
c46fb024a64fc83b953f97a34bb7dd9f0b7921e4
|
make.bat
|
make.bat
|
@ECHO off
IF NOT "x%1" == "x" GOTO :%1
GOTO :tiny
:large
ECHO "Building large"
cmake -DWithOpenSSL=ON -DWithSharedOpenSSL=OFF -DWithZLIB=ON -DWithSharedZLIB=OFF -H. -Bbuild
GOTO :build
:tiny
ECHO "Building tiny"
cmake -H. -Bbuild
GOTO :build
:build
cmake --build build --config Release -- /maxcpucount
COPY build\Release\luvi.exe .
GOTO :end
:test
SET LUVI_APP=samples\test.app
luvi.exe
SET LUVI_TARGET=test.exe
luvi.exe
SET "LUVI_APP="
SET "LUVI_TARGET="
test.exe
DEL /Q test.exe
GOTO :end
:clean
IF EXIST build RMDIR /S /Q build
IF EXIST luvi.exe DEL /F /Q luvi.exe
GOTO :end
:publish
ECHO "Building all versions"
git submodule update --init --recursive
CALL make.bat clean
CALL make.bat tiny
CALL make.bat test
COPY build\Release\luvi.exe luvi-binaries\Windows\luvi-tiny.exe
CALL make.bat clean
CALL make.bat large
CALL make.bat test
COPY build\Release\luvi.exe luvi-binaries\Windows\luvi.exe
CD luvi-binaries
git pull
git add Windows
git commit
git push
CD ..
:end
|
@ECHO off
IF NOT "x%1" == "x" GOTO :%1
GOTO :tiny
:large
ECHO "Building large"
cmake -DWithOpenSSL=ON -DWithSharedOpenSSL=OFF -DWithZLIB=ON -DWithSharedZLIB=OFF -H. -Bbuild -G"Visual Studio 12 2013 Win64"
GOTO :build
:tiny
ECHO "Building tiny"
cmake -H. -Bbuild -G"Visual Studio 12 2013 Win64"
GOTO :build
:build
cmake --build build --config Release -- /maxcpucount
COPY build\Release\luvi.exe .
GOTO :end
:test
SET LUVI_APP=samples\test.app
luvi.exe
SET LUVI_TARGET=test.exe
luvi.exe
SET "LUVI_APP="
SET "LUVI_TARGET="
test.exe
DEL /Q test.exe
GOTO :end
:clean
IF EXIST build RMDIR /S /Q build
IF EXIST luvi.exe DEL /F /Q luvi.exe
GOTO :end
:publish
ECHO "Building all versions"
git submodule update --init --recursive
CALL make.bat clean
CALL make.bat tiny
CALL make.bat test
COPY build\Release\luvi.exe luvi-binaries\Windows\luvi-tiny.exe
CALL make.bat clean
CALL make.bat large
CALL make.bat test
COPY build\Release\luvi.exe luvi-binaries\Windows\luvi.exe
CD luvi-binaries
git pull
git add Windows
git commit
git push
CD ..
:end
|
Use 64-bit build for windows (assuming community or pro edition)
|
Use 64-bit build for windows (assuming community or pro edition)
|
Batchfile
|
apache-2.0
|
zhaozg/luvi,virgo-agent-toolkit/luvi,joerg-krause/luvi,joerg-krause/luvi,virgo-agent-toolkit/luvi,brimworks/luvi,zhaozg/luvi,kidaa/luvi,luvit/luvi,luvit/luvi,brimworks/luvi
|
1549a69eb21a04b21dab1eed8d26a68c18c8014f
|
src/build.bat
|
src/build.bat
|
@echo Off
set config=%1
if "%config%" == "" (
set config=Release
)
set version=1.0
if not "%PackageVersion%" == "" (
set version=%PackageVersion%
)
set nuget=
if "%nuget%" == "" (
set nuget=nuget
)
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild src\paymentwall.sln /p:Configuration="%config%" /m /v:M /fl /flp:LogFile=msbuild.log;Verbosity=diag /nr:false
mkdir Build
mkdir Build\lib
mkdir Build\lib\net40
%nuget% pack "src\paymentwall.nuspec" -NoPackageAnalysis -verbosity detailed -o Build -Version %version% -p Configuration="%config%"
|
@echo Off
set config=%1
if "%config%" == "" (
set config=Release
)
set version=1.0
if not "%PackageVersion%" == "" (
set version=%PackageVersion%
)
set nuget=
if "%nuget%" == "" (
set nuget=nuget
)
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild src\paymentwall.sln /p:Configuration="%config%" /m /v:M /fl /flp:LogFile=msbuild.log;Verbosity=diag /nr:false
mkdir Build
mkdir Build\lib
mkdir Build\lib\net40
%nuget% pack "src\paymentwall.nuspec" -NoPackageAnalysis -verbosity detailed -OutputDirectory Build -Version %version% -p Configuration="%config%"
|
Update bat file by new NuGet version
|
Update bat file by new NuGet version
|
Batchfile
|
mit
|
paymentwall/paymentwall-dotnet
|
ae9309087c54c666f5e6158e06a2b809f69a3948
|
Android/CopyData.bat
|
Android/CopyData.bat
|
md assets\Data
xcopy ..\Bin\Data\*.* assets\Data /S /E /C /Y
md assets\CoreData
xcopy ..\Bin\CoreData\*.* assets\CoreData /S /E /C /Y
|
md assets\Data
xcopy ..\Bin\Data\*.* assets\Data /S /E /C /Y
md assets\CoreData
xcopy ..\Bin\CoreData\*.* assets\CoreData /S /E /C /Y
rd /S /Q assets\CoreData\Shaders\HLSL
|
Delete HLSL directory when copying Android assets.
|
Delete HLSL directory when copying Android assets.
|
Batchfile
|
mit
|
abdllhbyrktr/Urho3D,cosmy1/Urho3D,rokups/Urho3D,victorholt/Urho3D,urho3d/Urho3D,victorholt/Urho3D,c4augustus/Urho3D,codemon66/Urho3D,luveti/Urho3D,eugeneko/Urho3D,SuperWangKai/Urho3D,SuperWangKai/Urho3D,victorholt/Urho3D,cosmy1/Urho3D,weitjong/Urho3D,MeshGeometry/Urho3D,SirNate0/Urho3D,299299/Urho3D,codedash64/Urho3D,kostik1337/Urho3D,iainmerrick/Urho3D,SirNate0/Urho3D,fire/Urho3D-1,kostik1337/Urho3D,MeshGeometry/Urho3D,iainmerrick/Urho3D,MeshGeometry/Urho3D,cosmy1/Urho3D,tommy3/Urho3D,PredatorMF/Urho3D,helingping/Urho3D,abdllhbyrktr/Urho3D,urho3d/Urho3D,eugeneko/Urho3D,abdllhbyrktr/Urho3D,xiliu98/Urho3D,MonkeyFirst/Urho3D,xiliu98/Urho3D,fire/Urho3D-1,weitjong/Urho3D,299299/Urho3D,carnalis/Urho3D,codemon66/Urho3D,orefkov/Urho3D,rokups/Urho3D,bacsmar/Urho3D,luveti/Urho3D,tommy3/Urho3D,codedash64/Urho3D,codedash64/Urho3D,henu/Urho3D,orefkov/Urho3D,299299/Urho3D,SuperWangKai/Urho3D,victorholt/Urho3D,PredatorMF/Urho3D,MonkeyFirst/Urho3D,carnalis/Urho3D,MonkeyFirst/Urho3D,fire/Urho3D-1,iainmerrick/Urho3D,SirNate0/Urho3D,MonkeyFirst/Urho3D,henu/Urho3D,codemon66/Urho3D,henu/Urho3D,bacsmar/Urho3D,urho3d/Urho3D,c4augustus/Urho3D,weitjong/Urho3D,rokups/Urho3D,codedash64/Urho3D,MonkeyFirst/Urho3D,kostik1337/Urho3D,rokups/Urho3D,SuperWangKai/Urho3D,299299/Urho3D,PredatorMF/Urho3D,MeshGeometry/Urho3D,urho3d/Urho3D,abdllhbyrktr/Urho3D,carnalis/Urho3D,tommy3/Urho3D,c4augustus/Urho3D,orefkov/Urho3D,luveti/Urho3D,PredatorMF/Urho3D,victorholt/Urho3D,kostik1337/Urho3D,orefkov/Urho3D,299299/Urho3D,tommy3/Urho3D,helingping/Urho3D,c4augustus/Urho3D,xiliu98/Urho3D,SuperWangKai/Urho3D,xiliu98/Urho3D,SirNate0/Urho3D,codemon66/Urho3D,eugeneko/Urho3D,helingping/Urho3D,xiliu98/Urho3D,tommy3/Urho3D,rokups/Urho3D,bacsmar/Urho3D,bacsmar/Urho3D,henu/Urho3D,SirNate0/Urho3D,weitjong/Urho3D,helingping/Urho3D,299299/Urho3D,henu/Urho3D,helingping/Urho3D,carnalis/Urho3D,carnalis/Urho3D,eugeneko/Urho3D,rokups/Urho3D,fire/Urho3D-1,codedash64/Urho3D,c4augustus/Urho3D,kostik1337/Urho3D,fire/Urho3D-1,luveti/Urho3D,cosmy1/Urho3D,iainmerrick/Urho3D,luveti/Urho3D,MeshGeometry/Urho3D,iainmerrick/Urho3D,cosmy1/Urho3D,codemon66/Urho3D,abdllhbyrktr/Urho3D,weitjong/Urho3D
|
49bb646254fae8539b1489c75e0bfd794816b196
|
exec_wrappers/templates/run-in_conda.bat
|
exec_wrappers/templates/run-in_conda.bat
|
@echo off
@set "CONDA_DEFAULT_ENV=@CONDA_ENV_DIR@"
@endlocal & (
@set PATH="%CONDA_DEFAULT_ENV%";"%CONDA_DEFAULT_ENV%\Scripts";"%CONDA_DEFAULT_ENV%\Library\bin";%PATH%
@REM Run any activate scripts
@if exist "%CONDA_DEFAULT_ENV%\etc\conda\activate.d" (
@pushd "%CONDA_DEFAULT_ENV%\etc\conda\activate.d"
@for %%g in (*.bat) do @call "%%g"
@popd
)
)
%*
|
@echo off
@REM This script was based on the original conda activate.bat
@setlocal
@set "CONDA_DEFAULT_ENV=@CONDA_ENV_DIR@"
@set PATH="%CONDA_DEFAULT_ENV%";"%CONDA_DEFAULT_ENV%\Scripts";"%CONDA_DEFAULT_ENV%\Library\bin";%PATH%
@REM Run any activate scripts
@if exist "%CONDA_DEFAULT_ENV%\etc\conda\activate.d" (
@pushd "%CONDA_DEFAULT_ENV%\etc\conda\activate.d"
@for %%g in (*.bat) do @call "%%g"
@popd
)
@REM Execute the given command
%*
@endlocal
|
Fix conda wrapper for Windows
|
Fix conda wrapper for Windows
|
Batchfile
|
mit
|
gqmelo/exec-wrappers,gqmelo/exec-wrappers
|
7eb297ff8f6bae04c1deec045de7d5ea6cf4aa4c
|
test.bat
|
test.bat
|
java -classpath "lib/antlr.jar;lib/concurrent.jar;lib/db3-3-11.jar;lib/icu4j.jar;lib/jakarta-oro-2.0.5.jar;lib/jena.jar;lib/junit.jar;lib/log4j-1.2.7.jar;lib/commons-logging-api.jar;lib/commons-logging.jar;lib/rdf-api-2001-01-19.jar;lib/xercesImpl.jar;lib/xml-apis.jar" junit.textui.TestRunner com.hp.hpl.jena.test.TestPackage
|
java -classpath "lib/antlr.jar;lib/concurrent.jar;lib/icu4j.jar;lib/jakarta-oro-2.0.5.jar;lib/jena.jar;lib/junit.jar;lib/log4j-1.2.7.jar;lib/commons-logging-api.jar;lib/commons-logging.jar;lib/rdf-api-2001-01-19.jar;lib/xercesImpl.jar;lib/xml-apis.jar" junit.textui.TestRunner com.hp.hpl.jena.test.TestPackage
|
Remove inclusion db3-3-11.jar in the classpath
|
Remove inclusion db3-3-11.jar in the classpath
git-svn-id: 227c23bb629cf7bef445105b977924772e49ae4f@1111499 13f79535-47bb-0310-9956-ffa450edef68
|
Batchfile
|
apache-2.0
|
danc86/jena-core,danc86/jena-core
|
1211b225505bbe9405ea8c0246a2b57541ff6ced
|
build.bat
|
build.bat
|
c:\python25\python.exe setup.py bdist_wininst
c:\python25\python.exe setup.py sdist --formats=gztar,zip
copy dist\*.* \\ironpaw\pub\jasons\arcrest
copy documentation\html\*.* \\ironpaw\pub\jasons\arcrest\documentation\
hg history > \\ironpaw\pub\jasons\arcrest\changelog.txt
|
c:\python25\python.exe setup.py bdist_wininst
c:\python25\python.exe setup.py sdist --formats=gztar,zip
copy dist\*.* \\ironpaw\pub\jasons\arcrest
copy documentation\html\*.* \\ironpaw\pub\jasons\arcrest\documentation\
copy tests.py \\ironpaw\pub\jasons\arcrest\tests.py
hg history > \\ironpaw\pub\jasons\arcrest\changelog.txt
|
Copy tests to ironpaw too
|
Copy tests to ironpaw too
|
Batchfile
|
apache-2.0
|
Esri/arcpy-server-util-rest,jasonbot/arcrest,jasonbot/arcrest
|
f2af483214b5e3a8e225d1e9f3c0ad221edd922b
|
build.cmd
|
build.cmd
|
@echo off
:Build
cls
if not exist tools\FAKE.Core\tools\Fake.exe (
"tools\nuget\nuget.exe" "install" "FAKE.Core" "-OutputDirectory" "tools" "-ExcludeVersion" "-Prerelease"
)
SET TARGET="Default"
IF NOT [%1]==[] (set TARGET="%1")
SET BUILDMODE="Release"
IF NOT [%2]==[] (set BUILDMODE="%2")
"tools\FAKE.Core\tools\Fake.exe" "build.fsx" "target=%TARGET%" "buildMode=%BUILDMODE%"
rem Bail if we're running a TeamCity build.
if defined TEAMCITY_PROJECT_NAME goto Quit
rem Bail if we're running a MyGet build.
if /i "%BuildRunner%"=="MyGet" goto Quit
rem Loop the build script.
set CHOICE=nothing
echo (Q)uit, (Enter) runs the build again
set /P CHOICE=
if /i "%CHOICE%"=="Q" goto :Quit
GOTO Build
:Quit
exit /b %errorlevel%
|
@echo off
SET MinimalFAKEVersion=639
SET FAKEVersion=1
cls
if exist tools\FAKE.Core\tools\PatchVersion.txt (
FOR /F "tokens=*" %%i in (tools\FAKE.Core\tools\PatchVersion.txt) DO (SET FAKEVersion=%%i)
)
if %MinimalFAKEVersion% lss %FAKEVersion% goto Build
if %MinimalFAKEVersion%==%FAKEVersion% goto Build
"tools\nuget\nuget.exe" "install" "FAKE.Core" "-OutputDirectory" "tools" "-ExcludeVersion" "-Prerelease"
:Build
cls
SET TARGET="Default"
IF NOT [%1]==[] (set TARGET="%1")
SET BUILDMODE="Release"
IF NOT [%2]==[] (set BUILDMODE="%2")
"tools\FAKE.Core\tools\Fake.exe" "build.fsx" "target=%TARGET%" "buildMode=%BUILDMODE%"
rem Bail if we're running a TeamCity build.
if defined TEAMCITY_PROJECT_NAME goto Quit
rem Bail if we're running a MyGet build.
if /i "%BuildRunner%"=="MyGet" goto Quit
rem Loop the build script.
set CHOICE=nothing
echo (Q)uit, (Enter) runs the build again
set /P CHOICE=
if /i "%CHOICE%"=="Q" goto :Quit
GOTO Build
:Quit
exit /b %errorlevel%
|
Check if we are already on the minimal FAKE version - otherwise patch it.
|
Check if we are already on the minimal FAKE version - otherwise patch it.
|
Batchfile
|
mit
|
thedillonb/octokit.net,nsnnnnrn/octokit.net,octokit/octokit.net,octokit-net-test/octokit.net,thedillonb/octokit.net,cH40z-Lord/octokit.net,ivandrofly/octokit.net,editor-tools/octokit.net,fffej/octokit.net,devkhan/octokit.net,rlugojr/octokit.net,adamralph/octokit.net,dampir/octokit.net,M-Zuber/octokit.net,Red-Folder/octokit.net,hahmed/octokit.net,hahmed/octokit.net,hitesh97/octokit.net,octokit/octokit.net,SamTheDev/octokit.net,brramos/octokit.net,gdziadkiewicz/octokit.net,gabrielweyer/octokit.net,magoswiat/octokit.net,khellang/octokit.net,SamTheDev/octokit.net,mminns/octokit.net,gdziadkiewicz/octokit.net,gabrielweyer/octokit.net,chunkychode/octokit.net,nsrnnnnn/octokit.net,chunkychode/octokit.net,forki/octokit.net,TattsGroup/octokit.net,kolbasov/octokit.net,editor-tools/octokit.net,shiftkey/octokit.net,M-Zuber/octokit.net,takumikub/octokit.net,alfhenrik/octokit.net,daukantas/octokit.net,khellang/octokit.net,SmithAndr/octokit.net,eriawan/octokit.net,geek0r/octokit.net,kdolan/octokit.net,shiftkey-tester-org-blah-blah/octokit.net,naveensrinivasan/octokit.net,shiftkey-tester/octokit.net,dlsteuer/octokit.net,shana/octokit.net,octokit-net-test-org/octokit.net,ChrisMissal/octokit.net,darrelmiller/octokit.net,Sarmad93/octokit.net,SLdragon1989/octokit.net,mminns/octokit.net,shiftkey-tester/octokit.net,bslliw/octokit.net,michaKFromParis/octokit.net,dampir/octokit.net,fake-organization/octokit.net,Sarmad93/octokit.net,shiftkey-tester-org-blah-blah/octokit.net,shana/octokit.net,devkhan/octokit.net,rlugojr/octokit.net,shiftkey/octokit.net,eriawan/octokit.net,ivandrofly/octokit.net,octokit-net-test-org/octokit.net,TattsGroup/octokit.net,SmithAndr/octokit.net,alfhenrik/octokit.net
|
7723715d8e996d9389f0961571ba663b6016029a
|
bin/password.bat
|
bin/password.bat
|
@echo off
if "%OS%" == "Windows_NT" setlocal
if not defined JAVA_HOME goto no_java_home
if not defined VTPASS_HOME goto no_vtpass_home
set JAVA=%JAVA_HOME%\bin\java
set PASS_JAR=%VTPASS_HOME%\jars\vt-password-${project.version}.jar
set CLASSPATH=%LIBDIR%\vt-dictionary-3.0-SNAPSHOT.jar;%LIBDIR%\vt-crypt-2.1.1.jar;%LIBDIR%\commons-logging-1.1.1.jar;%PASS_JAR%
call "%JAVA%" -cp "%CLASSPATH%" edu.vt.middleware.password.PasswordValidator %*
goto end
:no_vtpass_home
echo ERROR: VTPASS_HOME environment variable must be set to VT Password install path.
goto end
:no_java_home
echo ERROR: JAVA_HOME environment variable must be set to JRE/JDK install path.
:end
|
@echo off
if "%OS%" == "Windows_NT" setlocal
if not defined JAVA_HOME goto no_java_home
if not defined VTPASS_HOME goto no_vtpass_home
set JAVA=%JAVA_HOME%\bin\java
set PASS_JAR=%VTPASS_HOME%\jars\vt-password-${project.version}.jar
set LIBDIR=%VTPASS_HOME%\lib
set CLASSPATH=%LIBDIR%\vt-dictionary-3.0.jar;%LIBDIR%\vt-crypt-2.1.1.jar;%LIBDIR%\commons-logging-1.1.1.jar;%PASS_JAR%
call "%JAVA%" -cp "%CLASSPATH%" edu.vt.middleware.password.PasswordValidator %*
goto end
:no_vtpass_home
echo ERROR: VTPASS_HOME environment variable must be set to VT Password install path.
goto end
:no_java_home
echo ERROR: JAVA_HOME environment variable must be set to JRE/JDK install path.
:end
|
Update script for latest vt-dictionary.
|
Update script for latest vt-dictionary.
|
Batchfile
|
apache-2.0
|
dfish3r/vt-password,dfish3r/vt-password
|
b2bc88148c39c449cb198e0ee1099bc446890a25
|
databases/initdb/src/main/resources/bin/init-unifiedpush-db.bat
|
databases/initdb/src/main/resources/bin/init-unifiedpush-db.bat
|
@ECHO OFF
IF %1.==. GOTO No1
set CONFIG=%1
REM set debug parameters
REM set DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=1044,server=y,suspend=y"
java -cp ..\lib\* %DEBUG_OPTS% "-Daerobase.config.dir=%CONFIG%" org.jboss.aerogear.unifiedpush.DBMaintenance > initdb-java.log 2>&1
GOTO End1
:No1
ECHO Missing Config file
GOTO End1
:End1
@ECHO ON
|
@ECHO OFF
IF %1.==. GOTO No1
set CONFIG=%1
REM set debug parameters
REM set DEBUG_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,address=1044,server=y,suspend=y"
"%JAVA_HOME%\bin\java" -cp ..\lib\* %DEBUG_OPTS% "-Daerobase.config.dir=%CONFIG%" org.jboss.aerogear.unifiedpush.DBMaintenance > initdb-java.log 2>&1
GOTO End1
:No1
ECHO Missing Config file
GOTO End1
:End1
@ECHO ON
|
Use JAVA_HOME for schema creation
|
Use JAVA_HOME for schema creation
|
Batchfile
|
apache-2.0
|
aerobase/unifiedpush-server,aerobase/unifiedpush-server,aerobase/unifiedpush-server
|
539a7f48e214611cf12c677e661e54d97d8da4c3
|
MakeSharpDX.cmd
|
MakeSharpDX.cmd
|
@echo off
setlocal
set PATH=C:\Program Files (x86)\Git\bin\;%PATH%
call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\vc\vcvarsall.bat" x86
REM call "C:\Program Files (x86)\Microsoft Visual Studio 11.0\vc\vcvarsall.bat" x86
set DXROOT=C:\Program Files\Sandcastle
%~dp0\External\nant\bin\nant %*
|
@echo off
setlocal
set PATH=C:\Program Files (x86)\Git\bin\;%PATH%
REM call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\vc\vcvarsall.bat" x86
call "C:\Program Files (x86)\Microsoft Visual Studio 11.0\vc\vcvarsall.bat" x86
set DXROOT=C:\Program Files\Sandcastle
%~dp0\External\nant\bin\nant %*
|
Switch to Visual Studio 2012 for build release
|
[Build] Switch to Visual Studio 2012 for build release
|
Batchfile
|
mit
|
tomba/Toolkit,sharpdx/Toolkit,sharpdx/Toolkit
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.