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
|
---|---|---|---|---|---|---|---|---|---|
3f7ef92440f9f05f40ad5588d7b8f0c8d51fa534
|
bravo_logger.bat
|
bravo_logger.bat
|
@ECHO OFF
SETLOCAL
SET LOG_PATH="H:\bravo_logs\"
SET LOG_FILE="marvin_errors.log"
IF NOT EXIST %LOG_PATH% (SET LOG_PATH="%USERPROFILE%\Desktop\")
SET SCRIPT="%USERPROFILE%\Repos\standalone_scripts\upload_robot_logs.py"
SET STB_CONF="%USERPROFILE%\Repos\statusdb.yaml"
SET STB_LOG="%USERPROFILE%\Repos\statusdb_upload.log"
FOR /F "DELIMS=" %%A IN ('DATE /T') DO (SET TODAY=%%A)
FOR /F "TOKENS=1-2 DELIMS=/:" %%A IN ("%TIME%") DO (SET NOW=%%A:%%B)
ECHO %TODAY% %NOW% %* >> %LOG_PATH%%LOG_FILE%
ECHO %* | python %SCRIPT% --name "Marvin" --conf %STB_CONF% --logfile %STB_LOG%
|
@ECHO OFF
SETLOCAL
SET LOG_PATH="Y:\Bravo\bravo_logs\"
SET LOG_FILE="marvin_errors.log"
IF NOT EXIST %LOG_PATH% (SET LOG_PATH="%USERPROFILE%\Desktop\")
SET SCRIPT="%USERPROFILE%\Repos\standalone_scripts\upload_robot_logs.py"
SET STB_CONF="%USERPROFILE%\Repos\statusdb.yaml"
SET STB_LOG="%USERPROFILE%\Repos\statusdb_upload.log"
FOR /F "DELIMS=" %%A IN ('DATE /T') DO (SET TODAY=%%A)
FOR /F "TOKENS=1-2 DELIMS=/:" %%A IN ("%TIME%") DO (SET NOW=%%A:%%B)
ECHO %TODAY% %NOW% %* >> %LOG_PATH%%LOG_FILE%
ECHO %* | python %SCRIPT% --name "Marvin" --conf %STB_CONF% --logfile %STB_LOG%
|
Change path where error messages are saved on Homer
|
Change path where error messages are saved on Homer
|
Batchfile
|
apache-2.0
|
jgruselius/bravo-protocols
|
f2792b8d93b1cd6a1743201a4fd71bbe03e72dd8
|
plugin/bin/x-pack/sql-cli.bat
|
plugin/bin/x-pack/sql-cli.bat
|
@echo off
rem Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
rem or more contributor license agreements. Licensed under the Elastic License;
rem you may not use this file except in compliance with the Elastic License.
setlocal enabledelayedexpansion
setlocal enableextensions
call "%~dp0..\elasticsearch-env.bat" || exit /b 1
call "%~dp0x-pack-env.bat" || exit /b 1
set CLI_JAR=!ES_CLASSPATH!;!ES_HOME!/plugins/x-pack/bin/sql-cli-*.jar
%JAVA% ^
-jar "%CLI_JAR%" ^
%*
endlocal
endlocal
|
@echo off
rem Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
rem or more contributor license agreements. Licensed under the Elastic License;
rem you may not use this file except in compliance with the Elastic License.
setlocal enabledelayedexpansion
setlocal enableextensions
call "%~dp0..\elasticsearch-env.bat" || exit /b 1
call "%~dp0x-pack-env.bat" || exit /b 1
set CLI_JAR=%ES_HOME%/plugins/x-pack/bin/*
%JAVA% ^
-cp "%CLI_JAR%" ^
org.elasticsearch.xpack.sql.cli.Cli ^
%*
endlocal
endlocal
|
Update cli to work on windows
|
Update cli to work on windows
Original commit: elastic/x-pack-elasticsearch@84f6ba3c1f45f9898c630da5ac3749a541c71f13
|
Batchfile
|
apache-2.0
|
GlenRSmith/elasticsearch,uschindler/elasticsearch,HonzaKral/elasticsearch,scorpionvicky/elasticsearch,gingerwizard/elasticsearch,nknize/elasticsearch,nknize/elasticsearch,coding0011/elasticsearch,gfyoung/elasticsearch,gingerwizard/elasticsearch,GlenRSmith/elasticsearch,coding0011/elasticsearch,nknize/elasticsearch,gfyoung/elasticsearch,nknize/elasticsearch,HonzaKral/elasticsearch,GlenRSmith/elasticsearch,gingerwizard/elasticsearch,gfyoung/elasticsearch,scorpionvicky/elasticsearch,scorpionvicky/elasticsearch,HonzaKral/elasticsearch,coding0011/elasticsearch,gingerwizard/elasticsearch,robin13/elasticsearch,gfyoung/elasticsearch,robin13/elasticsearch,robin13/elasticsearch,uschindler/elasticsearch,gingerwizard/elasticsearch,uschindler/elasticsearch,robin13/elasticsearch,coding0011/elasticsearch,GlenRSmith/elasticsearch,uschindler/elasticsearch,nknize/elasticsearch,GlenRSmith/elasticsearch,gingerwizard/elasticsearch,scorpionvicky/elasticsearch,coding0011/elasticsearch,gingerwizard/elasticsearch,gfyoung/elasticsearch,scorpionvicky/elasticsearch,HonzaKral/elasticsearch,uschindler/elasticsearch,robin13/elasticsearch
|
8d188c9110f7f2a6f9f16f1340d9d254bf583741
|
bin/windows/kafka-server-start.bat
|
bin/windows/kafka-server-start.bat
|
@echo off
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License"); you may not use this file except in compliance with
rem the License. You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.
IF [%1] EQU [] (
echo USAGE: %0 server.properties
EXIT /B 1
)
SetLocal
IF ["%KAFKA_LOG4J_OPTS%"] EQU [""] (
set KAFKA_LOG4J_OPTS=-Dlog4j.configuration=file:%~dp0../../config/log4j.properties
)
IF ["%KAFKA_HEAP_OPTS%"] EQU [""] (
set KAFKA_HEAP_OPTS=-Xmx1G -Xms1G
)
%~dp0kafka-run-class.bat kafka.Kafka %*
EndLocal
|
@echo off
rem Licensed to the Apache Software Foundation (ASF) under one or more
rem contributor license agreements. See the NOTICE file distributed with
rem this work for additional information regarding copyright ownership.
rem The ASF licenses this file to You under the Apache License, Version 2.0
rem (the "License"); you may not use this file except in compliance with
rem the License. You may obtain a copy of the License at
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS,
rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rem See the License for the specific language governing permissions and
rem limitations under the License.
IF [%1] EQU [] (
echo USAGE: %0 server.properties
EXIT /B 1
)
SetLocal
IF ["%KAFKA_LOG4J_OPTS%"] EQU [""] (
set KAFKA_LOG4J_OPTS=-Dlog4j.configuration=file:%~dp0../../config/log4j.properties
)
IF ["%KAFKA_HEAP_OPTS%"] EQU [""] (
rem detect OS architecture
wmic os get osarchitecture | find /i "32-bit" >nul 2>&1
IF NOT ERRORLEVEL 1 (
rem 32-bit OS
set KAFKA_HEAP_OPTS=-Xmx512M -Xms512M
) ELSE (
rem 64-bit OS
set KAFKA_HEAP_OPTS=-Xmx1G -Xms1G
)
)
%~dp0kafka-run-class.bat kafka.Kafka %*
EndLocal
|
Fix the server start script for Windows 32-bit OS
|
KAFKA-4271: Fix the server start script for Windows 32-bit OS
Without this fix the new consumer fails to run on a 32-bit Windows OS.
Author: Vahid Hashemian <[email protected]>
Reviewers: Jason Gustafson, Guozhang Wang
Closes #2189 from vahidhashemian/KAFKA-4271
|
Batchfile
|
apache-2.0
|
ollie314/kafka,sslavic/kafka,eribeiro/kafka,TiVo/kafka,Ishiihara/kafka,rhauch/kafka,gf53520/kafka,apache/kafka,airbnb/kafka,Esquive/kafka,richhaase/kafka,gf53520/kafka,eribeiro/kafka,ijuma/kafka,Chasego/kafka,gf53520/kafka,apache/kafka,rhauch/kafka,eribeiro/kafka,Chasego/kafka,KevinLiLu/kafka,Chasego/kafka,eribeiro/kafka,mihbor/kafka,ollie314/kafka,themarkypantz/kafka,MyPureCloud/kafka,themarkypantz/kafka,ijuma/kafka,ErikKringen/kafka,guozhangwang/kafka,ijuma/kafka,KevinLiLu/kafka,Esquive/kafka,ErikKringen/kafka,mihbor/kafka,lindong28/kafka,KevinLiLu/kafka,richhaase/kafka,themarkypantz/kafka,noslowerdna/kafka,sebadiaz/kafka,gf53520/kafka,sslavic/kafka,noslowerdna/kafka,ollie314/kafka,ollie314/kafka,sebadiaz/kafka,sslavic/kafka,MyPureCloud/kafka,sebadiaz/kafka,airbnb/kafka,mihbor/kafka,TiVo/kafka,airbnb/kafka,Esquive/kafka,lindong28/kafka,rhauch/kafka,TiVo/kafka,guozhangwang/kafka,MyPureCloud/kafka,richhaase/kafka,lindong28/kafka,noslowerdna/kafka,mihbor/kafka,sslavic/kafka,ErikKringen/kafka,Ishiihara/kafka,apache/kafka,ErikKringen/kafka,lindong28/kafka,Chasego/kafka,KevinLiLu/kafka,airbnb/kafka,apache/kafka,Ishiihara/kafka,themarkypantz/kafka,rhauch/kafka,Ishiihara/kafka,guozhangwang/kafka,sebadiaz/kafka,ijuma/kafka,noslowerdna/kafka,richhaase/kafka,TiVo/kafka,MyPureCloud/kafka,guozhangwang/kafka,Esquive/kafka
|
500c1007f136351055ad9c80b0e47928c41a4759
|
startStudioWithPlugin.bat
|
startStudioWithPlugin.bat
|
SET pathToVS12=C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe
SET pathToVS11=C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\devenv.exe
IF EXIST %pathToVS12%(
"%pathToVS12%" /RootSuffix YC /ReSharper.Internal
Exit /b
)
IF EXIST %pathToVS11%
(
"%pathToVS11%" /RootSuffix YC /ReSharper.Internal
Exit /b
)
ELSE
(
echo "Microsoft Visual Studio 11 and Microsoft Visual Studio 12 weren't found. Try run plugin manually with keys /RootSuffix YC /ReSharper.Internal"
)
|
@echo off
SET pathToVS12=C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe
SET pathToVS11=C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\devenv.exe
IF EXIST %pathToVS12%(
"%pathToVS12%" /RootSuffix YC /ReSharper.Internal
Exit /b
)
IF EXIST %pathToVS11%
(
"%pathToVS11%" /RootSuffix YC /ReSharper.Internal
Exit /b
)
ELSE
(
echo "Microsoft Visual Studio 11 and Microsoft Visual Studio 12 weren't found. Try run plugin manually with keys /RootSuffix YC /ReSharper.Internal"
)
|
Edit script that runs studio with plugin
|
Edit script that runs studio with plugin
|
Batchfile
|
apache-2.0
|
Albiglittle/YaccConstructor,fedorovr/YaccConstructor,Albiglittle/YaccConstructor,nbIxMaN/YaccConstructor,fedorovr/YaccConstructor,YaccConstructor/YaccConstructor,nbIxMaN/YaccConstructor,YaccConstructor/YaccConstructor,fedorovr/YaccConstructor,Albiglittle/YaccConstructor,YaccConstructor/YaccConstructor,nbIxMaN/YaccConstructor
|
29b51d3431be244644d8df68c28f3e4a651dfe34
|
scripts/build_project_win.bat
|
scripts/build_project_win.bat
|
@echo off
set targetDllPath="%~1\bin\SDL2.dll"
if not exist %targetDllPath% (
echo Copying SDL2.dll to %targetDllPath%
copy SDL2.dll %targetDllPath% || exit /b 1
)
cd /d %1
if not exist build mkdir build
cd build
set slnName="%~2.sln"
set binTargetName="%~2-gamebins"
IF NOT EXIST %slnName% (
cmake -G "Visual Studio 16 2019" ^
-A x64 ^
-DHALLEY_PATH=../halley ^
-DBUILD_HALLEY_TOOLS=0 ^
-DBUILD_HALLEY_TESTS=0 ^
-DCMAKE_INCLUDE_PATH="lib\include" ^
-DCMAKE_LIBRARY_PATH="lib\windows64" ^
-DBOOST_ROOT="lib\boost" ^
-DBoost_USE_STATIC_LIBS=1 ^
.. || exit /b 1
)
cmake.exe --build . --target %binTargetName% --config %3 || exit /b 1
echo Build successful.
|
@echo off
set targetDllDir="%~1\bin"
if not exist %targetDllDir% (
mkdir %targetDllDir%
)
set targetDllPath="%~1\bin\SDL2.dll"
if not exist %targetDllPath% (
echo Copying SDL2.dll to %targetDllPath%
copy SDL2.dll %targetDllPath% || exit /b 1
)
cd /d %1
if not exist build mkdir build
cd build
set slnName="%~2.sln"
set binTargetName="%~2-gamebins"
IF NOT EXIST %slnName% (
cmake -G "Visual Studio 16 2019" ^
-A x64 ^
-DHALLEY_PATH=../halley ^
-DBUILD_HALLEY_TOOLS=0 ^
-DBUILD_HALLEY_TESTS=0 ^
-DCMAKE_INCLUDE_PATH="lib\include" ^
-DCMAKE_LIBRARY_PATH="lib\windows64" ^
-DBOOST_ROOT="lib\boost" ^
-DBoost_USE_STATIC_LIBS=1 ^
.. || exit /b 1
)
cmake.exe --build . --target %binTargetName% --config %3 || exit /b 1
echo Build successful.
|
Create bin dir if needed
|
Create bin dir if needed
|
Batchfile
|
apache-2.0
|
amzeratul/halley,amzeratul/halley,amzeratul/halley
|
e589263af2bf96198fbd6a99efefaed9e177319e
|
test/runtests.bat
|
test/runtests.bat
|
@ECHO OFF
REM create bin directory if it doesn't exist
if not exist ..\bin mkdir ..\bin
REM delete output from previous run
del actual.txt
REM compile the code into the bin folder
javac javac -cp ..\src -Xlint:none -d ..\bin ..\src\seedu\addressbook\Main.java
REM run the program, feed commands from input.txt file and redirect the output to the actual.txt
java -classpath ..\bin seedu.addressbook.Main < input.txt > actual.txt
REM compare the output to the expected output
FC actual.txt expected.txt
|
@ECHO OFF
REM create bin directory if it doesn't exist
if not exist ..\bin mkdir ..\bin
REM delete output from previous run
del actual.txt
REM compile the code into the bin folder
javac -cp ..\src -Xlint:none -d ..\bin ..\src\seedu\addressbook\Main.java
REM run the program, feed commands from input.txt file and redirect the output to the actual.txt
java -classpath ..\bin seedu.addressbook.Main < input.txt > actual.txt
REM compare the output to the expected output
FC actual.txt expected.txt
|
Remove duplicate javac from test script
|
Remove duplicate javac from test script
|
Batchfile
|
mit
|
cheec/addressbook-level2,imhongw/addressbook-level2,cheec/addressbook-level2,zachylimwl/addressbook-level2,imhongw/addressbook-level2,zachylimwl/addressbook-level2,mingruimingrui/addressbook-level2,mingruimingrui/addressbook-level2,se-edu/addressbook-level2,se-edu/addressbook-level2
|
07d0a1fa03d638340f48070e877af795e9c1686c
|
tool/generate.cmd
|
tool/generate.cmd
|
@echo off
echo Generating C-style Win32 APIs and tests
call dart %~dp0win32\generate_ffi_files.dart
call dart %~dp0win32\generate_tests.dart
echo.
echo Generating COM classes
call dart %~dp0generate\generate.dart %~dp0generate\com %~dp0..\lib\src\generated
echo.
echo Generating Windows Runtime classes from IDL
call dart %~dp0generate\generate.dart %~dp0generate\winrt %~dp0..\lib\src\generated
echo.
echo Generating Windows Runtime classes from inspection
call dart %~dp0winmd\winmd.dart %~dp0..\lib\src\generated
echo.
echo Formatting generated source code
call dart format %~dp0..\lib\src
call dart format %~dp0..\test\api_test.dart
echo.
echo Running tests
call dart pub run test
|
@echo off
echo Generating C-style Win32 APIs and tests
call dart --enable-experiment=non-nullable %~dp0win32\generate_ffi_files.dart
call dart --enable-experiment=non-nullable %~dp0win32\generate_tests.dart
echo.
echo Generating COM classes
call dart --enable-experiment=non-nullable %~dp0generate\generate.dart %~dp0generate\com %~dp0..\lib\src\generated
echo.
echo Generating Windows Runtime classes from IDL
call dart --enable-experiment=non-nullable %~dp0generate\generate.dart %~dp0generate\winrt %~dp0..\lib\src\generated
echo.
echo Generating Windows Runtime classes from inspection
call dart --enable-experiment=non-nullable %~dp0winmd\winmd.dart %~dp0..\lib\src\generated
echo.
echo Formatting generated source code
call dart --enable-experiment=non-nullable format %~dp0..\lib\src
call dart --enable-experiment=non-nullable format %~dp0..\test\api_test.dart
echo.
echo Running tests
call dart --enable-experiment=non-nullable pub run test
|
Call non-nullable Dart for generators
|
Call non-nullable Dart for generators
|
Batchfile
|
bsd-3-clause
|
timsneath/win32,timsneath/win32,timsneath/win32
|
4820563546acc1ef752d16e58994c0423795bf3f
|
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/031b8bfe8230279dbd1bff99c33ecd07e373cb87
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/b27b514505b3d85ccb1396ab3dc7ed64d1dfd455
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 kudu to use new kuduscript with python3.6 support
|
Update kudu to use new kuduscript with python3.6 support
|
Batchfile
|
apache-2.0
|
EricSten-MSFT/kudu,EricSten-MSFT/kudu,EricSten-MSFT/kudu,shibayan/kudu,shibayan/kudu,EricSten-MSFT/kudu,shibayan/kudu,shibayan/kudu,projectkudu/kudu,projectkudu/kudu,projectkudu/kudu,shibayan/kudu,projectkudu/kudu,projectkudu/kudu,EricSten-MSFT/kudu
|
e57620e493e6ba9181f139b1ccdc820b0abee7c0
|
conda-recipes/ibis-framework/bld.bat
|
conda-recipes/ibis-framework/bld.bat
|
"%PYTHON%" setup.py install
if errorlevel 1 exit 1
:: Add more build steps here, if they are necessary.
:: See
:: http://docs.continuum.io/conda/build.html
:: for a list of environment variables that are set during the build process.
|
"%PYTHON%" setup.py install --single-version-externally-managed --record=record.txt
if errorlevel 1 exit 1
:: Add more build steps here, if they are necessary.
:: See
:: http://docs.continuum.io/conda/build.html
:: for a list of environment variables that are set during the build process.
|
Fix conda recipe for Windows build
|
Fix conda recipe for Windows build
Sync Windows build script options with Linux/OS X build script
options. Packages can be tested by running the following on
Windows: ``` conda install -c koverholt ibis-framework ```
Author: Kristopher Overholt <[email protected]>
Closes #509 from koverholt/fix/conda-recipes-win and squashes the following commits:
2631674 [Kristopher Overholt] Fix conda recipe for windows build
|
Batchfile
|
apache-2.0
|
adamobeng/ibis,mahantheshhv/ibis,adamobeng/ibis,Supermem/ibis,wesm/ibis,ibis-project/ibis,wesm/ibis,koverholt/ibis,cloudera/ibis,ashhher3/ibis,laserson/ibis,dboyliao/ibis,glenioborges/ibis,aslihandincer/ibis,ibis-project/ibis,ibis-project/ibis,korotkyn/ibis,koverholt/ibis,aslihandincer/ibis,mariusvniekerk/ibis,glenioborges/ibis,mariusvniekerk/ibis,deepfield/ibis,glenioborges/ibis,dboyliao/ibis,koverholt/ibis,wesm/ibis,dboyliao/ibis,deepfield/ibis,aslihandincer/ibis,adamobeng/ibis,cloudera/ibis,ashhher3/ibis,cpcloud/ibis,laserson/ibis,mahantheshhv/ibis,laserson/ibis,mariusvniekerk/ibis,mahantheshhv/ibis,cpcloud/ibis,cpcloud/ibis,deepfield/ibis,ibis-project/ibis,glenioborges/ibis,deepfield/ibis,ashhher3/ibis,dboyliao/ibis,koverholt/ibis,aslihandincer/ibis,Supermem/ibis,Supermem/ibis,adamobeng/ibis,cpcloud/ibis,Supermem/ibis,mahantheshhv/ibis,ashhher3/ibis,korotkyn/ibis,cloudera/ibis,laserson/ibis,mariusvniekerk/ibis,korotkyn/ibis,korotkyn/ibis
|
41ce6d48cf491f881ad803fe95c6dde1266d51e6
|
edge-setup/enableConsentEdge.bat
|
edge-setup/enableConsentEdge.bat
|
@PowerShell.exe -ExecutionPolicy RemoteSigned -Command "Invoke-Expression -Command ((Get-Content -Path '%~f0' | Select-Object -Skip 2) -join [environment]::NewLine)"
@exit /b %Errorlevel%
#Install scoop
set-executionpolicy unrestricted -s cu -f
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
scoop install sudo
# Add Enable Consent to Windows Registry
$registryPath = "HKLM:\Software\Microsoft\MicrosoftEdge"
$registryPathItem = "$($registryPath)\MediaCapture"
$name = "EnableConsentPrompt"
$value = "0"
echo "Adding enable consent to Windows registry..."
sudo New-Item -Path $registryPath -Force | Out-Null
sudo New-Item -Path $registryPathItem -Force | Out-Null
sudo New-ItemProperty -Path $registryPathItem -Name $name -Value $value -PropertyType DWORD -Force | Out-Null
echo "Success!"
|
@PowerShell.exe -ExecutionPolicy RemoteSigned -Command "Invoke-Expression -Command ((Get-Content -Path '%~f0' | Select-Object -Skip 2) -join [environment]::NewLine)"
@exit /b %Errorlevel%
#Install scoop
set-executionpolicy unrestricted -s cu -f
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
scoop install sudo
# Add Enable Consent to Windows Registry
$registryPath = "HKLM:\Software\Microsoft\MicrosoftEdge"
$registryPathItem = "$($registryPath)\MediaCapture"
$name = "EnableConsentPrompt"
$value = "0"
echo "Adding enable consent to Windows registry..."
sudo New-Item -Path $registryPath -Force | Out-Null
sudo New-Item -Path $registryPathItem -Force | Out-Null
sudo New-ItemProperty -Path $registryPathItem -Name $name -Value $value -PropertyType DWORD -Force | Out-Null
echo "Restarting Microsoft Edge..."
Stop-Process -Name "MicrosoftEdge"
Stop-Process -Name "MicrosoftEdgeCP"
Start-Sleep -s 10
Start-Process -FilePath "MicrosoftEdge" -Wait -WindowStyle Maximized
echo "Success!"
|
Add Edge restarting once consent enabled
|
Add Edge restarting once consent enabled
|
Batchfile
|
mit
|
aullman/opentok-test-scripts,aullman/opentok-test-scripts,aullman/opentok-test-scripts
|
fada849257f9c2f2d1389b8f940446138c092899
|
scripts/test_native_code.bat
|
scripts/test_native_code.bat
|
@echo off
setlocal EnableDelayedExpansion
echo Test discovery started...
dir C:\projects\spectre\*Tests.exe /b /s | findstr /v obj > __tmp_gtest.txt
echo Testing (Google Test)...
set failures=0
FOR /F %%i IN (__tmp_gtest.txt) DO (
echo %%i
%%i --gtest_output="xml:%%i.xml"
powershell C:\projects\spectre\scripts\Upload-TestResult.ps1 -fileName %%i.xml
IF %ERRORLEVEL% NEQ 0 (
set /A failures=%failures%+1
)
)
del __tmp_gtest.txt
EXIT /B %failures%
|
@echo off
setlocal EnableDelayedExpansion
echo Test discovery started...
dir C:\projects\spectre\*Tests.exe /b /s | findstr /v obj > __tmp_gtest.txt
echo Testing (Google Test)...
set failures=0
FOR /F %%i IN (__tmp_gtest.txt) DO (
echo %%i
%%i --gtest_output="xml:%%i.xml"
IF %ERRORLEVEL% NEQ 0 (
set /A failures=%failures%+1
)
powershell C:\projects\spectre\scripts\Upload-TestResult.ps1 -fileName %%i.xml
)
del __tmp_gtest.txt
EXIT /B %failures%
|
Solve problem of non-failing native tests
|
Solve problem of non-failing native tests
|
Batchfile
|
apache-2.0
|
mg6/spectre,spectre-team/spectre,mg6/spectre,spectre-team/spectre,spectre-team/spectre,mg6/spectre
|
5d5aa91ab5a8798d43f6a735170beeec48c00178
|
conda-recipe/bld.bat
|
conda-recipe/bld.bat
|
set CFG=%USERPROFILE%\pydistutils.cfg
echo [config] > "%CFG%"
echo compiler=mingw32 >> "%CFG%"
echo [build] >> "%CFG%"
echo compiler=mingw32 >> "%CFG%"
echo [build_ext] >> "%CFG%"
echo compiler=mingw32 >> "%CFG%"
"%PYTHON%" setup.py install --single-version-externally-managed --record=record.txt
if errorlevel 1 exit 1
|
set CFG=%USERPROFILE%\pydistutils.cfg
echo [config] > "%CFG%"
echo compiler=mingw32 >> "%CFG%"
echo [build] >> "%CFG%"
echo compiler=mingw32 >> "%CFG%"
echo [build_ext] >> "%CFG%"
echo compiler=mingw32 >> "%CFG%"
"%PYTHON%" -m pip install . --no-deps -vv
if errorlevel 1 exit 1
|
Switch all recipes to pip install instead of setup.py install
|
Switch all recipes to pip install instead of setup.py install
(This has nothing to do with land surface modeling)
|
Batchfile
|
mit
|
cjcardinale/climlab,cjcardinale/climlab,brian-rose/climlab,brian-rose/climlab,cjcardinale/climlab
|
09591082e43d8ecb8d57a5cbf07eec0ef8d19664
|
GetAndBuildThis.bat
|
GetAndBuildThis.bat
|
setlocal
IF "%1"=="" (
set BUILD_CONFIG="Debug"
) ELSE (
set BUILD_CONFIG=%1
)
REM Presence of a second argument indicates that the caller has already run vsvars32.bat
IF "%2"=="" (
if not "%VS120COMNTOOLS%" == "" (
echo Setting up Visual Studio Pro 2013 Tools...
@call "%VS120COMNTOOLS%vsvars32.bat"
goto build
)
if not "%VS100COMNTOOLS%" == "" (
echo Setting up Visual Studio Pro 2010 Tools...
@call "%VS100COMNTOOLS%vsvars32.bat"
goto build
)
if not "%VS110COMNTOOLS%" == "" (
echo Setting up Visual Studio Express 2010 Tools...
@call "%VS110COMNTOOLS%vsvars32.bat"
goto build
)
)
:build
git pull --rebase
msbuild "Palaso.sln" /verbosity:quiet /maxcpucount /p:Configuration=%BUILD_CONFIG%
|
setlocal
IF "%1"=="" (
set BUILD_CONFIG="Debug"
) ELSE (
set BUILD_CONFIG=%1
)
REM Presence of a second argument indicates that the caller has already run vsvars32.bat
IF "%2"=="" (
if not "%VS120COMNTOOLS%" == "" (
echo Setting up Visual Studio Pro 2013 Tools...
@call "%VS120COMNTOOLS%vsvars32.bat"
goto build
)
if not "%VS100COMNTOOLS%" == "" (
echo Setting up Visual Studio Pro 2010 Tools...
@call "%VS100COMNTOOLS%vsvars32.bat"
goto build
)
if not "%VS110COMNTOOLS%" == "" (
echo Setting up Visual Studio Express 2010 Tools...
@call "%VS110COMNTOOLS%vsvars32.bat"
goto build
)
)
:build
git pull --rebase
msbuild "build/Palaso.proj" /target:build /verbosity:quiet /maxcpucount /p:Configuration=%BUILD_CONFIG%
|
Update GetAndBuild script to match TC Build Step
|
Update GetAndBuild script to match TC Build Step
|
Batchfile
|
mit
|
ermshiperete/libpalaso,sillsdev/libpalaso,glasseyes/libpalaso,ddaspit/libpalaso,andrew-polk/libpalaso,ermshiperete/libpalaso,gmartin7/libpalaso,glasseyes/libpalaso,tombogle/libpalaso,tombogle/libpalaso,gmartin7/libpalaso,glasseyes/libpalaso,andrew-polk/libpalaso,tombogle/libpalaso,gmartin7/libpalaso,ddaspit/libpalaso,ermshiperete/libpalaso,gtryus/libpalaso,mccarthyrb/libpalaso,sillsdev/libpalaso,mccarthyrb/libpalaso,gtryus/libpalaso,tombogle/libpalaso,gtryus/libpalaso,mccarthyrb/libpalaso,sillsdev/libpalaso,mccarthyrb/libpalaso,andrew-polk/libpalaso,ddaspit/libpalaso,gtryus/libpalaso,ddaspit/libpalaso,sillsdev/libpalaso,ermshiperete/libpalaso,andrew-polk/libpalaso,gmartin7/libpalaso,glasseyes/libpalaso
|
dd52da7bd29e6307173a8a82b752e5884f4d6ee2
|
js.thirdparty.bat
|
js.thirdparty.bat
|
"C:\Program Files (x86)\Java\jre1.8.0_45\bin\java.exe" -jar compiler.jar ^
--js=translate.js ^
--js=jquery/jquery-1.11.2.js ^
--js=jquery/jquery-ui.1.11.2.min.js ^
--js=jquery/jquery.qtip.js ^
--js=jquery/jquery.blockUI.js ^
--js=jquery/jquery.color.js ^
--js=jquery/jquery.tablesorter.js ^
--js=jquery/jquery.flot.js ^
--js=jquery/jquery.ui.position.js ^
--js=jquery/jquery.contextMenu.js ^
--js=jquery/jquery.hotkeys.js ^
--js=jquery/jquery.jsPlumb-1.6.4.js ^
--js=jquery/jquery.placeholder.js ^
--js=jquery/jquery.simplePagination.js ^
--js=handlebars-v2.0.0.js ^
--js=handlebars.form-helpers.js ^
--js=dropdown.js ^
--js=tab.js ^
--js=typeahead.bundle.js ^
--source_map_format=V3 ^
--create_source_map thirdparty.compiled.js.map ^
--js_output_file=thirdparty.compiled.js
echo //# sourceMappingURL=thirdparty.compiled.js.map >> thirdparty.compiled.js
@pause
|
"C:\Program Files (x86)\Java\jre1.8.0_45\bin\java.exe" -jar compiler.jar ^
--js=translate.js ^
--js=jquery/jquery-1.11.2.js ^
--js=jquery/jquery-ui.1.11.4.min.js ^
--js=jquery/jquery.qtip.js ^
--js=jquery/jquery.blockUI.js ^
--js=jquery/jquery.color.js ^
--js=jquery/jquery.tablesorter.js ^
--js=jquery/jquery.flot.js ^
--js=jquery/jquery.ui.position.js ^
--js=jquery/jquery.contextMenu.js ^
--js=jquery/jquery.hotkeys.js ^
--js=jquery/jquery.jsPlumb-1.6.4.js ^
--js=jquery/jquery.placeholder.js ^
--js=jquery/jquery.simplePagination.js ^
--js=handlebars-v2.0.0.js ^
--js=handlebars.form-helpers.js ^
--js=dropdown.js ^
--js=tab.js ^
--js=typeahead.bundle.js ^
--source_map_format=V3 ^
--create_source_map thirdparty.compiled.js.map ^
--js_output_file=thirdparty.compiled.js
echo //# sourceMappingURL=thirdparty.compiled.js.map >> thirdparty.compiled.js
@pause
|
Bump versiona nd update third party build to use latest jquery ui we have
|
Bump versiona nd update third party build to use latest jquery ui we have
|
Batchfile
|
mit
|
marekr/siggy,marekr/siggy,marekr/siggy,marekr/siggy
|
1fbf27fb5760f8f69aae4f9de503095dd9cd1abc
|
rci.bat
|
rci.bat
|
:: Copyright (c) 2011, Jon Maken
:: License: 3-clause BSD (see project LICENSE file)
:: Revision: 01/29/2011 10:20:16 AM
@echo off
setlocal
:: echo initial:
:: echo %%0 = %0
:: echo %%* = %*
:: fix ruby.exe invocation when explicitly disabling RubyGems
if "x%1" == "x--disable-gems" (
set NOGEM=%1
for /F "tokens=1*" %%i in ("%*") do set RB_ARGS=%%j
) else (
set NOGEM=
set RB_ARGS=%*
)
:: echo pre call ruby:
:: echo NOGEM = %NOGEM%
:: echo RB_ARGS = %RB_ARGS%
ruby.exe %NOGEM% -x %~f0 %RB_ARGS%
endlocal
exit /b
#!ruby
__DIR__ = File.expand_path(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(__DIR__, 'lib'))
require 'inquisitor'
Inquisitor.run
|
:: Copyright (c) 2011, Jon Maken
:: License: 3-clause BSD (see project LICENSE file)
:: Revision: 01/29/2011 10:20:16 AM
@echo off
setlocal
:: echo initial:
:: echo %%0 = %0
:: echo %%* = %*
:: fix ruby.exe invocation when explicitly disabling RubyGems
if "x%1" == "x--disable-gems" (
set NOGEM=%1
for /F "tokens=1*" %%i in ("%*") do set RB_ARGS=%%j
) else (
set NOGEM=
set RB_ARGS=%*
)
:: echo pre call ruby:
:: echo NOGEM = %NOGEM%
:: echo RB_ARGS = %RB_ARGS%
ruby.exe %NOGEM% -x %~f0 %RB_ARGS%
endlocal
exit /b
#!ruby
__DIR__ = File.expand_path(File.dirname(__FILE__))
$LOAD_PATH.unshift(File.join(__DIR__, 'lib'))
$LOAD_PATH.unshift(File.join(__DIR__))
require 'inquisitor'
Inquisitor.run
|
Add project root dir to $LOAD_PATH.
|
Add project root dir to $LOAD_PATH.
|
Batchfile
|
bsd-3-clause
|
jonforums/measurements,jonforums/measurements
|
03b2c03454b3d3aedf878e9d2957a6efd2c54b1a
|
PCbuild/build_ssl.bat
|
PCbuild/build_ssl.bat
|
@echo off
if not defined HOST_PYTHON set HOST_PYTHON=python
%HOST_PYTHON% build_ssl.py %1 %2
|
@echo off
cd
if not defined HOST_PYTHON set HOST_PYTHON=python
%HOST_PYTHON% build_ssl.py %1 %2
|
Add debug output to analyse buildbot failure.
|
Add debug output to analyse buildbot failure.
|
Batchfile
|
mit
|
sk-/python2.7-type-annotator,sk-/python2.7-type-annotator,sk-/python2.7-type-annotator
|
acd87b702e0a0d608c41b9e1db08f73f6a336641
|
kokoro/gcp_windows/continuous.bat
|
kokoro/gcp_windows/continuous.bat
|
@echo on
cd git\SwiftShader
git submodule update --init
"C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin\MSBuild" SwiftShader.sln
|
@echo on
SET PATH=%PATH%;C:\python27
cd git\SwiftShader
git submodule update --init
"C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin\MSBuild" SwiftShader.sln
|
Add Python path to Kokoro batch script
|
Add Python path to Kokoro batch script
Bug b/123360006
Change-Id: Ie29b1fea3607ad0da2fb48cf3a5248e976c2cf5f
Reviewed-on: https://swiftshader-review.googlesource.com/c/SwiftShader/+/27389
Tested-by: Nicolas Capens <[email protected]>
Reviewed-by: Chris Forbes <[email protected]>
Reviewed-by: Nicolas Capens <[email protected]>
|
Batchfile
|
apache-2.0
|
bkaradzic/SwiftShader,bkaradzic/SwiftShader,google/swiftshader,bkaradzic/SwiftShader,bkaradzic/SwiftShader,google/swiftshader,google/swiftshader,bkaradzic/SwiftShader
|
39bb2ed0a6a6b64680b23ddd14b140094358367c
|
teamcity-plugin/Build/build-metarunner.cmd
|
teamcity-plugin/Build/build-metarunner.cmd
|
RMDIR "%~dp0..\Drops" /S /Q
MKDIR "%~dp0..\Drops"
MKDIR "%~dp0..\Drops\Temp"
MKDIR "%~dp0..\Drops\Temp\agent"
MKDIR "%~dp0..\Drops\Temp\agent\bin"
XCOPY /E /Y "%~dp0..\Solutions\*.*" "%~dp0..\Drops\Temp"
XCOPY /E /Y "%~dp0..\..\src\OctopusPuppet.Cmd\bin\Release\*.*" "%~dp0..\Drops\Temp\agent\bin"
DEL "%~dp0..\Drops\Temp\agent\bin\*.xml"
DEL "%~dp0..\Drops\Temp\agent\bin\*.pdb"
@PowerShell -File %~dp0Create-Zip.ps1 %~dp0..\Drops\Temp\agent\ %~dp0..\Drops\Temp\agent\octopuspuppet-metarunner.zip
PAUSE
DEL "%~dp0..\Drops\Temp\agent\*.xml"
RMDIR "%~dp0..\Drops\Temp\agent\bin" /S /Q
PAUSE
@PowerShell -File "%~dp0Create-Zip.ps1" -target %~dp0..\Drops\Temp\ %~dp0..\Drops\octopuspuppet-metarunner.zip
RMDIR "%~dp0..\Drops\Temp\" /S /Q
PAUSE
|
RMDIR "%~dp0..\Drops" /S /Q
MKDIR "%~dp0..\Drops"
MKDIR "%~dp0..\Drops\Temp"
MKDIR "%~dp0..\Drops\Temp\agent"
MKDIR "%~dp0..\Drops\Temp\agent\bin"
XCOPY /E /Y "%~dp0..\Solutions\*.*" "%~dp0..\Drops\Temp"
XCOPY /E /Y "%~dp0..\..\src\OctopusPuppet.Cmd\bin\Release\*.*" "%~dp0..\Drops\Temp\agent\bin"
DEL "%~dp0..\Drops\Temp\agent\bin\*.xml"
DEL "%~dp0..\Drops\Temp\agent\bin\*.pdb"
@PowerShell -File %~dp0Create-Zip.ps1 %~dp0..\Drops\Temp\agent\ %~dp0..\Drops\Temp\agent\octopuspuppet-metarunner.zip
PAUSE
DEL "%~dp0..\Drops\Temp\agent\*.xml"
RMDIR "%~dp0..\Drops\Temp\agent\bin" /S /Q
PAUSE
@PowerShell -File "%~dp0Create-Zip.ps1" -target %~dp0..\Drops\Temp\ %~dp0..\Drops\octopuspuppet-metarunner.zip
RMDIR "%~dp0..\Drops\Temp\" /S /Q
|
Remove pause as we want to build it from CI agent
|
Remove pause as we want to build it from CI agent
|
Batchfile
|
apache-2.0
|
Aqovia/OctopusPuppet
|
b2f01a5de6c34c8dd2770630f14738ffd1b1f6b2
|
Build.cmd
|
Build.cmd
|
@echo off
cd %~dp0..
rake -f build\build.rb "build:no_test_build[., SevenDigital.Messaging.sln, build, full, local, Release]"
|
@echo off
cd %~dp0
rake -f build\build.rb "build:no_test_build[., SevenDigital.Messaging.sln, build, full, local, Release]"
pause
|
Update build.cmd to not cd up
|
Update build.cmd to not cd up
|
Batchfile
|
bsd-3-clause
|
i-e-b/SevenDigital.Messaging
|
af056484ac5bffbe5a28837fa6a2bf105c0a601e
|
bootstrap/src/main/bin/roo.bat
|
bootstrap/src/main/bin/roo.bat
|
@echo off
for %%? in ("%~dp0..") do set ROO_HOME=%%~f?
rem echo Resolved ROO_HOME: %ROO_HOME%
java -Djava.ext.dirs=%ROO_HOME%/lib;%ROO_HOME%/dist org.springframework.roo.bootstrap.Bootstrap "classpath:/roo-bootstrap.xml"
|
@echo off
for %%? in ("%~dp0..") do set ROO_HOME=%%~f?
rem echo Resolved ROO_HOME: %ROO_HOME%
java -Djline.nobell=true -Djava.ext.dirs=%ROO_HOME%/lib;%ROO_HOME%/dist org.springframework.roo.bootstrap.Bootstrap "classpath:/roo-bootstrap.xml"
|
Stop beep noise on Windows machines via Roo shell
|
ROO-110: Stop beep noise on Windows machines via Roo shell
|
Batchfile
|
apache-2.0
|
rwl/requestfactory-addon
|
9c281f575f7116580d7b8d80651038712b92a1a3
|
BUILD.cmd
|
BUILD.cmd
|
@echo off
REM I didn't use the if (...) else (...) form because when the environment variable
REM is expanded, the ")" in the directory name seems to be interpreted by the IF command.
if not "%ProgramFiles(x86)%"=="" set ProgramFiles32Bit=%ProgramFiles(x86)%
if "%ProgramFiles(x86)%"=="" set ProgramFiles32Bit=%ProgramFiles%
set BuildExe=%ProgramFiles32Bit%\MSBuild\14.0\Bin\MSBuild.exe
if not exist "%BuildExe%" (
echo ERROR: MSBuild not found at "%BuildExe%"!
pause
exit /b
)
"%BuildExe%" /p:Configuration=Release "TTMouseclickSimulator.sln"
pause
|
@echo off
SetLocal ENABLEDELAYEDEXPANSION
echo.Building the TTR Mouse Click Simulator...
echo.
REM MSBuild is always installed in the 32-Bit program files folder
if "!ProgramFiles(x86)!"=="" (
set "ProgramFiles32Bit=!ProgramFiles!"
) else (
set "ProgramFiles32Bit=!ProgramFiles(x86)!"
)
set "BuildExe=!ProgramFiles32Bit!\MSBuild\14.0\Bin\MSBuild.exe"
if not exist "!BuildExe!" (
echo.ERROR: MSBuild not found at "!BuildExe!"!
pause
exit /b
)
"!BuildExe!" /v:minimal /p:Configuration=Release "TTMouseclickSimulator\TTMouseclickSimulator.csproj"
if not errorlevel 1 (
echo.
echo.Build successful^^!
)
pause
|
Update the build script to use delayed environment variable expansion and instruct MSBuild to use a less verbose output.
|
Update the build script to use delayed environment variable expansion and instruct MSBuild to use a less verbose output.
|
Batchfile
|
mit
|
TTExtensions/MouseClickSimulator
|
4fe2173c3cc7f5bdea0f597c31c9295869237cc9
|
build.cmd
|
build.cmd
|
@ECHO OFF
SETLOCAL
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
SET SOLUTION_PATH=%~dp0src\CodeFormatter.sln
IF EXIST %CACHED_NUGET% goto restore
echo Downloading latest version of NuGet.exe...
IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '%CACHED_NUGET%'"
:restore
IF EXIST "%~dp0src\packages" goto build
%CACHED_NUGET% restore %SOLUTION_PATH%
:build
"%ProgramFiles(x86)%\MSBuild\14.0\bin\MSBuild.exe" %SOLUTION_PATH% /p:OutDir="%~dp0bin " /nologo /m /v:m /flp:verbosity=normal %*
|
@ECHO OFF
SETLOCAL
SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe
SET SOLUTION_PATH=%~dp0src\CodeFormatter.sln
SET VS2015_BUILD_TOOLS_PATH="%ProgramFiles(x86)%\MSBuild\14.0\bin\MSBuild.exe"
IF NOT EXIST %VS2015_BUILD_TOOLS_PATH% (
echo In order to build or run this tool you need either Visual Studio 2015 Preview or
echo Microsoft Build Tools 2015 Preview tools installed.
echo.
echo Visit http://www.visualstudio.com/en-us/downloads/visual-studio-2015-downloads-vs
echo to download either.
goto :eof
)
IF EXIST %CACHED_NUGET% goto restore
echo Downloading latest version of NuGet.exe...
IF NOT EXIST %LocalAppData%\NuGet md %LocalAppData%\NuGet
@powershell -NoProfile -ExecutionPolicy unrestricted -Command "$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest 'https://www.nuget.org/nuget.exe' -OutFile '%CACHED_NUGET%'"
:restore
IF EXIST "%~dp0src\packages" goto build
%CACHED_NUGET% restore %SOLUTION_PATH%
:build
"%ProgramFiles(x86)%\MSBuild\14.0\bin\MSBuild.exe" %SOLUTION_PATH% /p:OutDir="%~dp0bin " /nologo /m /v:m /flp:verbosity=normal %*
|
Add a helpful message when tools are missing
|
Add a helpful message when tools are missing
While you can build the unit tests and run them without Visual Studio
2015 (or the build tools) installed, you need to have it installed to
run the program or build.cmd. Generate a helpful error when these
are missing.
|
Batchfile
|
mit
|
BertTank/codeformatter,rollie42/codeformatter,srivatsn/codeformatter,hickford/codeformatter,mmitche/codeformatter,shiftkey/codeformatter,BradBarnich/codeformatter,twsouthwick/codeformatter,jaredpar/codeformatter,dotnet/codeformatter,twsouthwick/codeformatter,david-mitchell/codeformatter,jeremyabbott/codeformatter,dotnet/codeformatter,mmitche/codeformatter,cbjugstad/codeformatter,shiftkey/Octokit.CodeFormatter,weltkante/codeformatter,Maxwe11/codeformatter,kharaone/codeformatter,rainersigwald/codeformatter,michaelcfanning/codeformatter
|
acf3570ebeb734805e1c66a0f138d7d761a2625d
|
acqEngine/build.bat
|
acqEngine/build.bat
|
if exist classes rmdir classes /s /q
if exist build rmdir build /s /q
mkdir classes
mkdir build
xcopy /E /y src classes\
"%JAVA_HOME%\bin\java" -cp ../../3rdpartypublic/classext/clojure.jar;../MMCoreJ_wrap/MMCoreJ.jar;../../3rdpartypublic/classext/ij.jar;../mmstudio/MMJ_.jar;../../3rdpartypublic/classext/bsh-2.0b4.jar;./src -Dclojure.compile.path=classes clojure.lang.Compile org.micromanager.acq-engine
xcopy /E /y src build\
xcopy classes\org\micromanager\AcquisitionEngine2010.class build\org\micromanager
"%JAVA_HOME%\bin\jar" cf MMAcqEngine.jar -C build\ .
copy /Y MMAcqEngine.jar ..\bin_Win32\
copy /Y MMAcqEngine.jar ..\bin_x64\
copy /Y MMAcqEngine.jar ..\Install_Win32\micro-manager\plugins\Micro-Manager"
copy /Y MMAcqEngine.jar ..\Install_x64\micro-manager\plugins\Micro-Manager"
|
if exist classes rmdir classes /s /q
if exist build rmdir build /s /q
mkdir classes
mkdir build
xcopy /E /y src classes\
"%JAVA_HOME%\bin\java" -cp ../../3rdpartypublic/classext/clojure.jar;../MMCoreJ_wrap/MMCoreJ.jar;../../3rdpartypublic/classext/ij.jar;../mmstudio/MMJ_.jar;../../3rdpartypublic/classext/bsh-2.0b4.jar;./src -Dclojure.compile.path=classes clojure.lang.Compile org.micromanager.acq-engine
"%JAVA_HOME%\bin\jar" cf MMAcqEngine.jar -C classes\ .
copy /Y MMAcqEngine.jar ..\bin_Win32\
copy /Y MMAcqEngine.jar ..\bin_x64\
copy /Y MMAcqEngine.jar ..\Install_Win32\micro-manager\plugins\Micro-Manager"
copy /Y MMAcqEngine.jar ..\Install_x64\micro-manager\plugins\Micro-Manager"
|
Bring back AOT compiling for acquisition engine
|
Bring back AOT compiling for acquisition engine
git-svn-id: 03a8048b5ee8463be5048a3801110fb50f378627@11162 d0ab736e-dc22-4aeb-8dc9-08def0aa14fd
|
Batchfile
|
mit
|
kmdouglass/Micro-Manager,kmdouglass/Micro-Manager
|
f590957e22fdeb0314d1e93544f34b4926493e26
|
pack.bat
|
pack.bat
|
.nuget\nuget.exe pack -Build -Symbols -Properties Configuration=Release -OutputDirectory ..\..\packages Library\Library.csproj
.nuget\nuget.exe pack -Build -Symbols -Properties Configuration=Release -OutputDirectory ..\..\packages Library\Mvc.csproj
|
.nuget\nuget.exe pack -Build -Symbols -Properties Configuration=Release -OutputDirectory ..\..\packages Library\Library.csproj
.nuget\nuget.exe pack -Build -Symbols -Properties Configuration=Release -OutputDirectory ..\..\packages MVC\Mvc.csproj
|
Fix paths in build script
|
Fix paths in build script
|
Batchfile
|
bsd-2-clause
|
mios-fi/mios.validation
|
801b556996e00b75d27d4a39983f12799fb0ed5a
|
scripts/slave/drmemory/build_env.bat
|
scripts/slave/drmemory/build_env.bat
|
:: Sets up the environment for use with MSVS tools and CMake.
@echo off
setlocal
:: cmd for loops are really hard, so I hardcoded the list of MSVS paths.
set vcvars="%PROGRAMFILES%\Microsoft Visual Studio 11.0\VC\bin\vcvars32.bat"
if exist %vcvars% goto found_vcvars
set vcvars="%PROGRAMFILES%\Microsoft Visual Studio 10.0\VC\bin\vcvars32.bat"
if exist %vcvars% goto found_vcvars
:: VS 2008 vcvars isn't standalone, it needs this env var.
set VS90COMNTOOLS=%PROGRAMFILES%\Microsoft Visual Studio 9.0\Common7\Tools\
set vcvars="%PROGRAMFILES%\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat"
if exist %vcvars% goto found_vcvars
:found_vcvars
call %vcvars%
:: Add the normal CMake install path.
set PATH=%PROGRAMFILES%\CMake 2.8\bin;%PATH%
echo Final PATH:
echo %PATH%
%*
|
:: Sets up the environment for use with MSVS tools and CMake.
@echo off
setlocal
:: cmd for loops are really hard, so I hardcoded the list of MSVS paths.
set vcvars="%PROGRAMFILES%\Microsoft Visual Studio 11.0\VC\bin\vcvars32.bat"
if exist %vcvars% goto found_vcvars
set vcvars="%PROGRAMFILES%\Microsoft Visual Studio 10.0\VC\bin\vcvars32.bat"
if exist %vcvars% goto found_vcvars
:: VS 2008 vcvars isn't standalone, it needs this env var.
set VS90COMNTOOLS=%PROGRAMFILES%\Microsoft Visual Studio 9.0\Common7\Tools\
set vcvars="%PROGRAMFILES%\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat"
if exist %vcvars% goto found_vcvars
:found_vcvars
call %vcvars%
:: Add the normal CMake install path.
set PATH=%PROGRAMFILES%\CMake 2.8\bin;%PATH%
:: Add 7z.exe to PATH.
set PATH=%PROGRAMFILES%\7-Zip;%PATH%
echo Final PATH:
echo %PATH%
%*
|
Add 7z.exe to PATH for drmemory build environment
|
Add 7z.exe to PATH for drmemory build environment
[email protected]
BUG=154895
Review URL: https://codereview.chromium.org/11196005
git-svn-id: 239fca9b83025a0b6f823aeeca02ba5be3d9fd76@162207 0039d316-1c4b-4281-b951-d872f2087c98
|
Batchfile
|
bsd-3-clause
|
eunchong/build,eunchong/build,eunchong/build,eunchong/build
|
94ff617da4a2ec1da31d81d82333a6fe5815e5ee
|
build.bat
|
build.bat
|
set projectPath=%~dp0
if %projectPath:~-1%==\ set projectPath=%projectPath:~0,-1%
set releasePath=%projectPath%\.release
mkdir "%releasePath%"
for /f "tokens=*" %%a in ('type version.txt') do set version=%%a
del "%releasePath%\shareical_%version%.zip"
"build_tools\7za.exe" a -tzip -r "%releasePath%\shareical_%version%.zip" "%projectPath%\*.*" -xr!.* -xr!build_tools -xr!build.bat -xr!composer.json -xr!composer.lock -xr!composer.phar -xr!shareical.phpproj -xr!shareical.phpproj.user -xr!shareical.sln
"build_tools\7za.exe" d -tzip -r "%releasePath%\shareical_%version%.zip" components
|
set projectPath=%~dp0
if %projectPath:~-1%==\ set projectPath=%projectPath:~0,-1%
set releasePath=%projectPath%\.release
mkdir "%releasePath%"
for /f "tokens=*" %%a in ('type version.txt') do set version=%%a
del "%releasePath%\shareical_%version%.zip"
"build_tools\7za.exe" a -tzip -r "%releasePath%\shareical_%version%.zip" "%projectPath%\*.*" -xr!.* -xr!build_tools -xr!build.bat -xr!composer.json -xr!composer.lock -xr!composer.phar -xr!shareical.phpproj -xr!shareical.phpproj.user -xr!shareical.sln
rem "build_tools\7za.exe" d -tzip -r "%releasePath%\shareical_%version%.zip" components
|
Fix missing files in release ZIP didn't work, will do this later...
|
Fix missing files in release ZIP didn't work, will do this later...
|
Batchfile
|
mit
|
berrnd/shareical,berrnd/shareical
|
abc531e74e74bb1ade54832a2126f4b326f19efb
|
build.cmd
|
build.cmd
|
@echo off
set config=%1
if "%config%" == "" (
set config=Release
)
set version=0.1.2.1
if not "%PackageVersion%" == "" (
set version=%PackageVersion%
)
set nuget=
if "%nuget%" == "" (
set nuget=src\.nuget\nuget.exe
)
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild src\Nancy.ReSharper.Plugin.sln /t:Rebuild /p:Configuration="%config%" /m /v:M /fl /flp:LogFile=msbuild.log;Verbosity=Normal /nr:false
%nuget% pack "src\.nuget\Nancy.ReSharper.nuspec" -NoPackageAnalysis -verbosity detailed -o . -Version %version% -p Configuration="%config%"
|
@echo off
set config=%1
if "%config%" == "" (
set config=Release
)
set version=0.1.2.2-EAP-20131112
if not "%PackageVersion%" == "" (
set version=%PackageVersion%
)
set nuget=
if "%nuget%" == "" (
set nuget=src\.nuget\nuget.exe
)
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild src\Nancy.ReSharper.Plugin.sln /t:Rebuild /p:Configuration="%config%" /m /v:M /fl /flp:LogFile=msbuild.log;Verbosity=Normal /nr:false
%nuget% pack "src\.nuget\Nancy.ReSharper.nuspec" -NoPackageAnalysis -verbosity detailed -o . -Version %version% -p Configuration="%config%"
|
Mark package as pre-release until 8.1 is released
|
Mark package as pre-release until 8.1 is released
|
Batchfile
|
mit
|
NancyFx/Nancy.ReSharper,hmemcpy/Nancy.ReSharper,NancyFx/Nancy.ReSharper
|
78232017864df06a6648809bdf1bcce5e1954e51
|
jenkins/windows_c.cmd
|
jenkins/windows_c.cmd
|
@REM Copyright (c) Microsoft. All rights reserved.
@REM Licensed under the MIT license. See LICENSE file in the project root for full license information.
setlocal
set build-root=%~dp0..
rem // resolve to fully qualified path
for %%i in ("%build-root%") do set build-root=%%~fi
REM -- C --
cd %build-root%\c\build_all\windows
call build.cmd --run-e2e-tests --build-traceabilitytool %*
if errorlevel 1 goto :eof
cd %build-root%
|
@REM Copyright (c) Microsoft. All rights reserved.
@REM Licensed under the MIT license. See LICENSE file in the project root for full license information.
setlocal
set build-root=%~dp0..
rem // resolve to fully qualified path
for %%i in ("%build-root%") do set build-root=%%~fi
REM -- C --
cd %build-root%\c\build_all\windows
call build.cmd --use-websockets --run-e2e-tests --build-traceabilitytool %*
if errorlevel 1 goto :eof
cd %build-root%
|
Modify to build WebSockets 32-bit
|
Modify to build WebSockets 32-bit
|
Batchfile
|
mit
|
kevinledinh/azure-iot-sdks,kevinledinh/azure-iot-sdks,kevinledinh/azure-iot-sdks,Eclo/azure-iot-sdks,Eclo/azure-iot-sdks,kevinledinh/azure-iot-sdks,Eclo/azure-iot-sdks,kevinledinh/azure-iot-sdks,kevinledinh/azure-iot-sdks,kevinledinh/azure-iot-sdks,kevinledinh/azure-iot-sdks,kevinledinh/azure-iot-sdks,Eclo/azure-iot-sdks,Eclo/azure-iot-sdks,Eclo/azure-iot-sdks,Eclo/azure-iot-sdks,Eclo/azure-iot-sdks,Eclo/azure-iot-sdks
|
23c7701c1fab401a45f707c9abac101c6be9ce56
|
build.bat
|
build.bat
|
@mkdir _shake 2> nul
@ghc --make Main.hs -rtsopts -with-rtsopts=-I0 -outputdir=_shake -o _shake/build && _shake\build --lint --directory ".." %*
|
@mkdir _shake 2> nul
@ghc --make src/Main.hs -isrc -rtsopts -with-rtsopts=-I0 -outputdir=_shake -o _shake/build && _shake\build --lint --directory ".." %*
|
Fix paths to source files.
|
Fix paths to source files.
|
Batchfile
|
bsd-3-clause
|
snowleopard/hadrian,sdiehl/ghc,sdiehl/ghc,quchen/shaking-up-ghc,bgamari/shaking-up-ghc,sdiehl/ghc,snowleopard/shaking-up-ghc,sdiehl/ghc,izgzhen/hadrian,sdiehl/ghc,sdiehl/ghc,sdiehl/ghc
|
33e6b9b8b9c8bcb14ff1a07cd30c037c88dc7f6e
|
Start.bat
|
Start.bat
|
Rem This batch file will run the Ring Notepad Application.
Rem Ring Notepad is just a sample about what we can do using Ring in little hours.
Rem Using Ring Notepad we can write and execute Ring programs quickly.
Rem Author : Mahmoud Fayed <[email protected]>
echo off
cls
cd applications
cd rnote
"../../bin/ring.exe" rnote.ring
|
Rem This batch file will run the Ring Notepad Application.
Rem Ring Notepad is just a sample about what we can do using Ring in little hours.
Rem Using Ring Notepad we can write and execute Ring programs quickly.
Rem Author : Mahmoud Fayed <[email protected]>
echo off
cls
cd applications
cd rnote
start ../../bin/ringw.exe rnote.ring
|
Update start.bar - Using ringw.exe instead of ring.exe to run the Ring Notepad - To hide the console window.
|
Update start.bar - Using ringw.exe instead of ring.exe to run the Ring Notepad - To hide the console window.
|
Batchfile
|
mit
|
ring-lang/ring,ring-lang/ring,ring-lang/ring,ring-lang/ring,ring-lang/ring,ring-lang/ring,ring-lang/ring,ring-lang/ring
|
c728c91227436f09b6f921d7922500777453dfcc
|
build.cmd
|
build.cmd
|
mkdir bin
ilasm /dll src\PtrUtils.il /out:bin\System.Slice.netmodule
csc /t:library /debug:pdbonly /unsafe /o+ /addmodule:bin\System.Slice.netmodule /out:bin\System.Slice.dll src\*.cs
csc /debug:pdbonly /unsafe /r:bin\System.Slice.dll /out:bin\System.Slice.Test.exe tests\*.cs
|
mkdir bin
ilasm /dll src\PtrUtils.il /out:bin\System.Slice.Core.netmodule
csc /t:module /debug:pdbonly /unsafe /o+ /addmodule:bin\System.Slice.Core.netmodule /out:bin\System.Slice.netmodule src\*.cs
link /dll /out:bin\System.Slice.dll bin\System.Slice.Core.netmodule bin\System.Slice.netmodule
csc /debug:pdbonly /unsafe /r:bin\System.Slice.dll /out:bin\System.Slice.Test.exe tests\*.cs
|
Use link to create a single dll.
|
Use link to create a single dll.
Gets rid of the netmodule, specifically.
|
Batchfile
|
mit
|
kurtschelfthout/slice.net
|
3e894400c16ca67636bb2a388bb77d49c2932100
|
build.cmd
|
build.cmd
|
@echo off
setlocal
pushd "%~dp0"
call :main %*
popd
goto :EOF
:main
set MSBUILDEXE=%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe
if not exist "%MSBUILDEXE%" (
echo The .NET Framework 4.0 does not appear to be installed on this
echo machine, which is required to build the solution.
exit /b 1
)
set EnableNuGetPackageRestore=true
for %%s in (src\*.sln) do for %%c in (debug release) do "%MSBUILDEXE%" %%s /p:Configuration=%%c /v:m %*
|
@echo off
setlocal
pushd "%~dp0"
call :main %*
popd
goto :EOF
:main
set MSBUILDEXE=%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe
if not exist "%MSBUILDEXE%" (
echo The .NET Framework 4.0 does not appear to be installed on this
echo machine, which is required to build the solution.
exit /b 1
)
set EnableNuGetPackageRestore=true
call :build Debug && call :build Release
goto :EOF
:build
"%MSBUILDEXE%" src\NCrontab.sln /p:Configuration=%1 /v:m %2 %3 %4 %5 %6 %7 %8 %9
goto :EOF
|
Build script error propagation fix
|
Build script error propagation fix
|
Batchfile
|
apache-2.0
|
atifaziz/NCrontab,atifaziz/NCrontab
|
73b35e4caee1b1ee031bf84398b4679dd8f29080
|
build.bat
|
build.bat
|
@echo off
if not exist mercury-x64 mkdir mercury-x64
pushd mercury-x64
set CommonCompilerFlags=-Od -I.. -I..\glfw-3.1.1\include -MTd -fp:fast -fp:except- -Gm- -GR- -EHa- -Oi -W4
set CommonLinkerFlags= -incremental:no -opt:ref user32.lib gdi32.lib winmm.lib glfw3dll.lib opengl32.lib -libpath:..\glfw-x64\src\Release
cl %CommonCompilerFlags% ..\mercury.cpp /link %CommonLinkerFlags%
popd
|
@echo off
if not exist mercury-x64 mkdir mercury-x64
pushd mercury-x64
set CommonCompilerFlags=-nologo -Od -I.. -I..\glfw-3.1.1\include -MTd -fp:fast -fp:except- -Gm- -GR- -EHa- -Oi -W4 -WX -wd4201 -wd4100 -wd4189 -wd4505 -wd4127
set CommonLinkerFlags= -incremental:no -opt:ref user32.lib gdi32.lib winmm.lib glfw3dll.lib opengl32.lib -libpath:..\glfw-x64\src\Release
cl %CommonCompilerFlags% ..\mercury.cpp /link %CommonLinkerFlags%
popd
|
Add trivial warnings to ignore list
|
Add trivial warnings to ignore list
|
Batchfile
|
mit
|
darkedge/mercury,darkedge/mercury,darkedge/mercury,darkedge/mercury
|
f0ee110a125253c084e2932e9d75ad423de8226e
|
build.cmd
|
build.cmd
|
@ECHO OFF
REM NOTE: This file was auto-generated with `IB.exe prepare` from `IntelliFactory.Build`.
setlocal
set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.1\Framework\v4.0
set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.0\Framework\v4.0
set PATH=%PATH%;%ProgramFiles%\Microsoft SDKs\F#\3.1\Framework\v4.0
set PATH=%PATH%;%ProgramFiles%\Microsoft SDKs\F#\3.0\Framework\v4.0
set PATH=%PATH%;tools\NuGet
nuget install IntelliFactory.Build -nocache -pre -ExcludeVersion -o tools\packages
fsi.exe --exec build.fsx %*
|
@ECHO OFF
REM NOTE: This file was auto-generated with `IB.exe prepare` from `IntelliFactory.Build`.
setlocal
set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.1\Framework\v4.0
set PATH=%PATH%;%ProgramFiles(x86)%\Microsoft SDKs\F#\3.0\Framework\v4.0
set PATH=%PATH%;%ProgramFiles%\Microsoft SDKs\F#\3.1\Framework\v4.0
set PATH=%PATH%;%ProgramFiles%\Microsoft SDKs\F#\3.0\Framework\v4.0
set PATH=%PATH%;tools\NuGet
nuget install IntelliFactory.Build -nocache -pre -ExcludeVersion -o tools\packages
fsi.exe --exec build.fsx %*
|
Rename Zafir packages to WebSharper
|
Rename Zafir packages to WebSharper
|
Batchfile
|
apache-2.0
|
intellifactory/websharper.google.maps
|
0a6eb7fac4d16577abf49410ba7111ddbac6b6ae
|
recipes/ldc/bld.bat
|
recipes/ldc/bld.bat
|
dir
7za x lts\ldc2-1.9.0-windows-x64.7z -o%SRC_DIR%\lts
mkdir build
cd build
cmake -G Ninja ^
-DCMAKE_BUILD_TYPE=Release ^
-DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^
-DCMAKE_PREFIX_PATH=%LIBRARY_PREFIX% ^
-DBUILD_SHARED_LIBS=ON ^
-DD_COMPILER=%SRC_DIR%\lts\ldc2-1.9.0-windows-x64\bin\ldmd2.exe ^
..
ninja install
ldc2 -version
|
dir
7za x lts\ldc2-1.9.0-windows-x64.7z -o%SRC_DIR%\lts
mkdir build
cd build
cmake -G Ninja ^
-DCMAKE_BUILD_TYPE=Release ^
-DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^
-DCMAKE_PREFIX_PATH=%LIBRARY_PREFIX% ^
-DD_COMPILER=%SRC_DIR%\lts\ldc2-1.9.0-windows-x64\bin\ldmd2.exe ^
..
ninja install
ldc2 -version
|
Remove build shared libs as it is not supported
|
Remove build shared libs as it is not supported
|
Batchfile
|
bsd-3-clause
|
stuertz/staged-recipes,rmcgibbo/staged-recipes,dschreij/staged-recipes,kwilcox/staged-recipes,Juanlu001/staged-recipes,cpaulik/staged-recipes,goanpeca/staged-recipes,guillochon/staged-recipes,shadowwalkersb/staged-recipes,mcs07/staged-recipes,hadim/staged-recipes,goanpeca/staged-recipes,birdsarah/staged-recipes,synapticarbors/staged-recipes,ceholden/staged-recipes,johanneskoester/staged-recipes,asmeurer/staged-recipes,mariusvniekerk/staged-recipes,SylvainCorlay/staged-recipes,patricksnape/staged-recipes,dschreij/staged-recipes,isuruf/staged-recipes,chrisburr/staged-recipes,jakirkham/staged-recipes,cpaulik/staged-recipes,rmcgibbo/staged-recipes,shadowwalkersb/staged-recipes,pmlandwehr/staged-recipes,Juanlu001/staged-recipes,rvalieris/staged-recipes,sodre/staged-recipes,chrisburr/staged-recipes,basnijholt/staged-recipes,guillochon/staged-recipes,ReimarBauer/staged-recipes,rvalieris/staged-recipes,mariusvniekerk/staged-recipes,synapticarbors/staged-recipes,hadim/staged-recipes,sodre/staged-recipes,igortg/staged-recipes,asmeurer/staged-recipes,jochym/staged-recipes,conda-forge/staged-recipes,jochym/staged-recipes,petrushy/staged-recipes,jjhelmus/staged-recipes,kwilcox/staged-recipes,sodre/staged-recipes,ocefpaf/staged-recipes,stuertz/staged-recipes,barkls/staged-recipes,barkls/staged-recipes,ReimarBauer/staged-recipes,patricksnape/staged-recipes,ceholden/staged-recipes,mcs07/staged-recipes,igortg/staged-recipes,SylvainCorlay/staged-recipes,jjhelmus/staged-recipes,ocefpaf/staged-recipes,petrushy/staged-recipes,birdsarah/staged-recipes,isuruf/staged-recipes,scopatz/staged-recipes,johanneskoester/staged-recipes,basnijholt/staged-recipes,scopatz/staged-recipes,conda-forge/staged-recipes,pmlandwehr/staged-recipes,jakirkham/staged-recipes
|
2a6cf4dff59bd7461d3bc028636edc1e1ed54676
|
sdk-build-tools/build-packages-teamcity.cmd
|
sdk-build-tools/build-packages-teamcity.cmd
|
@ECHO OFF
REM TeamCity chokes on the COMPONENTSVERSION processing here, it thinks
REM COMPONENTSVERSION is required going into the build step when we would
REM define it in the build step.
SETLOCAL
REM ---------------------------------------------------------------------------
REM Check usage
REM ---------------------------------------------------------------------------
IF "%1" == "" GOTO Usage
SET BUILD_NUMBER=%1
REM ---------------------------------------------------------------------------
REM Build packages
REM ---------------------------------------------------------------------------
SET /P COMPONENTSVERSION=<ver.txt
ECHO COMPONENTSVERSION=%COMPONENTSVERSION%
call build-packages.cmd %COMPONENTSVERSION%.%BUILD_NUMBER%
GOTO :EOF
:Usage
ECHO USAGE: build_packages_teamcity.cmd (build-number)
EXIT 1
GOTO :EOF
ENDLOCAL
|
@ECHO OFF
REM TeamCity chokes on the COMPONENTS_VERSION processing here, it thinks
REM COMPONENTS_VERSION is required going into the build step when we would
REM define it in the build step.
SETLOCAL
REM ---------------------------------------------------------------------------
REM Check usage
REM ---------------------------------------------------------------------------
IF "%1" == "" GOTO Usage
SET BUILD_NUMBER=%1
ECHO BUILD_NUMBER=%BUILD_NUMBER%
REM ---------------------------------------------------------------------------
REM Build packages
REM ---------------------------------------------------------------------------
SET /P COMPONENTS_VERSION=<ver.txt
ECHO COMPONENTS_VERSION=%COMPONENTS_VERSION%
SET BUILD_VERSION=%COMPONENTS_VERSION%.%BUILD_NUMBER%
ECHO BUILD_VERSION=%BUILD_VERSION%
call build-packages.cmd %BUILD_VERSION%
GOTO :EOF
:Usage
ECHO USAGE: build_packages_teamcity.cmd (build-number)
EXIT 1
GOTO :EOF
ENDLOCAL
|
Debug output for the build
|
Debug output for the build
|
Batchfile
|
mit
|
SoundMetrics/aris-file-sdk,SoundMetrics/aris-file-sdk,SoundMetrics/aris-file-sdk
|
55ebc4fb6f99769a8bf70d8e38ada42b10d754a1
|
windows/nsis-installer/oq-server.bat
|
windows/nsis-installer/oq-server.bat
|
@echo off
setlocal
set mypath=%~dp0
set PATH=%mypath%\python2.7;%PATH%
set PYTHONPATH=%mypath%\lib
set OQ_SITE_CFG_PATH=%mypath%\openquake.cfg
set OQ_HOST=127.0.0.1
set OQ_PORT=8800
echo Please wait ...
REM Start the DbServer in background but within the same context
start "OpenQuake DB server" /B python.exe -m openquake.server.dbserver
REM Make sure that the dbserver is up and running
call:sleep 5
REM Start the WebUI using django
start "OpenQuake WebUI server" /B python.exe -m openquake.server.manage runserver %OQ_HOST%:%OQ_PORT%
REM Make sure that the dbserver is up and running
call:sleep 2
REM Start the browser
start http://localhost:%OQ_PORT%
endlocal
exit /b 0
:sleep
setlocal
if exist C:\Windows\System32\timeout.exe (
timeout /t %~1 /nobreak > NUL
) else (
REM Windows XP hack
ping 192.0.2.2 -n %~1 -w 1000 > NUL
)
endlocal
|
@echo off
setlocal
set mypath=%~dp0
set PATH=%mypath%\python2.7;%PATH%
set PYTHONPATH=%mypath%\lib
set OQ_SITE_CFG_PATH=%mypath%\openquake.cfg
set OQ_HOST=127.0.0.1
set OQ_PORT=8800
echo Please wait ...
REM Start the WebUI using django
start "OpenQuake WebUI server" /B python.exe -m openquake.commands webui start %OQ_HOST%:%OQ_PORT%
REM Make sure that the dbserver is up and running
call:check_django
REM Start the browser
start http://localhost:%OQ_PORT%
endlocal
exit /b 0
:check_django
setlocal
ping -n 1 %OQ_HOST
if ERRORLEVEL 1
goto check_django
endlocal
:sleep
setlocal
if exist C:\Windows\System32\timeout.exe (
timeout /t %~1 /nobreak > NUL
) else (
REM Windows XP hack
ping 192.0.2.2 -n %~1 -w 1000 > NUL
)
endlocal
|
Use new webui start command on Win and check status before opening the browser
|
Use new webui start command on Win and check status before opening the browser
|
Batchfile
|
agpl-3.0
|
gem/oq-nsis,gem/oq-installers,gem/oq-installers
|
ac742a646831d7295d15a6082db2c1f7bc51917e
|
bin/stree.cmd
|
bin/stree.cmd
|
@echo off
setlocal enabledelayedexpansion
set directory=%~f1
if [%directory%] == [] set directory=%CD%
if exist %directory%\NUL (
set directory=%directory%
) else (
set directory=%~dp1
)
pushd %directory%
for /f "delims=" %%i in ('git rev-parse --show-toplevel') do set directory=%%i
git rev-parse --show-toplevel 1> nul 2> nul
if %errorlevel% EQU 0 (
start "" "C:\Program Files (x86)\Atlassian\SourceTree\SourceTree.exe" -f %directory%
)
popd
endlocal
|
@echo off
setlocal enabledelayedexpansion
set directory=%~f1
if [%directory%] == [] set directory=%CD%
if exist %directory%\NUL (
set directory=%directory%
) else (
set directory=%~dp1
)
pushd %directory%
for /f "delims=" %%i in ('git rev-parse --show-toplevel') do set directory=%%i
git rev-parse --show-toplevel 1> nul 2> nul
if %errorlevel% EQU 0 (
start "" "C:\Program Files (x86)\Atlassian\SourceTree\SourceTree.exe" -f %directory:/=\%
)
popd
endlocal
|
Replace forward slashes with back slashes
|
Replace forward slashes with back slashes
|
Batchfile
|
mit
|
ArloL/dotfiles,ArloL/dotfiles
|
2f27374218e99e4dd8439fa70dafaa0e923c4a23
|
example/msvcbuild.bat
|
example/msvcbuild.bat
|
cd ..\src
call msvcbuild.bat static
cd ..\ext\re
call msvcbuild.bat
cd ..\..\ext\tsx
call msvcbuild.bat
cd ..\..\sample
@setlocal
@set SCHEME_H_DIR=..\src
@set MSCOMPILE=cl /nologo /O2 /W3 /c /D_CRT_SECURE_NO_WARNINGS /I%SCHEME_H_DIR%
@set MSLINK=link /nologo
@set EXT_LIBS=..\ext\re\lib\re.lib ..\ext\tsx\lib\tsx.lib
@if not exist bin\ (
mkdir bin
)
%MSCOMPILE% /MT repl.c
%MSLINK% /out:bin\repl.exe repl.obj ..\src\lib\miniscm.lib %EXT_LIBS%
del repl.obj
|
cd ..\src
call msvcbuild.bat static
cd ..\ext\re
call msvcbuild.bat
cd ..\..\ext\tsx
call msvcbuild.bat
cd ..\..\example
@setlocal
@set SCHEME_H_DIR=..\src
@set MSCOMPILE=cl /nologo /O2 /W3 /c /D_CRT_SECURE_NO_WARNINGS /I%SCHEME_H_DIR%
@set MSLINK=link /nologo
@set EXT_LIBS=..\ext\re\lib\re.lib ..\ext\tsx\lib\tsx.lib
@if not exist bin\ (
mkdir bin
)
%MSCOMPILE% /MT repl.c
%MSLINK% /out:bin\repl.exe repl.obj ..\src\lib\miniscm.lib %EXT_LIBS%
del repl.obj
|
Fix typo in example's bat
|
Fix typo in example's bat
|
Batchfile
|
mit
|
ignorabimus/minischeme,ignorabimus/minischeme
|
9d815c1e2acfb957d7a68d5c1956aab4150bc0c8
|
windows-install/win64/pack_github.bat
|
windows-install/win64/pack_github.bat
|
cd build
md output
copy *.exe output
copy "c:\vcpkg\installed\x64-windows\bin\sqlite3.dll" output
cd output
windeployqt codequery.exe
dir/b/a/s
candle.exe -ext WixUIExtension -ext WixUtilExtension "..\..\windows-install\win64\codequery64.wxs"
light.exe -ext WixUIExtension -ext WixUtilExtension codequery64.wixobj
|
set PATH=%PATH%;"%WIX%\bin"
cd build
md output
copy *.exe output
copy "c:\vcpkg\installed\x64-windows\bin\sqlite3.dll" output
cd output
windeployqt codequery.exe
dir/b/a/s
candle.exe -ext WixUIExtension -ext WixUtilExtension "..\..\windows-install\win64\codequery64.wxs"
light.exe -ext WixUIExtension -ext WixUtilExtension codequery64.wixobj
|
Add Wix to env GHA
|
Add Wix to env GHA
|
Batchfile
|
mpl-2.0
|
ruben2020/codequery,ruben2020/codequery,ruben2020/codequery,ruben2020/codequery,ruben2020/codequery
|
e44c28029739162e9e5c0ab76f1931cce91b24be
|
builds/msvc/build/buildall.bat
|
builds/msvc/build/buildall.bat
|
@ECHO OFF
ECHO.
ECHO Downloading Libbitcoin Explorer dependencies from NuGet
CALL nuget.exe install ..\vs2013\bitcoin-explorer\packages.config
CALL nuget.exe install ..\vs2013\libbitcoin-explorer\packages.config
CALL nuget.exe install ..\vs2013\libbitcoin-explorer-test\packages.config
ECHO.
CALL buildbase.bat ..\vs2013\libbitcoin-explorer.sln 12
ECHO.
PAUSE
|
@ECHO OFF
ECHO.
ECHO Downloading Libbitcoin Explorer dependencies from NuGet
CALL nuget.exe install ..\vs2013\bx\packages.config
CALL nuget.exe install ..\vs2013\libbitcoin-explorer\packages.config
CALL nuget.exe install ..\vs2013\libbitcoin-explorer-test\packages.config
ECHO.
CALL buildbase.bat ..\vs2013\libbitcoin-explorer.sln 12
ECHO.
PAUSE
|
Update bx path for nuget refresh.
|
Update bx path for nuget refresh.
|
Batchfile
|
agpl-3.0
|
libtetcoin/libtetcoin-explorer,cancoin/libbitcoin-explorer,libmetrocoin/libmetrocoin-explorer,libmetrocoin/libmetrocoin-explorer,cancoin/libbitcoin-explorer,GroestlCoin/libgroestlcoin-explorer,libtetcoin/libtetcoin-explorer,tuomassiren/libbitcoin-explorer,tuomassiren/libbitcoin-explorer,GroestlCoin/libgroestlcoin-explorer,GroestlCoin/libgroestlcoin-explorer
|
0bdbc6685ca1dd1844f442bf3caa02d65651ce06
|
scripts/windows/input/reprounzip-qt.bat
|
scripts/windows/input/reprounzip-qt.bat
|
@echo off
"%~dp0\python2.7\Scripts\reprounzip-qt.exe" %*
|
@echo off
set PATH=%~dp0;%PATH%
"%~dp0\python2.7\Scripts\reprounzip-qt.exe" %*
|
Fix GUI not finding reprounzip on Windows
|
Fix GUI not finding reprounzip on Windows
If running the GUI on Windows after installing from the installer, and
opening a package by double-clicking (not browsing from the app), the
GUI would fail with a "Couldn't find reprounzip command" message.
|
Batchfile
|
bsd-3-clause
|
ViDA-NYU/reprozip,ViDA-NYU/reprozip,ViDA-NYU/reprozip,ViDA-NYU/reprozip,ViDA-NYU/reprozip
|
3b7ac3da76c8a883a48938bf9505b7b27a851a8c
|
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%
if %MSVS% == 2019 call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Preview\VC\Auxiliary\Build\vcvarsall.bat" %PLATFORM%
rem check compiler version
cl
set PATH=C:\Qt\Tools\QtCreator\bin;%PATH%
|
echo Current build setup MSVS="%MSVS%" PLATFORM="%PLATFORM%" TARGET="%TARGET%"
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%
if %MSVS% == 2019 call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Preview\VC\Auxiliary\Build\vcvarsall.bat" %PLATFORM%
rem check compiler version
cl
set PATH=C:\Qt\Tools\QtCreator\bin;%PATH%
|
Remove VC2013 support from AppVeyor script
|
Remove VC2013 support from AppVeyor script
|
Batchfile
|
bsd-2-clause
|
randombit/botan,randombit/botan,webmaster128/botan,randombit/botan,randombit/botan,webmaster128/botan,webmaster128/botan,randombit/botan,webmaster128/botan,webmaster128/botan
|
46d8789b6162a9792e871434d57332dba7134d68
|
clean.cmd
|
clean.cmd
|
@echo off
pushd "%~dp0"
for %%i in (Debug Release) do "%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\msbuild" /target:Clean /p:Configuration=%%i src\NCrontab.sln
popd
|
@"%~dp0build" /v:n /target:Clean
|
Clean script can simply delegate to build script
|
Clean script can simply delegate to build script
|
Batchfile
|
apache-2.0
|
petlof/ncrontab,vasiliy-vdovichenko/ncrontab,youniss2013/ncrontab,rog1039/ncrontab,amitapl/ncrontab,paulgmiller/ncrontab,bjorskog/ncrontab,paulgmiller/ncrontab,IntranetFactory/ncrontab,xingh/ncrontab,IntranetFactory/ncrontab,cyotek/ncrontab,klunwebale/ncrontab,xingh/ncrontab,joshberry/ncrontab,micheltol/ncrontab,devnarayan/ncrontab,codesharpdev/ncrontab,codeyu/ncrontab,jakesays/ncrontab,dabutvin/ncrontab,JophyJob/ncrontab,DanThiffault/ncrontab
|
405a9c4f2da4755b1e3f7158947d497595b72564
|
tools/release_win.bat
|
tools/release_win.bat
|
PATH=C:\python26;C:\progra~2\7-zip;%PATH%
del /q /s dist\*.*
python setup.py py2exe
cd dist
7z d library.zip jinja2\* dns\* 'graphy\*
del /s w9xpopen.exe
copy ..\README.txt .
7z a namebench_for_Windows.zip -r *
namebench -x -O 8.8.8.8 -t5 -o test.html
start test.html
cd ..
|
PATH=C:\python26;C:\progra~1\7-zip;C:\progra~2\7-zip;%PATH%
del /q /s dist\*.*
python setup.py py2exe
cd dist
7z d library.zip jinja2\* dns\* 'graphy\*
del /s w9xpopen.exe
copy ..\README.txt .
7z a namebench_for_Windows.zip -r *
namebench -x -O 8.8.8.8 -t5 -o test.html
start test.html
cd ..
|
Add Program Files\7-Zip to path
|
Add Program Files\7-Zip to path
|
Batchfile
|
apache-2.0
|
catap/namebench,jimmsta/namebench-1
|
d8efe3b82f2edf173d38dc311afc7d41a9b63d55
|
packer/vagrant/scripts/windows/build-tools.bat
|
packer/vagrant/scripts/windows/build-tools.bat
|
if not exist "C:\Windows\Temp\build-tools.exe" (
powershell -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::TLS12; (New-Object System.Net.WebClient).DownloadFile('https://download.microsoft.com/download/5/f/7/5f7acaeb-8363-451f-9425-68a90f98b238/visualcppbuildtools_full.exe', 'C:\Windows\Temp\build-tools.exe')" <NUL
)
start /wait C:\Windows\Temp\build-tools.exe /Passive /AdminFile A:\buildtools-adminfile.xml
setx PATH "%PATH%;C:\Program Files (x86)\Windows Kits\8.1\bin\x86\" /m
|
if not exist "C:\Windows\Temp\build-tools.exe" (
powershell -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::TLS12; (New-Object System.Net.WebClient).DownloadFile('https://download.microsoft.com/download/5/f/7/5f7acaeb-8363-451f-9425-68a90f98b238/visualcppbuildtools_full.exe', 'C:\Windows\Temp\build-tools.exe')" <NUL
)
start /wait C:\Windows\Temp\build-tools.exe /Passive /AdminFile A:\buildtools-adminfile.xml
setx PATH "%PATH%;C:\Program Files (x86)\Windows Kits\8.1\bin\x86" /m
|
Fix path update to not include trailing backslash
|
Fix path update to not include trailing backslash
|
Batchfile
|
mit
|
chrisroberts/vagrant-installers,chrisroberts/vagrant-installers,mitchellh/vagrant-installers,mitchellh/vagrant-installers,mitchellh/vagrant-installers,mitchellh/vagrant-installers,mitchellh/vagrant-installers,chrisroberts/vagrant-installers,chrisroberts/vagrant-installers,mitchellh/vagrant-installers,chrisroberts/vagrant-installers,chrisroberts/vagrant-installers
|
0eab576026de6baa9b87dd7b56093c07bdc4273e
|
Scripts/BuildGame.bat
|
Scripts/BuildGame.bat
|
@echo off
rem =======================================================
rem Settings
rem =======================================================
set Platform=Win64
set BuildMode=Development
rem =======================================================
rem Release variables
rem =======================================================
set VersionName=%1
set InputProject=%2
set OutputDir=%3
set UAT=%4
rem =======================================================
rem Run UAT
rem =======================================================
%UAT% -ScriptsForProject=%InputProject% BuildCookRun -nocompile -nocompileeditor -installed -nop4 -project=%InputProject% -cook -stage -archive -archivedirectory=%OutputDir% -package -clientconfig=%BuildMode% -ue4exe=UE4Editor-Cmd.exe -clean -pak -compressed -prereqs -distribution -nodebuginfo -createreleaseversion=%VersionName% -targetplatform=%Platform% -build -utf8output
|
@echo off
rem =======================================================
rem Settings
rem =======================================================
set Platform=Win64
set BuildMode=Development
rem =======================================================
rem Release variables
rem =======================================================
set VersionName=%1
set InputProject=%2
set OutputDir=%3
set UAT=%4
rem =======================================================
rem Run UAT
rem =======================================================
%UAT% -ScriptsForProject=%InputProject% BuildCookRun -nocompile -nocompileeditor -installed -nop4 -project=%InputProject% -cook -stage -archive -archivedirectory=%OutputDir% -package -clientconfig=%BuildMode% -ue4exe=UE4Editor-Cmd.exe -clean -pak -compressed -prereqs -distribution -nodebuginfo -createreleaseversion=%VersionName% -targetplatform=%Platform% -build -utf8output -CookCultures=en-US+fr-FR
|
Upgrade build script to include en-EN, fr-FR cultures
|
Upgrade build script to include en-EN, fr-FR cultures
|
Batchfile
|
bsd-3-clause
|
arbonagw/HeliumRain,arbonagw/HeliumRain,arbonagw/HeliumRain,arbonagw/HeliumRain,arbonagw/HeliumRain
|
6d60d6d961f7f523d4ef03287a38a12597bfc2b7
|
mkDistribution.bat
|
mkDistribution.bat
|
@echo "mkDistribution v1.3"
if exist current (
rmdir /s /q current
)
mkdir current
mkdir current\netcf-10
nant -t:netcf-1.0 -D:build.output.dir=current\netcf-10 -buildfile:sharpZLib.build build
mkdir current\netcf-20
nant -t:netcf-2.0 -D:build.output.dir=current\netcf-20 -buildfile:sharpZLib.build build
mkdir current\net-11
nant -t:net-1.1 -D:build.output.dir=current\net-11 -buildfile:sharpZLib.build build
mkdir current\net-20
nant -t:net-2.0 -D:build.output.dir=current\net-20 -buildfile:sharpZLib.build build
mkdir current\doc
copy doc\readme.rtf current\doc
copy doc\Changes.txt current\doc
copy doc\Copying.txt current\doc
copy SharpZipLib.chm current\doc
copy installGAC.bat current
copy uninstallGAC.bat current
"c:\Program Files\EWSoftware\Sandcastle Help File Builder\SandcastleBuilderConsole.exe" .\SharpZipLib.shfb
samples\cs\bin\sz -rc current\SharpZipLib.zip current\*.dll
@echo TODO Compress source to SharpZipLib_SourceSamples.zip
@echo TODO Build Bin Zip files
|
@echo "mkDistribution v1.4"
if exist current (
rmdir /s /q current
)
mkdir current
mkdir current\netcf-10
nant -t:netcf-1.0 -D:build.output.dir=current\netcf-10 -buildfile:sharpZLib.build build
mkdir current\netcf-20
nant -t:netcf-2.0 -D:build.output.dir=current\netcf-20 -buildfile:sharpZLib.build build
mkdir current\net-11
nant -t:net-1.1 -D:build.output.dir=current\net-11 -buildfile:sharpZLib.build build
mkdir current\net-20
nant -t:net-2.0 -D:build.output.dir=current\net-20 -buildfile:sharpZLib.build build
"c:\Program Files\EWSoftware\Sandcastle Help File Builder\SandcastleBuilderConsole.exe" .\SharpZipLib.shfb
mkdir current\doc
copy doc\readme.rtf current\doc
copy doc\Changes.txt current\doc
copy doc\Copying.txt current\doc
copy SharpZipLib.chm current\doc
copy installGAC.bat current
copy uninstallGAC.bat current
samples\cs\bin\sz -rc current\SharpZipLib.zip current\*.dll
@echo TODO Compress source to SharpZipLib_SourceSamples.zip
@echo TODO Build Bin Zip files
|
Build help file before copying it!
|
Build help file before copying it!
|
Batchfile
|
mit
|
McNeight/SharpZipLib
|
d320fd5ce9878a0b62eae42e9964a8f7d6561d54
|
perl/08-pack.cmd
|
perl/08-pack.cmd
|
@echo off
cd /D %~dp0
call settings.cmd
call ..\unxutils.cmd
cd dist\%ARCH%
call pp -B -o psass.exe ^
-I ../../../blib/lib ^
-M Encode::Byte ^
-M List::MoreUtils::XS ^
-M List::MoreUtils::PP ^
-M Win32::ChangeNotify ^
-M Filesys::Notify::Simple ^
CSS-Sass-%RELVERSION%/bin/psass
cd ..\..
REM tested and working, but much bigger size
REM -l "%PERLPATH%/c/bin/_libsass-0.dll" ^
copy %CD%\dist\%ARCH%\psass.exe %CD%\..\create\%XARCH%
|
@echo off
cd /D %~dp0
call settings.cmd
call ..\unxutils.cmd
cd dist\%ARCH%
call pp -B -o psass.exe ^
-I ../../../blib/lib ^
-M Encode::Byte ^
-M PerlIO::encoding ^
-M List::MoreUtils::XS ^
-M List::MoreUtils::PP ^
-M Win32::ChangeNotify ^
-M Filesys::Notify::Simple ^
CSS-Sass-%RELVERSION%/bin/psass
cd ..\..
REM tested and working, but much bigger size
REM -l "%PERLPATH%/c/bin/_libsass-0.dll" ^
copy %CD%\dist\%ARCH%\psass.exe %CD%\..\create\%XARCH%
|
Add missing perl dependency for packer
|
Add missing perl dependency for packer
|
Batchfile
|
mit
|
mgreter/libsass-msi-installer,mgreter/libsass-msi-installer,mgreter/libsass-msi-installer
|
f438217234a0020a61499c0977d604c705e5db86
|
floppy/disablewinupdate.bat
|
floppy/disablewinupdate.bat
|
<!-- :
@echo off
echo ==^> Enabling updates for other products from Microsoft Update
net stop wuauserv
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v EnableFeaturedSoftware /t REG_DWORD /d 1 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v IncludeRecommendedUpdates /t REG_DWORD /d 1 /f
cscript //nologo "%~f0?.wsf"
net start wuauserv
exit /b
----- Begin wsf script --->
<job><script language="VBScript">
Set ServiceManager = CreateObject("Microsoft.Update.ServiceManager")
Set NewUpdateService = ServiceManager.AddService2("7971f918-a847-4430-9279-4a52d1efe18d",7,"")
</script></job>
|
<!-- :
@echo off
echo ==^> Enabling updates for other products from Microsoft Update
net stop wuauserv
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v EnableFeaturedSoftware /t REG_DWORD /d 1 /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v IncludeRecommendedUpdates /t REG_DWORD /d 1 /f
cscript //nologo "%~f0?.wsf"
net start wuauserv
exit /b
----- Begin wsf script --->
<job><script language="VBScript">
Set ServiceManager = CreateObject("Microsoft.Update.ServiceManager")
Set NewUpdateService = ServiceManager.AddService2("7971f918-a847-4430-9279-4a52d1efe18d",7,"")
Const NOT_CONFIGURED = 0
Const DISABLED = 1
Const PROMPT_TO_APPROVE_BEFORE_DOWNLOAD = 2
Const DOWNLOAD_AUTOMATICALLY = 3
Const SCHEDULED_INSTALLATION = 4
Set AutoUpdate = CreateObject("Microsoft.Update.AutoUpdate")
Set AutoUpdateSettings = AutoUpdate.Settings
AutoUpdateSettings.NotificationLevel = DISABLED
AutoUpdateSettings.Save
AutoUpdateSettings.Refresh
</script></job>
|
Disable updates on Windows 2008 R2 and Windows 7
|
Disable updates on Windows 2008 R2 and Windows 7
|
Batchfile
|
apache-2.0
|
boxcutter/windows,HirotakaKato/boxcutter-windows-ja,samepage-labs/windows-templates,TaylorMonacelli/boxcutter-windows,TaylorMonacelli/boxcutter-windows,MSumulong/windows,MSumulong/windows,ambakshi/windows,samepage-labs/windows-templates,quarkslab/windows,StefanScherer/windows,c-owens/windows,MYOB-Technology/packer-sqlserver,seancoyne/windows,TaylorMonacelli/boxcutter-windows,TaylorMonacelli/boxcutter-windows,boxcutter/windows,StefanScherer/windows,boxcutter/windows,quarkslab/windows,c-owens/windows,ambakshi/windows,seancoyne/windows,seancoyne/windows,StefanScherer/windows,HirotakaKato/boxcutter-windows-ja,ambakshi/windows,MSumulong/windows,c-owens/windows,HirotakaKato/boxcutter-windows-ja,quarkslab/windows,samepage-labs/windows-templates
|
0c531a17ab71812eaecb03de7c1b8c3ffadcaaae
|
alltests.cmd
|
alltests.cmd
|
call \ned\bin\switchpy 23
python setup.py develop
nosetests
call \ned\bin\switchpy 24
python setup.py develop
nosetests
call \ned\bin\switchpy 25
python setup.py develop
nosetests
call \ned\bin\switchpy 26
python setup.py develop
nosetests
|
call \ned\bin\switchpy 23
python setup.py develop
nosetests
del coverage\tracer.pyd
nosetests
call \ned\bin\switchpy 24
python setup.py develop
nosetests
del coverage\tracer.pyd
nosetests
call \ned\bin\switchpy 25
python setup.py develop
nosetests
del coverage\tracer.pyd
nosetests
call \ned\bin\switchpy 26
python setup.py develop
nosetests
del coverage\tracer.pyd
nosetests
|
Test the code without a C extension.
|
Test the code without a C extension.
|
Batchfile
|
apache-2.0
|
blueyed/coveragepy,jayhetee/coveragepy,nedbat/coveragepy,blueyed/coveragepy,7WebPages/coveragepy,hugovk/coveragepy,jayhetee/coveragepy,larsbutler/coveragepy,blueyed/coveragepy,7WebPages/coveragepy,hugovk/coveragepy,blueyed/coveragepy,larsbutler/coveragepy,larsbutler/coveragepy,nedbat/coveragepy,nedbat/coveragepy,hugovk/coveragepy,larsbutler/coveragepy,jayhetee/coveragepy,nedbat/coveragepy,nedbat/coveragepy,hugovk/coveragepy,jayhetee/coveragepy,7WebPages/coveragepy,hugovk/coveragepy,jayhetee/coveragepy,7WebPages/coveragepy,blueyed/coveragepy,larsbutler/coveragepy
|
21080c5e76237bb792520564514ee7a8e45d2db4
|
bin/vibe.cmd
|
bin/vibe.cmd
|
rem @echo off
set VIBE_BIN=%~dps0
set LIBDIR=%VIBE_BIN%..\lib\win-i386
set BINDIR=%VIBE_BIN%..\lib\bin
set LIBS="%LIBDIR%\event2.lib" "%LIBDIR%\eay.lib" "%LIBDIR%\ssl.lib" ws2_32.lib
set EXEDIR=%TEMP%\.rdmd\source
set START_SCRIPT=%EXEDIR%\vibe.cmd
if NOT EXIST %EXEDIR% (
mkdir %EXEDIR%
)
copy "%VIBE_BIN%*.dll" %EXEDIR% > nul 2>&1
copy "%VIBE_BIN%*.dll" . > nul 2>&1
copy "%VIBE_BIN%vpm.d" %EXEDIR% > nul 2>&1
rem Run, execute, do everything.. but when you do it, do it with the vibe!
rdmd -debug -g -w -property -of%EXEDIR%\vpm.exe -I%VIBE_BIN%..\source %LIBS% %EXEDIR%\vpm.d %VIBE_BIN% %START_SCRIPT% %1 %2 %3 %4 %5 %6 %7 %8 %9
rem Finally, start the app, if vpm succeded.
if ERRORLEVEL 0 %START_SCRIPT%
|
@echo off
set VIBE_BIN=%~dps0
set LIBDIR=%VIBE_BIN%..\lib\win-i386
set BINDIR=%VIBE_BIN%..\lib\bin
set LIBS="%LIBDIR%\event2.lib" "%LIBDIR%\eay.lib" "%LIBDIR%\ssl.lib" ws2_32.lib
set EXEDIR=%TEMP%\.rdmd\source
set START_SCRIPT=%EXEDIR%\vibe.cmd
if NOT EXIST %EXEDIR% (
mkdir %EXEDIR%
)
copy "%VIBE_BIN%*.dll" %EXEDIR% > nul 2>&1
copy "%VIBE_BIN%*.dll" . > nul 2>&1
copy "%VIBE_BIN%vpm.d" %EXEDIR% > nul 2>&1
rem Run, execute, do everything.. but when you do it, do it with the vibe!
rdmd -debug -g -w -property -of%EXEDIR%\vpm.exe -I%VIBE_BIN%..\source %LIBS% %EXEDIR%\vpm.d %VIBE_BIN% %START_SCRIPT% %1 %2 %3 %4 %5 %6 %7 %8 %9
rem Finally, start the app, if vpm succeded.
if ERRORLEVEL 0 %START_SCRIPT%
|
Put back the @echo off..
|
Put back the @echo off..
|
Batchfile
|
mit
|
yannick/vibe.d,dkillebrew/vibe.d,mfrischknecht/vibe.d,chalucha/vibe.d,Yoplitein/vibe.d,veelo/vibe.d,Geod24/vibe.d,1100110/vibe.d,Kozzi11/vibe.d,cybevnm/vibe.d,Yoplitein/vibe.d,ColdenCullen/vibe.d,jkm/vibe.d,sigod/vibe.d,AndreyMZ/vibe.d,Yoplitein/vibe.d,alphaKAI/vibe.d,brianloveJesus/vibe.d,alphaKAI/vibe.d,etcimon/vibe.d,schuetzm/vibe.d,etcimon/vibe.0,rejectedsoftware/vibe.d,fast4shoot/vibe.d,DBankov/vibe.d,redstar/vibe.d,jkm/vibe.d,nathanchristenson/vibe.d,gedaiu/vibe.d,nathanchristenson/vibe.d,etcimon/vibe.0,sigod/vibe.d,Mihail-K/vibe.d,etcimon/vibe.d,nathanchristenson/vibe.d,alphaKAI/vibe.d,machindertechnologies/vibe.d,sigod/vibe.d
|
a57a277d1b100d7f4c7198061763613969fbd4b3
|
bin/cake.bat
|
bin/cake.bat
|
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::
:: Cake is a Windows batch script for invoking CakePHP shell commands
::
:: CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
:: Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
::
:: Licensed under The MIT License
:: Redistributions of files must retain the above copyright notice.
::
:: @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
:: @link http://cakephp.org CakePHP(tm) Project
:: @since 2.0.0
:: @license http://www.opensource.org/licenses/mit-license.php MIT License
::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: In order for this script to work as intended, the cake\console\ folder must be in your PATH
@echo.
@echo off
SET app=%0
SET lib=%~dp0
php "%lib%cake.php" %*
echo.
exit /B %ERRORLEVEL%
|
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::
:: Cake is a Windows batch script for invoking CakePHP shell commands
::
:: CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
:: Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
::
:: Licensed under The MIT License
:: Redistributions of files must retain the above copyright notice.
::
:: @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
:: @link http://cakephp.org CakePHP(tm) Project
:: @since 2.0.0
:: @license http://www.opensource.org/licenses/mit-license.php MIT License
::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: In order for this script to work as intended, the cake\console\ folder must be in your PATH
@echo off
SET app=%0
SET lib=%~dp0
php "%lib%cake.php" %*
echo.
exit /B %ERRORLEVEL%
|
Remove an empty line output
|
Remove an empty line output
Prevent to output an empty line before the XML declaration when a command is run using `--xml` option
|
Batchfile
|
mit
|
QoboLtd/project-template-cakephp,makallio85/fish-diary,makallio85/fish-diary,QoboLtd/project-template-cakephp,QoboLtd/project-template-cakephp,QoboLtd/project-template-cakephp,QoboLtd/project-template-cakephp,makallio85/fish-diary
|
f0d4fccdc2fd7d89c7d7cdeac350faa384652bc5
|
build_tools/jenkins_win_build.bat
|
build_tools/jenkins_win_build.bat
|
set PYTHON=C:\Python27\python
set EASY_INSTALL=c:\python27\scripts\easy_install.exe
set NEXUSDIR="C:\Program Files (x86)\NeXus Data Format\"
set PATH=C:\Python27;C:\Python27\Scripts;C:\mingw\bin;%PATH%
cd %WORKSPACE%
%PYTHON% check_packages.py
cd %WORKSPACE%
python setup.py build -cmingw32
cd %WORKSPACE%
python setup.py docs
cd %WORKSPACE%
python setup.py bdist_egg --skip-build
cd %WORKSPACE%\test
%PYTHON% utest_sasview.py
cd %WORKSPACE%
mkdir sasview-install
set PYTHONPATH=%WORKSPACE%\sasview-install;%PYTHONPATH%
cd %WORKSPACE%
cd dist
%EASY_INSTALL% -d ..\sasview-install sasview-3.1.2-py2.7-win32.egg
cd %WORKSPACE%\sasview
python setup_exe.py py2exe
python installer_generator.py
"C:\Program Files (x86)\Inno Setup 5\ISCC.exe" installer.iss
cd Output
xcopy setupSasView.exe %WORKSPACE%\dist
cd %WORKSPACE%
|
set PYTHON=C:\Python27\python
set EASY_INSTALL=c:\python27\scripts\easy_install.exe
set NEXUSDIR="C:\Program Files (x86)\NeXus Data Format\"
set PATH=C:\Python27;C:\Python27\Scripts;C:\mingw\bin;%PATH%
set PYLINT=c:\python27\scripts\pylint
cd %WORKSPACE%
%PYTHON% check_packages.py
cd %WORKSPACE%
python setup.py build -cmingw32
cd %WORKSPACE%
python setup.py docs
cd %WORKSPACE%
python setup.py bdist_egg --skip-build
cd %WORKSPACE%\test
%PYTHON% utest_sasview.py
cd %WORKSPACE%
mkdir sasview-install
set PYTHONPATH=%WORKSPACE%\sasview-install;%PYTHONPATH%
cd %WORKSPACE%
cd dist
%EASY_INSTALL% -d ..\sasview-install sasview-3.1.2-py2.7-win32.egg
cd %WORKSPACE%\sasview
python setup_exe.py py2exe
python installer_generator.py
"C:\Program Files (x86)\Inno Setup 5\ISCC.exe" installer.iss
cd Output
xcopy setupSasView.exe %WORKSPACE%\dist
cd %WORKSPACE%
%PYLINT% --rcfile "%WORKSPACE%cd /build_tools/pylint.rc" -f parseable sasview-install/sasview*.egg/sas sasview > test/sasview.txt
cd %WORKSPACE%
|
Update new windows build script
|
Update new windows build script
|
Batchfile
|
bsd-3-clause
|
lewisodriscoll/sasview,SasView/sasview,lewisodriscoll/sasview,lewisodriscoll/sasview,lewisodriscoll/sasview,SasView/sasview,SasView/sasview,SasView/sasview,SasView/sasview,SasView/sasview,lewisodriscoll/sasview
|
cd5e6df04f580851b4a0699c1f9136168639ed55
|
windows/env.bat
|
windows/env.bat
|
:: Copyright 2015 Rouslan Solomakhin
::
:: Licensed under the Apache License, Version 2.0 (the "License")
:: you may not use this file except in compliance with the License.
:: You may obtain a copy of the License at
::
:: http://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by applicable law or agreed to in writing, software
:: distributed under the License is distributed on an "AS IS" BASIS,
:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
:: See the License for the specific language governing permissions and
:: limitations under the License.
set EDITOR=runemacs
set GYP_DEFINES="component=shared_library fastbuild=2"
set GYP_GENERATORS=ninja
set HOME=%USERPROFILE%
set PATH=%PATH%;%SYSTEMDRIVE%\emacs\bin;%SYSTEMDRIVE%\console2;%SYSTEMDRIVE%\src\depot_tools;%USERPROFILE%\.third_party\cask\bin;%SYSTEMDRIVE%\java\jdk\bin
call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat"
|
:: Copyright 2015 Rouslan Solomakhin
::
:: Licensed under the Apache License, Version 2.0 (the "License")
:: you may not use this file except in compliance with the License.
:: You may obtain a copy of the License at
::
:: http://www.apache.org/licenses/LICENSE-2.0
::
:: Unless required by applicable law or agreed to in writing, software
:: distributed under the License is distributed on an "AS IS" BASIS,
:: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
:: See the License for the specific language governing permissions and
:: limitations under the License.
set EDITOR=runemacs
set GYP_DEFINES="component=shared_library fastbuild=2"
set GYP_GENERATORS=ninja
set HOME=%USERPROFILE%
set PATH=%PATH%;%SYSTEMDRIVE%\emacs\bin;%SYSTEMDRIVE%\console2;%SYSTEMDRIVE%\src\depot_tools;%USERPROFILE%\.third_party\cask\bin;%SYSTEMDRIVE%\java\jdk\bin;%SYSTEMDRIVE%\maven\bin
call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat"
|
Add maven path on windows.
|
Add maven path on windows.
|
Batchfile
|
apache-2.0
|
rsolomakhin/dotfiles
|
cefb1557258add38bb75e6d7e02985ca38a3c9e9
|
recipes/genesis2/bld.bat
|
recipes/genesis2/bld.bat
|
copy mpi.f.single mpi.f
copy mpif.h.single mpif.h
if errorlevel 1 exit 1
flang -g -w -O -Wall -o genesis2 main.f check.f diagno.f esource.f field.f incoherent.f math.f partsim.f pushp.f loadbeam.f loadrad.f magfield.f tdepend.f track.f string.f rpos.f scan.f source.f stepz.f timerec.f initrun.f input.f output.f mpi.f > output.txt 2>&1
if errorlevel 1 exit 1
echo "DEBUG Info..."
dir
echo "The build output was: "
type output.txt
echo "-----------------------------------------------"
echo "Copying the file to Library Bin at %LIBRARY_BIN%"
copy genesis2.exe %LIBRARY_BIN%
if errorlevel 1 exit 1
exit 0
|
copy mpi.f.single mpi.f
copy mpif.h.single mpif.h
if errorlevel 1 exit 1
flang -g -w -O -Wall -o genesis2 main.f check.f diagno.f esource.f field.f incoherent.f math.f partsim.f pushp.f loadbeam.f loadrad.f magfield.f tdepend.f track.f string.f rpos.f scan.f source.f stepz.f timerec.f initrun.f input.f output.f mpi.f > output.txt 2>&1
echo "DEBUG Info..."
dir
echo "The build output was: "
type output.txt
echo "-----------------------------------------------"
echo "Copying the file to Library Bin at %LIBRARY_BIN%"
copy genesis2.exe %LIBRARY_BIN%
if errorlevel 1 exit 1
exit 0
|
Remove errorlevel 1 after compile to be able to print the errors.
|
Remove errorlevel 1 after compile to be able to print the errors.
|
Batchfile
|
bsd-3-clause
|
goanpeca/staged-recipes,scopatz/staged-recipes,hadim/staged-recipes,ocefpaf/staged-recipes,conda-forge/staged-recipes,patricksnape/staged-recipes,ReimarBauer/staged-recipes,SylvainCorlay/staged-recipes,SylvainCorlay/staged-recipes,igortg/staged-recipes,scopatz/staged-recipes,ReimarBauer/staged-recipes,ocefpaf/staged-recipes,chrisburr/staged-recipes,igortg/staged-recipes,stuertz/staged-recipes,jochym/staged-recipes,mariusvniekerk/staged-recipes,kwilcox/staged-recipes,chrisburr/staged-recipes,kwilcox/staged-recipes,stuertz/staged-recipes,jochym/staged-recipes,goanpeca/staged-recipes,hadim/staged-recipes,mariusvniekerk/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes,jakirkham/staged-recipes,patricksnape/staged-recipes,johanneskoester/staged-recipes,conda-forge/staged-recipes
|
0a07f8614808073692779108c5c4955167070cab
|
BUILD.cmd
|
BUILD.cmd
|
@echo off
REM This build script allows you to build the TTR Mouse Click Simulator.
REM For information about prerequisites, see the Wiki page at
REM https://github.com/TTExtensions/MouseClickSimulator/wiki/Running-the-Simulator
SetLocal ENABLEDELAYEDEXPANSION
REM Change the working directory to the script's directory.
REM E.g. if the user right-clicks on the script and selects "Run as Administrator",
REM the working directory would be the windows\system32 dir.
cd %~dp0
echo.Building the TTR Mouse Click Simulator...
echo.
REM MSBuild is always installed in the 32-Bit program files folder
if "!ProgramFiles(x86)!"=="" (
set "ProgramFiles32Bit=!ProgramFiles!"
) else (
set "ProgramFiles32Bit=!ProgramFiles(x86)!"
)
set "BuildExe=!ProgramFiles32Bit!\MSBuild\14.0\Bin\MSBuild.exe"
if not exist "!BuildExe!" (
echo.ERROR: MSBuild not found at "!BuildExe!"^^!
pause
exit /b 1
)
"!BuildExe!" /v:minimal /nologo /p:Configuration=Release "TTMouseclickSimulator\TTMouseclickSimulator.csproj"
if not errorlevel 1 (
echo.
echo.Build successful^^!
)
pause
exit /b !ERRORLEVEL!
|
@echo off
REM This build script allows you to build the TTR Mouse Click Simulator.
REM For information about prerequisites, see the Wiki page at
REM https://github.com/TTExtensions/MouseClickSimulator/wiki/Running-the-Simulator
SetLocal ENABLEDELAYEDEXPANSION
REM Change the working directory to the script's directory.
REM E.g. if the user right-clicks on the script and selects "Run as Administrator",
REM the working directory would be the windows\system32 dir.
cd "%~dp0"
echo.Building the TTR Mouse Click Simulator...
echo.
REM MSBuild is always installed in the 32-Bit program files folder
if "!ProgramFiles(x86)!"=="" (
set "ProgramFiles32Bit=!ProgramFiles!"
) else (
set "ProgramFiles32Bit=!ProgramFiles(x86)!"
)
set "BuildExe=!ProgramFiles32Bit!\MSBuild\14.0\Bin\MSBuild.exe"
if not exist "!BuildExe!" (
echo.ERROR: MSBuild not found at "!BuildExe!"^^!
pause
exit /b 1
)
"!BuildExe!" /v:minimal /nologo /p:Configuration=Release "TTMouseclickSimulator\TTMouseclickSimulator.csproj"
if not errorlevel 1 (
echo.
echo.Build successful^^!
)
pause
exit /b !ERRORLEVEL!
|
Use quotation marks for path parameters.
|
Follow-Up: Use quotation marks for path parameters.
|
Batchfile
|
mit
|
TTExtensions/MouseClickSimulator
|
ae63ff601f0d7902a8c6c988ba333180c1f6c45f
|
ui/build.bat
|
ui/build.bat
|
@echo off
mkdir public\compiled
set ts_apps=common chess ceval game tree
for %%t in (%ts_apps%) do @(
call echo Building TypeScript: %%t
call cd ui\%%t
call yarn install --non-interactive
call yarn run compile --non-interactive
call cd ..\..
)
set apps=site chat challenge notify learn insight editor puzzle round analyse lobby tournament tournamentSchedule simul perfStat dasher
for %%a in (%apps%) do @(
call echo Building: %%a
call cd ui\%%a
call yarn install --non-interactive
call gulp dev
call cd ..\..
)
|
@echo off
mkdir public\compiled
set ts_apps=common chess ceval game tree
for %%t in (%ts_apps%) do @(
call echo Building TypeScript: %%t
call cd ui\%%t
call yarn install --non-interactive
call yarn run compile --non-interactive
call cd ..\..
)
set apps=site chat challenge notify learn insight editor puzzle round analyse lobby tournament tournamentSchedule simul perfStat dasher
for %%a in (%apps%) do @(
call echo Building: %%a
call cd ui\%%a
call yarn install --non-interactive
call gulp dev
call cd ..\..
)
|
Replace a tab with 4 spaces
|
Replace a tab with 4 spaces
|
Batchfile
|
agpl-3.0
|
luanlv/lila,luanlv/lila,arex1337/lila,arex1337/lila,arex1337/lila,luanlv/lila,luanlv/lila,arex1337/lila,luanlv/lila,arex1337/lila,luanlv/lila,arex1337/lila,luanlv/lila,arex1337/lila
|
2ab010891bbf6539c20f5a2aee6b93a77fc19af1
|
bin/hubot.cmd
|
bin/hubot.cmd
|
@echo off
rem installer bug. http://stackoverflow.com/a/25095327
mkdir "%APPDATA%\npm" > NUL 2>&1
set PATH=node_modules\.bin;node_modules\lisb-hubot\node_modules\.bin;%PATH%
call npm install
for /f "delims=\" %%i in ("%CD%") do set UID=%%i
if "%REDIS_URL%" = "" (
set REDIS_URL=redis://localhost:6379/%UID%
)
if "%1" == "start" (
forever start ^
--uid "%UID%" ^
--minUptime 10000 --spinSleepTime 600000 ^
-o hubot.log -a ^
-w --watchDirectory scripts ^
-c coffee node_modules\.bin\hubot.cmd -a direct %*
) else if "%1" == "stop" (
forever stop "%UID%"
) else if "%1" == "restart" (
forever restart "%UID%"
) else if "%1" == "status" (
forever list | find "] %UID% "
) else if "%1" == "logs" (
cat hubot.log | more
) else (
node_modules\.bin\hubot.cmd -a direct %*
)
|
@echo off
rem installer bug. http://stackoverflow.com/a/25095327
mkdir "%APPDATA%\npm" > NUL 2>&1
set PATH=node_modules\.bin;node_modules\lisb-hubot\node_modules\.bin;%PATH%
call npm install
for /f "delims=\" %%i in ("%CD%") do set UID=%%i
if "%REDIS_URL%" == "" (
set REDIS_URL=redis://localhost:6379/%UID%
)
if "%1" == "start" (
forever start ^
--uid "%UID%" ^
--minUptime 10000 --spinSleepTime 600000 ^
-o hubot.log -a ^
-w --watchDirectory scripts ^
-c coffee node_modules\.bin\hubot.cmd -a direct %*
) else if "%1" == "stop" (
forever stop "%UID%"
) else if "%1" == "restart" (
forever restart "%UID%"
) else if "%1" == "status" (
forever list | find "] %UID% "
) else if "%1" == "logs" (
cat hubot.log | more
) else (
node_modules\.bin\hubot.cmd -a direct %*
)
|
Fix the condition to compare strings in the script on Windows.
|
Fix the condition to compare strings in the script on Windows.
|
Batchfile
|
mit
|
lisb/daab-starter,lisb/daab-starter,lisb/daab-starter
|
f09aed595e780aeb8ab2fdf2bfb698727f7e2d3b
|
recipes/openmeeg/bld.bat
|
recipes/openmeeg/bld.bat
|
set CMAKE_CONFIG=Release
mkdir build_%CMAKE_CONFIG%
pushd build_%CMAKE_CONFIG%
cmake -G "NMake Makefiles" ^
-DCMAKE_BUILD_TYPE:STRING=%CMAKE_CONFIG% ^
-DBLA_VENDOR:STRING=OpenBLAS ^
-DENABLE_PYTHON:BOOL=ON ^
-DBUILD_DOCUMENTATION:BOOL=OFF ^
"%SRC_DIR%"
if errorlevel 1 exit rem 1
cmake --build . --target install --config %CMAKE_CONFIG%
if errorlevel 1 exit 1
popd
|
set CMAKE_CONFIG=Release
mkdir build_%CMAKE_CONFIG%
pushd build_%CMAKE_CONFIG%
cmake -G "NMake Makefiles" ^
-DCMAKE_BUILD_TYPE:STRING=%CMAKE_CONFIG% ^
-DBLA_VENDOR:STRING=OpenBLAS ^
-DENABLE_PYTHON:BOOL=ON ^
-DCMAKE_INSTALL_PREFIX:PATH="%LIBRARY_PREFIX%" ^
-DBUILD_DOCUMENTATION:BOOL=OFF ^
-DVCOMP_WORKAROUND=OFF ^
"%SRC_DIR%"
if errorlevel 1 exit rem 1
cmake --build . --target install --config %CMAKE_CONFIG%
if errorlevel 1 exit 1
popd
|
Set install prefix in windows
|
Set install prefix in windows
|
Batchfile
|
bsd-3-clause
|
mariusvniekerk/staged-recipes,SylvainCorlay/staged-recipes,jakirkham/staged-recipes,mcs07/staged-recipes,birdsarah/staged-recipes,goanpeca/staged-recipes,ReimarBauer/staged-recipes,ocefpaf/staged-recipes,petrushy/staged-recipes,barkls/staged-recipes,basnijholt/staged-recipes,ceholden/staged-recipes,ceholden/staged-recipes,hadim/staged-recipes,ReimarBauer/staged-recipes,chrisburr/staged-recipes,barkls/staged-recipes,patricksnape/staged-recipes,jjhelmus/staged-recipes,basnijholt/staged-recipes,jochym/staged-recipes,dschreij/staged-recipes,petrushy/staged-recipes,dschreij/staged-recipes,Juanlu001/staged-recipes,jochym/staged-recipes,pmlandwehr/staged-recipes,synapticarbors/staged-recipes,igortg/staged-recipes,sodre/staged-recipes,pmlandwehr/staged-recipes,scopatz/staged-recipes,rvalieris/staged-recipes,stuertz/staged-recipes,asmeurer/staged-recipes,patricksnape/staged-recipes,sodre/staged-recipes,goanpeca/staged-recipes,cpaulik/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes,shadowwalkersb/staged-recipes,synapticarbors/staged-recipes,rmcgibbo/staged-recipes,kwilcox/staged-recipes,rvalieris/staged-recipes,chrisburr/staged-recipes,isuruf/staged-recipes,birdsarah/staged-recipes,shadowwalkersb/staged-recipes,conda-forge/staged-recipes,sodre/staged-recipes,mcs07/staged-recipes,kwilcox/staged-recipes,mariusvniekerk/staged-recipes,isuruf/staged-recipes,hadim/staged-recipes,jakirkham/staged-recipes,jjhelmus/staged-recipes,scopatz/staged-recipes,asmeurer/staged-recipes,cpaulik/staged-recipes,stuertz/staged-recipes,SylvainCorlay/staged-recipes,conda-forge/staged-recipes,johanneskoester/staged-recipes,rmcgibbo/staged-recipes,Juanlu001/staged-recipes,igortg/staged-recipes
|
f55d7c37bbb4f9bc061866a17c30868efb97b131
|
Build.bat
|
Build.bat
|
SETLOCAL
SET Version=2.5.0
SET Prerelease=auto
@SET Config=%1%
@IF [%1] == [] SET Config=Debug
IF NOT DEFINED VisualStudioVersion CALL "%VS140COMNTOOLS%VsDevCmd.bat" || ECHO ERROR: Cannot find Visual Studio 2015, missing VS140COMNTOOLS variable. && GOTO Error0
@ECHO ON
REM Updating the version of all projects
PowerShell .\ChangeVersion.ps1 %Version% %Prerelease% || GOTO Error0
REM NuGet Automatic Package Restore requires "NuGet.exe restore" to be executed before the command-line build.
WHERE /Q NuGet.exe || ECHO ERROR: Please download the NuGet.exe command line tool. && GOTO Error0
NuGet.exe restore Rhetos.sln -NonInteractive || GOTO Error0
MSBuild.exe "Rhetos.sln" /target:rebuild /p:Configuration=%Config% /verbosity:minimal /fileLogger || GOTO Error0
CALL CreateInstallationPackage.bat %Config% /NOPAUSE || GOTO Error0
REM Updating the version of all projects back to "dev" (internal development build), to avoid spamming git history.
PowerShell .\ChangeVersion.ps1 %Version% dev || GOTO Error0
@REM ================================================
@ECHO.
@ECHO %~nx0 SUCCESSFULLY COMPLETED.
@EXIT /B 0
:Error0
@ECHO.
@ECHO %~nx0 FAILED.
@IF /I [%2] NEQ [/NOPAUSE] @PAUSE
@EXIT /B 1
|
SETLOCAL
SET Version=2.5.0
SET Prerelease=auto
@SET Config=%1%
@IF [%1] == [] SET Config=Debug
IF NOT DEFINED VisualStudioVersion CALL "%VS140COMNTOOLS%VsDevCmd.bat" || ECHO ERROR: Cannot find Visual Studio 2015, missing VS140COMNTOOLS variable. && GOTO Error0
@ECHO ON
REM Updating the version of all projects
PowerShell -ExecutionPolicy ByPass .\ChangeVersion.ps1 %Version% %Prerelease% || GOTO Error0
REM NuGet Automatic Package Restore requires "NuGet.exe restore" to be executed before the command-line build.
WHERE /Q NuGet.exe || ECHO ERROR: Please download the NuGet.exe command line tool. && GOTO Error0
NuGet.exe restore Rhetos.sln -NonInteractive || GOTO Error0
MSBuild.exe "Rhetos.sln" /target:rebuild /p:Configuration=%Config% /verbosity:minimal /fileLogger || GOTO Error0
CALL CreateInstallationPackage.bat %Config% /NOPAUSE || GOTO Error0
REM Updating the version of all projects back to "dev" (internal development build), to avoid spamming git history.
PowerShell -ExecutionPolicy ByPass .\ChangeVersion.ps1 %Version% dev || GOTO Error0
@REM ================================================
@ECHO.
@ECHO %~nx0 SUCCESSFULLY COMPLETED.
@EXIT /B 0
:Error0
@ECHO.
@ECHO %~nx0 FAILED.
@IF /I [%2] NEQ [/NOPAUSE] @PAUSE
@EXIT /B 1
|
Set Powershell ExecutionPolicy for build.
|
Set Powershell ExecutionPolicy for build.
|
Batchfile
|
agpl-3.0
|
bantolov/Rhetos,kmeze/Rhetos
|
a5f44738f90d9e07723d9f9699eaf089ad4880da
|
test/deploy.bat
|
test/deploy.bat
|
mkdir mage
composer install
rem Actions after deploy (database creation, files copy, etc)
copy ..\src\app\etc\nmmlm mage\app\etc
|
mkdir mage
composer install
rem Actions after deploy (database creation, files copy, etc)
xcopy ..\src\app\etc\nmmlm mage\app\etc\nmmlm /E /Y /I
|
Deploy script changed from copy to xcopy
|
Deploy script changed from copy to xcopy
|
Batchfile
|
mit
|
praxigento/mage_ext_log4php
|
38dac057a18fd66c4c741b7cb57f05b911ffcfcf
|
build.bat
|
build.bat
|
@echo Off
set config=%1
if "%config%" == "" (
set config=Release
)
set version=1.0.0
if not "%PackageVersion%" == "" (
set version=%PackageVersion%
)
set nuget=
if "%nuget%" == "" (
set nuget=nuget
)
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild Bot.Messenger.sln /p:Configuration="%config%" /m /v:M /fl /flp:LogFile=msbuild.log;Verbosity=diag /nr:false
mkdir Build
mkdir Build\lib
mkdir Build\lib\net45
%nuget% pack "Bot.Messenger.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.0
if not "%PackageVersion%" == "" (
set version=%PackageVersion%
)
set nuget=
if "%nuget%" == "" (
set nuget=nuget
)
%programfiles(x86)%\MSBuild\14.0\Bin\MSBuild.exe Bot.Messenger.sln /p:Configuration="%config%" /m /v:M /fl /flp:LogFile=msbuild.log;Verbosity=diag /nr:false
mkdir Build
mkdir Build\lib
mkdir Build\lib\net461
%nuget% pack "Bot.Messenger.nuspec" -NoPackageAnalysis -verbosity detailed -o Build -Version %version% -p Configuration="%config%"
|
Build commant updated to target MSBuild\14.0
|
Build commant updated to target MSBuild\14.0
|
Batchfile
|
mit
|
olisamaduka/Bot.Messenger
|
a0e44ef32b35b6be70b0efa56d2e7a5fc9b8297b
|
build.cmd
|
build.cmd
|
@ECHO OFF
:: Note: We've disabled node reuse because it causes file locking issues.
:: The issue is that we extend the build with our own targets which
:: means that that rebuilding cannot successully delete the task
:: assembly.
"%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" /nologo /m /v:m /nr:false /flp:verbosity=normal %1 %2 %3 %4 %5 %6 %7 %8 %9
|
@ECHO OFF
:: Note: We've disabled node reuse because it causes file locking issues.
:: The issue is that we extend the build with our own targets which
:: means that that rebuilding cannot successfully delete the task
:: assembly.
"%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" /nologo /m /v:m /nr:false /flp:verbosity=normal %*
|
Replace individual parameters with wildcard
|
Replace individual parameters with wildcard
It's not that we ever want to pass more than ten arguments; it's about
the fact that we'd like to be able to pass arguments like this:
.\build.cmd /p:OutDir='D:\test\'
Using individual arguments, MSBuild is called like this:
MSBuild.exe /p:OutDir D:\test\
That's because the equal sign is considered a separator in batch files.
|
Batchfile
|
mit
|
terrajobst/nquery-vnext
|
13d18b4b2857f668c1651c6ab011ca7b434be096
|
BuildPackage/BuildOne.bat
|
BuildPackage/BuildOne.bat
|
@ECHO OFF
ECHO.
ECHO ===============================================================
ECHO.
ECHO Building: %1
ECHO.
ECHO ===============================================================
ECHO.
Call "C:\Program Files (x86)\MSBuild\12.0\Bin\MsBuild.exe" %1 /p:Configuration=Release /p:PostBuildEvent=
|
@ECHO OFF
ECHO.
ECHO ===============================================================
ECHO.
ECHO Building: %1
ECHO.
ECHO ===============================================================
ECHO.
Call "C:\Program Files (x86)\MSBuild\12.0\Bin\MsBuild.exe" %1 /p:Configuration=Release /consoleloggerparameters:Summary;ErrorsOnly /nologo /p:PostBuildEvent=
|
Build Parameters (less logging in console)
|
Build Parameters (less logging in console)
Just turn the logging down for the build
|
Batchfile
|
mpl-2.0
|
Vrijdagonline/uSync,lucasch/uSync,Vrijdagonline/uSync,lucasch/uSync,Vrijdagonline/uSync,lucasch/uSync
|
86c72bcbcfc9a6a25734262e383e288c9e4372c8
|
src/DiffEngine/inst64.bat
|
src/DiffEngine/inst64.bat
|
call "%ProgramFiles(x86)%\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat"
nmake
dir WIN2000_DEBUG\*.exe
copy WIN2000_DEBUG\*.exe ..\Bin\
pause
|
call "%ProgramFiles(x86)%\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat"
nmake nodebug=1
dir WIN2000_DEBUG\*.exe
copy WIN2000_DEBUG\*.exe ..\Bin\
pause
|
Use RETAIL mode for Python Library Issues
|
Use RETAIL mode for Python Library Issues
|
Batchfile
|
bsd-3-clause
|
jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim
|
b0fd6ba0e619d6d4fd0498f732c303aeaad2c062
|
webkit/build/JSConfig/prebuild.bat
|
webkit/build/JSConfig/prebuild.bat
|
@echo off
setlocal
set OUTDIR=%1
set JSENG=%2
set CYGWIN_ROOT=%~dp0..\..\..\third_party\cygwin\
set GNU_ROOT=%~dp0..\..\..\third_party\gnu\files
set PATH=%CYGWIN_ROOT%bin;%GNU_ROOT%;%SystemRoot%;%SystemRoot%\system32
:: Ensure that the cygwin mount points are defined
CALL %CYGWIN_ROOT%setup_mount.bat > NUL
bash -x create-config.sh %OUTDIR% %JSENG%
|
@echo off
setlocal
set OUTDIR=%1
set JSENG=%2
set CYGWIN_ROOT=%~dp0..\..\..\third_party\cygwin\
set GNU_ROOT=%~dp0..\..\..\third_party\gnu\files
:: Fix cp.exe on vista: without this flag, the files that it creates are not accessible.
set CYGWIN=nontsec
set PATH=%CYGWIN_ROOT%bin;%GNU_ROOT%;%SystemRoot%;%SystemRoot%\system32
:: Ensure that the cygwin mount points are defined
CALL %CYGWIN_ROOT%setup_mount.bat > NUL
bash -x create-config.sh %OUTDIR% %JSENG%
|
Fix a build issue with Vista. Stop cp.exe from trying to emulate POSIX security on top of NTFS.
|
Fix a build issue with Vista. Stop cp.exe from trying to emulate POSIX security
on top of NTFS.
BUG=1157117
git-svn-id: http://src.chromium.org/svn/trunk/src@40 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
Former-commit-id: 3f3a345fa4a4849ac50b16979cde53f6dd26d163
|
Batchfile
|
bsd-3-clause
|
meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser,meego-tablet-ux/meego-app-browser
|
5c0ea803d6583da54cc30a30e472a1c50accbe1c
|
tools/rails/bin/jruby.bat
|
tools/rails/bin/jruby.bat
|
@ECHO OFF
set GO_ROOT=%~dp0\..\..\..
set JRUBY_BASE=%GO_ROOT%\tools\jruby-1.7.11
set SERVER_ROOT=%GO_ROOT%\server
set RAILS_ROOT=%SERVER_ROOT%\webapp\WEB-INF\rails.new
set GEM_HOME=%RAILS_ROOT%\vendor\bundle\jruby\1.9
set GEM_PATH=%JRUBY_BASE%\lib\ruby\gems\shared;%GEM_HOME%
set PATH=%JRUBY_BASE%\bin;%PATH%
set JRUBY_OPTS='-J-XX:+TieredCompilation -J-XX:TieredStopAtLevel=1 -J-Djruby.compile.invokedynamic=false -J-Djruby.compile.mode=OFF'
%JRUBY_BASE%\bin\jruby.bat %*
|
@ECHO OFF
set GO_ROOT=%~dp0\..\..\..
set JRUBY_BASE=%GO_ROOT%\tools\jruby-1.7.11
set SERVER_ROOT=%GO_ROOT%\server
set RAILS_ROOT=%SERVER_ROOT%\webapp\WEB-INF\rails.new
set GEM_HOME=%RAILS_ROOT%\vendor\bundle\jruby\1.9
set GEM_PATH=%JRUBY_BASE%\lib\ruby\gems\shared;%GEM_HOME%
set PATH=%JRUBY_BASE%\bin;%PATH%
set JRUBY_OPTS='-J-XX:+TieredCompilation -J-XX:TieredStopAtLevel=1 -J-Djruby.compile.invokedynamic=false -J-Djruby.compile.mode=OFF %JRUBY_OPTS%'
%JRUBY_BASE%\bin\jruby.bat %*
|
Append to JRUBY_OPTS instead of overriding it
|
Append to JRUBY_OPTS instead of overriding it
|
Batchfile
|
apache-2.0
|
tomzo/gocd,tomzo/gocd,arvindsv/gocd,ibnc/gocd,aj-jaswanth/gocd,stevem999/gocd,stevem999/gocd,MFAnderson/gocd,varshavaradarajan/gocd,marques-work/gocd,Skarlso/gocd,jyotisingh/gocd,kyleolivo/gocd,gocd/gocd,tomzo/gocd,varshavaradarajan/gocd,varshavaradarajan/gocd,sghill/gocd,Skarlso/gocd,aj-jaswanth/gocd,ketan/gocd,bdpiparva/gocd,gocd/gocd,ind9/gocd,arvindsv/gocd,jyotisingh/gocd,MFAnderson/gocd,aj-jaswanth/gocd,VibyJocke/gocd,kierarad/gocd,bdpiparva/gocd,ollie314/gocd,marques-work/gocd,marques-work/gocd,ind9/gocd,zabil/gocd,soundcloud/gocd,MFAnderson/gocd,naveenbhaskar/gocd,jyotisingh/gocd,GaneshSPatil/gocd,stephen-murby/gocd,varshavaradarajan/gocd,bdpiparva/gocd,kyleolivo/gocd,ibnc/gocd,jyotisingh/gocd,ibnc/gocd,sghill/gocd,sghill/gocd,ollie314/gocd,ibnc/gocd,arvindsv/gocd,soundcloud/gocd,jyotisingh/gocd,MFAnderson/gocd,zabil/gocd,sghill/gocd,stevem999/gocd,kierarad/gocd,VibyJocke/gocd,jyotisingh/gocd,zabil/gocd,ibnc/gocd,aj-jaswanth/gocd,bdpiparva/gocd,ollie314/gocd,naveenbhaskar/gocd,Skarlso/gocd,Skarlso/gocd,marques-work/gocd,bdpiparva/gocd,stephen-murby/gocd,Skarlso/gocd,sghill/gocd,marques-work/gocd,GaneshSPatil/gocd,ind9/gocd,stephen-murby/gocd,gocd/gocd,GaneshSPatil/gocd,ketan/gocd,bdpiparva/gocd,naveenbhaskar/gocd,GaneshSPatil/gocd,kierarad/gocd,kierarad/gocd,arvindsv/gocd,tomzo/gocd,varshavaradarajan/gocd,gocd/gocd,GaneshSPatil/gocd,ketan/gocd,gocd/gocd,naveenbhaskar/gocd,VibyJocke/gocd,ketan/gocd,stevem999/gocd,gocd/gocd,GaneshSPatil/gocd,ind9/gocd,kierarad/gocd,ketan/gocd,kyleolivo/gocd,ollie314/gocd,soundcloud/gocd,soundcloud/gocd,varshavaradarajan/gocd,kyleolivo/gocd,kyleolivo/gocd,arvindsv/gocd,MFAnderson/gocd,ketan/gocd,naveenbhaskar/gocd,tomzo/gocd,marques-work/gocd,ind9/gocd,zabil/gocd,Skarlso/gocd,ollie314/gocd,kierarad/gocd,naveenbhaskar/gocd,stephen-murby/gocd,VibyJocke/gocd,stephen-murby/gocd,ibnc/gocd,VibyJocke/gocd,aj-jaswanth/gocd,stevem999/gocd,arvindsv/gocd,soundcloud/gocd,tomzo/gocd,zabil/gocd
|
761000c77088d6f588afaf505ea76083e70c5318
|
start_archiver_access_cmd.bat
|
start_archiver_access_cmd.bat
|
setlocal
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
%PYTHON% %MYDIRBLOCK%ArchiverAccess\archiver_access.py
|
@echo off
setlocal
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
%PYTHONW% %MYDIRBLOCK%ArchiverAccess\archiver_access.py
|
Put back echo and python
|
Put back echo and python
|
Batchfile
|
bsd-3-clause
|
ISISComputingGroup/EPICS-inst_servers,ISISComputingGroup/EPICS-inst_servers
|
c3dd5f600879279191ada8749c4c9c6e0a965a8a
|
virtualenv_install.bat
|
virtualenv_install.bat
|
@ECHO OFF
:: Performs necessary setup steps to allow the use of
:: virtualenv commands such as "mkvirtualenv [ENV_NAME]"
:: for creating and using Python virtual environments.
python -m pip install --upgrade virtualenv
python -m pip install --upgrade virtualenvwrapper-win
echo ""
echo ""
echo "*** You may now use virtualenv commands in your command shell. ***"
echo ""
echo "virtualenv commands:"
echo " * 'mkvirtualenv [ENV_NAME]' - Create a Python virtual environment"
echo " * 'deactivate' - Exit the current virtual environment"
echo " * 'workon [ENV_NAME]' - Enter an existing virtual environment"
echo " * 'lsvirtualenv' OR 'workon' - List all virtual environments"
echo " * 'rmvirtualenv [ENV_NAME]' - Delete a virtual environment"
echo ""
echo "Example:"
echo " mkvirtualenv seleniumbase "
echo ""
|
@ECHO OFF
:: Performs necessary setup steps to allow the use of
:: virtualenv commands such as "mkvirtualenv [ENV_NAME]"
:: for creating and using Python virtual environments.
python -m pip install --upgrade virtualenv
python -m pip install --upgrade virtualenvwrapper-win
echo:
echo:
echo: *** You may now use virtualenv commands in your command shell. ***
echo:
echo: virtualenv commands:
echo: * "mkvirtualenv [ENV_NAME]" - Create a Python virtual environment
echo: * "deactivate" - Exit the current virtual environment
echo: * "workon [ENV_NAME]" - Enter an existing virtual environment
echo: * "lsvirtualenv" OR "workon" - List all virtual environments
echo: * "rmvirtualenv [ENV_NAME]" - Delete a virtual environment
echo:
echo: Example:
echo: mkvirtualenv seleniumbase
echo:
|
Fix echo commands in a virtualenv Windows batch file
|
Fix echo commands in a virtualenv Windows batch file
|
Batchfile
|
mit
|
mdmintz/SeleniumBase,seleniumbase/SeleniumBase,seleniumbase/SeleniumBase,seleniumbase/SeleniumBase,mdmintz/SeleniumBase,mdmintz/SeleniumBase,mdmintz/SeleniumBase,mdmintz/seleniumspot,mdmintz/seleniumspot,seleniumbase/SeleniumBase
|
88c6b55756c54f15ab1a994b2245766afe4e2250
|
ktransw.cmd
|
ktransw.cmd
|
@echo off
python "%~dp0\ktransw.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\ktransw.py" %*
|
Add missing license to wrapper batch.
|
Add missing license to wrapper batch.
|
Batchfile
|
apache-2.0
|
gavanderhoorn/ktransw_py
|
dfdee8062308d21faef4df9f87dcd916968b0d6d
|
Resources/role_template/bin/symfony_cache_clear.cmd
|
Resources/role_template/bin/symfony_cache_clear.cmd
|
@echo off
cd "%~dp0"
IF EXIST ..\composer.json IF NOT EXIST ..\vendor\.composer (
ECHO Composer installing vendors... >> ..\startup-tasks-log.txt
'D:\Program Files (x86)\PHP\v5.3\php.exe' ..\bin\composer.phar install
ECHO Vendors installed >> ..\startup-tasks-log.txt
)
ECHO Starting Symfony Setup... >> ..\startup-tasks-log.txt
'D:\Program Files (x86)\PHP\v5.3\php.exe' ..\app\console --env=prod cache:clear
ECHO Symfony Cache warmed up >> ..\startup-tasks-log.txt
|
@echo off
cd "%~dp0"
ECHO Starting Symfony Setup... >> ..\startup-tasks-log.txt
'D:\Program Files (x86)\PHP\v5.3\php.exe' ..\app\console --env=prod cache:clear
ECHO Symfony Cache warmed up >> ..\startup-tasks-log.txt
|
Remove composer optimization as this doesnt work at the moment.
|
Remove composer optimization as this doesnt work at the moment.
|
Batchfile
|
mit
|
beberlei/AzureDistributionBundle,beberlei/AzureDistributionBundle
|
4c18b5b14fde052135cb913faf7c6d9b4c1e0916
|
build.bat
|
build.bat
|
@echo off
if "%1" == "build" goto build
if "%1" == "tar" goto zip
if "%1" == "zip" goto zip
goto eof
:build
electron-packager . %npm_package_name% --platform=all --arch=x64 --version=%npm_package_electronVersion% --out=build --ignore="(build|node_modules)" --app-version="%npm_package_version%" --version-string.FileDescription="%npm_package_productName%" --version-string.ProductName="%npm_package_productName%" --overwrite
goto eof
:zip
set ZIP_NAME=%~2
set BUILD_NAME=%npm_package_name%-%ZIP_NAME%-x64
set "BUILD_PATH=build/%BUILD_NAME%"
echo ===============
echo Zip name: %ZIP_NAME%
echo Zip type: %1
echo Build name: %BUILD_NAME%
echo Build path: %BUILD_PATH%
echo ===============
cd %BUILD_PATH%
if "%1" == "tar" (
7za a -ttar -so -snl "..\%BUILD_NAME%.tar" . | 7za a -si "..\%BUILD_NAME%.tgz" | find /I "ing"
) else (
7za a -tzip "..\%BUILD_NAME%.zip" . | find /I "ing"
)
goto eof
:eof
|
@echo off
if "%1" == "build" goto build
if "%1" == "tar" goto zip
if "%1" == "zip" goto zip
goto eof
:build
electron-packager . %npm_package_name% --platform=all --arch=x64 --version=%npm_package_electronVersion% --out=build --ignore="(build|node_modules)" --app-version="%npm_package_version%" --version-string.FileDescription="%npm_package_productName%" --version-string.ProductName="%npm_package_productName%" --overwrite
goto eof
:zip
set ZIP_NAME=%~2
set BUILD_NAME=%npm_package_name%-%ZIP_NAME%-x64
set "BUILD_PATH=build/%BUILD_NAME%"
echo ===============
echo Zip name: %ZIP_NAME%
echo Zip type: %1
echo Build name: %BUILD_NAME%
echo Build path: %BUILD_PATH%
echo ===============
cd %BUILD_PATH%
echo Zip process started
if "%1" == "tar" (
del "..\%BUILD_NAME%.tgz" >nul 2>&1
7za a -ttar -so -snl "..\%BUILD_NAME%.tar" . | 7za a -si "..\%BUILD_NAME%.tgz" | find /I "ing"
) else (
del "..\%BUILD_NAME%.zip" >nul 2>&1
7za a -tzip "..\%BUILD_NAME%.zip" . | find /I "ing"
)
echo Zip process finished
echo ===============
goto eof
:eof
|
Delete old zip files before zip process
|
Delete old zip files before zip process
|
Batchfile
|
mit
|
dogancelik/atomic-tweetdeck
|
d754a0c478db3632d1dd490f62f33542c554fe5f
|
kokoro/release/csharp/windows/build_nuget.bat
|
kokoro/release/csharp/windows/build_nuget.bat
|
@rem enter repo root
cd /d %~dp0\..\..\..\..
cd csharp
@rem see what dotnet version is available
dotnet --version
@rem TODO(jtattermusch): Kokoro workers currently only have dotnet SDK 2.1.3
@rem so we just overwrite the SDK requirement in global.json as the results
@rem should be fully compatible.
echo { "sdk": { "version": "2.1.3" } } >global.json
call build_packages.bat
|
@rem enter repo root
cd /d %~dp0\..\..\..\..
cd csharp
call build_packages.bat
|
Revert "overcome the global.json constraint with a hack"
|
Revert "overcome the global.json constraint with a hack"
This reverts commit c02346c72aafd1826b0397dbbce4ce04bf252f50.
|
Batchfile
|
bsd-3-clause
|
google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf
|
dab0ce93f2ba6708e05f10e209b09915404bc89f
|
Bin/DarunGrim3/CopySrc.bat
|
Bin/DarunGrim3/CopySrc.bat
|
REM Start copying files
mkdir Src
xcopy /D /S /I /Y ..\..\Src\UI\Web\*.py Src\
xcopy /D /S /I /Y ..\..\Src\UI\Web\*.bat Src\
xcopy /D /S /I /Y ..\..\Src\UI\Web\data Src\data
xcopy /D /S /I /Y "..\..\Src\Bin Collector\*.py" Src\
xcopy /D /S /I /Y "..\..\Src\Diff Inspector\*.py" Src\
xcopy /D /S /I /Y "..\..\Src\Bin Collector\Bin\*.pyd" Src\
xcopy /D /S /I /Y SetupDist.py Src\
xcopy /D /S /I /Y ..\..\Src\UI\Web\DarunGrim3Sample01.cfg Src\DarunGrim3.cfg
|
REM Start copying files
mkdir Src
xcopy /D /S /I /Y ..\..\Src\UI\Web\*.py Src\
xcopy /D /S /I /Y ..\..\Src\UI\Web\*.bat Src\
xcopy /D /S /I /Y ..\..\Src\UI\Web\data Src\data
xcopy /D /S /I /Y "..\..\Src\Bin Collector\*.py" Src\
xcopy /D /S /I /Y "..\..\Src\Diff Inspector\*.py" Src\
xcopy /D /S /I /Y "..\..\Src\Bin Collector\Bin\*.pyd" Src\
xcopy /D /S /I /Y SetupDist.py Src\
copy ..\..\Src\UI\Web\DarunGrim3Sample01.cfg Src\DarunGrim3.cfg
|
Use copy for configuration file copy
|
Use copy for configuration file copy
|
Batchfile
|
bsd-3-clause
|
jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim
|
9299c1dc0eb89b2c39fd13eb9fa0a1b99ba77fad
|
floppy/zz-start-sshd.cmd
|
floppy/zz-start-sshd.cmd
|
@setlocal EnableDelayedExpansion EnableExtensions
@for %%i in (%~dp0\_packer_config*.cmd) do @call "%%~i"
@if defined PACKER_DEBUG (@echo on) else (@echo off)
if not defined PACKER_SERVICES set PACKER_SERVICES=opensshd sshd BvSshServer winrm
title Starting services: %PACKER_SERVICES%. Please wait...
:: Intentionally named with zz so it runs last by 00-run-all-scripts.cmd so
:: that the Packer winrm/ssh connections is not inadvertently dropped during the
:: Sysprep run
for %%i in (%PACKER_SERVICES%) do (
echo ==^> Checking if the %%i service is installed
sc query %%i >nul 2>nul && (
echo ==^> Starting the %%i service
sc start %%i
)
)
:exit0
ver>nul
goto :exit
:exit1
verify other 2>nul
:exit
|
@setlocal EnableDelayedExpansion EnableExtensions
@for %%i in (%~dp0\_packer_config*.cmd) do @call "%%~i"
@if defined PACKER_DEBUG (@echo on) else (@echo off)
if not defined PACKER_SERVICES set PACKER_SERVICES=opensshd sshd BvSshServer winrm
title Starting services: %PACKER_SERVICES%. Please wait...
:: Intentionally named with zz so it runs last by 00-run-all-scripts.cmd so
:: that the Packer winrm/ssh connections is not inadvertently dropped during the
:: Sysprep run
for %%i in (%PACKER_SERVICES%) do (
echo ==^> Checking if the %%i service is installed
sc query %%i >nul 2>nul && (
echo ==^> Configuring %%i service to autostart
sc config %%i start= auto
echo ==^> Starting the %%i service
sc start %%i
)
)
:exit0
ver>nul
goto :exit
:exit1
verify other 2>nul
:exit
|
Configure winrm service to autostart
|
Configure winrm service to autostart
Fixes #19
|
Batchfile
|
apache-2.0
|
TaylorMonacelli/boxcutter-windows,MSumulong/windows,StefanScherer/windows,samepage-labs/windows-templates,samepage-labs/windows-templates,ambakshi/windows,c-owens/windows,StefanScherer/windows,TaylorMonacelli/boxcutter-windows,c-owens/windows,StefanScherer/windows,boxcutter/windows,boxcutter/windows,MSumulong/windows,TaylorMonacelli/boxcutter-windows,ambakshi/windows,MSumulong/windows,ambakshi/windows,HirotakaKato/boxcutter-windows-ja,quarkslab/windows,quarkslab/windows,HirotakaKato/boxcutter-windows-ja,HirotakaKato/boxcutter-windows-ja,c-owens/windows,TaylorMonacelli/boxcutter-windows,MYOB-Technology/packer-sqlserver,boxcutter/windows,quarkslab/windows,samepage-labs/windows-templates
|
6fa911cc27acb513f9734623ea50082ef0f64510
|
src/ResourceManagement/Storage/Microsoft.Azure.Management.Storage/generate.cmd
|
src/ResourceManagement/Storage/Microsoft.Azure.Management.Storage/generate.cmd
|
::
:: Microsoft Azure SDK for Net - Generate library code
:: Copyright (C) Microsoft Corporation. All Rights Reserved.
::
:: https://github.com/Azure/azure-rest-api-specs/commits/master
@echo off
set autoRestVersion=0.16.0-Nightly20160406
if "%1" == "" (
set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-storage/2015-06-15/swagger/storage.json"
) else (
set specFile="%1"
)
set repoRoot=%~dp0..\..\..\..
set generateFolder=%~dp0Generated
if exist %generateFolder% rd /S /Q %generateFolder%
call "%repoRoot%\tools\autorest.gen.cmd" %specFile% Microsoft.Azure.Management.Storage %autoRestVersion% %generateFolder% "-FT 2"
|
::
:: Microsoft Azure SDK for Net - Generate library code
:: Copyright (C) Microsoft Corporation. All Rights Reserved.
::
@echo off
set autoRestVersion=0.16.0-Nightly20160406
if "%1" == "" (
set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-storage/2015-06-15/swagger/storage.json"
) else (
set specFile="%1"
)
set repoRoot=%~dp0..\..\..\..
set generateFolder=%~dp0Generated
if exist %generateFolder% rd /S /Q %generateFolder%
call "%repoRoot%\tools\autorest.gen.cmd" %specFile% Microsoft.Azure.Management.Storage %autoRestVersion% %generateFolder% "-FT 2"
|
Undo unintentional change to storage project
|
Undo unintentional change to storage project
|
Batchfile
|
mit
|
hyonholee/azure-sdk-for-net,yugangw-msft/azure-sdk-for-net,AzureAutomationTeam/azure-sdk-for-net,brjohnstmsft/azure-sdk-for-net,r22016/azure-sdk-for-net,AsrOneSdk/azure-sdk-for-net,AsrOneSdk/azure-sdk-for-net,pilor/azure-sdk-for-net,MichaelCommo/azure-sdk-for-net,ayeletshpigelman/azure-sdk-for-net,mihymel/azure-sdk-for-net,stankovski/azure-sdk-for-net,peshen/azure-sdk-for-net,shahabhijeet/azure-sdk-for-net,brjohnstmsft/azure-sdk-for-net,brjohnstmsft/azure-sdk-for-net,jhendrixMSFT/azure-sdk-for-net,markcowl/azure-sdk-for-net,begoldsm/azure-sdk-for-net,Yahnoosh/azure-sdk-for-net,DheerendraRathor/azure-sdk-for-net,pilor/azure-sdk-for-net,shutchings/azure-sdk-for-net,atpham256/azure-sdk-for-net,stankovski/azure-sdk-for-net,SiddharthChatrolaMs/azure-sdk-for-net,jackmagic313/azure-sdk-for-net,ahosnyms/azure-sdk-for-net,brjohnstmsft/azure-sdk-for-net,shahabhijeet/azure-sdk-for-net,btasdoven/azure-sdk-for-net,JasonYang-MSFT/azure-sdk-for-net,jackmagic313/azure-sdk-for-net,pankajsn/azure-sdk-for-net,AzCiS/azure-sdk-for-net,jackmagic313/azure-sdk-for-net,shahabhijeet/azure-sdk-for-net,DheerendraRathor/azure-sdk-for-net,JasonYang-MSFT/azure-sdk-for-net,pilor/azure-sdk-for-net,smithab/azure-sdk-for-net,jamestao/azure-sdk-for-net,jackmagic313/azure-sdk-for-net,ayeletshpigelman/azure-sdk-for-net,brjohnstmsft/azure-sdk-for-net,ScottHolden/azure-sdk-for-net,yaakoviyun/azure-sdk-for-net,djyou/azure-sdk-for-net,atpham256/azure-sdk-for-net,olydis/azure-sdk-for-net,samtoubia/azure-sdk-for-net,r22016/azure-sdk-for-net,AsrOneSdk/azure-sdk-for-net,peshen/azure-sdk-for-net,nathannfan/azure-sdk-for-net,smithab/azure-sdk-for-net,samtoubia/azure-sdk-for-net,djyou/azure-sdk-for-net,shutchings/azure-sdk-for-net,hyonholee/azure-sdk-for-net,jhendrixMSFT/azure-sdk-for-net,JasonYang-MSFT/azure-sdk-for-net,samtoubia/azure-sdk-for-net,ahosnyms/azure-sdk-for-net,olydis/azure-sdk-for-net,samtoubia/azure-sdk-for-net,jhendrixMSFT/azure-sdk-for-net,AzCiS/azure-sdk-for-net,yaakoviyun/azure-sdk-for-net,yoavrubin/azure-sdk-for-net,btasdoven/azure-sdk-for-net,yaakoviyun/azure-sdk-for-net,shutchings/azure-sdk-for-net,begoldsm/azure-sdk-for-net,yugangw-msft/azure-sdk-for-net,yugangw-msft/azure-sdk-for-net,olydis/azure-sdk-for-net,ScottHolden/azure-sdk-for-net,peshen/azure-sdk-for-net,AzureAutomationTeam/azure-sdk-for-net,btasdoven/azure-sdk-for-net,hyonholee/azure-sdk-for-net,jackmagic313/azure-sdk-for-net,MichaelCommo/azure-sdk-for-net,AzureAutomationTeam/azure-sdk-for-net,mihymel/azure-sdk-for-net,jamestao/azure-sdk-for-net,r22016/azure-sdk-for-net,ahosnyms/azure-sdk-for-net,AsrOneSdk/azure-sdk-for-net,AzCiS/azure-sdk-for-net,djyou/azure-sdk-for-net,jamestao/azure-sdk-for-net,begoldsm/azure-sdk-for-net,smithab/azure-sdk-for-net,ayeletshpigelman/azure-sdk-for-net,nathannfan/azure-sdk-for-net,SiddharthChatrolaMs/azure-sdk-for-net,hyonholee/azure-sdk-for-net,jamestao/azure-sdk-for-net,atpham256/azure-sdk-for-net,MichaelCommo/azure-sdk-for-net,yoavrubin/azure-sdk-for-net,SiddharthChatrolaMs/azure-sdk-for-net,DheerendraRathor/azure-sdk-for-net,Yahnoosh/azure-sdk-for-net,pankajsn/azure-sdk-for-net,yoavrubin/azure-sdk-for-net,nathannfan/azure-sdk-for-net,hyonholee/azure-sdk-for-net,pankajsn/azure-sdk-for-net,mihymel/azure-sdk-for-net,Yahnoosh/azure-sdk-for-net,ayeletshpigelman/azure-sdk-for-net,ScottHolden/azure-sdk-for-net,shahabhijeet/azure-sdk-for-net
|
23b163edf7fdf01819eb9b7a04ca19bfaab5e011
|
v2/bin/sdownload.cmd
|
v2/bin/sdownload.cmd
|
@rem Schema downloader
@rem
@rem Tool to download schemas.
@echo off
setlocal
if "%XMLBEANS_HOME%" EQU "" (set XMLBEANS_HOME=%~dp0..)
set cp=
set cp=%cp%;%XMLBEANS_HOME%\build\ar\xbean.jar
java -classpath %cp% org.apache.xmlbeans.impl.tool.SchemaResourceManager %*
:done
|
@rem Schema downloader
@rem
@rem Tool to download schemas.
@echo off
setlocal
if "%XMLBEANS_HOME%" EQU "" (set XMLBEANS_HOME=%~dp0..)
set cp=
set cp=%cp%;%XMLBEANS_HOME%\build\ar\xbean.jar
set cp=%cp%;%XMLBEANS_HOME%\build\lib\jsr173_api.jar
set cp=%cp%;%XMLBEANS_HOME%\build\lib\resolver.jar
java -classpath %cp% org.apache.xmlbeans.impl.tool.SchemaResourceManager %*
:done
|
Fix for sDownload tool. Added correct v2 classpath entries. Submitted by: Jacob Danner
|
Fix for sDownload tool. Added correct v2 classpath entries.
Submitted by: Jacob Danner
git-svn-id: 297cb4147f50b389680bb5ad136787e97b9148ae@111095 13f79535-47bb-0310-9956-ffa450edef68
|
Batchfile
|
apache-2.0
|
crow-misia/xmlbeans,crow-misia/xmlbeans,crow-misia/xmlbeans
|
3f3a345fa4a4849ac50b16979cde53f6dd26d163
|
webkit/build/JSConfig/prebuild.bat
|
webkit/build/JSConfig/prebuild.bat
|
@echo off
setlocal
set OUTDIR=%1
set JSENG=%2
set CYGWIN_ROOT=%~dp0..\..\..\third_party\cygwin\
set GNU_ROOT=%~dp0..\..\..\third_party\gnu\files
set PATH=%CYGWIN_ROOT%bin;%GNU_ROOT%;%SystemRoot%;%SystemRoot%\system32
:: Ensure that the cygwin mount points are defined
CALL %CYGWIN_ROOT%setup_mount.bat > NUL
bash -x create-config.sh %OUTDIR% %JSENG%
|
@echo off
setlocal
set OUTDIR=%1
set JSENG=%2
set CYGWIN_ROOT=%~dp0..\..\..\third_party\cygwin\
set GNU_ROOT=%~dp0..\..\..\third_party\gnu\files
:: Fix cp.exe on vista: without this flag, the files that it creates are not accessible.
set CYGWIN=nontsec
set PATH=%CYGWIN_ROOT%bin;%GNU_ROOT%;%SystemRoot%;%SystemRoot%\system32
:: Ensure that the cygwin mount points are defined
CALL %CYGWIN_ROOT%setup_mount.bat > NUL
bash -x create-config.sh %OUTDIR% %JSENG%
|
Fix a build issue with Vista. Stop cp.exe from trying to emulate POSIX security on top of NTFS.
|
Fix a build issue with Vista. Stop cp.exe from trying to emulate POSIX security
on top of NTFS.
BUG=1157117
git-svn-id: dd90618784b6a4b323ea0c23a071cb1c9e6f2ac7@40 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
|
Batchfile
|
bsd-3-clause
|
wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser,wistoch/meego-app-browser
|
f3f37b20bde0243bc4bf26939767ae97f5be9898
|
tensorflow/tools/ci_build/windows/cpu/cmake/run_py.bat
|
tensorflow/tools/ci_build/windows/cpu/cmake/run_py.bat
|
:: This script assumes the standard setup on tensorflow Jenkins windows machines.
:: It is NOT guaranteed to work on any other machine. Use at your own risk!
::
:: REQUIREMENTS:
:: * All installed in standard locations:
:: - JDK8, and JAVA_HOME set.
:: - Microsoft Visual Studio 2015 Community Edition
:: - Msys2
:: - Anaconda3
:: - CMake
:: Record the directory we are in. Script should be invoked from the root of the repository.
SET REPO_ROOT=%cd%
:: Make sure we have a clean directory to build things in.
SET BUILD_DIR=cmake_build
RMDIR %BUILD_DIR% /S /Q
MKDIR %BUILD_DIR%
CD %BUILD_DIR%
:: Set which tests to build
SET BUILD_CC_TESTS=OFF
SET BUILD_PYTHON_TESTS=ON
:: Run the CMAKE build to build the pip package.
CALL %REPO_ROOT%\tensorflow\tools\ci_build\windows\cpu\cmake\run_build.bat
SET PIP_EXE="C:\Program Files\Anaconda3\Scripts\pip.exe"
:: Uninstall tensorflow pip package, which might be a leftover from old runs.
%PIP_EXE% uninstall -y tensorflow
:: Install the pip package.
%PIP_EXE% install --upgrade %REPO_ROOT%\%BUILD_DIR%\tf_python\dist\tensorflow-0.11.0rc2_cmake_experimental-py3-none-any.whl
:: Run all python tests
ctest -C Release --output-on-failure
|
:: This script assumes the standard setup on tensorflow Jenkins windows machines.
:: It is NOT guaranteed to work on any other machine. Use at your own risk!
::
:: REQUIREMENTS:
:: * All installed in standard locations:
:: - JDK8, and JAVA_HOME set.
:: - Microsoft Visual Studio 2015 Community Edition
:: - Msys2
:: - Anaconda3
:: - CMake
:: Record the directory we are in. Script should be invoked from the root of the repository.
SET REPO_ROOT=%cd%
:: Make sure we have a clean directory to build things in.
SET BUILD_DIR=cmake_build
RMDIR %BUILD_DIR% /S /Q
MKDIR %BUILD_DIR%
CD %BUILD_DIR%
:: Set which tests to build
SET BUILD_CC_TESTS=OFF
SET BUILD_PYTHON_TESTS=ON
:: Run the CMAKE build to build the pip package.
CALL %REPO_ROOT%\tensorflow\tools\ci_build\windows\cpu\cmake\run_build.bat
SET PIP_EXE="C:\Program Files\Anaconda3\Scripts\pip.exe"
:: Uninstall tensorflow pip package, which might be a leftover from old runs.
%PIP_EXE% uninstall -y tensorflow
:: Install the pip package.
%PIP_EXE% install --upgrade %REPO_ROOT%\%BUILD_DIR%\tf_python\dist\tensorflow-0.11.0rc2-cp35-cp35m-win_amd64.whl
:: Run all python tests
ctest -C Release --output-on-failure
|
Update name of PIP package
|
Update name of PIP package
The consolidated `setup.py` uses a different name for the PIP package, and this was causing tests to fail.
|
Batchfile
|
apache-2.0
|
code-sauce/tensorflow,nightjean/Deep-Learning,davidzchen/tensorflow,lukeiwanski/tensorflow,jhaux/tensorflow,chenjun0210/tensorflow,ageron/tensorflow,benoitsteiner/tensorflow-xsmm,cxxgtxy/tensorflow,alsrgv/tensorflow,abhitopia/tensorflow,nolanliou/tensorflow,benoitsteiner/tensorflow-opencl,kevin-coder/tensorflow-fork,asadziach/tensorflow,ppries/tensorflow,raymondxyang/tensorflow,wangyum/tensorflow,bowang/tensorflow,ppries/tensorflow,aselle/tensorflow,nburn42/tensorflow,LUTAN/tensorflow,MycChiu/tensorflow,arborh/tensorflow,ppwwyyxx/tensorflow,gunan/tensorflow,eaplatanios/tensorflow,zycdragonball/tensorflow,raymondxyang/tensorflow,strint/tensorflow,Xeralux/tensorflow,hfp/tensorflow-xsmm,scenarios/tensorflow,ZhangXinNan/tensorflow,calebfoss/tensorflow,annarev/tensorflow,jart/tensorflow,asimshankar/tensorflow,snnn/tensorflow,benoitsteiner/tensorflow-xsmm,taknevski/tensorflow-xsmm,benoitsteiner/tensorflow,MoamerEncsConcordiaCa/tensorflow,lukeiwanski/tensorflow,ychfan/tensorflow,gnieboer/tensorflow,Mistobaan/tensorflow,lakshayg/tensorflow,RapidApplicationDevelopment/tensorflow,horance-liu/tensorflow,brchiu/tensorflow,DavidNorman/tensorflow,bowang/tensorflow,sandeepgupta2k4/tensorflow,ibmsoe/tensorflow,gnieboer/tensorflow,Mistobaan/tensorflow,benoitsteiner/tensorflow,Intel-tensorflow/tensorflow,aselle/tensorflow,thesuperzapper/tensorflow,RapidApplicationDevelopment/tensorflow,girving/tensorflow,girving/tensorflow,odejesush/tensorflow,lakshayg/tensorflow,xodus7/tensorflow,dendisuhubdy/tensorflow,gautam1858/tensorflow,nolanliou/tensorflow,MoamerEncsConcordiaCa/tensorflow,jalexvig/tensorflow,snnn/tensorflow,Bismarrck/tensorflow,unsiloai/syntaxnet-ops-hack,AnishShah/tensorflow,av8ramit/tensorflow,hehongliang/tensorflow,Mazecreator/tensorflow,nikste/tensorflow,horance-liu/tensorflow,jart/tensorflow,johndpope/tensorflow,xodus7/tensorflow,lakshayg/tensorflow,llhe/tensorflow,hfp/tensorflow-xsmm,jwlawson/tensorflow,davidzchen/tensorflow,wangyum/tensorflow,martinwicke/tensorflow,ghchinoy/tensorflow,paolodedios/tensorflow,jbedorf/tensorflow,caisq/tensorflow,drpngx/tensorflow,av8ramit/tensorflow,ZhangXinNan/tensorflow,ArtsiomCh/tensorflow,sandeepdsouza93/TensorFlow-15712,av8ramit/tensorflow,petewarden/tensorflow,alshedivat/tensorflow,MoamerEncsConcordiaCa/tensorflow,eerwitt/tensorflow,asimshankar/tensorflow,ppwwyyxx/tensorflow,adit-chandra/tensorflow,xzturn/tensorflow,arborh/tensorflow,codrut3/tensorflow,nburn42/tensorflow,mdrumond/tensorflow,llhe/tensorflow,MycChiu/tensorflow,pavelchristof/gomoku-ai,arborh/tensorflow,lukeiwanski/tensorflow-opencl,alsrgv/tensorflow,ibmsoe/tensorflow,yaroslavvb/tensorflow,with-git/tensorflow,chemelnucfin/tensorflow,ishay2b/tensorflow,seaotterman/tensorflow,AnishShah/tensorflow,wangyum/tensorflow,vrv/tensorflow,aam-at/tensorflow,asimshankar/tensorflow,tensorflow/tensorflow,manipopopo/tensorflow,adamtiger/tensorflow,RapidApplicationDevelopment/tensorflow,rdipietro/tensorflow,renyi533/tensorflow,scenarios/tensorflow,benoitsteiner/tensorflow,DavidNorman/tensorflow,alisidd/tensorflow,Xeralux/tensorflow,davidzchen/tensorflow,seanli9jan/tensorflow,haeusser/tensorflow,AndreasMadsen/tensorflow,tomasreimers/tensorflow-emscripten,handroissuazo/tensorflow,seaotterman/tensorflow,DavidNorman/tensorflow,LUTAN/tensorflow,theflofly/tensorflow,zasdfgbnm/tensorflow,dendisuhubdy/tensorflow,dancingdan/tensorflow,ghchinoy/tensorflow,meteorcloudy/tensorflow,mortada/tensorflow,theflofly/tensorflow,chris-chris/tensorflow,yongtang/tensorflow,tntnatbry/tensorflow,yongtang/tensorflow,kchodorow/tensorflow,arborh/tensorflow,jhseu/tensorflow,Carmezim/tensorflow,manipopopo/tensorflow,aldian/tensorflow,jwlawson/tensorflow,chris-chris/tensorflow,DavidNorman/tensorflow,cxxgtxy/tensorflow,ZhangXinNan/tensorflow,laszlocsomor/tensorflow,sarvex/tensorflow,AnishShah/tensorflow,horance-liu/tensorflow,rabipanda/tensorflow,SnakeJenny/TensorFlow,nburn42/tensorflow,asimshankar/tensorflow,freedomtan/tensorflow,mdrumond/tensorflow,hsaputra/tensorflow,jhaux/tensorflow,benoitsteiner/tensorflow,memo/tensorflow,mengxn/tensorflow,jalexvig/tensorflow,aam-at/tensorflow,tntnatbry/tensorflow,mavenlin/tensorflow,aselle/tensorflow,gautam1858/tensorflow,martinwicke/tensorflow,alsrgv/tensorflow,Bulochkin/tensorflow_pack,karllessard/tensorflow,Kongsea/tensorflow,caisq/tensorflow,frreiss/tensorflow-fred,tensorflow/tensorflow-experimental_link_static_libraries_once,chenjun0210/tensorflow,code-sauce/tensorflow,dendisuhubdy/tensorflow,theflofly/tensorflow,ppries/tensorflow,AndreasMadsen/tensorflow,drpngx/tensorflow,ppries/tensorflow,meteorcloudy/tensorflow,code-sauce/tensorflow,jbedorf/tensorflow,mortada/tensorflow,sandeepgupta2k4/tensorflow,kevin-coder/tensorflow-fork,tomasreimers/tensorflow-emscripten,laszlocsomor/tensorflow,Kongsea/tensorflow,markslwong/tensorflow,JVillella/tensorflow,Xeralux/tensorflow,seanli9jan/tensorflow,zycdragonball/tensorflow,rabipanda/tensorflow,unsiloai/syntaxnet-ops-hack,tntnatbry/tensorflow,anilmuthineni/tensorflow,av8ramit/tensorflow,gojira/tensorflow,kobejean/tensorflow,Bismarrck/tensorflow,Xeralux/tensorflow,lukeiwanski/tensorflow,odejesush/tensorflow,markslwong/tensorflow,ageron/tensorflow,DCSaunders/tensorflow,aldian/tensorflow,mavenlin/tensorflow,DCSaunders/tensorflow,aselle/tensorflow,adamtiger/tensorflow,horance-liu/tensorflow,annarev/tensorflow,laosiaudi/tensorflow,snnn/tensorflow,girving/tensorflow,elingg/tensorflow,LUTAN/tensorflow,alistairlow/tensorflow,aldian/tensorflow,mortada/tensorflow,ppries/tensorflow,yaroslavvb/tensorflow,AndreasMadsen/tensorflow,ravindrapanda/tensorflow,kobejean/tensorflow,yanchen036/tensorflow,yanchen036/tensorflow,nburn42/tensorflow,xodus7/tensorflow,eadgarchen/tensorflow,Carmezim/tensorflow,ishay2b/tensorflow,anilmuthineni/tensorflow,paolodedios/tensorflow,tillahoffmann/tensorflow,laosiaudi/tensorflow,with-git/tensorflow,haeusser/tensorflow,guschmue/tensorflow,hfp/tensorflow-xsmm,horance-liu/tensorflow,arborh/tensorflow,Bulochkin/tensorflow_pack,renyi533/tensorflow,laosiaudi/tensorflow,a-doumoulakis/tensorflow,kobejean/tensorflow,jbedorf/tensorflow,renyi533/tensorflow,jhseu/tensorflow,cancan101/tensorflow,nikste/tensorflow,rdipietro/tensorflow,raymondxyang/tensorflow,manipopopo/tensorflow,markslwong/tensorflow,ychfan/tensorflow,tensorflow/tensorflow-experimental_link_static_libraries_once,benoitsteiner/tensorflow-xsmm,HKUST-SING/tensorflow,karllessard/tensorflow,elingg/tensorflow,jalexvig/tensorflow,paolodedios/tensorflow,scenarios/tensorflow,brchiu/tensorflow,frreiss/tensorflow-fred,freedomtan/tensorflow,unsiloai/syntaxnet-ops-hack,DCSaunders/tensorflow,MoamerEncsConcordiaCa/tensorflow,sandeepgupta2k4/tensorflow,anilmuthineni/tensorflow,annarev/tensorflow,yongtang/tensorflow,guschmue/tensorflow,scenarios/tensorflow,jalexvig/tensorflow,alistairlow/tensorflow,jart/tensorflow,HKUST-SING/tensorflow,frreiss/tensorflow-fred,admcrae/tensorflow,ville-k/tensorflow,handroissuazo/tensorflow,Xeralux/tensorflow,Bismarrck/tensorflow,sarvex/tensorflow,manipopopo/tensorflow,allenlavoie/tensorflow,jhseu/tensorflow,llhe/tensorflow,Bulochkin/tensorflow_pack,tensorflow/tensorflow-experimental_link_static_libraries_once,alivecor/tensorflow,alsrgv/tensorflow,aldian/tensorflow,tensorflow/tensorflow-experimental_link_static_libraries_once,jart/tensorflow,benoitsteiner/tensorflow-xsmm,tensorflow/tensorflow-pywrap_saved_model,dongjoon-hyun/tensorflow,brchiu/tensorflow,laosiaudi/tensorflow,handroissuazo/tensorflow,mengxn/tensorflow,vrv/tensorflow,Moriadry/tensorflow,gojira/tensorflow,alisidd/tensorflow,thjashin/tensorflow,gojira/tensorflow,manazhao/tf_recsys,Carmezim/tensorflow,thesuperzapper/tensorflow,sandeepgupta2k4/tensorflow,jendap/tensorflow,arborh/tensorflow,code-sauce/tensorflow,jhaux/tensorflow,brchiu/tensorflow,calebfoss/tensorflow,jhaux/tensorflow,sarvex/tensorflow,gautam1858/tensorflow,ibmsoe/tensorflow,codrut3/tensorflow,codrut3/tensorflow,Mazecreator/tensorflow,suiyuan2009/tensorflow,ychfan/tensorflow,Bismarrck/tensorflow,lukeiwanski/tensorflow-opencl,xzturn/tensorflow,pavelchristof/gomoku-ai,code-sauce/tensorflow,tillahoffmann/tensorflow,ychfan/tensorflow,meteorcloudy/tensorflow,abhitopia/tensorflow,gojira/tensorflow,jalexvig/tensorflow,adit-chandra/tensorflow,kevin-coder/tensorflow-fork,bowang/tensorflow,markslwong/tensorflow,bowang/tensorflow,codrut3/tensorflow,tomasreimers/tensorflow-emscripten,adit-chandra/tensorflow,kevin-coder/tensorflow-fork,ZhangXinNan/tensorflow,av8ramit/tensorflow,alshedivat/tensorflow,a-doumoulakis/tensorflow,rdipietro/tensorflow,hfp/tensorflow-xsmm,mavenlin/tensorflow,kchodorow/tensorflow,adit-chandra/tensorflow,Mistobaan/tensorflow,cancan101/tensorflow,dendisuhubdy/tensorflow,meteorcloudy/tensorflow,wangyum/tensorflow,abhitopia/tensorflow,DavidNorman/tensorflow,Bismarrck/tensorflow,cancan101/tensorflow,Intel-tensorflow/tensorflow,whn09/tensorflow,yanchen036/tensorflow,MoamerEncsConcordiaCa/tensorflow,lakshayg/tensorflow,freedomtan/tensorflow,cancan101/tensorflow,brchiu/tensorflow,codrut3/tensorflow,handroissuazo/tensorflow,hsaputra/tensorflow,dongjoon-hyun/tensorflow,rdipietro/tensorflow,ageron/tensorflow,MycChiu/tensorflow,dongjoon-hyun/tensorflow,gibiansky/tensorflow,jwlawson/tensorflow,chris-chris/tensorflow,AnishShah/tensorflow,andrewcmyers/tensorflow,rabipanda/tensorflow,arborh/tensorflow,DCSaunders/tensorflow,caisq/tensorflow,adamtiger/tensorflow,pavelchristof/gomoku-ai,ville-k/tensorflow,ravindrapanda/tensorflow,av8ramit/tensorflow,elingg/tensorflow,mdrumond/tensorflow,handroissuazo/tensorflow,ville-k/tensorflow,sandeepdsouza93/TensorFlow-15712,rdipietro/tensorflow,lukeiwanski/tensorflow,sjperkins/tensorflow,yaroslavvb/tensorflow,hehongliang/tensorflow,yufengg/tensorflow,zycdragonball/tensorflow,alshedivat/tensorflow,cxxgtxy/tensorflow,a-doumoulakis/tensorflow,whn09/tensorflow,adit-chandra/tensorflow,chenjun0210/tensorflow,dancingdan/tensorflow,gibiansky/tensorflow,guschmue/tensorflow,admcrae/tensorflow,xodus7/tensorflow,benoitsteiner/tensorflow,haeusser/tensorflow,benoitsteiner/tensorflow-xsmm,nightjean/Deep-Learning,alheinecke/tensorflow-xsmm,manjunaths/tensorflow,gojira/tensorflow,tntnatbry/tensorflow,whn09/tensorflow,ppries/tensorflow,freedomtan/tensorflow,suiyuan2009/tensorflow,gautam1858/tensorflow,nburn42/tensorflow,rabipanda/tensorflow,memo/tensorflow,eaplatanios/tensorflow,pavelchristof/gomoku-ai,mortada/tensorflow,dongjoon-hyun/tensorflow,tensorflow/tensorflow,thjashin/tensorflow,xzturn/tensorflow,kchodorow/tensorflow,DCSaunders/tensorflow,dendisuhubdy/tensorflow,ghchinoy/tensorflow,gnieboer/tensorflow,lakshayg/tensorflow,Mistobaan/tensorflow,lukeiwanski/tensorflow-opencl,mdrumond/tensorflow,alheinecke/tensorflow-xsmm,alistairlow/tensorflow,snnn/tensorflow,jbedorf/tensorflow,jalexvig/tensorflow,abhitopia/tensorflow,raymondxyang/tensorflow,sarvex/tensorflow,seanli9jan/tensorflow,ishay2b/tensorflow,rabipanda/tensorflow,dyoung418/tensorflow,rdipietro/tensorflow,xodus7/tensorflow,brchiu/tensorflow,eadgarchen/tensorflow,alshedivat/tensorflow,aselle/tensorflow,kevin-coder/tensorflow-fork,benoitsteiner/tensorflow-opencl,jhseu/tensorflow,mixturemodel-flow/tensorflow,andrewcmyers/tensorflow,eerwitt/tensorflow,tensorflow/tensorflow,Intel-tensorflow/tensorflow,codrut3/tensorflow,tensorflow/tensorflow-pywrap_tf_optimizer,yanchen036/tensorflow,Bulochkin/tensorflow_pack,Kongsea/tensorflow,vrv/tensorflow,petewarden/tensorflow,benoitsteiner/tensorflow,aldian/tensorflow,av8ramit/tensorflow,ville-k/tensorflow,kevin-coder/tensorflow-fork,Carmezim/tensorflow,MoamerEncsConcordiaCa/tensorflow,jendap/tensorflow,apark263/tensorflow,karllessard/tensorflow,meteorcloudy/tensorflow,dendisuhubdy/tensorflow,kchodorow/tensorflow,jbedorf/tensorflow,tensorflow/tensorflow-pywrap_saved_model,renyi533/tensorflow,dancingdan/tensorflow,renyi533/tensorflow,DCSaunders/tensorflow,ravindrapanda/tensorflow,chenjun0210/tensorflow,Carmezim/tensorflow,caisq/tensorflow,sjperkins/tensorflow,laosiaudi/tensorflow,yufengg/tensorflow,seaotterman/tensorflow,manazhao/tf_recsys,eaplatanios/tensorflow,alsrgv/tensorflow,annarev/tensorflow,gautam1858/tensorflow,laszlocsomor/tensorflow,anilmuthineni/tensorflow,rdipietro/tensorflow,manipopopo/tensorflow,elingg/tensorflow,sandeepdsouza93/TensorFlow-15712,dongjoon-hyun/tensorflow,tensorflow/tensorflow-pywrap_tf_optimizer,taknevski/tensorflow-xsmm,theflofly/tensorflow,whn09/tensorflow,petewarden/tensorflow,petewarden/tensorflow,hehongliang/tensorflow,kchodorow/tensorflow,tiagofrepereira2012/tensorflow,martinwicke/tensorflow,tornadozou/tensorflow,elingg/tensorflow,gojira/tensorflow,dyoung418/tensorflow,Intel-tensorflow/tensorflow,asimshankar/tensorflow,seaotterman/tensorflow,dyoung418/tensorflow,ppwwyyxx/tensorflow,manjunaths/tensorflow,hsaputra/tensorflow,ville-k/tensorflow,andrewcmyers/tensorflow,paolodedios/tensorflow,SnakeJenny/TensorFlow,adamtiger/tensorflow,Intel-Corporation/tensorflow,asadziach/tensorflow,caisq/tensorflow,hehongliang/tensorflow,markslwong/tensorflow,asimshankar/tensorflow,AndreasMadsen/tensorflow,yaroslavvb/tensorflow,RapidApplicationDevelopment/tensorflow,Moriadry/tensorflow,Bulochkin/tensorflow_pack,jostep/tensorflow,kevin-coder/tensorflow-fork,markslwong/tensorflow,MycChiu/tensorflow,handroissuazo/tensorflow,karllessard/tensorflow,tensorflow/tensorflow-experimental_link_static_libraries_once,alistairlow/tensorflow,pcm17/tensorflow,guschmue/tensorflow,codrut3/tensorflow,xodus7/tensorflow,pcm17/tensorflow,freedomtan/tensorflow,gunan/tensorflow,manipopopo/tensorflow,eaplatanios/tensorflow,lukeiwanski/tensorflow-opencl,Mazecreator/tensorflow,Xeralux/tensorflow,benoitsteiner/tensorflow-xsmm,seanli9jan/tensorflow,johndpope/tensorflow,sandeepdsouza93/TensorFlow-15712,nightjean/Deep-Learning,bowang/tensorflow,ran5515/DeepDecision,dongjoon-hyun/tensorflow,wangyum/tensorflow,thesuperzapper/tensorflow,thjashin/tensorflow,freedomtan/tensorflow,alivecor/tensorflow,LUTAN/tensorflow,benoitsteiner/tensorflow-xsmm,MycChiu/tensorflow,paolodedios/tensorflow,laszlocsomor/tensorflow,dendisuhubdy/tensorflow,asadziach/tensorflow,yanchen036/tensorflow,yufengg/tensorflow,paolodedios/tensorflow,thjashin/tensorflow,Kongsea/tensorflow,adamtiger/tensorflow,renyi533/tensorflow,jbedorf/tensorflow,jhseu/tensorflow,benoitsteiner/tensorflow-opencl,gautam1858/tensorflow,mortada/tensorflow,tensorflow/tensorflow,AnishShah/tensorflow,tillahoffmann/tensorflow,lukeiwanski/tensorflow,Mazecreator/tensorflow,martinwicke/tensorflow,snnn/tensorflow,taknevski/tensorflow-xsmm,alisidd/tensorflow,kchodorow/tensorflow,davidzchen/tensorflow,guschmue/tensorflow,jbedorf/tensorflow,raymondxyang/tensorflow,hsaputra/tensorflow,llhe/tensorflow,rdipietro/tensorflow,ArtsiomCh/tensorflow,xodus7/tensorflow,yaroslavvb/tensorflow,manipopopo/tensorflow,taknevski/tensorflow-xsmm,chemelnucfin/tensorflow,Intel-Corporation/tensorflow,aam-at/tensorflow,benoitsteiner/tensorflow-xsmm,drpngx/tensorflow,petewarden/tensorflow,alistairlow/tensorflow,markslwong/tensorflow,thesuperzapper/tensorflow,caisq/tensorflow,xodus7/tensorflow,elingg/tensorflow,ghchinoy/tensorflow,suiyuan2009/tensorflow,ageron/tensorflow,odejesush/tensorflow,Intel-Corporation/tensorflow,nikste/tensorflow,johndpope/tensorflow,lukeiwanski/tensorflow-opencl,elingg/tensorflow,nolanliou/tensorflow,Moriadry/tensorflow,hsaputra/tensorflow,gautam1858/tensorflow,alivecor/tensorflow,apark263/tensorflow,alsrgv/tensorflow,ravindrapanda/tensorflow,jendap/tensorflow,guschmue/tensorflow,alisidd/tensorflow,tomasreimers/tensorflow-emscripten,gojira/tensorflow,SnakeJenny/TensorFlow,strint/tensorflow,frreiss/tensorflow-fred,dancingdan/tensorflow,unsiloai/syntaxnet-ops-hack,allenlavoie/tensorflow,tensorflow/tensorflow,JVillella/tensorflow,odejesush/tensorflow,nolanliou/tensorflow,RapidApplicationDevelopment/tensorflow,asimshankar/tensorflow,tntnatbry/tensorflow,tillahoffmann/tensorflow,with-git/tensorflow,yanchen036/tensorflow,seaotterman/tensorflow,xzturn/tensorflow,chris-chris/tensorflow,tntnatbry/tensorflow,eaplatanios/tensorflow,aselle/tensorflow,meteorcloudy/tensorflow,AndreasMadsen/tensorflow,tensorflow/tensorflow,davidzchen/tensorflow,girving/tensorflow,frreiss/tensorflow-fred,MoamerEncsConcordiaCa/tensorflow,aldian/tensorflow,tensorflow/tensorflow-pywrap_tf_optimizer,manipopopo/tensorflow,JVillella/tensorflow,ravindrapanda/tensorflow,mengxn/tensorflow,martinwicke/tensorflow,allenlavoie/tensorflow,tiagofrepereira2012/tensorflow,AnishShah/tensorflow,ibmsoe/tensorflow,jendap/tensorflow,paolodedios/tensorflow,adit-chandra/tensorflow,HKUST-SING/tensorflow,manjunaths/tensorflow,freedomtan/tensorflow,ArtsiomCh/tensorflow,xzturn/tensorflow,gnieboer/tensorflow,Mazecreator/tensorflow,arborh/tensorflow,manazhao/tf_recsys,Xeralux/tensorflow,RapidApplicationDevelopment/tensorflow,sandeepgupta2k4/tensorflow,zasdfgbnm/tensorflow,scenarios/tensorflow,taknevski/tensorflow-xsmm,apark263/tensorflow,tornadozou/tensorflow,ageron/tensorflow,JVillella/tensorflow,andrewcmyers/tensorflow,dendisuhubdy/tensorflow,ghchinoy/tensorflow,chemelnucfin/tensorflow,pcm17/tensorflow,drpngx/tensorflow,hfp/tensorflow-xsmm,zasdfgbnm/tensorflow,tornadozou/tensorflow,gunan/tensorflow,MycChiu/tensorflow,admcrae/tensorflow,jhseu/tensorflow,ZhangXinNan/tensorflow,alivecor/tensorflow,yongtang/tensorflow,alistairlow/tensorflow,benoitsteiner/tensorflow,sjperkins/tensorflow,laszlocsomor/tensorflow,adit-chandra/tensorflow,anilmuthineni/tensorflow,suiyuan2009/tensorflow,martinwicke/tensorflow,asimshankar/tensorflow,ArtsiomCh/tensorflow,dongjoon-hyun/tensorflow,admcrae/tensorflow,admcrae/tensorflow,xzturn/tensorflow,maciekcc/tensorflow,ppries/tensorflow,xzturn/tensorflow,freedomtan/tensorflow,tensorflow/tensorflow-pywrap_tf_optimizer,chemelnucfin/tensorflow,haeusser/tensorflow,wangyum/tensorflow,gibiansky/tensorflow,lukeiwanski/tensorflow,apark263/tensorflow,nightjean/Deep-Learning,hehongliang/tensorflow,eerwitt/tensorflow,dyoung418/tensorflow,benoitsteiner/tensorflow-xsmm,nightjean/Deep-Learning,theflofly/tensorflow,alshedivat/tensorflow,JVillella/tensorflow,odejesush/tensorflow,ageron/tensorflow,elingg/tensorflow,kchodorow/tensorflow,jendap/tensorflow,lakshayg/tensorflow,thjashin/tensorflow,Intel-tensorflow/tensorflow,krikru/tensorflow-opencl,rabipanda/tensorflow,alshedivat/tensorflow,sarvex/tensorflow,freedomtan/tensorflow,haeusser/tensorflow,dancingdan/tensorflow,martinwicke/tensorflow,Bulochkin/tensorflow_pack,guschmue/tensorflow,nolanliou/tensorflow,alivecor/tensorflow,DavidNorman/tensorflow,paolodedios/tensorflow,odejesush/tensorflow,Bulochkin/tensorflow_pack,tensorflow/tensorflow-pywrap_saved_model,ArtsiomCh/tensorflow,asimshankar/tensorflow,jwlawson/tensorflow,jendap/tensorflow,ArtsiomCh/tensorflow,abhitopia/tensorflow,eadgarchen/tensorflow,llhe/tensorflow,yufengg/tensorflow,hsaputra/tensorflow,guschmue/tensorflow,ychfan/tensorflow,karllessard/tensorflow,meteorcloudy/tensorflow,DavidNorman/tensorflow,ZhangXinNan/tensorflow,manjunaths/tensorflow,tensorflow/tensorflow-experimental_link_static_libraries_once,alisidd/tensorflow,Bismarrck/tensorflow,ran5515/DeepDecision,brchiu/tensorflow,xzturn/tensorflow,xodus7/tensorflow,ychfan/tensorflow,strint/tensorflow,Intel-Corporation/tensorflow,zycdragonball/tensorflow,anilmuthineni/tensorflow,dongjoon-hyun/tensorflow,eadgarchen/tensorflow,zasdfgbnm/tensorflow,seanli9jan/tensorflow,frreiss/tensorflow-fred,alheinecke/tensorflow-xsmm,alheinecke/tensorflow-xsmm,karllessard/tensorflow,yongtang/tensorflow,calebfoss/tensorflow,andrewcmyers/tensorflow,jostep/tensorflow,JingJunYin/tensorflow,memo/tensorflow,petewarden/tensorflow,girving/tensorflow,arborh/tensorflow,thjashin/tensorflow,JingJunYin/tensorflow,lukeiwanski/tensorflow-opencl,thesuperzapper/tensorflow,nolanliou/tensorflow,memo/tensorflow,apark263/tensorflow,apark263/tensorflow,sjperkins/tensorflow,aselle/tensorflow,sarvex/tensorflow,xodus7/tensorflow,tensorflow/tensorflow-pywrap_tf_optimizer,wangyum/tensorflow,jalexvig/tensorflow,ychfan/tensorflow,HKUST-SING/tensorflow,memo/tensorflow,mengxn/tensorflow,frreiss/tensorflow-fred,sjperkins/tensorflow,llhe/tensorflow,gunan/tensorflow,jendap/tensorflow,asadziach/tensorflow,alshedivat/tensorflow,elingg/tensorflow,whn09/tensorflow,eadgarchen/tensorflow,gunan/tensorflow,SnakeJenny/TensorFlow,gautam1858/tensorflow,strint/tensorflow,a-doumoulakis/tensorflow,JingJunYin/tensorflow,Moriadry/tensorflow,manjunaths/tensorflow,benoitsteiner/tensorflow,tornadozou/tensorflow,girving/tensorflow,taknevski/tensorflow-xsmm,Intel-tensorflow/tensorflow,JingJunYin/tensorflow,martinwicke/tensorflow,vrv/tensorflow,HKUST-SING/tensorflow,LUTAN/tensorflow,calebfoss/tensorflow,av8ramit/tensorflow,xodus7/tensorflow,sjperkins/tensorflow,pavelchristof/gomoku-ai,eerwitt/tensorflow,nikste/tensorflow,gojira/tensorflow,ArtsiomCh/tensorflow,bowang/tensorflow,kevin-coder/tensorflow-fork,manipopopo/tensorflow,karllessard/tensorflow,freedomtan/tensorflow,ville-k/tensorflow,gojira/tensorflow,manazhao/tf_recsys,dancingdan/tensorflow,krikru/tensorflow-opencl,mengxn/tensorflow,calebfoss/tensorflow,LUTAN/tensorflow,Mistobaan/tensorflow,theflofly/tensorflow,jhaux/tensorflow,caisq/tensorflow,calebfoss/tensorflow,alshedivat/tensorflow,jostep/tensorflow,nightjean/Deep-Learning,dongjoon-hyun/tensorflow,zasdfgbnm/tensorflow,tensorflow/tensorflow-pywrap_saved_model,tensorflow/tensorflow-pywrap_tf_optimizer,ibmsoe/tensorflow,eadgarchen/tensorflow,jart/tensorflow,mavenlin/tensorflow,benoitsteiner/tensorflow-opencl,ghchinoy/tensorflow,AnishShah/tensorflow,allenlavoie/tensorflow,unsiloai/syntaxnet-ops-hack,jendap/tensorflow,zasdfgbnm/tensorflow,guschmue/tensorflow,DavidNorman/tensorflow,johndpope/tensorflow,dancingdan/tensorflow,mortada/tensorflow,cxxgtxy/tensorflow,drpngx/tensorflow,seanli9jan/tensorflow,krikru/tensorflow-opencl,benoitsteiner/tensorflow,eerwitt/tensorflow,cancan101/tensorflow,laszlocsomor/tensorflow,mixturemodel-flow/tensorflow,ghchinoy/tensorflow,seanli9jan/tensorflow,tntnatbry/tensorflow,strint/tensorflow,aam-at/tensorflow,gunan/tensorflow,aam-at/tensorflow,davidzchen/tensorflow,ppwwyyxx/tensorflow,jwlawson/tensorflow,gunan/tensorflow,hfp/tensorflow-xsmm,hsaputra/tensorflow,benoitsteiner/tensorflow-opencl,Kongsea/tensorflow,memo/tensorflow,aam-at/tensorflow,laszlocsomor/tensorflow,tomasreimers/tensorflow-emscripten,LUTAN/tensorflow,dancingdan/tensorflow,seanli9jan/tensorflow,karllessard/tensorflow,sandeepgupta2k4/tensorflow,petewarden/tensorflow,xzturn/tensorflow,lukeiwanski/tensorflow,jalexvig/tensorflow,eadgarchen/tensorflow,zasdfgbnm/tensorflow,tiagofrepereira2012/tensorflow,chris-chris/tensorflow,Carmezim/tensorflow,yufengg/tensorflow,ghchinoy/tensorflow,Intel-Corporation/tensorflow,with-git/tensorflow,abhitopia/tensorflow,ZhangXinNan/tensorflow,tiagofrepereira2012/tensorflow,gunan/tensorflow,alistairlow/tensorflow,kchodorow/tensorflow,meteorcloudy/tensorflow,av8ramit/tensorflow,dendisuhubdy/tensorflow,benoitsteiner/tensorflow-opencl,Mistobaan/tensorflow,alheinecke/tensorflow-xsmm,tensorflow/tensorflow,llhe/tensorflow,whn09/tensorflow,jbedorf/tensorflow,nolanliou/tensorflow,yufengg/tensorflow,yaroslavvb/tensorflow,kobejean/tensorflow,annarev/tensorflow,chris-chris/tensorflow,strint/tensorflow,gnieboer/tensorflow,cancan101/tensorflow,horance-liu/tensorflow,tornadozou/tensorflow,codrut3/tensorflow,sjperkins/tensorflow,chris-chris/tensorflow,dancingdan/tensorflow,hsaputra/tensorflow,HKUST-SING/tensorflow,lukeiwanski/tensorflow,cancan101/tensorflow,alivecor/tensorflow,jostep/tensorflow,tensorflow/tensorflow-pywrap_saved_model,JingJunYin/tensorflow,av8ramit/tensorflow,nikste/tensorflow,aam-at/tensorflow,Mazecreator/tensorflow,jhaux/tensorflow,zasdfgbnm/tensorflow,aam-at/tensorflow,alisidd/tensorflow,a-doumoulakis/tensorflow,laszlocsomor/tensorflow,tornadozou/tensorflow,Intel-tensorflow/tensorflow,benoitsteiner/tensorflow-opencl,karllessard/tensorflow,pcm17/tensorflow,Mazecreator/tensorflow,code-sauce/tensorflow,Bulochkin/tensorflow_pack,ran5515/DeepDecision,alsrgv/tensorflow,ishay2b/tensorflow,odejesush/tensorflow,theflofly/tensorflow,drpngx/tensorflow,with-git/tensorflow,alshedivat/tensorflow,vrv/tensorflow,jart/tensorflow,cancan101/tensorflow,ran5515/DeepDecision,nikste/tensorflow,ibmsoe/tensorflow,annarev/tensorflow,sjperkins/tensorflow,pcm17/tensorflow,sjperkins/tensorflow,davidzchen/tensorflow,jbedorf/tensorflow,chenjun0210/tensorflow,dyoung418/tensorflow,caisq/tensorflow,jhaux/tensorflow,tensorflow/tensorflow-pywrap_saved_model,gunan/tensorflow,tensorflow/tensorflow,ageron/tensorflow,ppwwyyxx/tensorflow,bowang/tensorflow,gnieboer/tensorflow,mortada/tensorflow,jwlawson/tensorflow,manipopopo/tensorflow,cxxgtxy/tensorflow,mdrumond/tensorflow,tensorflow/tensorflow-pywrap_saved_model,JingJunYin/tensorflow,gnieboer/tensorflow,AnishShah/tensorflow,tntnatbry/tensorflow,yanchen036/tensorflow,kchodorow/tensorflow,rabipanda/tensorflow,benoitsteiner/tensorflow-opencl,petewarden/tensorflow,handroissuazo/tensorflow,yongtang/tensorflow,thjashin/tensorflow,code-sauce/tensorflow,anilmuthineni/tensorflow,horance-liu/tensorflow,DavidNorman/tensorflow,eaplatanios/tensorflow,Bulochkin/tensorflow_pack,wangyum/tensorflow,Bulochkin/tensorflow_pack,code-sauce/tensorflow,seanli9jan/tensorflow,chenjun0210/tensorflow,AnishShah/tensorflow,benoitsteiner/tensorflow,thjashin/tensorflow,jhseu/tensorflow,calebfoss/tensorflow,paolodedios/tensorflow,gibiansky/tensorflow,gautam1858/tensorflow,with-git/tensorflow,snnn/tensorflow,chemelnucfin/tensorflow,sandeepgupta2k4/tensorflow,kobejean/tensorflow,jhaux/tensorflow,tillahoffmann/tensorflow,eadgarchen/tensorflow,aldian/tensorflow,renyi533/tensorflow,RapidApplicationDevelopment/tensorflow,ghchinoy/tensorflow,llhe/tensorflow,dongjoon-hyun/tensorflow,JingJunYin/tensorflow,ppwwyyxx/tensorflow,theflofly/tensorflow,tomasreimers/tensorflow-emscripten,Bismarrck/tensorflow,suiyuan2009/tensorflow,ville-k/tensorflow,memo/tensorflow,Xeralux/tensorflow,snnn/tensorflow,manazhao/tf_recsys,adit-chandra/tensorflow,aldian/tensorflow,SnakeJenny/TensorFlow,pcm17/tensorflow,apark263/tensorflow,sandeepgupta2k4/tensorflow,johndpope/tensorflow,chemelnucfin/tensorflow,thesuperzapper/tensorflow,scenarios/tensorflow,HKUST-SING/tensorflow,eaplatanios/tensorflow,karllessard/tensorflow,yongtang/tensorflow,tntnatbry/tensorflow,kobejean/tensorflow,raymondxyang/tensorflow,alheinecke/tensorflow-xsmm,apark263/tensorflow,cxxgtxy/tensorflow,mengxn/tensorflow,chenjun0210/tensorflow,jhseu/tensorflow,nburn42/tensorflow,ibmsoe/tensorflow,yanchen036/tensorflow,frreiss/tensorflow-fred,ghchinoy/tensorflow,sjperkins/tensorflow,freedomtan/tensorflow,tensorflow/tensorflow-pywrap_saved_model,girving/tensorflow,tensorflow/tensorflow,allenlavoie/tensorflow,scenarios/tensorflow,Mistobaan/tensorflow,mavenlin/tensorflow,handroissuazo/tensorflow,aselle/tensorflow,DCSaunders/tensorflow,chemelnucfin/tensorflow,hfp/tensorflow-xsmm,tensorflow/tensorflow-pywrap_tf_optimizer,tiagofrepereira2012/tensorflow,petewarden/tensorflow,alshedivat/tensorflow,raymondxyang/tensorflow,rdipietro/tensorflow,lukeiwanski/tensorflow-opencl,jbedorf/tensorflow,eaplatanios/tensorflow,renyi533/tensorflow,andrewcmyers/tensorflow,mixturemodel-flow/tensorflow,tillahoffmann/tensorflow,allenlavoie/tensorflow,eerwitt/tensorflow,tensorflow/tensorflow-pywrap_tf_optimizer,ville-k/tensorflow,Xeralux/tensorflow,tensorflow/tensorflow-pywrap_tf_optimizer,gibiansky/tensorflow,mixturemodel-flow/tensorflow,renyi533/tensorflow,vrv/tensorflow,MycChiu/tensorflow,karllessard/tensorflow,krikru/tensorflow-opencl,JVillella/tensorflow,Kongsea/tensorflow,tensorflow/tensorflow,markslwong/tensorflow,nikste/tensorflow,girving/tensorflow,seaotterman/tensorflow,ppwwyyxx/tensorflow,sandeepgupta2k4/tensorflow,krikru/tensorflow-opencl,Intel-tensorflow/tensorflow,eadgarchen/tensorflow,mixturemodel-flow/tensorflow,eaplatanios/tensorflow,zycdragonball/tensorflow,zasdfgbnm/tensorflow,yongtang/tensorflow,kevin-coder/tensorflow-fork,gnieboer/tensorflow,alsrgv/tensorflow,mixturemodel-flow/tensorflow,mixturemodel-flow/tensorflow,seaotterman/tensorflow,odejesush/tensorflow,jostep/tensorflow,HKUST-SING/tensorflow,taknevski/tensorflow-xsmm,whn09/tensorflow,caisq/tensorflow,asadziach/tensorflow,jwlawson/tensorflow,nightjean/Deep-Learning,gunan/tensorflow,haeusser/tensorflow,jalexvig/tensorflow,jostep/tensorflow,jendap/tensorflow,horance-liu/tensorflow,maciekcc/tensorflow,eadgarchen/tensorflow,snnn/tensorflow,cxxgtxy/tensorflow,gautam1858/tensorflow,mixturemodel-flow/tensorflow,guschmue/tensorflow,gunan/tensorflow,johndpope/tensorflow,allenlavoie/tensorflow,ageron/tensorflow,jhseu/tensorflow,AndreasMadsen/tensorflow,tensorflow/tensorflow-experimental_link_static_libraries_once,with-git/tensorflow,Mistobaan/tensorflow,ravindrapanda/tensorflow,mortada/tensorflow,davidzchen/tensorflow,seanli9jan/tensorflow,Bulochkin/tensorflow_pack,unsiloai/syntaxnet-ops-hack,JVillella/tensorflow,rabipanda/tensorflow,apark263/tensorflow,Bulochkin/tensorflow_pack,renyi533/tensorflow,laosiaudi/tensorflow,Carmezim/tensorflow,jhaux/tensorflow,ageron/tensorflow,AndreasMadsen/tensorflow,meteorcloudy/tensorflow,DCSaunders/tensorflow,gunan/tensorflow,alsrgv/tensorflow,LUTAN/tensorflow,gojira/tensorflow,manazhao/tf_recsys,sandeepdsouza93/TensorFlow-15712,annarev/tensorflow,whn09/tensorflow,ppwwyyxx/tensorflow,adit-chandra/tensorflow,annarev/tensorflow,sandeepdsouza93/TensorFlow-15712,maciekcc/tensorflow,ishay2b/tensorflow,mengxn/tensorflow,alivecor/tensorflow,alsrgv/tensorflow,krikru/tensorflow-opencl,hsaputra/tensorflow,dancingdan/tensorflow,thesuperzapper/tensorflow,pavelchristof/gomoku-ai,memo/tensorflow,caisq/tensorflow,mortada/tensorflow,jart/tensorflow,arborh/tensorflow,calebfoss/tensorflow,ville-k/tensorflow,anilmuthineni/tensorflow,dyoung418/tensorflow,ychfan/tensorflow,dyoung418/tensorflow,jbedorf/tensorflow,ravindrapanda/tensorflow,yongtang/tensorflow,jart/tensorflow,ran5515/DeepDecision,DavidNorman/tensorflow,dongjoon-hyun/tensorflow,krikru/tensorflow-opencl,av8ramit/tensorflow,JingJunYin/tensorflow,tensorflow/tensorflow-pywrap_saved_model,pavelchristof/gomoku-ai,alheinecke/tensorflow-xsmm,seaotterman/tensorflow,alheinecke/tensorflow-xsmm,tensorflow/tensorflow-pywrap_saved_model,jostep/tensorflow,chemelnucfin/tensorflow,chris-chris/tensorflow,sandeepdsouza93/TensorFlow-15712,jwlawson/tensorflow,Intel-tensorflow/tensorflow,ZhangXinNan/tensorflow,davidzchen/tensorflow,johndpope/tensorflow,johndpope/tensorflow,kevin-coder/tensorflow-fork,maciekcc/tensorflow,alsrgv/tensorflow,tillahoffmann/tensorflow,DavidNorman/tensorflow,brchiu/tensorflow,andrewcmyers/tensorflow,apark263/tensorflow,eerwitt/tensorflow,jhaux/tensorflow,SnakeJenny/TensorFlow,jart/tensorflow,pcm17/tensorflow,chris-chris/tensorflow,rabipanda/tensorflow,paolodedios/tensorflow,tiagofrepereira2012/tensorflow,yaroslavvb/tensorflow,suiyuan2009/tensorflow,LUTAN/tensorflow,gojira/tensorflow,SnakeJenny/TensorFlow,tensorflow/tensorflow,allenlavoie/tensorflow,johndpope/tensorflow,taknevski/tensorflow-xsmm,chemelnucfin/tensorflow,memo/tensorflow,xzturn/tensorflow,a-doumoulakis/tensorflow,lukeiwanski/tensorflow-opencl,vrv/tensorflow,pcm17/tensorflow,AndreasMadsen/tensorflow,Mazecreator/tensorflow,mdrumond/tensorflow,davidzchen/tensorflow,yaroslavvb/tensorflow,yufengg/tensorflow,vrv/tensorflow,theflofly/tensorflow,anilmuthineni/tensorflow,Xeralux/tensorflow,andrewcmyers/tensorflow,renyi533/tensorflow,gibiansky/tensorflow,zasdfgbnm/tensorflow,frreiss/tensorflow-fred,gautam1858/tensorflow,nightjean/Deep-Learning,ishay2b/tensorflow,scenarios/tensorflow,tornadozou/tensorflow,Moriadry/tensorflow,zycdragonball/tensorflow,alheinecke/tensorflow-xsmm,tensorflow/tensorflow-experimental_link_static_libraries_once,Intel-tensorflow/tensorflow,tomasreimers/tensorflow-emscripten,drpngx/tensorflow,horance-liu/tensorflow,allenlavoie/tensorflow,AndreasMadsen/tensorflow,horance-liu/tensorflow,jart/tensorflow,alisidd/tensorflow,ppwwyyxx/tensorflow,asimshankar/tensorflow,petewarden/tensorflow,jendap/tensorflow,mavenlin/tensorflow,llhe/tensorflow,alivecor/tensorflow,davidzchen/tensorflow,Intel-Corporation/tensorflow,zasdfgbnm/tensorflow,codrut3/tensorflow,sandeepdsouza93/TensorFlow-15712,aam-at/tensorflow,dendisuhubdy/tensorflow,chenjun0210/tensorflow,ghchinoy/tensorflow,MycChiu/tensorflow,arborh/tensorflow,asimshankar/tensorflow,tillahoffmann/tensorflow,jwlawson/tensorflow,allenlavoie/tensorflow,gibiansky/tensorflow,jwlawson/tensorflow,RapidApplicationDevelopment/tensorflow,Moriadry/tensorflow,mavenlin/tensorflow,tensorflow/tensorflow-pywrap_saved_model,vrv/tensorflow,laosiaudi/tensorflow,alshedivat/tensorflow,Intel-Corporation/tensorflow,ppwwyyxx/tensorflow,Carmezim/tensorflow,renyi533/tensorflow,mdrumond/tensorflow,ychfan/tensorflow,annarev/tensorflow,asadziach/tensorflow,JingJunYin/tensorflow,tomasreimers/tensorflow-emscripten,brchiu/tensorflow,mengxn/tensorflow,DCSaunders/tensorflow,ppwwyyxx/tensorflow,kobejean/tensorflow,Mistobaan/tensorflow,eerwitt/tensorflow,johndpope/tensorflow,alisidd/tensorflow,bowang/tensorflow,scenarios/tensorflow,frreiss/tensorflow-fred,admcrae/tensorflow,aam-at/tensorflow,aselle/tensorflow,gautam1858/tensorflow,girving/tensorflow,thesuperzapper/tensorflow,haeusser/tensorflow,hfp/tensorflow-xsmm,jhseu/tensorflow,apark263/tensorflow,odejesush/tensorflow,llhe/tensorflow,xzturn/tensorflow,jalexvig/tensorflow,snnn/tensorflow,girving/tensorflow,nburn42/tensorflow,nburn42/tensorflow,brchiu/tensorflow,meteorcloudy/tensorflow,rabipanda/tensorflow,maciekcc/tensorflow,ZhangXinNan/tensorflow,kobejean/tensorflow,drpngx/tensorflow,Xeralux/tensorflow,thjashin/tensorflow,annarev/tensorflow,MycChiu/tensorflow,krikru/tensorflow-opencl,pcm17/tensorflow,paolodedios/tensorflow,ZhangXinNan/tensorflow,alistairlow/tensorflow,davidzchen/tensorflow,DCSaunders/tensorflow,abhitopia/tensorflow,Mistobaan/tensorflow,petewarden/tensorflow,raymondxyang/tensorflow,eaplatanios/tensorflow,martinwicke/tensorflow,taknevski/tensorflow-xsmm,SnakeJenny/TensorFlow,benoitsteiner/tensorflow-xsmm,code-sauce/tensorflow,admcrae/tensorflow,jwlawson/tensorflow,thesuperzapper/tensorflow,krikru/tensorflow-opencl,dancingdan/tensorflow,jostep/tensorflow,hsaputra/tensorflow,strint/tensorflow,chemelnucfin/tensorflow,nburn42/tensorflow,maciekcc/tensorflow,hehongliang/tensorflow,rabipanda/tensorflow,haeusser/tensorflow,lakshayg/tensorflow,ageron/tensorflow,zycdragonball/tensorflow,frreiss/tensorflow-fred,mdrumond/tensorflow,seaotterman/tensorflow,snnn/tensorflow,admcrae/tensorflow,hehongliang/tensorflow,Bismarrck/tensorflow,chemelnucfin/tensorflow,sarvex/tensorflow,ran5515/DeepDecision,theflofly/tensorflow,with-git/tensorflow,theflofly/tensorflow,AnishShah/tensorflow,ageron/tensorflow,frreiss/tensorflow-fred,Moriadry/tensorflow,ran5515/DeepDecision,Carmezim/tensorflow,Kongsea/tensorflow,maciekcc/tensorflow,tomasreimers/tensorflow-emscripten,lukeiwanski/tensorflow,alisidd/tensorflow,tiagofrepereira2012/tensorflow,arborh/tensorflow,tensorflow/tensorflow-experimental_link_static_libraries_once,unsiloai/syntaxnet-ops-hack,laszlocsomor/tensorflow,Moriadry/tensorflow,Mistobaan/tensorflow,jalexvig/tensorflow,mdrumond/tensorflow,Bismarrck/tensorflow,ibmsoe/tensorflow,asadziach/tensorflow,kobejean/tensorflow,abhitopia/tensorflow,alsrgv/tensorflow,sarvex/tensorflow,Intel-Corporation/tensorflow,drpngx/tensorflow,manjunaths/tensorflow,lakshayg/tensorflow,snnn/tensorflow,Kongsea/tensorflow,nburn42/tensorflow,ArtsiomCh/tensorflow,suiyuan2009/tensorflow,jendap/tensorflow,kevin-coder/tensorflow-fork,yongtang/tensorflow,haeusser/tensorflow,manjunaths/tensorflow,ppries/tensorflow,tensorflow/tensorflow-experimental_link_static_libraries_once,ville-k/tensorflow,mavenlin/tensorflow,ghchinoy/tensorflow,tiagofrepereira2012/tensorflow,chemelnucfin/tensorflow,ZhangXinNan/tensorflow,girving/tensorflow,manipopopo/tensorflow,adit-chandra/tensorflow,theflofly/tensorflow,alistairlow/tensorflow,yaroslavvb/tensorflow,annarev/tensorflow,kobejean/tensorflow,aam-at/tensorflow,laosiaudi/tensorflow,seanli9jan/tensorflow,whn09/tensorflow,benoitsteiner/tensorflow-xsmm,cxxgtxy/tensorflow,tensorflow/tensorflow-pywrap_tf_optimizer,manazhao/tf_recsys,gibiansky/tensorflow,JingJunYin/tensorflow,nikste/tensorflow,hfp/tensorflow-xsmm,tensorflow/tensorflow-experimental_link_static_libraries_once,benoitsteiner/tensorflow-opencl,abhitopia/tensorflow,Intel-tensorflow/tensorflow,lukeiwanski/tensorflow-opencl,chenjun0210/tensorflow,Bismarrck/tensorflow,xzturn/tensorflow,nolanliou/tensorflow,eerwitt/tensorflow,gnieboer/tensorflow,ibmsoe/tensorflow,adamtiger/tensorflow,eaplatanios/tensorflow,Bismarrck/tensorflow,tensorflow/tensorflow-pywrap_tf_optimizer,strint/tensorflow,nolanliou/tensorflow,nikste/tensorflow,dyoung418/tensorflow,codrut3/tensorflow,gibiansky/tensorflow,admcrae/tensorflow,ppwwyyxx/tensorflow,asadziach/tensorflow,MoamerEncsConcordiaCa/tensorflow,jhseu/tensorflow,petewarden/tensorflow,kobejean/tensorflow,ageron/tensorflow,laosiaudi/tensorflow,strint/tensorflow,brchiu/tensorflow,handroissuazo/tensorflow,manjunaths/tensorflow,AnishShah/tensorflow,wangyum/tensorflow,adit-chandra/tensorflow,pavelchristof/gomoku-ai,a-doumoulakis/tensorflow,drpngx/tensorflow,jbedorf/tensorflow,yongtang/tensorflow,calebfoss/tensorflow,nburn42/tensorflow,manjunaths/tensorflow,jhseu/tensorflow,mengxn/tensorflow,lukeiwanski/tensorflow,alistairlow/tensorflow,aselle/tensorflow,cancan101/tensorflow,ravindrapanda/tensorflow,MoamerEncsConcordiaCa/tensorflow,maciekcc/tensorflow,HKUST-SING/tensorflow,Mazecreator/tensorflow,hfp/tensorflow-xsmm,freedomtan/tensorflow,aselle/tensorflow,hfp/tensorflow-xsmm,ravindrapanda/tensorflow,aam-at/tensorflow,tornadozou/tensorflow,adamtiger/tensorflow,adit-chandra/tensorflow,markslwong/tensorflow,ppries/tensorflow,laszlocsomor/tensorflow,sandeepdsouza93/TensorFlow-15712,asadziach/tensorflow,nolanliou/tensorflow,ishay2b/tensorflow,DavidNorman/tensorflow,RapidApplicationDevelopment/tensorflow,allenlavoie/tensorflow,a-doumoulakis/tensorflow,unsiloai/syntaxnet-ops-hack
|
7e500274309179569525f7536d71286a8d3caa5a
|
build/build.bat
|
build/build.bat
|
Set DecorateName=DecorateName
Set Book=mencius
Set FontType=Traditional
Set BookFont=%Book%_%FontType%
Set CSSExt=.css
Set CSS_=--css=..\css\
Set NameStyle=%CSS_%%DecorateName%%CSSExt%
Set Output=%BookFont%
If "%1" == "name" (
Set Output=%Output%_%DecorateName%
Set Style=%NameStyle%
)
If Not "%2" == "" (
Set Output=%Output%_%2
Set Style=%Style% %CSS_%%2%CSSExt%
)
If Not "%3" == "" (
Set Output=%Output%_%3
Set Style=%Style% %CSS_%%3%CSSExt%
)
Set HTMLExt=.html
Set HTMLOutput=%Output%%HTMLExt%
Call pandoc ..\source\%Book%.md -o %HTMLOutput% --standalone --toc %Style% --verbose
Call wkhtmltopdf.exe %HTMLOutput% %Output%.pdf
|
Set DecorateName=DecorateName
Set Book=mencius
Set FontType=Traditional
Set BookFont=%Book%_%FontType%
Set CSSExt=.css
Set CSS_=--css=..\css\
Set NameStyle=%CSS_%%DecorateName%%CSSExt%
Set Output=%BookFont%
If "%1" == "name" (
Set Output=%Output%_%DecorateName%
Set Style=%NameStyle%
)
If Not "%2" == "" (
Set Output=%Output%_%2
Set Style=%Style% %CSS_%%2%CSSExt%
)
If Not "%3" == "" (
Set Output=%Output%_%3
Set Style=%Style% %CSS_%%3%CSSExt%
)
Set HTMLExt=.html
Set HTMLOutput=%Output%%HTMLExt%
Call pandoc ..\source\%Book%.md -o %HTMLOutput% --standalone --toc %Style% --verbose
Call wkhtmltopdf.exe --margin-top 15 --margin-bottom 15 --header-center [section] --header-left [subsection] --header-right [page] --header-line --header-spacing 5 --footer-center "Version 0.1" --footer-line --footer-spacing 5 %HTMLOutput% %Output%.pdf
|
Build header and footer for the pdf file
|
Build header and footer for the pdf file
|
Batchfile
|
mit
|
fan-jiang/Dujing
|
c491be733fc1f2c169574665d227e9585c8876a7
|
ci/test-win.bat
|
ci/test-win.bat
|
setlocal EnableDelayedExpansion
echo Running Windows build and testscript %~dp0..\matlab\CIBuildAndTest.m
echo Path: %PATH%
set MATCOMMAND="try, run('%~dp0..\matlab\CIBuildAndTest.m'), catch ex, system(['ECHO Exception during CIBuildAndTest.m: ' ex.message]), exit(1), end, exit(0);"
"C:\Program Files\MATLAB\R2015b\bin\matlab.exe" -wait -nodisplay -nosplash -nodesktop -logfile ci-output.log -r %MATCOMMAND%
set LEVEL=!ERRORLEVEL!
type ci-output.log
if not "!LEVEL!" == "0" (
echo ERROR: Exit Code = !LEVEL!
exit /b 1
)
|
setlocal EnableDelayedExpansion
echo Running Windows build and testscript %~dp0..\matlab\CIBuildAndTest.m
echo Path: %PATH%
set MATCOMMAND="try, run('%~dp0..\matlab\CIBuildAndTest.m'), catch ex, system(['ECHO Exception during CIBuildAndTest.m: ' ex.message]), exit(1), end, exit(0);"
"C:\Program Files\MATLAB\R2015b\bin\matlab.exe" -wait -nodisplay -nosplash -nodesktop -logfile ci-output.log -r %MATCOMMAND%
set LEVEL=!ERRORLEVEL!
if exist ci-output.log (
type ci-output.log
) else (
echo Log file not found
)
if not "!LEVEL!" == "0" (
echo ERROR: Exit Code = !LEVEL!
exit /b 1
)
|
Add file check before printing log file
|
Add file check before printing log file
|
Batchfile
|
bsd-3-clause
|
gift-surg/SlicSeg,gift-surg/SlicSeg,gift-surg/SlicSeg
|
5d29c604e0c7b974fe0d26e8842d1ad17f1c9894
|
deploy-sync.bat
|
deploy-sync.bat
|
::I use PortableGit\bin in PATH
git init
::Ensure we have these for the next step
git checkout master && git commit -a -m "Deployment" && git push
::Switch to gh-pages, pull from master, commit, then switch back to master.
git checkout gh-pages && git checkout master psdle*.js && git checkout master psdle.xpi && git commit -a -m "Sync with master." && git push && git checkout master
git checkout master
|
::I use PortableGit\bin in PATH
git init
::Ensure we have these for the next step
git checkout master && git commit -a -m "Deployment" && git push
::Switch to gh-pages, pull from master, commit, then switch back to master.
git checkout gh-pages && git checkout master psdle*.js && git commit -a -m "Sync with master." && git push && git checkout master
git checkout master
|
Deploy - Remove XPI checkout to gh-pages
|
Deploy - Remove XPI checkout to gh-pages
|
Batchfile
|
mit
|
RePod/psdle
|
ac482da5aa1aa49d18ed6b79a1f9497ec635e85a
|
build/test.cmd
|
build/test.cmd
|
@echo off
cd build
nuget restore packages.config -PackagesDirectory .
cd ..
build\OpenCover.4.6.519\tools\OpenCover.Console.exe -target:"dotnet.exe" -targetargs:"test tests\LineBot.Tests\LineBot.Tests.csproj --no-build -c release /p:codecov=true" -register:user -threshold:10 -oldStyle -safemode:off -output:.\LineBot.Coverage.xml -hideskipped:All -returntargetcode"
if %errorlevel% neq 0 exit /b %errorlevel%
SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%
pip install codecov
codecov -f "LineBot.Coverage.xml"
|
@echo off
cd build
nuget restore packages.config -PackagesDirectory .
cd ..
build\OpenCover.4.6.519\tools\OpenCover.Console.exe -target:"dotnet.exe" -targetargs:"test tests\LineBot.Tests\LineBot.Tests.csproj --no-build -c release /p:codecov=true" -register:user -threshold:10 -oldStyle -safemode:off -output:.\LineBot.Coverage.xml -hideskipped:All -excludebyattribute:*.ExcludeFromCodeCoverage* -returntargetcode"
if %errorlevel% neq 0 exit /b %errorlevel%
SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%
pip install codecov
codecov -f "LineBot.Coverage.xml"
|
Make sure codecov can understand ExcludeFromCodeCoverage.
|
Make sure codecov can understand ExcludeFromCodeCoverage.
|
Batchfile
|
apache-2.0
|
dlemstra/line-bot-sdk-dotnet,dlemstra/line-bot-sdk-dotnet
|
47c785f4b8c92ea22df727787bb0246ba6caea01
|
.ci/script.bat
|
.ci/script.bat
|
echo off
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat" -host_arch=amd64 -arch=amd64
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat" -test
cd dist/msvc-compatible
cl *.c /I ../kremlin/include /I . /I ../kremlin/kremlib/dist/minimal /c || goto :error
for /F %i in ('dir /b *-x86_64-msvc.asm') do (ml64 /c %i || goto :error)
lib *.obj || goto :error
echo "SUCCESS"
:error
echo "Failed"
exit /b %errorlevel%
|
echo off
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat" -host_arch=amd64 -arch=amd64
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\Common7\Tools\VsDevCmd.bat" -test
cd dist/msvc-compatible
cl *.c /I ../kremlin/include /I . /I ../kremlin/kremlib/dist/minimal /c || goto :error
for /F %%i in ('dir /b *-x86_64-msvc.asm') do (
ml64 /c %%i || goto :error
)
lib *.obj || goto :error
echo "SUCCESS"
exit /b 0
:error
echo "Failed"
exit /b %errorlevel%
|
Fix syntax of for loops in batch files
|
Fix syntax of for loops in batch files
|
Batchfile
|
apache-2.0
|
mitls/hacl-star,mitls/hacl-star,mitls/hacl-star,mitls/hacl-star,mitls/hacl-star,mitls/hacl-star,mitls/hacl-star,mitls/hacl-star,mitls/hacl-star
|
b768be48f5df87c13f2954543c941b7e9c84b8cf
|
msvc-scripts/process.bat
|
msvc-scripts/process.bat
|
cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/1.0.12/ < src\libsodium\include\sodium\version.h.in > tmp
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MAJOR@/9/ < tmp > tmp2
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MAJOR@/9/ < tmp2 > tmp3
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_MINIMAL_DEF@// < tmp3 > src\libsodium\include\sodium\version.h
del tmp tmp2 tmp3
|
cscript msvc-scripts/rep.vbs //Nologo s/@VERSION@/1.0.12/ < src\libsodium\include\sodium\version.h.in > tmp
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MAJOR@/9/ < tmp > tmp2
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_VERSION_MINOR@/4/ < tmp2 > tmp3
cscript msvc-scripts/rep.vbs //Nologo s/@SODIUM_LIBRARY_MINIMAL_DEF@// < tmp3 > src\libsodium\include\sodium\version.h
del tmp tmp2 tmp3
|
Correct @SODIUM_LIBRARY_VERSION_MINOR@ substitution for Visual Studio
|
Correct @SODIUM_LIBRARY_VERSION_MINOR@ substitution for Visual Studio
|
Batchfile
|
isc
|
Payshares/libsodium,Payshares/libsodium,Payshares/libsodium
|
705b502bf4a5a0d2258cbc07739843769dcc5f89
|
nuspec/BuildAndDeploySecurityServer.bat
|
nuspec/BuildAndDeploySecurityServer.bat
|
@Echo Off
REM set your api key once: nuget setApiKey Your-API-Key
SET "nuget_basedir="
"%ProgramFiles(x86)%/Microsoft Visual Studio 14.0/Common7/IDE/devenv" /build release ../proj/SecurityServer/proj/SecurityServer.sln
IF %ERRORLEVEL% NEQ 0 (
echo. && echo. && echo Build failed.
exit /B 1
)
%nuget_basedir%nuget.exe pack Dragon.SecurityServer.AccountSTS.Client.nuspec
%nuget_basedir%nuget.exe pack Dragon.SecurityServer.ProfileSTS.Client.nuspec
%nuget_basedir%nuget.exe pack Dragon.SecurityServer.PermissionSTS.Client.nuspec
REM %nuget_basedir%nuget push Dragon.SecurityServer.AccountSTS.Client*.nupkg
REM %nuget_basedir%nuget push Dragon.SecurityServer.ProfileSTS.Client*.nupkg
REM %nuget_basedir%nuget push Dragon.SecurityServer.PermissionSTS.Client*.nupkg
|
@Echo Off
REM set your api key once: nuget setApiKey Your-API-Key
SET "nuget_basedir="
"%ProgramFiles(x86)%/Microsoft Visual Studio 14.0/Common7/IDE/devenv" /build release ../proj/SecurityServer/proj/SecurityServer.sln
IF %ERRORLEVEL% NEQ 0 (
echo. && echo. && echo Build failed.
exit /B 1
)
%nuget_basedir%nuget.exe pack Dragon.SecurityServer.AccountSTS.Client.nuspec
%nuget_basedir%nuget.exe pack Dragon.SecurityServer.ProfileSTS.Client.nuspec
REM %nuget_basedir%nuget.exe pack Dragon.SecurityServer.PermissionSTS.Client.nuspec
echo.
echo.
echo To publish, run:
echo %nuget_basedir%nuget push Dragon.SecurityServer.AccountSTS.Client*.nupkg
echo %nuget_basedir%nuget push Dragon.SecurityServer.ProfileSTS.Client*.nupkg
REM %nuget_basedir%nuget push Dragon.SecurityServer.PermissionSTS.Client*.nupkg
|
Exclude PermissionSTS from NuGet package generation
|
Exclude PermissionSTS from NuGet package generation
|
Batchfile
|
mit
|
jbinder/dragon,jbinder/dragon,aduggleby/dragon,jbinder/dragon,aduggleby/dragon,aduggleby/dragon
|
0a1f322c6aa0ce0fb250a11e9dd87853b931f8eb
|
bin/install.cmd
|
bin/install.cmd
|
@echo off
set /P NVM_PATH="Enter the absolute path where the zip file is extracted/copied to: "
set NVM_HOME=%NVM_PATH%
set NVM_SYMLINK=C:\Program Files\nodejs
setx /M NVM_HOME "%NVM_HOME%"
setx /M NVM_SYMLINK "%NVM_SYMLINK%"
for /f "skip=2 tokens=2,*" %%A in ('reg query "HKLM\System\CurrentControlSet\Control\Session Manager\Environment" /v Path 2^>nul') do (
setx /M PATH "%%B;%%NVM_HOME%%;%%NVM_SYMLINK%%"
)
if exist "%SYSTEMDRIVE%\Program Files (x86)\" (
set SYS_ARCH=64
) else (
set SYS_ARCH=32
)
(echo root: %NVM_HOME% && echo path: %NVM_SYMLINK% && echo arch: %SYS_ARCH% && echo proxy: none) > %NVM_HOME%\settings.txt
notepad %NVM_HOME%\settings.txt
@echo on
|
@echo off
set /P NVM_PATH="Enter the absolute path where the nvm-windows zip file is extracted/copied to: "
set NVM_HOME=%NVM_PATH%
set NVM_SYMLINK=C:\Program Files\nodejs
setx /M NVM_HOME "%NVM_HOME%"
setx /M NVM_SYMLINK "%NVM_SYMLINK%"
for /f "skip=2 tokens=2,*" %%A in ('reg query "HKLM\System\CurrentControlSet\Control\Session Manager\Environment" /v Path 2^>nul') do (
setx /M PATH "%%B;%%NVM_HOME%%;%%NVM_SYMLINK%%"
)
if exist "%SYSTEMDRIVE%\Program Files (x86)\" (
set SYS_ARCH=64
) else (
set SYS_ARCH=32
)
(echo root: %NVM_HOME% && echo path: %NVM_SYMLINK% && echo arch: %SYS_ARCH% && echo proxy: none) > %NVM_HOME%\settings.txt
notepad %NVM_HOME%\settings.txt
@echo on
|
Define that NVM_PATH is for nvm
|
Define that NVM_PATH is for nvm
|
Batchfile
|
mit
|
coreybutler/nvm-windows,coreybutler/nvm-windows,zonplm/nvm-windows
|
77855148607ac4ad2d54a87a1ad0167c5d43f063
|
Build.cmd
|
Build.cmd
|
@echo off
cd %~dp0..
rake -f Build\build-win.rb "build:no_test_build[., SevenDigital.Messaging.sln, build, full, local, Release]"
|
@echo off
cd %~dp0..
rake -f build\build.rb "build:no_test_build[., SevenDigital.Messaging.sln, build, full, local, Release]"
|
Update build.cmd to use platform agnostic rakefile
|
Update build.cmd to use platform agnostic rakefile
|
Batchfile
|
bsd-3-clause
|
i-e-b/SevenDigital.Messaging
|
f937d806ea8397132405eeede17f2662d8b0c85f
|
build.stack.bat
|
build.stack.bat
|
@rem Change the current directory to the one containing this script
@cd %~dp0
@rem Build Hadrian and dependencies
@stack build
@rem Run Hadrian in GHC top directory forwarding additional user arguments
@stack exec hadrian -- --lint --directory ".." %*
|
@rem Change the current directory to the one containing this script
@cd %~dp0
@rem Build Hadrian and dependencies and exit the script if the build failed
@stack build
@if %errorlevel% neq 0 exit /B %errorlevel%
@rem Run Hadrian in GHC top directory forwarding additional user arguments
@stack exec hadrian -- --lint --directory ".." %*
|
Exit the build script if Hadrian cannot be built
|
Exit the build script if Hadrian cannot be built
|
Batchfile
|
bsd-3-clause
|
sdiehl/ghc,sdiehl/ghc,sdiehl/ghc,sdiehl/ghc,sdiehl/ghc,sdiehl/ghc,sdiehl/ghc,snowleopard/shaking-up-ghc,bgamari/shaking-up-ghc,izgzhen/hadrian,snowleopard/hadrian
|
92af5b14c7dd2361cc7dc336ee9580a77596dced
|
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
|
sharpdx/SharpDX,TigerKO/SharpDX,waltdestler/SharpDX,Ixonos-USA/SharpDX,TechPriest/SharpDX,andrewst/SharpDX,manu-silicon/SharpDX,PavelBrokhman/SharpDX,dazerdude/SharpDX,RobyDX/SharpDX,davidlee80/SharpDX-1,weltkante/SharpDX,TigerKO/SharpDX,waltdestler/SharpDX,TechPriest/SharpDX,davidlee80/SharpDX-1,TechPriest/SharpDX,shoelzer/SharpDX,wyrover/SharpDX,RobyDX/SharpDX,PavelBrokhman/SharpDX,shoelzer/SharpDX,jwollen/SharpDX,RobyDX/SharpDX,mrvux/SharpDX,fmarrabal/SharpDX,dazerdude/SharpDX,manu-silicon/SharpDX,RobyDX/SharpDX,andrewst/SharpDX,jwollen/SharpDX,davidlee80/SharpDX-1,TechPriest/SharpDX,VirusFree/SharpDX,PavelBrokhman/SharpDX,jwollen/SharpDX,shoelzer/SharpDX,Ixonos-USA/SharpDX,weltkante/SharpDX,fmarrabal/SharpDX,dazerdude/SharpDX,Ixonos-USA/SharpDX,fmarrabal/SharpDX,waltdestler/SharpDX,wyrover/SharpDX,VirusFree/SharpDX,wyrover/SharpDX,VirusFree/SharpDX,TigerKO/SharpDX,shoelzer/SharpDX,manu-silicon/SharpDX,fmarrabal/SharpDX,dazerdude/SharpDX,shoelzer/SharpDX,weltkante/SharpDX,andrewst/SharpDX,sharpdx/SharpDX,VirusFree/SharpDX,weltkante/SharpDX,mrvux/SharpDX,sharpdx/SharpDX,manu-silicon/SharpDX,mrvux/SharpDX,jwollen/SharpDX,davidlee80/SharpDX-1,waltdestler/SharpDX,PavelBrokhman/SharpDX,wyrover/SharpDX,TigerKO/SharpDX,Ixonos-USA/SharpDX
|
a92856d0b2c7587a6e2777a669f2c9838fc75604
|
ci/test-win.bat
|
ci/test-win.bat
|
echo Running Windows build and test
call "C:\Program Files\MATLAB\R2015b\bin\matlab.exe" -wait -nodisplay -nosplash -nodesktop -r "try, run('$(pwd)/matlab/CIBuildAndTest.m'), catch ex, disp(['Exception during CIBuildAndTest.m: ' ex.message]), exit(1), end, exit(0);"
if not "%ERRORLEVEL%" == "0" (
echo Exit Code = %ERRORLEVEL%
exit /b 1
)
|
echo Running Windows build and test
call "C:\Program Files\MATLAB\R2015b\bin\matlab.exe" -wait -nodisplay -nosplash -nodesktop -r "try, run('%cd%/matlab/CIBuildAndTest.m'), catch ex, disp(['Exception during CIBuildAndTest.m: ' ex.message]), exit(1), end, exit(0);"
if not "%ERRORLEVEL%" == "0" (
echo Exit Code = %ERRORLEVEL%
exit /b 1
)
|
Fix current directory for batch file
|
Fix current directory for batch file
|
Batchfile
|
bsd-3-clause
|
gift-surg/SlicSeg,gift-surg/SlicSeg,gift-surg/SlicSeg
|
84313c1fe8d7ba6d8f955d946dad6ecd7dce871e
|
Build/ZipRelease.cmd
|
Build/ZipRelease.cmd
|
call clean ..\Output\NET40\Examples
call clean ..\Output\NET45\Examples
REM "C:\Program Files\7-Zip\7z.exe" a ..\Output\OxyPlot-NET40-%1.zip ..\Output\NET40\*.* > ZipRelease.log
REM "C:\Program Files\7-Zip\7z.exe" a ..\Output\OxyPlot-NET45-%1.zip ..\Output\NET45\*.* >> ZipRelease.log
REM "C:\Program Files\7-Zip\7z.exe" a ..\Output\OxyPlot-SL4-%1.zip ..\Output\SL4\*.* >> ZipRelease.log
REM "C:\Program Files\7-Zip\7z.exe" a ..\Output\OxyPlot-SL5-%1.zip ..\Output\SL5\*.* >> ZipRelease.log
REM "C:\Program Files\7-Zip\7z.exe" a -r ..\Output\OxyPlot-NET40-Examples-%1.zip ..\Output\NET40\Examples\*.* >> ZipRelease.log
REM "C:\Program Files\7-Zip\7z.exe" a -r ..\Output\OxyPlot-NET45-Examples-%1.zip ..\Output\NET45\Examples\*.* >> ZipRelease.log
"C:\Program Files\7-Zip\7z.exe" a -r ..\Output\OxyPlot-%1.zip ..\Output\*.* > ZipRelease.log
|
mkdir ..\Output\Release
mkdir ..\Output\Release\NET40
mkdir ..\Output\Release\NET45
mkdir ..\Output\Release\NetCore45
mkdir ..\Output\Release\NetCore45\Themes
mkdir ..\Output\Release\SL5
copy ..\Output\NET45\OxyPlot.??? ..\Output\Release
copy ..\Output\NET40\OxyPlot.WindowsForms.??? ..\Output\Release\NET40
copy ..\Output\NET45\OxyPlot.WindowsForms.??? ..\Output\Release\NET45
copy ..\Output\NET40\OxyPlot.WPF.??? ..\Output\Release\NET40
copy ..\Output\NET45\OxyPlot.WPF.??? ..\Output\Release\NET45
copy ..\Output\SL5\OxyPlot.Silverlight.??? ..\Output\Release\SL5
copy ..\Output\NetCore45\OxyPlot.Metro.??? ..\Output\Release\NetCore45
copy ..\Output\NetCore45\Themes\*.* ..\Output\Release\NetCore45\Themes
"C:\Program Files\7-Zip\7z.exe" a -r ..\Output\OxyPlot-%1.zip ..\Output\Release\*.* > ZipRelease.log
|
Remove examples from Codeplex Release package. Include NET40/NET45/SL5/NetCore45 libraries, remove OpenXml and Pdf packages (use NuGet if you need these).
|
Remove examples from Codeplex Release package.
Include NET40/NET45/SL5/NetCore45 libraries, remove OpenXml and Pdf packages
(use NuGet if you need these).
|
Batchfile
|
mit
|
shoelzer/oxyplot,DotNetDoctor/oxyplot,shoelzer/oxyplot,H2ONaCl/oxyplot,sevoku/oxyplot,GeertvanHorrik/oxyplot,shoelzer/oxyplot,br111an/oxyplot,Sbosanquet/oxyplot,H2ONaCl/oxyplot,Rustemt/oxyplot,NilesDavis/oxyplot,sevoku/oxyplot,olegtarasov/oxyplot,DotNetDoctor/oxyplot,TheAlmightyBob/oxyplot,Mitch-Connor/oxyplot,H2ONaCl/oxyplot,TheAlmightyBob/oxyplot,freudenthal/oxyplot,Mitch-Connor/oxyplot,objorke/oxyplot,mattleibow/oxyplot,lynxkor/oxyplot,Rustemt/oxyplot,BRER-TECH/oxyplot,Jofta/oxyplot,BRER-TECH/oxyplot,olegtarasov/oxyplot,lynxkor/oxyplot,zur003/oxyplot,Jonarw/oxyplot,jeremyiverson/oxyplot,bbqchickenrobot/oxyplot,HermanEldering/oxyplot,svendu/oxyplot,Isolocis/oxyplot,objorke/oxyplot,as-zhuravlev/oxyplot_wpf_fork,Sbosanquet/oxyplot,jeremyiverson/oxyplot,HermanEldering/oxyplot,freudenthal/oxyplot,Rustemt/oxyplot,as-zhuravlev/oxyplot_wpf_fork,lynxkor/oxyplot,TheAlmightyBob/oxyplot,jeremyiverson/oxyplot,br111an/oxyplot,br111an/oxyplot,Kaplas80/oxyplot,ze-pequeno/oxyplot,svendu/oxyplot,GeertvanHorrik/oxyplot,Mitch-Connor/oxyplot,objorke/oxyplot,Sbosanquet/oxyplot,freudenthal/oxyplot,GeertvanHorrik/oxyplot,as-zhuravlev/oxyplot_wpf_fork,svendu/oxyplot,bbqchickenrobot/oxyplot,bbqchickenrobot/oxyplot,Kaplas80/oxyplot,mattleibow/oxyplot,oxyplot/oxyplot
|
31c7212e044b8a587149ea9affa37ccf105f157d
|
AppVeyorTestDolphinVM.cmd
|
AppVeyorTestDolphinVM.cmd
|
ECHO Clone Dolphin image environment
git clone -q --branch=master https://github.com/dolphinsmalltalk/Dolphin.git Dolphin
ECHO Copy executables
copy ..\..\Dolphin7.exe Dolphin
copy ..\..\DolphinVM7.dll Dolphin
copy ..\..\DolphinCR7.dll Dolphin
copy ..\..\DolphinDR7.dll Dolphin
copy ..\..\DolphinSureCrypto.dll Dolphin
ECHO Boot and test image
cd Dolphin
CALL BootDPRO
CALL TestDPRO
|
ECHO Clone Dolphin image environment
git clone -q --branch=master https://github.com/dolphinsmalltalk/Dolphin.git Dolphin
ECHO Copy executables
copy ..\..\*.exe Dolphin
copy ..\..\*.dll Dolphin
ECHO Boot and test image
cd Dolphin
CALL BootDPRO
CALL TestDPRO
|
Fix failing VersionResourceTests caused by removal of EXE/DLLs from image repo.
|
Fix failing VersionResourceTests caused by removal of EXE/DLLs from image repo.
|
Batchfile
|
mit
|
blairmcg/Dolphin,dolphinsmalltalk/DolphinVM,dolphinsmalltalk/DolphinVM,dolphinsmalltalk/Dolphin,jgfoster/Dolphin,objectarts/DolphinVM,jgfoster/Dolphin,shoshanatech/Dolphin,blairmcg/Dolphin,dolphinsmalltalk/Dolphin,dolphinsmalltalk/Dolphin,shoshanatech/Dolphin,objectarts/Dolphin,shoshanatech/Dolphin,blairmcg/Dolphin,blairmcg/Dolphin,jgfoster/Dolphin,objectarts/Dolphin,objectarts/DolphinVM,dolphinsmalltalk/Dolphin,jgfoster/Dolphin,shoshanatech/Dolphin
|
5ef544a8753b4822e16c84fb805682dd30f64f44
|
Bin/DarunGrim3/SetupDist.bat
|
Bin/DarunGrim3/SetupDist.bat
|
REM Clean Up
rmdir /Q /S Src
rmdir /Q /S Bin
del /Q DarunGrim3.zip
mkdir Src\bin
copy ..\DarunGrim2\* Src\bin\
copy ..\..\Publish\Docs\*.pdf Src\bin
call CopySrc.bat
REM Generate binaries
pushd Src
c:\python26\python SetupDist.py py2exe
popd
REM Prepare binary directory
REM Copy necessary files
copy ..\..\Src\UI\Web\DarunGrim3Sample01.cfg Src\bin\DarunGrim3.cfg
REM Clean up some unncessary files
del /Q Src\Bin\w9xpopen.exe
del /Q Src\Bin\Test.exe
del /Q Src\Bin\tcl*.dll
del /Q Src\Bin\tk*.dll
rmdir /Q /S Src\Bin\tcl
REM Put data directory to binary directory
xcopy /y /s /I ..\..\Src\UI\Web\data Src\bin\data
REM move bin directory location
mv Src\bin Bin
REM zip a package
zip -r DarunGrim3.zip Bin\*
pause
|
REM Clean Up
rmdir /Q /S Src
rmdir /Q /S Bin
del /Q DarunGrim3.zip
mkdir Src\bin
copy ..\DarunGrim2\* Src\bin\
copy ..\..\Publish\Docs\*.pdf Src\bin
call CopySrc.bat
del Src\*.pyc
REM Generate binaries
pushd Src
c:\python26\python SetupDist.py py2exe
popd
REM Prepare binary directory
REM Copy necessary files
copy ..\..\Src\UI\Web\DarunGrim3Sample01.cfg Src\bin\DarunGrim3.cfg
REM Clean up some unncessary files
del /Q Src\Bin\w9xpopen.exe
del /Q Src\Bin\Test.exe
del /Q Src\Bin\tcl*.dll
del /Q Src\Bin\tk*.dll
rmdir /Q /S Src\Bin\tcl
REM Put data directory to binary directory
xcopy /y /s /I ..\..\Src\UI\Web\data Src\bin\data
REM move bin directory location
mv Src\bin Bin
REM zip a package
zip -r DarunGrim3.zip Bin\*
pause
|
Remove *.pyc files from distribution files
|
Remove *.pyc files from distribution files
|
Batchfile
|
bsd-3-clause
|
jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim,jenix21/DarunGrim
|
6909eefc0813c189b32eb94bb2cee9a8dec804c9
|
build-for-unity.cmd
|
build-for-unity.cmd
|
setlocal
pushd %~dp0
set msBuildDir=%WINDIR%\Microsoft.NET\Framework\v4.0.30319
call %msBuildDir%\msbuild.exe ClientKit\ClientKit.csproj /p:Configuration=Release20 /p:OutputPath=..\Managed-OSVR-Unity /p:NativeOutputSuffix32=x86 /p:NativeOutputSuffix64=x86_64%*
endlocal
|
setlocal
pushd %~dp0
set msBuildDir=%WINDIR%\Microsoft.NET\Framework\v4.0.30319
call %msBuildDir%\msbuild.exe ClientKit\ClientKit.csproj /p:Configuration=Release20 /p:OutputPath=..\Managed-OSVR-Unity /p:NativeOutputSuffix32=x86 /p:NativeOutputSuffix64=x86_64 %*
endlocal
|
Fix build by restoring a missing space.
|
Fix build by restoring a missing space.
|
Batchfile
|
apache-2.0
|
OSVR/Managed-OSVR,JeroMiya/Managed-OSVR
|
1d7dc1feb542081a7b2033a365b5fdf9d6d2d1e6
|
perl/08-pack.cmd
|
perl/08-pack.cmd
|
@echo off
SETLOCAL
cd /D %~dp0
call settings.cmd
call ..\unxutils.cmd
cd dist\%ARCH%
call pp -B -o psass.exe ^
-I ../../../blib/lib ^
-M Encode::Byte ^
-M PerlIO::encoding ^
-M List::MoreUtils::XS ^
-M List::MoreUtils::PP ^
-M Win32::ChangeNotify ^
-M Filesys::Notify::Simple ^
-l "%PERLDIR%/perl/site/lib/libsass.dll" ^
-a "%PERLDIR%/perl/site/lib/auto/CSS/Sass/plugins;lib/auto/CSS/Sass/plugins" ^
CSS-Sass-%RELVERSION%/bin/psass
cd ..\..
REM tested and working, but much bigger size
REM -l "%PERLPATH%/c/bin/_libsass-0.dll" ^
copy %CD%\dist\%ARCH%\psass.exe %CD%\..\create\%XARCH%
|
@echo off
SETLOCAL
cd /D %~dp0
call settings.cmd
call ..\unxutils.cmd
cd dist\%ARCH%
call pp -B -o psass.exe ^
-I ../../../blib/lib ^
-M Benchmark ^
-M Encode::Byte ^
-M PerlIO::encoding ^
-M List::MoreUtils::XS ^
-M List::MoreUtils::PP ^
-M Win32::ChangeNotify ^
-M Filesys::Notify::Simple ^
-l "%PERLDIR%/perl/site/lib/libsass.dll" ^
-a "%PERLDIR%/perl/site/lib/auto/CSS/Sass/plugins;lib/auto/CSS/Sass/plugins" ^
CSS-Sass-%RELVERSION%/bin/psass
cd ..\..
REM tested and working, but much bigger size
REM -l "%PERLPATH%/c/bin/_libsass-0.dll" ^
copy %CD%\dist\%ARCH%\psass.exe %CD%\..\create\%XARCH%
|
Include perl benchmark module for psass utility
|
Include perl benchmark module for psass utility
|
Batchfile
|
mit
|
mgreter/libsass-msi-installer,mgreter/libsass-msi-installer,mgreter/libsass-msi-installer
|
50f0958683e033d3d16eebea59026c74824d2d01
|
scripts/create-exe.bat
|
scripts/create-exe.bat
|
@echo off
set cwd=%cd%
cd /D %~dp0
set DevCmd="C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsDevCmd.bat"
set MSBuildOptions=/v:m /p:Configuration=Release
set BuildDir64="build-exe-64"
set BuildDir32="build-exe-32"
call %DevCmd%
echo Building 64-bit tev...
mkdir %BuildDir64%
cd %BuildDir64%
cmake -DTEV_DEPLOY=1 -G "Visual Studio 15 2017 Win64" ..\..
msbuild %MSBuildOptions% tev.sln
move "Release\tev.exe" "..\..\tev.exe"
cd ..
rmdir /S /Q %BuildDir64%
echo Building 32-bit tev...
mkdir %BuildDir32%
cd %BuildDir32%
cmake -DTEV_DEPLOY=1 -G "Visual Studio 15 2017" ..\..
msbuild %MSBuildOptions% tev.sln
move "Release\tev.exe" "..\..\tev-32bit.exe"
cd ..
rmdir /S /Q %BuildDir32%
echo Returning to original directory.
cd /D %cwd%
pause
|
@echo off
set cwd=%cd%
cd /D %~dp0
set DevCmd="C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
set MSBuildOptions=/v:m /p:Configuration=Release
set BuildDir64="build-exe-64"
call %DevCmd%
echo Building 64-bit tev...
mkdir %BuildDir64%
cd %BuildDir64%
cmake -DTEV_DEPLOY=1 -G "Visual Studio 16 2019" ..\..
msbuild %MSBuildOptions% tev.sln
move "Release\tev.exe" "..\..\tev.exe"
cd ..
rmdir /S /Q %BuildDir64%
echo Returning to original directory.
cd /D %cwd%
pause
|
Update automated release build scripts on Windows
|
Update automated release build scripts on Windows
|
Batchfile
|
bsd-3-clause
|
Tom94/tev,Tom94/tev,Tom94/tev,Tom94/tev
|
2c4e0be3ce879a2a05a0d70adc8bbecbc4b27f2b
|
scripts/install.cmd
|
scripts/install.cmd
|
@echo off
npm i&& for /D %%i in (zeronet-*) do (cd "%%i"&& npm i&& cd ..)
goto :eof
|
@echo off
npm i&& for /D %%i in (zeronet-*) do (cd "%%i"&& mklink /D node_modules ..\node_modules&& cd ..)
goto :eof
|
Use symlink for windows too
|
Use symlink for windows too
|
Batchfile
|
mit
|
kustomzone/zeronet-js,ZeroNetJS/zeronet-js,kustomzone/zeronet-js,ZeroNetJS/zeronet-js,ZeroNetJS/zeronet-js
|
3ce40f00c48d8bbfac748c67af36ea63a960b74e
|
kokoro/windows/continuous.bat
|
kokoro/windows/continuous.bat
|
CD git/re2 || EXIT /B 1
cmake . || EXIT /B 1
cmake --build . --clean-first || EXIT /B 1
ctest -E dfa^|exhaustive^|random || EXIT /B 1
cmake -DCMAKE_BUILD_TYPE=Release . || EXIT /B 1
cmake --build . --clean-first || EXIT /B 1
ctest -E dfa^|exhaustive^|random || EXIT /B 1
EXIT /B 0
|
CD git/re2 || EXIT /B 1
cmake -D CMAKE_BUILD_TYPE=Debug -A x64 . || EXIT /B 1
cmake --build . --config Debug --clean-first || EXIT /B 1
ctest --build-config Debug -E dfa^|exhaustive^|random || EXIT /B 1
cmake -D CMAKE_BUILD_TYPE=Release -A x64 . || EXIT /B 1
cmake --build . --config Release --clean-first || EXIT /B 1
ctest --build-config Release -E dfa^|exhaustive^|random || EXIT /B 1
EXIT /B 0
|
Tweak the CI script for CMake on Windows.
|
Tweak the CI script for CMake on Windows.
Change-Id: I10f78c381c3aaf542952863ac6d6e9398d2fbb65
Reviewed-on: https://code-review.googlesource.com/7217
Reviewed-by: Paul Wankadia <[email protected]>
|
Batchfile
|
bsd-3-clause
|
google/re2,google/re2,google/re2,google/re2,google/re2
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.