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
a27233948d2adc2ae4c58ccfba06c2a70f17ef9a
appveyor.yml
appveyor.yml
version: 1.0.{build} environment: matrix: - PYTHON: "C:\\Python27" - PYTHON: "C:\\Python27-x64" install: - cmd: "%PYTHON%\\python.exe -m pip install --upgrade pip wheel" build: off test_script: - mkdir wheels - cmd: "%PYTHON%\\python.exe -m pip wheel --wheel-dir=wheels intbitset" - cmd: "%PYTHON%\\python.exe -m pip wheel --wheel-dir=wheels bitarray" - cmd: "%PYTHON%\\python.exe -m pip wheel --wheel-dir=wheels lxml==3.6.0" - cmd: "%PYTHON%\\python.exe -m pip wheel --wheel-dir=wheels tinyarray" - cmd: "%PYTHON%\\python.exe -m pip wheel --wheel-dir=wheels pyahocorasick" - cmd: "%PYTHON%\\python.exe -m pip wheel --wheel-dir=wheels simplejson - dir - dir wheels artifacts: - path: wheels\* deploy: - provider: BinTray username: pombreda version: "1" api_key: secure: vfOXPuSdGaUBQWCWhtXGWOKFoWulmg8dl3J8EP7RodmMN96VH8yeMQIHdU3f4+l/ subject: pombreda repo: thirdparty package: thirdparty publish: true override: true
version: 1.0.{build} environment: matrix: - PYTHON: "C:\\Python27" - PYTHON: "C:\\Python27-x64" install: - cmd: "%PYTHON%\\python.exe -m pip install --upgrade pip wheel" build: off test_script: - mkdir wheels - cmd: "%PYTHON%\\python.exe -m pip wheel --wheel-dir=wheels intbitset" - cmd: "%PYTHON%\\python.exe -m pip wheel --wheel-dir=wheels bitarray" - cmd: "%PYTHON%\\python.exe -m pip wheel --wheel-dir=wheels lxml==3.6.0" - cmd: "%PYTHON%\\python.exe -m pip wheel --wheel-dir=wheels tinyarray" - cmd: "%PYTHON%\\python.exe -m pip wheel --wheel-dir=wheels pyahocorasick" - cmd: "%PYTHON%\\python.exe -m pip wheel --wheel-dir=wheels simplejson" - dir - dir wheels artifacts: - path: wheels\* deploy: - provider: BinTray username: pombreda version: "1" api_key: secure: vfOXPuSdGaUBQWCWhtXGWOKFoWulmg8dl3J8EP7RodmMN96VH8yeMQIHdU3f4+l/ subject: pombreda repo: thirdparty package: thirdparty publish: true override: true
Fix Appveyor YAML for simplejson
Fix Appveyor YAML for simplejson Signed-off-by: Philippe Ombredanne <[email protected]>
YAML
cc0-1.0
pombreda/thirdparty
2636e1e6d829867f896a24af3bd88982f08d8843
appveyor.yml
appveyor.yml
# Build script environment: website_name: appychristmas website_psw: secure: AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAA024zePPvCk66gydYIQs9yAAAAAACAAAAAAADZgAAwAAAABAAAAB+S5P1aJBIWhhkE+KiLdv0AAAAAASAAACgAAAAEAAAAJPtZ5ujVMi64DpIJh8lHv4YAAAApa0suOy34O14yJnlFRxU5MqVR8XtH/v6FAAAABr7QCyAlMkCTbyPuHaAtJgjl4w8 init: - git config --global core.autocrlf true # Build script build_script: - ps: .\build.ps1 -Target "AppVeyor" -Configuration "Release" # Tests test: off # Branches to build branches: # Whitelist only: - develop - master - /r/.*/ - /release/.*/ - /hotfix/.*/ # Build cache cache: - tools -> build.cake artifacts: - path: artifacts name: appychristmas deploy_script: - '"C:\Program Files (x86)\IIS\Microsoft Web Deploy V3\msdeploy.exe" -source:IisApp=''%appveyor_build_folder%\artifacts'' -dest:IisApp=''%website_name%'',ComputerName=''https://%website_name%.scm.azurewebsites.net/msdeploy.axd'',UserName=''$%website_name%'',Password=''%website_psw%'',IncludeAcls=''False'',AuthType=''Basic'' -verb:sync -enablerule:AppOffline -enableRule:DoNotDeleteRule -retryAttempts:2'
# Build script environment: website_name: appychristmas website_psw: secure: AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAA024zePPvCk66gydYIQs9yAAAAAACAAAAAAADZgAAwAAAABAAAAB+S5P1aJBIWhhkE+KiLdv0AAAAAASAAACgAAAAEAAAAJPtZ5ujVMi64DpIJh8lHv4YAAAApa0suOy34O14yJnlFRxU5MqVR8XtH/v6FAAAABr7QCyAlMkCTbyPuHaAtJgjl4w8 init: - git config --global core.autocrlf true # Build script build_script: - ps: .\build.ps1 -Target "AppVeyor" -Configuration "Release" # Tests test: off # Branches to build branches: # Whitelist only: - develop - master - /r/.*/ - /release/.*/ - /hotfix/.*/ # Build cache cache: - tools -> build.cake artifacts: - path: artifacts name: appychristmas
Remove deploy until it works...
Remove deploy until it works...
YAML
mit
frozenskys/appy-christmas,frozenskys/appy-christmas
1f0a622a29d7ebac4756ea48e285e1f7008bd225
appveyor.yml
appveyor.yml
os: Visual Studio 2015 configuration: Release install: - "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%" - choco install gitversion.portable -pre -y - pip install codecov before_build: - nuget restore - ps: gitversion /l console /output buildserver build: project: Pegasus.sln after_test: - .\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -register:user -target:"nunit-console.exe" -targetargs:".\Pegasus.Tests\bin\%CONFIGURATION%\Pegasus.Tests.dll /noshadow /exclude=Performance" -filter:"+[Pegasus]* +[Pegasus.Common]* -[Pegasus]Pegasus.Parser.* -[Pegasus]Pegasus.Properties.*" -hideskipped:All -output:.\Pegasus.Tests\bin\%CONFIGURATION%\coverage.xml - codecov -X gcov -f ".\Pegasus.Tests\bin\%CONFIGURATION%\coverage.xml" cache: - packages -> **\packages.config artifacts: - path: 'Package\bin\**\*.nupkg' - path: 'Pegasus.Templates\bin\**\*.zip' - path: 'Pegasus.Package\bin\**\*.vsix'
os: Visual Studio 2015 configuration: Release install: - "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%" - choco install gitversion.portable -pre -y - pip install codecov before_build: - nuget restore - ps: gitversion /l console /output buildserver build: project: Pegasus.sln after_test: - .\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -register:user -target:"nunit-console.exe" -targetargs:".\Pegasus.Tests\bin\%CONFIGURATION%\Pegasus.Tests.dll /noshadow /exclude=Performance" -filter:"+[Pegasus]* +[Pegasus.Common]* -[Pegasus]Pegasus.Parser.* -[Pegasus]Pegasus.Properties.*" -hideskipped:All -output:.\Pegasus.Tests\bin\%CONFIGURATION%\coverage.xml - codecov -X gcov -f ".\Pegasus.Tests\bin\%CONFIGURATION%\coverage.xml" cache: - packages -> **\packages.config artifacts: - path: 'Package\bin\**\*.nupkg' - path: 'Pegasus.Templates\bin\**\*.zip' - path: 'Pegasus.Package\bin\**\*.vsix' deploy: provider: NuGet api_key: secure: 2tZ8tu75MkmhyIcFGzFZsukJx9WAfV94mMtIAnSlurGlGqKaUhG6n6fTimXiIQiB skip_symbols: false artifact: /.*\.nupkg/
Deploy to NuGet after build.
Deploy to NuGet after build.
YAML
mit
otac0n/Pegasus
f9dc933d1514f7bd001128027c315e16f022cc2e
appveyor.yml
appveyor.yml
version: 1.3.{build} os: Visual Studio 2015 configuration: Release platform: Any CPU assembly_info: patch: true file: '**\AssemblyInfo.*' assembly_version: '{version}' assembly_file_version: '{version}' assembly_informational_version: '{version}' cache: - packages -> **\packages.config before_build: - nuget restore build: verbosity: minimal
version: 1.3.{build} os: Visual Studio 2015 configuration: Release platform: Any CPU assembly_info: patch: true file: '**\AssemblyInfo.*' assembly_version: '{version}' assembly_file_version: '{version}' assembly_informational_version: '{version}' cache: - packages -> **\packages.config before_build: - set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH% - nuget restore build: verbosity: minimal
Set PATH var during build to support VS 2015
Set PATH var during build to support VS 2015
YAML
mit
drussilla/ZohoPeopleTimeLogger
595c509b48c1477fbb0d21c9431cdb90df809c23
appveyor.yml
appveyor.yml
environment: matrix: - TARGET: x86_64-pc-windows-msvc VERSION: nightly - TARGET: i686-pc-windows-msvc VERSION: nightly - TARGET: x86_64-pc-windows-gnu VERSION: nightly - TARGET: i686-pc-windows-gnu VERSION: 1.40.0 access_token: secure: ZxcrtxQXwszRYNN6c1ZIagczEqzmQQZeYHY58izcmF0jdq/cptxJvFUoVxDmnoqj install: - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-${env:VERSION}-${env:TARGET}.exe" -FileName "rust-nightly.exe" - ps: .\rust-nightly.exe /VERYSILENT /NORESTART /DIR="C:\rust" | Out-Null - ps: $env:PATH="$env:PATH;C:\rust\bin" - rustc -vV - cargo -vV - echo install build: off test_script: # TODO remove this loop when server 2016 lands on appveyor; related to https://github.com/steffengy/schannel-rs/issues/8 - set RUST_BACKTRACE=1 - ps: for($i=1; $i -le 3; $i++) { cmd /c "cargo test 2>&1"; if ($?) { break } }
environment: matrix: - TARGET: x86_64-pc-windows-msvc VERSION: nightly - TARGET: i686-pc-windows-msvc VERSION: nightly - TARGET: x86_64-pc-windows-gnu VERSION: nightly - TARGET: i686-pc-windows-gnu VERSION: 1.40.0 access_token: secure: ZxcrtxQXwszRYNN6c1ZIagczEqzmQQZeYHY58izcmF0jdq/cptxJvFUoVxDmnoqj install: - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-${env:VERSION}-${env:TARGET}.msi" -FileName "rust-install.msi" - ps: msiexec /i "rust-install.msi" /qn /norestart INSTALLDIR="C:\rust" | Out-Null - ps: $env:PATH="$env:PATH;C:\rust\bin" - rustc -vV - cargo -vV - echo install build: off test_script: # TODO remove this loop when server 2016 lands on appveyor; related to https://github.com/steffengy/schannel-rs/issues/8 - set RUST_BACKTRACE=1 - ps: for($i=1; $i -le 3; $i++) { cmd /c "cargo test 2>&1"; if ($?) { break } }
Use MSI installation files for CI
Use MSI installation files for CI
YAML
mit
steffengy/schannel-rs
52683fdb796f5c5a50dcc9b12385e367258e875e
appveyor.yml
appveyor.yml
# Build worker image (VM template) image: Visual Studio 2015 # scripts that are called at very beginning, before repo cloning init: - git config --global core.autocrlf input # enable patching of AssemblyInfo.* files assembly_info: patch: true file: AssemblyInfo.* assembly_version: "1.0.{build}" assembly_file_version: "{version}" assembly_informational_version: "{version}" platform: Any CPU configuration: Release before_build: - nuget restore src/StrangerData.sln build: parallel: true # enable MSBuild parallel builds project: src/StrangerData.sln # path to Visual Studio solution or project publish_nuget: true # package projects with .nuspec files and push to artifacts deploy: - provider: NuGet server: https://www.nuget.org/api/v2/package api_key: secure: '54fc160a-c901-4bcd-a578-f101ec55cf4b' artifact: /.*\.nupkg/ on: branch: master
# Build worker image (VM template) image: Visual Studio 2015 # scripts that are called at very beginning, before repo cloning init: - git config --global core.autocrlf input # enable patching of AssemblyInfo.* files assembly_info: patch: true file: AssemblyInfo.* assembly_version: "1.0.{build}" assembly_file_version: "{version}" assembly_informational_version: "{version}" platform: Any CPU configuration: Release before_build: - nuget restore src/StrangerData.sln build: parallel: true # enable MSBuild parallel builds project: src/StrangerData.sln # path to Visual Studio solution or project publish_nuget: true # package projects with .nuspec files and push to artifacts deploy: - provider: NuGet server: https://www.nuget.org/api/v2/package api_key: secure: ingFtxQjecEsrc2Ma2S259/K78gtFObeHFmbiDo2LQnGzgDL0l4TbRY+F1COVmZo artifact: /.*\.nupkg/ on: branch: master
Add new encrypted nuget api_key
Add new encrypted nuget api_key
YAML
mit
stone-pagamentos/StrangerData
68deea6d1242c2141e234fb94e22ac88a1f9b3d9
appveyor.yml
appveyor.yml
# Specify version format version: "{build}" os: - Visual Studio 2017 - Visual Studio 2019 platform: - x64 configuration: - Debug - Release init: - cmd: cmake --version - cmd: msbuild /version clone_folder: C:\projects\Dusk before_build: - ps: Start-FileDownload 'https://sdk.lunarg.com/sdk/download/1.2.154.1/windows/VulkanSDK-1.2.154.1-Installer.exe' - cmd: VulkanSDK-1.2.154.1-Installer.exe /S - cmd: set VULKAN_SDK=C:\VulkanSDK\1.2.154.1 - cmd: if "%APPVEYOR_BUILD_WORKER_IMAGE%" == "Visual Studio 2017" set CMAKE_GENERATOR_NAME=Visual Studio 15 2017 Win64 - cmd: if "%APPVEYOR_BUILD_WORKER_IMAGE%" == "Visual Studio 2019" set CMAKE_GENERATOR_NAME=Visual Studio 16 2019 build_script: - cmd: cd C:\projects\Dusk - cmd: mkdir Build - cmd: cd Build # - cmd: cmake -DBUILD_TESTS=ON -DBUILD_DEMOS=ON -G "%CMAKE_GENERATOR_NAME%" .. - cmd: cmake -DBUILD_TESTS=ON -G "%CMAKE_GENERATOR_NAME%" -A x64 .. - cmd: cmake --build . # - cmd: cmake --build . --target RUN_TESTS test: off
# Specify version format version: "{build}" os: - Visual Studio 2017 - Visual Studio 2019 platform: - x64 configuration: - Debug - Release init: - cmd: cmake --version - cmd: msbuild /version clone_folder: C:\projects\Dusk before_build: - ps: Start-FileDownload 'https://sdk.lunarg.com/sdk/download/1.2.154.1/windows/VulkanSDK-1.2.154.1-Installer.exe' - cmd: VulkanSDK-1.2.154.1-Installer.exe /S - cmd: set VULKAN_SDK=C:\VulkanSDK\1.2.154.1 build_script: - cmd: cd C:\projects\Dusk - cmd: mkdir Build - cmd: cd Build # TODO -DBUILD_TESTS=ON - cmd: if "%APPVEYOR_BUILD_WORKER_IMAGE%" == "Visual Studio 2017" cmake -G "Visual Studio 15 2017" .. - cmd: if "%APPVEYOR_BUILD_WORKER_IMAGE%" == "Visual Studio 2019" cmake -G "Visual Studio 16 2019" -A x64 .. - cmd: cmake --build . # - cmd: cmake --build . --target RUN_TESTS test: off
Fix CMake generation on AppVeyor
Fix CMake generation on AppVeyor
YAML
mit
WhoBrokeTheBuild/Dusk,WhoBrokeTheBuild/Dusk,WhoBrokeTheBuild/Dusk
d4867725eddcadf81bdfda758fcbe9ee580d961a
appveyor.yml
appveyor.yml
build_script: msbuild nunit.sln /p:Configuration=Release /t:Rebuild test_script: - build /t:TestAll /p:Configuration=Release /p:ResultFormat=nunit2 - ps: $wc = New-Object 'System.Net.WebClient' - ps: $dir = "bin\Release\Results" - ps: $uri = "https://ci.appveyor.com/api/testresuls/nunit/$($env:APPVEYOR_JOB_ID)" - ps: foreach($item in (dir $dir "*.xml")) { $wc.UploadFile($uri, $item.FullName) }
build_script: msbuild nunit.sln /p:Configuration=Release /t:Rebuild test_script: - build /t:TestAll /p:Configuration=Release /p:ResultFormat=nunit2 - ps: $wc = New-Object 'System.Net.WebClient' - ps: $dir = "bin\Release\Results" - ps: $uri = "https://ci.appveyor.com/api/testresults/nunit/$($env:APPVEYOR_JOB_ID)" - ps: foreach($item in (dir $dir "*.xml")) { $wc.UploadFile($uri, $item.FullName) }
Fix YAML syntax yet again!
Fix YAML syntax yet again!
YAML
mit
nunit/nunit-console,nunit/nunit-console,nunit/nunit-console
0f3c5bdbae8e4497b626f5a3716f68e7504b11f6
appveyor.yml
appveyor.yml
- version: 1.0.{build} image: Visual Studio 2017 configuration: - Release clone_folder: C:/openchemistry/avogadrolibs init: - cmd: environment: PATH: '%PATH%;%QTDIR%\bin' matrix: - CMAKE_GENERATOR: '"Ninja"' QTDIR: C:\Qt\5.6\msvc2015_64 platform: x64 TWINE_USERNAME: secure: SzeZ03l7jd21TtgkMyds7g== TWINE_PASSWORD: secure: S5cwk5CAZ1pxBBIiBqQhR0zYIkvuktHcjVZ+jocTL08= build_script: - ps: >- if ($env:appveyor_repo_tag -eq 'false') { & scripts\appveyor\build.bat } install: - ps: >- if ($env:appveyor_repo_tag -eq 'true') { cd c:\openchemistry\avogadrolibs .\scripts\appveyor\build-wheels.ps1 } deploy_script: - ps: >- if ($env:appveyor_repo_tag -eq 'true') { cd c:\openchemistry\avogadrolibs .\scripts\appveyor\upload-pypi.ps1 }
- version: 1.0.{build} image: Visual Studio 2017 configuration: - Release clone_folder: C:/openchemistry/avogadrolibs init: - cmd: environment: PATH: '%PATH%;%QTDIR%\bin' matrix: - CMAKE_GENERATOR: '"Ninja"' QTDIR: C:\Qt\5.6\msvc2015_64 platform: x64 TWINE_USERNAME: secure: /dyl+sf2T84bLnO0uaEFSA== TWINE_PASSWORD: secure: S4lgG583FNPPUGhPBEwNkfeC5YHUFE/K9x3xujHO75I= build_script: - ps: >- if ($env:appveyor_repo_tag -eq 'false') { & scripts\appveyor\build.bat } install: - ps: >- if ($env:appveyor_repo_tag -eq 'true') { cd c:\openchemistry\avogadrolibs .\scripts\appveyor\build-wheels.ps1 } deploy_script: - ps: >- if ($env:appveyor_repo_tag -eq 'true') { cd c:\openchemistry\avogadrolibs .\scripts\appveyor\upload-pypi.ps1 }
Encrypt secrets with openchemistry Appveyor account
Encrypt secrets with openchemistry Appveyor account Signed-off-by: Chris Harris <[email protected]>
YAML
bsd-3-clause
OpenChemistry/avogadrolibs,OpenChemistry/avogadrolibs,ghutchis/avogadrolibs,OpenChemistry/avogadrolibs,ghutchis/avogadrolibs,OpenChemistry/avogadrolibs,ghutchis/avogadrolibs,ghutchis/avogadrolibs,OpenChemistry/avogadrolibs,ghutchis/avogadrolibs
253cdba912f7adca6888815c3b12f6bce19369ef
appveyor.yml
appveyor.yml
version: '{branch}-{build}' build_script: - cmd: ./gradlew.bat assemble test_script: - cmd: ./gradlew.bat check on_finish: - "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%" - pip install codecov - codecov -e OS -f build/reports/jacoco/test/jacocoTestReport.xml # TODO submit multiple junit xml or combine all into single file - ps: | $url = "https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)" $file = '.\build\test-results\TEST-nl.esciencecenter.xenon.util.RealFileUtilsTest.xml' (New-Object 'System.Net.WebClient').UploadFile($url, (Resolve-Path $file)) $file = '.\build\test-results\TEST-nl.esciencecenter.xenon.adaptors.local.LocalUtilsTest.xml' (New-Object 'System.Net.WebClient').UploadFile($url, (Resolve-Path $file)) artifacts: - path: build/distributions/*.zip name: Java archive
version: '{branch}-{build}' build_script: - cmd: ./gradlew.bat assemble test_script: - cmd: ./gradlew.bat check on_finish: - "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%" - "SET JDK=oraclejdk7" - ./gradlew.bat jacocoTestReport - pip install codecov - codecov -e OS -f build/reports/jacoco/test/jacocoTestReport.xml - ps: | $url = "https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)" $files = Get-ChildItem "build/test-results/" -Filter *.xml for ($i=0; $i -lt $files.Count; $i++) { (New-Object 'System.Net.WebClient').UploadFile($url, $files[$i]) } artifacts: - path: build/distributions/*.zip name: Java archive
Create jacoco xml + upload all unit test results.
Create jacoco xml + upload all unit test results.
YAML
apache-2.0
NLeSC/Xenon,NLeSC/Xenon
01ea0960235df16a1af9cba7f70a23cb5b95b131
appveyor.yml
appveyor.yml
version: '{build}' image: Visual Studio 2017 environment: LIBRARY_VERSION: '2.3.1' SONAR_LOGIN: secure: JNopXLZtkO5PD8yEj2+W1BZnbhq9oegXmTFgvVWQw67z5PtWwd+ngjv5O7xFetCZ install: - ps: dotnet tool install --global dotnet-sonarscanner test: off before_build: - ps: dotnet sonarscanner begin /k:"rosolko_WebDriverManager.Net" /v:$env:LIBRARY_VERSION /o:"rosolko-github" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.login=$env:SONAR_LOGIN /d:sonar.language="cs" /d:sonar.exclusions="**/bin/**/*,**/obj/**/*" /d:sonar.coverage.exclusions="WebDriverManager.Tests/**,**/*Tests.cs" /d:sonar.cs.opencover.reportsPaths="C:\projects\webdrivermanager-net\WebDriverManager.Tests\opencover.xml" build_script: - ps: dotnet restore - ps: dotnet build - ps: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat="opencover" /p:CoverletOutput="opencover.xml" after_build: - ps: dotnet sonarscanner end /d:sonar.login=$env:SONAR_LOGIN artifacts: - path: '**\*.nupkg'
version: '{build}' image: Visual Studio 2017 environment: LIBRARY_VERSION: '2.4.0' SONAR_LOGIN: secure: JNopXLZtkO5PD8yEj2+W1BZnbhq9oegXmTFgvVWQw67z5PtWwd+ngjv5O7xFetCZ install: - ps: dotnet tool install --global dotnet-sonarscanner test: off before_build: - ps: dotnet sonarscanner begin /k:"rosolko_WebDriverManager.Net" /v:$env:LIBRARY_VERSION /o:"rosolko-github" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.login=$env:SONAR_LOGIN /d:sonar.language="cs" /d:sonar.exclusions="**/bin/**/*,**/obj/**/*" /d:sonar.coverage.exclusions="WebDriverManager.Tests/**,**/*Tests.cs" /d:sonar.cs.opencover.reportsPaths="C:\projects\webdrivermanager-net\WebDriverManager.Tests\opencover.xml" build_script: - ps: dotnet restore - ps: dotnet build - ps: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat="opencover" /p:CoverletOutput="opencover.xml" after_build: - ps: dotnet sonarscanner end /d:sonar.login=$env:SONAR_LOGIN artifacts: - path: '**\*.nupkg'
Update also library version for travis
Update also library version for travis
YAML
mit
rosolko/WebDriverManager.Net
f2c009ff35f709d3a3653e13af5450ce9150e73e
appveyor.yml
appveyor.yml
environment: matrix: # AppVeyor installed Python versions # http://www.appveyor.com/docs/installed-software#python - PYTHON_INSTALL: "C:\\Python27" - PYTHON_INSTALL: "C:\\Python33" - PYTHON_INSTALL: "C:\\Python34" - PYTHON_INSTALL: "C:\\Python35" install: # Make compiler available (use MSVC 2013, 32 bit) - call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86 # Check compiler version - cl # Prepend Python installation to PATH - "SET PATH=%PYTHON_INSTALL%;%PATH%" # Check Python version - "python --version" build_script: - "python clcache.py --help" - "python clcache.py -s" test_script: - "python unittests.py" - "python integrationtests.py" after_test: # Get a rough overview about what happened in the tests. # This is not part of the actual testing but pure convenience. - "python clcache.py -s"
# whitelist branches to avoid testing feature branches twice (as branch and as pull request) branches: only: - master environment: matrix: # AppVeyor installed Python versions # http://www.appveyor.com/docs/installed-software#python - PYTHON_INSTALL: "C:\\Python27" - PYTHON_INSTALL: "C:\\Python33" - PYTHON_INSTALL: "C:\\Python34" - PYTHON_INSTALL: "C:\\Python35" install: # Make compiler available (use MSVC 2013, 32 bit) - call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86 # Check compiler version - cl # Prepend Python installation to PATH - "SET PATH=%PYTHON_INSTALL%;%PATH%" # Check Python version - "python --version" build_script: - "python clcache.py --help" - "python clcache.py -s" test_script: - "python unittests.py" - "python integrationtests.py" after_test: # Get a rough overview about what happened in the tests. # This is not part of the actual testing but pure convenience. - "python clcache.py -s"
Whitelist branches in AppVeyor config
Whitelist branches in AppVeyor config to avoid testing feature branches twice (as branch and as pull request)
YAML
bsd-3-clause
webmaster128/clcache,webmaster128/clcache,webmaster128/clcache
4a3b3e8195500248651b2d1c243c4b47650d12a5
app/app.yaml
app/app.yaml
# Copyright 2008 the Melange authors. # # 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. # TODO(proto): uncomment and supply a Google App Engine application instance # application: FIXME version: 1 runtime: python api_version: 1 handlers: - url: /content static_dir: content - url: /.* script: main.py
# Copyright 2008 the Melange authors. # # 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. # TODO(proto): uncomment and supply a Google App Engine application instance # application: FIXME version: 1 runtime: python api_version: 1 handlers: - url: /soc/content static_dir: soc/content - url: /gsoc/content static_dir: gsoc/content - url: /ghop/content static_dir: ghop/content - url: /.* script: main.py
Make static content framework- and program-specific.
Make static content framework- and program-specific. --HG-- extra : convert_revision : svn%3A32761e7d-7263-4528-b7be-7235b26367ec/trunk%40386
YAML
apache-2.0
rhyolight/nupic.son,rhyolight/nupic.son,rhyolight/nupic.son
ec2947e79175cf28766218367079f05b25bd0843
appveyor.yml
appveyor.yml
version: "master-{build}" os: Windows Server 2012 R2 platform: - x64 services: - mysql environment: machine_user: test_user machine_pass: Pass@word1 machine_port: 5985 KITCHEN_YAML: .kitchen.appveyor.yml SSL_CERT_FILE: c:\projects\kitchen-machine\certs.pem matrix: - ruby_version: "21" clone_folder: c:\projects\kitchen-machine clone_depth: 1 branches: only: - master install: - ps: net user /add $env:machine_user $env:machine_pass - ps: net localgroup administrators $env:machine_user /add - ps: $env:PATH="C:\Ruby$env:ruby_version\bin;$env:PATH" - ps: gem install bundler --quiet --no-ri --no-rdoc - ps: Invoke-WebRequest -Uri http://curl.haxx.se/ca/cacert.pem -OutFile c:\projects\kitchen-machine\certs.pem build_script: - bundle install || bundle install || bundle install test_script: - bundle exec rake - bundle exec kitchen verify
version: "master-{build}" os: Windows Server 2012 R2 platform: - x64 services: - mysql environment: machine_user: test_user machine_pass: Pass@word1 machine_port: 5985 KITCHEN_YAML: .kitchen.appveyor.yml SSL_CERT_FILE: c:\projects\kitchen-machine\certs.pem matrix: - ruby_version: "21" clone_folder: c:\projects\kitchen-machine clone_depth: 1 install: - ps: net user /add $env:machine_user $env:machine_pass - ps: net localgroup administrators $env:machine_user /add - ps: $env:PATH="C:\Ruby$env:ruby_version\bin;$env:PATH" - ps: gem install bundler --quiet --no-ri --no-rdoc - ps: Invoke-WebRequest -Uri http://curl.haxx.se/ca/cacert.pem -OutFile c:\projects\kitchen-machine\certs.pem build_script: - bundle install || bundle install || bundle install test_script: - bundle exec rake - bundle exec kitchen verify
Build on windows for all branches
Build on windows for all branches
YAML
mit
dhoer/chef-flywaydb,dhoer/chef-flywaydb
692797b4dcfb65206a2703b551e3622bba583dea
appveyor.yml
appveyor.yml
version: 0.4 ({build}) skip_branch_with_pr: true os: - Visual Studio 2017 platform: - x64 matrix: fast_finish: true # Stop remaining jobs after a job failure configuration: - Release clone_folder: C:\RosettaStone install: - git submodule update --init - ps: | $env:CMAKE_GENERATOR = "Visual Studio 15 2017 Win64" before_build: - md C:\RosettaStone\build - cd C:\RosettaStone\build - cmake .. -G "%CMAKE_GENERATOR%" build: project: C:\RosettaStone\build\RosettaStone.sln parallel: true verbosity: normal after_build: - C:\RosettaStone\build\bin\Release\UnitTests.exe
version: 0.4 ({build}) skip_branch_with_pr: true os: - Visual Studio 2017 platform: - x64 matrix: fast_finish: true # Stop remaining jobs after a job failure configuration: - Release clone_folder: C:\RosettaStone install: - git submodule update --init - ps: | $env:CMAKE_GENERATOR = "Visual Studio 15 2017 Win64" $env:PYTHON = "36-x64" $env:PATH = "C:\Python$env:PYTHON\;C:\Python$env:PYTHON\Scripts\;$env:PATH" before_build: - md C:\RosettaStone\build - cd C:\RosettaStone\build - cmake .. -G "%CMAKE_GENERATOR%" build: project: C:\RosettaStone\build\RosettaStone.sln parallel: true verbosity: normal after_build: - C:\RosettaStone\build\bin\Release\UnitTests.exe
Add environment variables for pybind11
feat(python-api): Add environment variables for pybind11
YAML
mit
Hearthstonepp/Hearthstonepp,Hearthstonepp/Hearthstonepp
9c0b3c64ac664c42644612d6481eacd15af7e72f
appveyor.yml
appveyor.yml
version: 1.0.{build} shallow_clone: true environment: matrix: - LUA: 5.1 - LUA: 5.2 - LUA: 5.3 configuration: MinGW platform: x86 before_build: set PATH=C:\mingw\bin;%PATH% build_script: python hererocks.py here --lua "%LUA%" --verbose test_script: here\bin\lua -v
version: 1.0.{build} shallow_clone: true environment: matrix: - LUA: 5.1 - LUA: 5.2 - LUA: 5.3 configuration: - 2015 platform: x86 before_build: '"C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\vcvarsall.bat"' build_script: python hererocks.py here --lua "%LUA%" --verbose --target cl test_script: here\bin\lua -v
Test cl.exe RioLua build on Appveyor
Test cl.exe RioLua build on Appveyor
YAML
mit
mpeterv/hererocks,mpeterv/hererocks
7e11df02e6b302f8c6cb081baaa01e251baf33c4
appveyor.yml
appveyor.yml
# Absolutely essential: we must build using VS 2019. os: Visual Studio 2019 branches: only: - master build_script: - cmd: curl -fsS -o antlr-4.8-complete.jar "https://www.antlr.org/download/antlr-4.8-complete.jar" - cmd: set Antlr4ToolPath="C:\projects\antlrvsix\antlr-4.8-complete.jar" - cmd: set JAVA_EXEC="C:\Progra~1\Java\jdk1.8.0\bin\java.exe" - cmd: set - cmd: MSBuild.exe /t:restore /p:Configuration=Debug AntlrVSIX.sln - cmd: MSBuild.exe /p:Configuration=Debug AntlrVSIX.sln
# Absolutely essential: we must build using VS 2019. os: Visual Studio 2019 branches: only: - master build_script: - cmd: curl -fsS -o antlr-4.8-complete.jar "https://www.antlr.org/download/antlr-4.8-complete.jar" - cmd: set Antlr4ToolPath="C:\projects\antlrvsix\antlr-4.8-complete.jar" - cmd: set JAVA_EXEC="C:\Progra~1\Java\jdk1.8.0\bin\java.exe" - cmd: set - cmd: MSBuild.exe /t:restore /p:Configuration=Debug /v:diag AntlrVSIX.sln - cmd: MSBuild.exe /p:Configuration=Debug /v:diag AntlrVSIX.sln
Add diagnostic output to Appveyor.
Add diagnostic output to Appveyor.
YAML
mit
kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX,kaby76/AntlrVSIX
d81972f565a4316bcc1ed67a17d02d991147ca16
appveyor.yml
appveyor.yml
version: 1.0.{build} environment: ftp_user: secure: f0a7Ydwv2347FyFroA9W2g== ftp_password: secure: Sei1iycTJNEoAKXYRT6R4QsjCmBYgl81iOd2Dp6Ch/s= install: - choco install pretzel -y - choco install pretzel.scriptcs -y - ps: $env:Path += ";C:\\Python35;C:\\Python35\\Scripts" - pip install creep cache: - C:\tools\Pretzel -> appveyor.yml - '%LOCALAPPDATA%\pip\Cache -> appveyor.yml' build_script: - ps: .\BakeAndDeploy.ps1 test: off artifacts: - path: src/_site name: compiled_site
version: 1.0.{build} environment: ftp_user: secure: f0a7Ydwv2347FyFroA9W2g== ftp_password: secure: Sei1iycTJNEoAKXYRT6R4QsjCmBYgl81iOd2Dp6Ch/s= install: - choco install pretzel -y - choco install pretzel.scriptcs -y - ps: $env:Path += ";C:\\Python35;C:\\Python35\\Scripts" - pip install creep cache: - C:\tools\Pretzel -> appveyor.yml - C:\ProgramData\chocolatey\lib -> appveyor.yml - '%LOCALAPPDATA%\pip\Cache -> appveyor.yml' build_script: - ps: .\BakeAndDeploy.ps1 test: off artifacts: - path: src/_site name: compiled_site
Add cache for chocolatey packages
Add cache for chocolatey packages
YAML
apache-2.0
laedit/laedit.net,laedit/laedit.net
189e07d85287fbcaeeb3f425bb6c10ae9efd3588
appveyor.yml
appveyor.yml
version: 1.0.{build} branches: only: - master configuration: - Debug - Release environment: matrix: - VS_VERSION: vs2012 - VS_VERSION: vs2013 install: - cinst wget - wget -nv -O premake.zip http://sourceforge.net/projects/premake/files/Premake/nightlies/premake-dev-windows.zip/download - unzip premake.zip - move bin\release\premake5.exe . before_build: - git submodule init - git submodule update - del /F /S build - premake5.exe %VS_VERSION% - dir build: project: build\%VS_VERSION%\enet-cs.sln verbosity: normal after_build: - tree artifacts: - path: build\$(VS_VERSION)\lib name: enetcs-$(configuration)-$(VS_VERSION) type: zip - path: build\$(VS_VERSION)\bin name: ENetDemo-$(configuration)-$(VS_VERSION) type: zip
version: 1.0.{build} branches: only: - master configuration: - Debug - Release environment: matrix: - VS_VERSION: vs2012 - VS_VERSION: vs2013 install: - cinst wget - wget -nv -O premake.zip http://sourceforge.net/projects/premake/files/Premake/nightlies/premake-dev-windows.zip/download - unzip premake.zip - move bin\release\premake5.exe . before_build: - git submodule init - git submodule update - del /F /S build - premake5.exe %VS_VERSION% - dir - dir build\%VS_VERSION% - tree build: project: build\$(VS_VERSION)\enet-cs.sln verbosity: normal after_build: - tree artifacts: - path: build\$(VS_VERSION)\lib name: enetcs-$(configuration)-$(VS_VERSION) type: zip - path: build\$(VS_VERSION)\bin name: ENetDemo-$(configuration)-$(VS_VERSION) type: zip
Use £ syntax for project path. More directory listings.
Use £ syntax for project path. More directory listings.
YAML
bsd-2-clause
KeronTeam/enetcs
7a8f146bed839150bafbd2cea2e929f01e6c697c
appveyor.yml
appveyor.yml
version: "{build}" os: Windows Server 2012 R2 install: - choco install atom -y - cd %APPVEYOR_BUILD_FOLDER% - npm install build_script: - cd %APPVEYOR_BUILD_FOLDER% - npm test test: off deploy: off
version: "{build}" os: Windows Server 2012 R2 install: - cd %APPVEYOR_BUILD_FOLDER% - npm install build_script: - cd %APPVEYOR_BUILD_FOLDER% - npm test test: off deploy: off
Remove redundant step to install Atom on Appveyor CI
Remove redundant step to install Atom on Appveyor CI
YAML
mit
atom/fs-plus
a33526813e421a1c3ac8e67a813615ca772d0d07
appveyor.yml
appveyor.yml
version: 1.0.{build} image: Visual Studio 2017 configuration: - Release before_build: - cmd: nuget restore build: verbosity: minimal after_build: - cmd: dotnet pack GeneGenie.Gedcom\GeneGenie.Gedcom.csproj --configuration Release --output . --no-build artifacts: - path: '**/*.nupkg' name: nugetpackage deploy: - provider: NuGet api_key: secure: P8cmu7BZh3GOr+3bq5NVZEAEGnvjyC1wKhEmk4pcfTxiZwP7qS2t0pTPPn+q4ILC artifact: nugetpackage on: branch: master test_script: - dotnet test GeneGenie.Gedcom.Tests/GeneGenie.Gedcom.Tests.csproj /p:AltCover=true /p:AltCoverAssemblyExcludeFilter=GeneGenie.Gedcom.Tests after_test: - ps: | $env:PATH = 'C:\msys64\usr\bin;' + $env:PATH Invoke-WebRequest -Uri 'https://codecov.io/bash' -OutFile codecov.sh bash codecov.sh -f "GeneGenie.Gedcom.Tests/coverage.xml" -t $Env:CODECOV_TOKEN
version: 1.0.{build} image: Visual Studio 2017 configuration: - Release before_build: - cmd: nuget restore build: verbosity: minimal after_build: - cmd: dotnet pack GeneGenie.Gedcom\GeneGenie.Gedcom.csproj --configuration Release --output . --no-build artifacts: - path: '**/*.nupkg' name: nugetpackage deploy: - provider: NuGet api_key: secure: P8cmu7BZh3GOr+3bq5NVZEAEGnvjyC1wKhEmk4pcfTxiZwP7qS2t0pTPPn+q4ILC artifact: nugetpackage on: branch: master test_script: - dotnet test GeneGenie.Gedcom.Tests/GeneGenie.Gedcom.Tests.csproj # - dotnet test GeneGenie.Gedcom.Tests/GeneGenie.Gedcom.Tests.csproj /p:AltCover=true /p:AltCoverAssemblyExcludeFilter=GeneGenie.Gedcom.Tests after_test: - ps: | $env:PATH = 'C:\msys64\usr\bin;' + $env:PATH Invoke-WebRequest -Uri 'https://codecov.io/bash' -OutFile codecov.sh bash codecov.sh -f "GeneGenie.Gedcom.Tests/coverage.xml" -t $Env:CODECOV_TOKEN
Remove code coverage from build as it is causing the build to fail due to timeouts.
Remove code coverage from build as it is causing the build to fail due to timeouts.
YAML
agpl-3.0
TheGeneGenieProject/GeneGenie.Gedcom
d8f2a09b0c825e2dbd2ba00795a4a46299bf2258
appveyor.yml
appveyor.yml
build_script: - cmd: 'c:\cygwin\bin\bash -lc "cd $APPVEYOR_BUILD_FOLDER; autoreconf -i && ./configure && make && make check"'
environment: matrix: - MSYSTEM: MINGW64 BASH_PATH: C:\msys64\usr\bin\bash - BASH_PATH: c:\cygwin\bin\bash build_script: - cmd: '%BASH_PATH% -lc "cd $APPVEYOR_BUILD_FOLDER; autoreconf -i && ./configure && make && make check"'
Add MSYS2/Mingw64 to Appveyor CI
Add MSYS2/Mingw64 to Appveyor CI
YAML
lgpl-2.1
hunspell/hunspell,hunspell/hunspell,hunspell/hunspell,hunspell/hunspell
5ee63cc55d1b70bd7f96e03431debea189240df4
appveyor.yml
appveyor.yml
version: 1.0.{build} image: Visual Studio 2017 configuration: - Release before_build: - cmd: nuget restore build: verbosity: minimal after_build: - cmd: dotnet pack GeneGenie.Gedcom\GeneGenie.Gedcom.csproj --configuration Release --output . --no-build artifacts: - path: '**/*.nupkg' name: nugetpackage deploy: - provider: NuGet api_key: secure: P8cmu7BZh3GOr+3bq5NVZEAEGnvjyC1wKhEmk4pcfTxiZwP7qS2t0pTPPn+q4ILC artifact: nugetpackage on: branch: master test_script: - cmd: SonarQube.bat
version: 1.0.{build} image: Visual Studio 2017 configuration: - Release before_build: - cmd: nuget restore build: verbosity: minimal after_build: - cmd: dotnet pack GeneGenie.Gedcom\GeneGenie.Gedcom.csproj --configuration Release --output . --no-build artifacts: - path: '**/*.nupkg' name: nugetpackage deploy: - provider: NuGet api_key: secure: bcYrYC8tAmSYcblYfwjk9upKKLg6kEuQbYVAw9knvBSu32OOfmtXPXHwpDqSCadQ artifact: nugetpackage on: branch: master test_script: - cmd: SonarQube.bat
Update renewed and encrypted Nuget.org API key
Update renewed and encrypted Nuget.org API key
YAML
agpl-3.0
TheGeneGenieProject/GeneGenie.Gedcom
393a940470bc706efae2f288afd7a09b38edd652
appveyor.yml
appveyor.yml
branches: except: - gh-pages environment: OPTIONS: publish=never TARGET_OS: windows nodejs_version: 7 matrix: - TARGET_ARCH: ia32 - TARGET_ARCH: x64 image: Visual Studio 2015 clone_folder: C:\Projects\Main clone_depth: 1 install: - cmd: echo "Repo URL" && git remote get-url origin - cmd: dir - ps: Install-Product node $env:nodejs_version - cmd: IF %nodejs_version% EQU 0.8 npm -g install npm@2 - cmd: IF %nodejs_version% EQU 0.8 set PATH=%APPDATA%\npm;%PATH% - cmd: npm -g install npm - cmd: IF %nodejs_version% NEQ 0.8 set PATH=%APPDATA%\npm;%PATH% - cmd: npm install test_script: - cmd: echo "NodeJS version" && node --version - cmd: echo "NPM version" && npm --version - cmd: echo "Test" && npm test build_script: - cmd: | set OPTIONS="%TARGET_OS% %TARGET_ARCH% %OPTIONS%" npm run pack - cmd: dir artifacts: - path: dist\*.* - path: dist\win\*.* deploy: - provider: GitHub draft: false prerelease: false auth_token: $(GITHUB_RELEASE_OAUTH) on: appveyor_repo_tag: true
branches: except: - gh-pages environment: OPTIONS: publish=never TARGET_OS: windows nodejs_version: 7 matrix: - TARGET_ARCH: ia32 - TARGET_ARCH: x64 image: Visual Studio 2015 clone_folder: C:\Projects\Main clone_depth: 1 install: - cmd: echo "Repo URL" && git remote get-url origin - cmd: dir - ps: Install-Product node $env:nodejs_version - cmd: IF %nodejs_version% EQU 0.8 npm -g install npm@2 - cmd: IF %nodejs_version% EQU 0.8 set PATH=%APPDATA%\npm;%PATH% - cmd: npm -g install npm - cmd: IF %nodejs_version% NEQ 0.8 set PATH=%APPDATA%\npm;%PATH% - cmd: npm install test_script: - cmd: echo "NodeJS version" && node --version - cmd: echo "NPM version" && npm --version - cmd: echo "Test" && npm test before_deploy: - cmd: | set OPTIONS="%TARGET_OS% %TARGET_ARCH% %OPTIONS%" npm run pack - cmd: dir artifacts: - path: dist\*.* - path: dist\win\*.* deploy: - provider: GitHub draft: false prerelease: false auth_token: $(GITHUB_RELEASE_OAUTH) on: appveyor_repo_tag: true
Use before_deploy for sake of time-saving
Use before_deploy for sake of time-saving
YAML
mit
KSXGitHub/electron-boilerplate-double,KSXGitHub/electron-boilerplate-double,KSXGitHub/electron-boilerplate-double
13d9995316ea2797c78514ff8c998cf3ab5c7d86
appveyor.yml
appveyor.yml
version: "{build}" platform: x64 branches: only: - master clone_depth: 10 skip_tags: true environment: APM_TEST_PACKAGES: ATOM_GITHUB_FS_EVENT_LOG: '1' MOCHA_TIMEOUT: '60000' UNTIL_TIMEOUT: '30000' matrix: - ATOM_CHANNEL: stable - ATOM_CHANNEL: beta - ATOM_CHANNEL: dev install: - ps: Install-Product node 8 build_script: - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-package.ps1')) test: off deploy: off
version: "{build}" platform: x64 branches: only: - master clone_depth: 10 skip_tags: true environment: APM_TEST_PACKAGES: ATOM_GITHUB_FS_EVENT_LOG: '1' MOCHA_TIMEOUT: '60000' UNTIL_TIMEOUT: '30000' matrix: - ATOM_CHANNEL: stable - ATOM_CHANNEL: beta - ATOM_CHANNEL: dev install: - ps: Install-Product node 6 build_script: - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-package.ps1')) test: off deploy: off
Revert the speculative Node upgrade on AppVeyor
Revert the speculative Node upgrade on AppVeyor
YAML
mit
atom/github,atom/github,atom/github
5165b4f9cf6e53ac2b36fa351e8cacc05bc8b906
appveyor.yml
appveyor.yml
version: 1.0.{build} branches: only: - development/r1.0 - release/r1.0 image: Visual Studio 2015 install: - cmd: >- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH% dnvm install 1.0.0-rc1-update1 -r coreclr -arch x64 -nonative cache: C:\Users\appveyor\.dnx\packages build_script: - cmd: >- dnvm use 1.0.0-rc1-update1 -r coreclr -arch x64 dnu restore --quiet dnu build .\src\HTTPlease.Core --quiet test_script: - cmd: dnx -p test\HTTPlease.Core.Tests test deploy_script: - cmd: dnu pack .\src\HTTPlease.Core
version: 1.0.{build} branches: only: - development/r1.0 - release/r1.0 image: Visual Studio 2015 install: - cmd: >- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH% dnvm install 1.0.0-rc1-update1 -r coreclr -arch x64 -nonative cache: C:\Users\appveyor\.dnx\packages build_script: - cmd: >- dnvm use 1.0.0-rc1-update1 -r coreclr -arch x64 dnu restore --quiet dnu build .\src\HTTPlease.Core --quiet test_script: - cmd: dnx -p test\HTTPlease.Core.Tests test deploy_script: - cmd: dnu pack .\src\HTTPlease.Core --quiet
Reduce output from DNU pack.
Reduce output from DNU pack.
YAML
mit
tintoy/HTTPlease,tintoy/HTTPlease
c69eb1876f899e66f0c305d975a1a6078fe958f3
appveyor.yml
appveyor.yml
version: "{build}" os: Windows Server 2012 R2 install: - choco install atom -y - cd %APPVEYOR_BUILD_FOLDER% - "%LOCALAPPDATA%/atom/bin/apm clean" - "%LOCALAPPDATA%/atom/bin/apm install" build_script: - cd %APPVEYOR_BUILD_FOLDER% - "%LOCALAPPDATA%/atom/bin/apm test --path %LOCALAPPDATA%/atom/bin/atom.cmd" test: off deploy: off
version: "{build}" os: Windows Server 2012 R2 install: - cd %APPVEYOR_BUILD_FOLDER% - npm install build_script: - cd %APPVEYOR_BUILD_FOLDER% - npm test test: off deploy: off
Remove redundant atom install step
Remove redundant atom install step
YAML
mit
NeekSandhu/event-kit,atom/event-kit
95ce9cbf0c27a10facdef5e5d096c7ee9c28523b
appveyor.yml
appveyor.yml
# Thanks for Grunt for template of this file! # http://www.appveyor.com/docs/appveyor-yml # Fix line endings in Windows. (runs before repo cloning) init: - git config --global core.autocrlf input # Test against these versions of Node.js. environment: matrix: - nodejs_version: "0.10" - nodejs_version: "0.11" # Allow failing jobs for bleeding-edge Node.js versions. matrix: allow_failures: - nodejs_version: "0.11" # Install scripts. (runs after repo cloning) install: # Get the latest stable version of Node 0.STABLE.latest - ps: Install-Product node $env:nodejs_version # Install subversion - choco install svn # Install bower - npm install # Post-install test scripts. test_script: # Output useful info for debugging. - node --version - npm --version - cmd: npm test # Don't actually build. build: off # Set build version format here instead of in the admin panel. version: "{build}"
# Thanks for Grunt for template of this file! # http://www.appveyor.com/docs/appveyor-yml # Fix line endings in Windows. (runs before repo cloning) init: - git config --global core.autocrlf input # Test against these versions of Node.js. environment: matrix: - nodejs_version: "0.10" # - nodejs_version: "0.11" # Allow failing jobs for bleeding-edge Node.js versions. matrix: allow_failures: - nodejs_version: "0.11" # Install scripts. (runs after repo cloning) install: # Get the latest stable version of Node 0.STABLE.latest - ps: Install-Product node $env:nodejs_version # Install subversion - choco install svn # Install bower - npm install # Post-install test scripts. test_script: # Output useful info for debugging. - node --version - npm --version - cmd: npm test # Don't actually build. build: off # Set build version format here instead of in the admin panel. version: "{build}"
Remove [email protected] from Windows builds
Remove [email protected] from Windows builds
YAML
mit
supriyantomaftuh/bower,rlugojr/bower,haolee1990/bower,M4gn4tor/bower,gorcz/bower,bower/bower,twalpole/bower,magnetech/bower,kodypeterson/bower,pjump/bower,wenyanw/bower,TooHTooH/bower,rajzshkr/bower,DevVersion/bower,JFrogDev/bower-art,jvkops/bower,watilde/bower,mex/bower,Teino1978-Corp/Teino1978-Corp-bower,Connectlegendary/bower,kruppel/bower,Jinkwon/naver-bower-cli,prometheansacrifice/bower,insanehong/bower,Jeremy017/bower,gronke/bower,amilaonbitlab/bower,dreamauya/bower,thinkxl/bower,cgvarela/bower,omurbilgili/bower,pwang2/bower,liorhson/bower,angeliaz/bower,grigorkh/bower,vladikoff/bower,return02/bower,xfstudio/bower,akaash-nigam/bower,XCage15/bower,jodytate/bower,fewspider/bower,yuhualingfeng/bower,lukemelia/bower,sanyueyu/bower,jisaacks/bower,mattpugh/bower,yinhe007/bower,PimsJay01/bower,Blackbaud-EricSlater/bower,pertrai1/bower,unilynx/bower,cnbin/bower,Backbase/bower,adriaanthomas/bower,skinzer/bower,DrRataplan/bower,ThiagoGarciaAlves/bower,fernandomoraes/bower,msbit/bower,Teino1978-Corp/bower
c3b7df22eb5e0dc3d594e1ce9a085c215859a4e2
appveyor.yml
appveyor.yml
version: '{build}' pull_requests: do_not_increment_build_number: true branches: only: - master nuget: disable_publish_on_pr: true build_script: - ps: .\Build.ps1 test: off artifacts: - path: .\artifacts\*.nupkg name: NuGet deploy: - provider: NuGet server: https://www.myget.org/F/skarp/api/v2/package api_key: secure: QUUDwCiAHecwSEHztB/ANurfoE3BMOpibwyPmr852U3a7VEamjUTfpzv86wVCjLD skip_symbols: true on: branch: master - provider: NuGet name: production api_key: secure: O2aKtP6hbwJ7WLPp9s5GcTsOu/OiNL3Zfpuk1w7JjQAQPbT4P3JGD0FsrusyaYrc on: appveyor_repo_tag: true
version: '{build}' pull_requests: do_not_increment_build_number: true branches: only: - master nuget: disable_publish_on_pr: true build_script: - ps: .\Build.ps1 test: off artifacts: - path: .\artifacts\*.nupkg name: NuGet deploy: - provider: NuGet server: https://www.myget.org/F/skarp/api/v2/package api_key: secure: QUUDwCiAHecwSEHztB/ANurfoE3BMOpibwyPmr852U3a7VEamjUTfpzv86wVCjLD skip_symbols: true on: branch: master - provider: NuGet name: production api_key: secure: Qek6svTX1SpK3gObDBpSD4szPqTfWgOhDJys4ShLmK26l7MtZg8u3+FlWI5MyHKi on: appveyor_repo_tag: true
Update encrypted nuget api key
Update encrypted nuget api key
YAML
mit
skarpdev/dotnet-version-cli
1e31452544ef6535d7916dfe375914271c71992a
appveyor.yml
appveyor.yml
before_build: cmake . build_script: C:\Program Files\MSBuild\12.0\bin\msbuild FORMAT.sln
before_build: cmake . build_script: \"C:\Program Files\MSBuild\12.0\bin\msbuild\" FORMAT.sln
Fix build config, take 2.
Fix build config, take 2.
YAML
bsd-2-clause
alabuzhev/fmt,lightslife/cppformat,seungrye/cppformat,cppformat/cppformat,Jopie64/cppformat,cppformat/cppformat,dean0x7d/cppformat,seungrye/cppformat,cppformat/cppformat,Jopie64/cppformat,mojoBrendan/fmt,nelson4722/cppformat,wangshijin/cppformat,blaquee/cppformat,alabuzhev/fmt,wangshijin/cppformat,lightslife/cppformat,blaquee/cppformat,mojoBrendan/fmt,seungrye/cppformat,dean0x7d/cppformat,Jopie64/cppformat,wangshijin/cppformat,lightslife/cppformat,mojoBrendan/fmt,alabuzhev/fmt,nelson4722/cppformat,dean0x7d/cppformat,blaquee/cppformat,nelson4722/cppformat
03de459491c8f8b43c7a1991cce1227196a2c6bf
appveyor.yml
appveyor.yml
environment: CXX: cl CPPPATH: lz4/include;googletest-release-1.8.0/googletest/include matrix: - PYTHON: "C:\\Python27" install: # Install SCons - SET "PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" - easy_install scons # Install LZ4 library - curl -L -o lz4.zip https://github.com/lz4/lz4/releases/download/v1.7.4.2/lz4_v1_7_4_win32.zip - mkdir lz4 - 7z x -olz4 lz4.zip - cp lz4/dll/liblz4.{dll,lib} . # Install Google test framework - curl -L -o googletest.zip https://github.com/google/googletest/archive/release-1.8.0.zip - mkdir googletest - 7z x googletest.zip - mkdir googletest_build - cd googletest_build - cmake --target debug ../googletest-release-1.8.0/googletest - msbuild gtest.sln - cp Debug/*.lib .. - cd .. build_script: - scons test_script: - lz4_stream_test
environment: CXX: cl CPPPATH: lz4/include;googletest-release-1.8.0/googletest/include matrix: - PYTHON: "C:\\Python27" install: # Install SCons - SET "PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" - easy_install scons # Install LZ4 library - curl -L -o lz4.zip https://github.com/lz4/lz4/releases/download/v1.7.4.2/lz4_v1_7_4_win32.zip - mkdir lz4 - 7z x -olz4 lz4.zip - cp lz4/dll/liblz4.{dll,lib} . # Install Google test framework - curl -L -o googletest.zip https://github.com/google/googletest/archive/release-1.8.0.zip - mkdir googletest - 7z x googletest.zip - mkdir googletest_build - cd googletest_build - cmake ../googletest-release-1.8.0/googletest - msbuild gtest.sln - cp Debug/*.lib .. - cd .. build_script: - scons test_script: - lz4_stream_test
Revert "Silence warnings from msbuild"
Revert "Silence warnings from msbuild" This reverts commit c84b7c8551ee667d2a9ae0fd3d5c720db6d75662. Remove commit that didn't actually work as expected, but didn't really matter...
YAML
bsd-3-clause
laudrup/lz4_stream
bf75bbc91c1b35a9c0d6036e392223d8d4581dce
config/kubernetes/sig-instrumentation/teams.yaml
config/kubernetes/sig-instrumentation/teams.yaml
teams: sig-instrumentation-leads: description: "" members: - brancz - dashpole - ehashman - logicalhan privacy: closed sig-instrumentation-approvers: description: "" members: - brancz - dashpole - ehashman - logicalhan - RainbowMango - serathius privacy: closed sig-instrumentation-members: description: "" members: - 44past4 - andyxning - brancz - coffeepac - dashpole - dgrisonnet - dims - DirectXMan12 - ehashman - erain - lilic - logicalhan - RainbowMango - s-urbaniak - serathius - tariq1890 - YoyinZyc - yuzhiquan privacy: closed
teams: sig-instrumentation-leads: description: "" members: - brancz - dashpole - ehashman - logicalhan privacy: closed sig-instrumentation-approvers: description: "" members: - brancz - dashpole - ehashman - logicalhan - RainbowMango - serathius privacy: closed sig-instrumentation-members: description: "" members: - 44past4 - andyxning - brancz - coffeepac - dashpole - dgrisonnet - dims - DirectXMan12 - ehashman - erain - lilic - logicalhan - RainbowMango - s-urbaniak - serathius - tariq1890 - yangjunmyfm192085 - YoyinZyc - yuzhiquan privacy: closed
Add yangjunmyfm192085 to sig-instrumentation team
Add yangjunmyfm192085 to sig-instrumentation team Signed-off-by: JunYang <[email protected]>
YAML
apache-2.0
kubernetes/org,kubernetes/org,kubernetes/org
7f436cb4f57827520cfd48b18efd3a5852ea2995
src/carvel/templates/bundle/package/config/values.yml
src/carvel/templates/bundle/package/config/values.yml
(@ load("@ytt:data", "data") @)#@data/values --- scdf: deploy: binder: type: rabbit database: type: mariadb server: image: repository: (@= data.values.server.repository @) tag: (@= data.values.server.version @) ctr: image: tag: (@= data.values.ctr.version @) skipper: image: tag: (@= data.values.skipper.version @)
(@ load("@ytt:data", "data") @)#@data/values --- scdf: deploy: binder: type: rabbit database: type: mariadb server: image: repository: (@= data.values.server.repository @) tag: (@= data.values.server.version @) ctr: image: tag: (@= data.values.ctr.version @) skipper: image: tag: (@= data.values.skipper.version @) feature: monitoring: grafana: image: tag: (@= data.values.grafana.version @)
Add grafana to bundle default value
Add grafana to bundle default value - Hopefully this resolves issue with airgap install so that grafana gets resolved correctly to resolved imgpkg lock file when it has a correct default value. - Relates #4769
YAML
apache-2.0
jvalkeal/spring-cloud-dataflow,jvalkeal/spring-cloud-dataflow,spring-cloud/spring-cloud-dataflow,spring-cloud/spring-cloud-data,spring-cloud/spring-cloud-dataflow,jvalkeal/spring-cloud-data,jvalkeal/spring-cloud-dataflow,jvalkeal/spring-cloud-data,jvalkeal/spring-cloud-data,spring-cloud/spring-cloud-dataflow,jvalkeal/spring-cloud-dataflow,spring-cloud/spring-cloud-dataflow,spring-cloud/spring-cloud-dataflow,jvalkeal/spring-cloud-dataflow,spring-cloud/spring-cloud-data,spring-cloud/spring-cloud-data
243be6d8655f61d3914b74ae8c2f228e848ed4fa
wercker.yml
wercker.yml
box: wercker/rvm build: steps: - script: name: install ruby code: | rvm get latest rvm reload rvm install ruby-2.2.5 rvm --default use 2.2.5 gem install bundler - bundle-install - script: name: echo ruby information code: | echo "RUBY version $(ruby --version) running" echo "FROM location $(which ruby)" echo -p "Gem list: $(gem list)" - script: name: rspec code: bundle exec rspec
box: wercker/rvm build: steps: - script: name: install ruby code: | rvm get latest rvm reload rvm install ruby-2.2.5 rvm --default use 2.2.5 gem install bundler - bundle-install - script: name: echo ruby information code: | echo "RUBY version $(ruby --version) running" echo "FROM location $(which ruby)" echo -p "Gem list: $(gem list)" - script: name: rspec code: bundle exec rspec
Fix yml indendation for lists
Fix yml indendation for lists
YAML
mit
celtec/google-directions,parafuzo/google-directions,parafuzo/google-directions,celtec/google-directions
8b2c321f9a0f66e6f82cb3ee87966fc14c793598
.rubocop.yml
.rubocop.yml
AllCops: TargetRubyVersion: 2.0 Exclude: - 'bin/**/*' Documentation: Enabled: false LineLength: Enabled: true Max: 120 MethodLength: Max: 20 IndentHash: Enabled: false Style/ClassAndModuleChildren: Enabled: false Style/FrozenStringLiteralComment: Enabled: false
AllCops: TargetRubyVersion: 2.0 Exclude: - 'bin/**/*' Documentation: Enabled: false LineLength: Enabled: true Max: 120 MethodLength: Max: 20 IndentHash: Enabled: false Metrics/BlockLength: Exclude: - 'spec/**/*' Style/ClassAndModuleChildren: Enabled: false Style/FrozenStringLiteralComment: Enabled: false
Exclude spec from block length check
Exclude spec from block length check
YAML
mit
raszi/mrkt,movableink/mrkt
1bb8d8d2cb3c2be9076dcf002bea8c9bc3599e7e
.github/stale.yml
.github/stale.yml
# Number of days of inactivity before an issue becomes stale daysUntilStale: 60 # Number of days of inactivity before a stale issue is closed daysUntilClose: 7 # Issues with these labels will never be considered stale exemptLabels: - pinned - security # Label to use when marking an issue as stale staleLabel: stale # Comment to post when marking an issue as stale. Set to `false` to disable markComment: > This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. # Comment to post when closing a stale issue. Set to `false` to disable closeComment: false
_extends: .github
Add org-wide config for Stale app
Add org-wide config for Stale app
YAML
mit
ssbc/examples
c84a3e9bd8fb498cf8e605cb93e3079d183f27b3
AppVeyor.yml
AppVeyor.yml
# --------------------------------------------------------------------------- # # general configuration # --------------------------------------------------------------------------- # version: 1.4.1.{build} branches: except: - net35 skip_tags: true # --------------------------------------------------------------------------- # # environment configuration # --------------------------------------------------------------------------- # clone_folder: C:\Cube\Cube.Net image: Visual Studio 2017 nuget: project_feed: true disable_publish_on_pr: true # --------------------------------------------------------------------------- # # build configuration # --------------------------------------------------------------------------- # platform: Any CPU configuration: Release before_build: - nuget restore Cube.Net.sln build: parallel: true project: Cube.Net.sln publish_nuget: true verbosity: normal # --------------------------------------------------------------------------- # # tests configuration # --------------------------------------------------------------------------- # test_script: - ..\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -register:user -target:"nunit3-console.exe" -targetargs:"Cube.Net.Tests.dll" -targetdir:".\Tests\bin\Release" -hideskipped:All -output:CoverResult.xml after_test: - "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%" - pip install codecov - codecov -f "CoverResult.xml"
# --------------------------------------------------------------------------- # # general configuration # --------------------------------------------------------------------------- # version: 1.4.1.{build} branches: except: - net35 skip_tags: true # --------------------------------------------------------------------------- # # environment configuration # --------------------------------------------------------------------------- # clone_folder: C:\Cube\Cube.Net image: Visual Studio 2017 nuget: project_feed: true disable_publish_on_pr: true # --------------------------------------------------------------------------- # # build configuration # --------------------------------------------------------------------------- # platform: Any CPU configuration: Release before_build: - nuget sources add -name Cube.Core -source https://ci.appveyor.com/nuget/cube.core - nuget restore Cube.Net.sln build: parallel: true project: Cube.Net.sln publish_nuget: true verbosity: normal # --------------------------------------------------------------------------- # # tests configuration # --------------------------------------------------------------------------- # test_script: - ..\packages\OpenCover.4.6.519\tools\OpenCover.Console.exe -register:user -target:"nunit3-console.exe" -targetargs:"Cube.Net.Tests.dll" -targetdir:".\Tests\bin\Release" -hideskipped:All -output:CoverResult.xml after_test: - "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%" - pip install codecov - codecov -f "CoverResult.xml"
Add nuget source for Cube.Core
Add nuget source for Cube.Core
YAML
apache-2.0
cube-soft/Cube.Net,cube-soft/Cube.Net,cube-soft/Cube.Net
e5dad672c39099e2a85cbd231d1fe058063c35e2
packages/ha/haskus-utils-variant.yaml
packages/ha/haskus-utils-variant.yaml
homepage: http://www.haskus.org changelog-type: '' hash: aaec9a85a77aeec3d5b4849454a3fec52e6553659b4cb81bc89182d634c74ba9 test-bench-deps: haskus-utils-variant: -any base: ! '>=4.11.1.0 && <4.12' tasty-quickcheck: ! '>=0.8 && <0.11' tasty: ! '>=0.11 && <1.2' maintainer: [email protected] synopsis: Haskus utility modules changelog: '' basic-deps: base: ! '>=4.9 && <4.12' haskus-utils-data: ==1.1.* haskus-utils-types: ==1.1.* template-haskell: ! '>=2.13.0.0 && <2.14' all-versions: - '1.0' - '2.0' author: Sylvain Henry latest: '2.0' description-type: haddock description: ! 'Variant (extensible sum type) and EADT (extensible recursive sum type) datatypes.' license-name: BSD3
homepage: http://www.haskus.org changelog-type: '' hash: 1f7fa6cac2bdfe4ce785c60c4636220e619854834ddde368a17b34d99aa1daa3 test-bench-deps: haskus-utils-variant: -any base: ! '>=4.11.1.0 && <4.12' tasty-quickcheck: ! '>=0.8 && <0.11' tasty: ! '>=0.11 && <1.2' maintainer: [email protected] synopsis: Variant and EADT changelog: '' basic-deps: base: ! '>=4.9 && <4.12' haskus-utils-data: ==1.1.* haskus-utils-types: ==1.1.* template-haskell: ! '>=2.13.0.0 && <2.14' all-versions: - '1.0' - '2.0' - '2.0.1' author: Sylvain Henry latest: '2.0.1' description-type: haddock description: ! 'Variant (extensible sum type) and EADT (extensible recursive sum type) datatypes. Documentation can be found at https://docs.haskus.org' license-name: BSD3
Update from Hackage at 2018-10-28T17:45:01Z
Update from Hackage at 2018-10-28T17:45:01Z
YAML
mit
commercialhaskell/all-cabal-metadata
b18dad17c42ecb72eb253e272a23b6e2bbdfa9c6
metadata/de.pixart.messenger.yml
metadata/de.pixart.messenger.yml
Categories: - Internet License: GPL-3.0-only AuthorName: Christian Schneppe SourceCode: https://github.com/kriztan/Pix-Art-Messenger IssueTracker: https://github.com/kriztan/Pix-Art-Messenger/issues Changelog: https://github.com/kriztan/Pix-Art-Messenger/blob/HEAD/CHANGELOG.md AutoName: Pix-Art Messenger RepoType: git Repo: https://github.com/kriztan/Pix-Art-Messenger Builds: - versionName: 2.0.2 versionCode: 233 commit: 2.0.2 gradle: - standard - versionName: 2.1.0 (beta 2018-07-15) versionCode: 237 commit: 2.1.0.3 gradle: - standard - versionName: 2.1.0 versionCode: 238 commit: 2.1.0 gradle: - standard - versionName: 2.1.1 versionCode: 243 commit: 2.1.1 gradle: - standard - versionName: 2.1.2 versionCode: 244 commit: 2.1.2 gradle: - standard AutoUpdateMode: Version %v UpdateCheckMode: Tags ^[0-9.]+$ CurrentVersion: 2.1.2 CurrentVersionCode: 244
Categories: - Internet License: GPL-3.0-only AuthorName: Christian Schneppe SourceCode: https://github.com/kriztan/Pix-Art-Messenger IssueTracker: https://github.com/kriztan/Pix-Art-Messenger/issues Changelog: https://github.com/kriztan/Pix-Art-Messenger/blob/HEAD/CHANGELOG.md AutoName: Pix-Art Messenger RepoType: git Repo: https://github.com/kriztan/Pix-Art-Messenger Builds: - versionName: 2.0.2 versionCode: 233 commit: 2.0.2 gradle: - standard - versionName: 2.1.0 (beta 2018-07-15) versionCode: 237 commit: 2.1.0.3 gradle: - standard - versionName: 2.1.0 versionCode: 238 commit: 2.1.0 gradle: - standard - versionName: 2.1.1 versionCode: 243 commit: 2.1.1 gradle: - standard - versionName: 2.1.2 versionCode: 244 commit: 2.1.2 gradle: - standard - versionName: 2.1.3 versionCode: 246 commit: 2.1.3 gradle: - standard AutoUpdateMode: Version %v UpdateCheckMode: Tags ^[0-9.]+$ CurrentVersion: 2.1.3 CurrentVersionCode: 246
Update Pix-Art Messenger to 2.1.3 (246)
Update Pix-Art Messenger to 2.1.3 (246)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata,f-droid/fdroid-data
12c3ff400414da0f03c104a68e016d1f68fcdd3a
metadata/de.r4md4c.gamedealz.yml
metadata/de.r4md4c.gamedealz.yml
AntiFeatures: - NonFreeNet Categories: - Internet License: GPL-3.0-or-later SourceCode: https://github.com/R4md4c/GameDealz IssueTracker: https://github.com/R4md4c/GameDealz/issues AutoName: GameDealz Summary: A non-official client for IsThereAnyDeal.com RepoType: git Repo: https://github.com/R4md4c/GameDealz Builds: - versionName: '1.3' versionCode: 5 commit: v1.3 subdir: app gradle: - yes gradleprops: - ITAD_CLIENT_ID=6bf49a5917670519 - ITAD_CLIENT_SECRET=4fad0634c8176d83a21e140f83793e96e56a41be - ITAD_API_KEY=004fd25be2f2eafc446696f58bc052321ff26af4 AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '1.3' CurrentVersionCode: 5
AntiFeatures: - NonFreeNet Categories: - Internet License: GPL-3.0-or-later SourceCode: https://github.com/R4md4c/GameDealz IssueTracker: https://github.com/R4md4c/GameDealz/issues AutoName: GameDealz Summary: A non-official client for IsThereAnyDeal.com RepoType: git Repo: https://github.com/R4md4c/GameDealz Builds: - versionName: '1.3' versionCode: 5 commit: v1.3 subdir: app gradle: - yes gradleprops: - ITAD_CLIENT_ID=6bf49a5917670519 - ITAD_CLIENT_SECRET=4fad0634c8176d83a21e140f83793e96e56a41be - ITAD_API_KEY=004fd25be2f2eafc446696f58bc052321ff26af4 - versionName: '1.4' versionCode: 6 commit: v1.4 subdir: app gradle: - yes gradleprops: - ITAD_CLIENT_ID=6bf49a5917670519 - ITAD_CLIENT_SECRET=4fad0634c8176d83a21e140f83793e96e56a41be - ITAD_API_KEY=004fd25be2f2eafc446696f58bc052321ff26af4 AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '1.4' CurrentVersionCode: 6
Update GameDealz to 1.4 (6)
Update GameDealz to 1.4 (6)
YAML
agpl-3.0
f-droid/fdroid-data,f-droid/fdroiddata,f-droid/fdroiddata
d88cde5d7cb58bec028887000cc313f8e49f8b90
hiera/users/nullus.yaml
hiera/users/nullus.yaml
--- boxen::personal::osx_apps: - intellij-idea - pycharm - rubymine - viscosity - hipchat - firefox - docker boxen::personal::homebrew_packages: - tmux - jq - httpie
--- boxen::personal::osx_apps: - intellij-idea - pycharm - rubymine - viscosity - hipchat - firefox - docker - keepassx - steam - lifesize - postman boxen::personal::homebrew_packages: - tmux - jq - httpie - maven
Add a number of packages
Add a number of packages
YAML
mit
nullus/boxen,nullus/boxen,nullus/boxen
cc21028f754177f851fa465fbfda7c987caa2f27
.readthedocs.yaml
.readthedocs.yaml
version: 2 build: os: ubuntu-20.04 tools: python: "3.9" sphinx: configuration: docs/conf.py
version: 2 build: os: ubuntu-20.04 tools: python: "3.9" sphinx: configuration: docs/conf.py python: install: - requirements: requirements-dev.txt
Add requirements to read the docs config
Add requirements to read the docs config
YAML
bsd-2-clause
fusionbox/django-authtools
aace3a70df2b5f309d89e4f8111178ad4da25810
roles/db/tasks/mysql.yml
roles/db/tasks/mysql.yml
--- - name: Install MySQL apt: name={{ item }} update_cache={{ update_apt_cache }} state=present with_items: - mysql-server - mysql-client - libmysqlclient-dev tags: packages - name: Install mysqlclient pip: name=mysqlclient tags: packages - name: Ensure the MySQL service is running service: name=mysql state=started enabled=yes - name: update MySQL root password from the blank default sudo: yes mysql_user: name=root host="{{ gear_db_host }}" password="{{ mysql_root_password }}" login_user=root login_password="{{ mysql_root_password }}" check_implicit_admin=yes priv="*.*:ALL,GRANT" - name: Ensure that gear database is created become: yes become_user: mysql mysql_db: name={{ gear_db_name }} login_user=root login_password="{{ mysql_root_password }}" state=present - name: Ensure user has access to the database become: yes become_user: mysql mysql_user: name={{ gear_db_user }} password={{ gear_db_password }} login_user=root login_password="{{ mysql_root_password }}" priv="*.*:ALL,GRANT" state=present
--- - name: Install MySQL apt: name={{ item }} update_cache={{ update_apt_cache }} state=present with_items: - mysql-server - mysql-client - libmysqlclient-dev tags: packages - name: Install mysqlclient pip: name=mysqlclient tags: packages - name: Ensure the MySQL service is running service: name=mysql state=started enabled=yes - name: update MySQL root password from the blank default become: yes become_user: root mysql_user: name=root host="{{ gear_db_host }}" password="{{ mysql_root_password }}" login_user=root login_password="{{ mysql_root_password }}" check_implicit_admin=yes priv="*.*:ALL,GRANT" - name: Ensure that gear database is created become: yes become_user: mysql mysql_db: name={{ gear_db_name }} login_user=root login_password="{{ mysql_root_password }}" state=present - name: Ensure user has access to the database become: yes become_user: mysql mysql_user: name={{ gear_db_user }} password={{ gear_db_password }} login_user=root login_password="{{ mysql_root_password }}" priv="*.*:ALL,GRANT" state=present
Fix one more case of deprecated `sudo`
Fix one more case of deprecated `sudo`
YAML
mit
DavidCain/mitoc-ansible,DavidCain/mitoc-ansible,DavidCain/mitoc-ansible
a6c311e1301dfef75951c5e4412e93cfa80a01bd
appveyor.yml
appveyor.yml
skip_branch_with_pr: true environment: HOME: $(HOMEDRIVE)$(HOMEPATH) cache: - $(HOME)\.gradle\caches\build-cache-1 - $(HOME)\.gradle\caches\jars-1 - $(HOME)\.gradle\caches\jars-2 - $(HOME)\.gradle\caches\jars-3 - $(HOME)\.gradle\caches\modules-2 - $(HOME)\.gradle\caches\transforms-1 - $(HOME)\.gradle\wrapper\dists - $(HOME)\.m2\repository clone_depth: 50 # Do something useful here to override the default MSBuild (which would fail otherwise). build_script: - echo org.gradle.java.home=C:/Program Files/Java/jdk9>>%HOME%\.gradle\gradle.properties test_script: - gradlew test on_finish: - gradlew --stop # Fix "fileHashes.bin" being used by another process. - ps: | $url = "https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)" $pattern = '**\build\test-results\**\TEST-*.xml' foreach ($file in (Resolve-Path $pattern)) { (New-Object 'System.Net.WebClient').UploadFile($url, $file) }
skip_branch_with_pr: true environment: HOME: $(HOMEDRIVE)$(HOMEPATH) cache: - $(HOME)\.gradle\caches\build-cache-1 - $(HOME)\.gradle\caches\jars-1 - $(HOME)\.gradle\caches\jars-2 - $(HOME)\.gradle\caches\jars-3 - $(HOME)\.gradle\caches\modules-2 - $(HOME)\.gradle\caches\transforms-1 - $(HOME)\.gradle\wrapper\dists - $(HOME)\.m2\repository clone_depth: 50 # Do something useful here to override the default MSBuild (which would fail otherwise). build_script: - gradlew classes test_script: - gradlew test on_finish: - gradlew --stop # Fix "fileHashes.bin" being used by another process. - ps: | $url = "https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)" $pattern = '**\build\test-results\**\TEST-*.xml' foreach ($file in (Resolve-Path $pattern)) { (New-Object 'System.Net.WebClient').UploadFile($url, $file) }
Use Java 8 on AppVeyor
Use Java 8 on AppVeyor There seem to be issues with Java 9.
YAML
mit
kotlintest/kotlintest,sksamuel/ktest,kotlintest/kotlintest,kotlintest/kotlintest
37338c6a4435624d8c5f1cb87f1d25affae4bfab
appveyor.yml
appveyor.yml
configuration: Release test: assemblies: - '**\bin\$(configuration)\*.test.dll' artifacts: - path: src\PowerShell\$(configuration) name: msi.zip type: zip deploy: - provider: GitHub description: 'Direct module download' auth_token: secure: 5K94QY8dHKlbjvlBpQaXwAkmDf+LQE3g5WlU9snnNMjDjf0UT4xDoOBCLWcmwZOm artifact: /.*\.nupkg/ on: branch: master appveyor_repo_tag: true - provider: NuGet server: https://powershellgallery.com/api/v2 api_key: secure: 4STrzCp6wDsDBj/wCtmImMVL7wUI8DCGjdMBXGqQf9JZJ8LjmW5YSY8wtcHAv0XW artifact: /.*\.nupkg/ on: branch: master appveyor_repo_tag: true
configuration: Release test: assemblies: - '**\bin\$(configuration)\*.test.dll' artifacts: - path: src\PowerShell\bin\$(configuration) name: msi.zip type: zip deploy: - provider: GitHub description: 'Direct module download' auth_token: secure: 5K94QY8dHKlbjvlBpQaXwAkmDf+LQE3g5WlU9snnNMjDjf0UT4xDoOBCLWcmwZOm artifact: /.*\.nupkg/ on: branch: master appveyor_repo_tag: true - provider: NuGet server: https://powershellgallery.com/api/v2 api_key: secure: 4STrzCp6wDsDBj/wCtmImMVL7wUI8DCGjdMBXGqQf9JZJ8LjmW5YSY8wtcHAv0XW artifact: /.*\.nupkg/ on: branch: master appveyor_repo_tag: true
Correct path to build output directory
Correct path to build output directory
YAML
mit
heaths/psmsi,heaths/psmsi
48bba6cc8ca5912ec21d08f096ee07bd51666203
appveyor.yml
appveyor.yml
# Fix line endings on Windows init: - git config --global core.autocrlf true # What combinations to test environment: matrix: - nodejs_version: "0.10" - nodejs_version: "0.12" - nodejs_version: "4" - nodejs_version: "5" - nodejs_version: "6" - nodejs_version: "7" - nodejs_version: "8" platform: - x86 - x64 install: - ps: Install-Product node $env:nodejs_version - cmd: if [[ `npm -v` =~ ^[1-2] ]]; then npm i -g npm@3; fi - npm install test_script: # Output useful info for debugging. - node --version && npm --version # We test multiple Windows shells because of prior stdout buffering issues # filed against Grunt. https://github.com/joyent/node/issues/3584 - ps: "npm test # PowerShell" # Pass comment to PS for easier debugging - cmd: npm test build: off matrix: fast_finish: true cache: - node_modules -> package.json # local npm modules
# Fix line endings on Windows init: - git config --global core.autocrlf true # What combinations to test environment: matrix: - nodejs_version: "0.10" - nodejs_version: "0.12" - nodejs_version: "4" - nodejs_version: "5" - nodejs_version: "6" - nodejs_version: "7" - nodejs_version: "8" platform: - x86 - x64 install: - ps: Install-Product node $env:nodejs_version - npm install test_script: # Install npm@3 if the npm version is 1 or 2 - if [[ `npm -v` =~ ^[1-2] ]]; then npm i -g npm@3; fi # Output useful info for debugging. - node --version && npm --version # We test multiple Windows shells because of prior stdout buffering issues # filed against Grunt. https://github.com/joyent/node/issues/3584 - ps: "npm test # PowerShell" # Pass comment to PS for easier debugging - cmd: npm test build: off matrix: fast_finish: true cache: - node_modules -> package.json # local npm modules
Move to the test script to avoid npm was unexpected at this time.
Move to the test script to avoid npm was unexpected at this time.
YAML
mit
paladox/grunt
c77eff41e6daeed0c5af63d8816f6dedc403f010
appveyor.yml
appveyor.yml
version: '1.0.{build}' configuration: - Release platform: Any CPU branches: only: - master environment: # Don't report back to the mothership DOTNET_CLI_TELEMETRY_OPTOUT: 1 init: - ps: $Env:LABEL = "CI" + $Env:APPVEYOR_BUILD_NUMBER.PadLeft(5, "0") before_build: - appveyor-retry dotnet restore -v Minimal assembly_info: patch: true file: AssemblyInfo.cs assembly_version: '{version}' assembly_file_version: '{version}' assembly_informational_version: '{version}' build_script: - ps: C:\Projects\dotnet-make\src\dotnet-make\update_version.ps1 - dotnet build "src\dotnet-make" -c %CONFIGURATION% --no-dependencies --version-suffix %LABEL% after_build: - dotnet pack "src\dotnet-make" -c Release test_script: artifacts: - path: '**\*.nupkg' name: NuGet package deploy: provider: NuGet api_key: secure: 2yGf9wWYVIETYfooKme+gT7pKIbw94M2iwnMBZLlsZR5abhhBp6xpmsaIrodL1eC skip_symbols: true artifact: /.*\.nupkg/ cache: - '%USERPROFILE%\.nuget\packages' on_finish:
version: '1.0.{build}' configuration: - Release platform: Any CPU branches: only: - master environment: # Don't report back to the mothership DOTNET_CLI_TELEMETRY_OPTOUT: 1 init: - ps: $Env:LABEL = "CI" + $Env:APPVEYOR_BUILD_NUMBER.PadLeft(5, "0") before_build: - appveyor-retry dotnet restore -v Minimal assembly_info: patch: true file: AssemblyInfo.cs assembly_version: '{version}' assembly_file_version: '{version}' assembly_informational_version: '{version}' build_script: - ps: C:\projects\dotnet-make\src\dotnet-make\update-version.ps1 - dotnet build "src\dotnet-make" -c %CONFIGURATION% --no-dependencies --version-suffix %LABEL% after_build: - dotnet pack "src\dotnet-make" -c Release test_script: artifacts: - path: '**\*.nupkg' name: NuGet package deploy: provider: NuGet api_key: secure: 2yGf9wWYVIETYfooKme+gT7pKIbw94M2iwnMBZLlsZR5abhhBp6xpmsaIrodL1eC skip_symbols: true artifact: /.*\.nupkg/ cache: - '%USERPROFILE%\.nuget\packages' on_finish:
Fix - Run powershell script.
Fix - Run powershell script.
YAML
apache-2.0
springcomp/dotnet-make
fd43c2b99a47ac840aaca39a3e58fe5b1994a0c4
appveyor.yml
appveyor.yml
version: '{branch}.{build}' os: Windows Server 2012 R2 configuration: - Debug - Release platform: x64 environment: matrix: - PlatformToolset: v140 - PlatformToolset: v120 - PlatformToolset: Windows7.1SDK build_script: - > msbuild "json-c.vcxproj" /m /verbosity:normal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /p:PlatformToolset=%PlatformToolset% matrix: allow_failures: - PlatformToolset: v140 artifacts: - path: Debug\* name: Debug_x86 - path: Release\* name: Release_x86 - path: x64\Debug\* name: Debug_x64 - path: x64\Release\* name: Release_x64
version: '{branch}.{build}' os: Windows Server 2012 R2 configuration: - Debug - Release platform: x64 environment: matrix: - PlatformToolset: v140 - PlatformToolset: v120 - PlatformToolset: Windows7.1SDK build_script: - > msbuild "json-c.vcxproj" /m /verbosity:normal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /p:PlatformToolset=%PlatformToolset% /p:OutDir=lib\ after_build: - md include\json-c - copy json.h include\json-c\* - copy debug.h include\json-c\* - copy linkhash.h include\json-c\* - copy arraylist.h include\json-c\* - copy json_util.h include\json-c\* - copy json_object.h include\json-c\* - copy json_tokener.h include\json-c\* - copy json_object_iterator.h include\json-c\* - copy json_c_version.h include\json-c\* - copy json_inttypes.h include\json-c\* - copy json_config.h include\json-c\* - copy json_object_private.h include\json-c\* - 7z a json-c.lib.zip lib\json-c.lib include\json-c\*.h matrix: allow_failures: - PlatformToolset: v140 artifacts: - path: json-c.lib.zip name: json-c.lib.zip
Create artefact with library and include files only
Appveyor: Create artefact with library and include files only
YAML
mit
cubieb/json-c,Amineahd/json-c,cubieb/json-c,rgerhards/json-c,cubieb/json-c,Nzbuu/json-c,Nzbuu/json-c,Amineahd/json-c,chenha0/json-c,Nzbuu/json-c,rgerhards/json-c,chenha0/json-c,Nzbuu/json-c,chenha0/json-c,rgerhards/json-c,Amineahd/json-c
8e2120172650be7cf9eedc29a6ef39bf884b0fb3
appveyor.yml
appveyor.yml
version: "{build}" os: Windows Server 2012 R2 install: - choco install atom -y - cd %APPVEYOR_BUILD_FOLDER% - "%LOCALAPPDATA%/atom/bin/apm clean" - "%LOCALAPPDATA%/atom/bin/apm install" build_script: - cd %APPVEYOR_BUILD_FOLDER% - "%LOCALAPPDATA%/atom/bin/apm test --path %LOCALAPPDATA%/atom/bin/atom.cmd" test: off deploy: off
version: "{build}" platform: x64 branches: only: - master clone_depth: 10 skip_tags: true environment: APM_TEST_PACKAGES: matrix: - ATOM_CHANNEL: stable - ATOM_CHANNEL: beta install: - ps: Install-Product node 4 build_script: - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-package.ps1')) test: off deploy: off
Test against both channels on AppVeyor
Test against both channels on AppVeyor
YAML
mit
atom/autocomplete-plus,atom-community/autocomplete-plus
a589cb526d0c91195582ef91690517a02981726c
docker-compose.yml
docker-compose.yml
version: '2' services: bugzilla: image: uneet/bugzilla restart: on-failure ports: - 8081:80 environment: SES_VERIFIED_SENDER: [email protected] MYSQL_HOST: db.dev.unee-t.com MYSQL_PORT: 3306 MYSQL_ROOT_PASSWORD: jai7Paib MYSQL_DATABASE: bugzilla MYSQL_USER: root MYSQL_PASSWORD: jai7Paib
version: '2' services: bugzilla: image: uneet/bugzilla restart: on-failure ports: - 8081:80 environment: # Setup by local .env file SES_SMTP_USERNAME: ${SES_SMTP_USERNAME} SES_SMTP_PASSWORD: ${SES_SMTP_PASSWORD} SES_VERIFIED_SENDER: ${SES_VERIFIED_SENDER} MYSQL_HOST: ${MYSQL_HOST} MYSQL_PORT: ${MYSQL_PORT} MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD} MYSQL_DATABASE: ${MYSQL_DATABASE} MYSQL_USER: ${MYSQL_USER} MYSQL_PASSWORD: ${MYSQL_PASSWORD} depends_on: - db volumes: - ./custom:/opt/bugzilla/template/en/custom - ./skin:/opt/bugzilla/skins/contrib/skin networks: - network db: image: mariadb ports: - 3306:3306 environment: MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD} MYSQL_DATABASE: ${MYSQL_DATABASE} MYSQL_USER: ${MYSQL_USER} MYSQL_PASSWORD: ${MYSQL_PASSWORD} volumes: - ./mariadb:/var/lib/mysql - ./sql:/docker-entrypoint-initdb.d networks: - network adminer: image: adminer ports: - 8082:8082 depends_on: - db networks: - network meteor: image: ulexus/meteor ports: - "8080:80" networks: - network environment: - BUNDLE_URL=https://unee-t-media.s3-accelerate.amazonaws.com/2017-08-31/unee-t-fe.tar.gz - ROOT_URL=http://local.unee-t.com - BUGZILLA_URL=http://bugzilla - BUGZILLA_ADMIN_KEY=I6zRu7bPak687rcIBCkNbFKblfRXPn2X3xgEFz99 - MONGO_URL=mongodb://mongo:27017/mydatabase mongo: image: mongo ports: - "27017:27017" networks: - network networks: network: driver: bridge
Reset file for local development
Reset file for local development
YAML
agpl-3.0
unee-t/bugzilla
d5381fbffefadd28c13335da9a276d3d46917f83
docker-compose.yml
docker-compose.yml
collectd: build: apps/collectd command: /bin/bash -c "service collectd stop; sleep 45; collectd -f" links: - kairosdb kairosdb: build: apps/kairosdb command: /bin/bash -c "sleep 30; /opt/kairosdb/bin/kairosdb.sh run" ports: - "4242:4242" - "8080:8080" links: - cassandra cassandra: image: jimthedev/cassandra hostname: cassandra ports: - "9042:9042" - "9160:9160"
collectd: build: apps/collectd command: /bin/bash -c "collectd -f" links: - kairosdb kairosdb: build: apps/kairosdb command: /bin/bash -c "/opt/kairosdb/bin/kairosdb.sh run" ports: - "4242:4242" - "8080:8080" links: - cassandra cassandra: image: jimthedev/cassandra hostname: cassandra ports: - "9042:9042" - "9160:9160"
Remove sleeps from compose configuration
Remove sleeps from compose configuration
YAML
apache-2.0
skottler/kairosdb-docker
b0cd7405a1bd99a9fe2812c189fbf78fb04451b7
docker-compose.yml
docker-compose.yml
version: '2' services: master: container_name: 'citus_master' image: 'citusdata/citus:5.2.2' ports: ['5432:5432'] labels: ['com.citusdata.role=Master'] worker: image: 'citusdata/citus:5.2.2' labels: ['com.citusdata.role=Worker'] config: container_name: 'citus_config' image: 'citusdata/workerlist-gen:0.9.0' volumes: ['/var/run/docker.sock:/tmp/docker.sock'] volumes_from: ['master']
version: '2' services: master: container_name: 'citus_master' image: 'citusdata/citus:5.2.2' ports: ['5432:5432'] labels: ['com.citusdata.role=Master'] worker: image: 'citusdata/citus:5.2.2' labels: ['com.citusdata.role=Worker'] config: container_name: 'citus_config' image: 'citusdata/workerlist-gen:1.0.0' volumes: ['/var/run/docker.sock:/tmp/docker.sock'] volumes_from: ['master']
Use latest workerlist generation image
Use latest workerlist generation image
YAML
apache-2.0
citusdata/docker
32538352cca48f8048c9350c108d432b720758eb
.github/workflows/mutation_testing.yml
.github/workflows/mutation_testing.yml
name: PHP Mutation testing on: push: branches: [ main ] jobs: test: runs-on: 'ubuntu-latest' steps: - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: '8.1' - uses: actions/checkout@v2 with: fetch-depth: 0 - name: Validate composer.json and composer.lock run: composer validate --strict - name: Cache Composer packages id: composer-cache uses: actions/cache@v2 with: path: vendor key: ${{ runner.os }}-php-8.1-${{ hashFiles('**/composer.lock') }} restore-keys: | ${{ runner.os }}-php-8.1 - name: Install dependencies run: composer install --prefer-dist --no-progress - name: Run test suite run: ./vendor/bin/infection --threads=2
name: PHP Mutation testing on: push: branches: [ main ] jobs: test: runs-on: 'ubuntu-latest' steps: - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: '8.1' - uses: actions/checkout@v2 with: fetch-depth: 0 - name: Validate composer.json and composer.lock run: composer validate --strict - name: Cache Composer packages id: composer-cache uses: actions/cache@v2 with: path: vendor key: ${{ runner.os }}-php-8.1-${{ hashFiles('**/composer.lock') }} restore-keys: | ${{ runner.os }}-php-8.1 - name: Install dependencies run: composer install --prefer-dist --no-progress - name: Run test suite run: ./vendor/bin/infection --threads=2 - name: Archive mutation results uses: actions/upload-artifact@v2 with: name: Mutation log path: infection.log
Archive a copy of the mutation log results
Archive a copy of the mutation log results
YAML
mit
adrianclay/php-git
a4142d016732e6daac2afccdb497a8496e7d993f
couscous.yml
couscous.yml
template: url: https://github.com/LaunchCodeEducation/Template-Light # Base URL of the published website baseUrl: http://education.launchcode.org/cs50x-yourcitygoeshere # Used to link to the GitHub project github: user: LaunchCodeEducation repo: cs50x-yourcitygoeshere title: LaunchCode's CS50x - Your City # The left menu bar menu: items: calendar: text: Calendar # You can use relative urls relativeUrl: calendar/ howtotake: text: How To Take This Class relativeUrl: how-to-take-this-class/ helpfulresources: text: Helpful Resources relativeUrl: helpful-resources/ studentguide: text: ‹ Student Guide absoluteUrl: linktoyourstudentguidegoeshere attributes: target="_blank" vocareum: text: ‹ Vocareum absoluteUrl: http://labs.vocareum.com/main/ attributes: target="_blank" piazza: text: ‹ Piazza absoluteUrl: http://piazza.com/wustl/spring2016/cs50x attributes: target="_blank"
template: url: https://github.com/LaunchCodeEducation/Template-Light # Base URL of the published website baseUrl: http://education.launchcode.org/cs50x-yourcitygoeshere # Used to link to the GitHub project github: user: LaunchCodeEducation repo: cs50x-yourcitygoeshere title: LaunchCode's CS50x - Your City # The left menu bar menu: items: calendar: text: Calendar # You can use relative urls relativeUrl: calendar/ howtotake: text: How To Take This Class relativeUrl: how-to-take-this-class/ helpfulresources: text: Helpful Resources relativeUrl: helpful-resources/ ide: text: CS50 IDE absoluteUrl: http://ide.cs50.io/ attributes: target="_blank" vocareum: text: Vocareum absoluteUrl: http://labs.vocareum.com/main/ attributes: target="_blank" piazza: text: Piazza absoluteUrl: http://piazza.com/wustl/spring2016/cs50x attributes: target="_blank" studentguide: text: Student Guide absoluteUrl: linktoyourstudentguidegoeshere attributes: target="_blank"
Add IDE link, move Student Guide down
Add IDE link, move Student Guide down
YAML
cc0-1.0
LaunchCodeEducation/cs50x-kansascity,LaunchCodeEducation/cs50x-stlouis,LaunchCodeEducation/cs50x-kansascity,LaunchCodeEducation/cs50x-live,LaunchCodeEducation/cs50x-maryville,LaunchCodeEducation/cs50x-maryville,LaunchCodeEducation/cs50x-kansascity,LaunchCodeEducation/cs50x-kansascity,LaunchCodeEducation/cs50x-kansascity,LaunchCodeEducation/cs50x-maryville,LaunchCodeEducation/cs50x-maryville,LaunchCodeEducation/cs50x-maryville,LaunchCodeEducation/cs50x-stlouis,LaunchCodeEducation/cs50x-live,LaunchCodeEducation/cs50x-stlouis,LaunchCodeEducation/cs50x-stlouis,LaunchCodeEducation/cs50x-stlouis,LaunchCodeEducation/cs50x-live,LaunchCodeEducation/cs50x-live
dad37598775988dae7aa5231ece8aa0a44412c99
Configuration/Development/Setting.yaml
Configuration/Development/Setting.yaml
Neos: Flow: security: session: inactivityTimeout: 0 # Disable session timeout while developing
Neos: Flow: session: inactivityTimeout: 0 # Disable session timeout while developing
Use correct order for inactivitytimeout
BUGFIX: Use correct order for inactivitytimeout
YAML
mit
Sebobo/Shel.NeosBase,Sebobo/Shel.NeosBase
fb5d1eeab8e6daccd8ef44cbe91097d1d8cb9b6c
tasks/wordpress.yml
tasks/wordpress.yml
--- - name: "Download wordpress" become: yes get_url: "url={{ storyteller_wp_file_url }}/{{ storyteller_wp_file }} dest=/srv/{{ storyteller_wp_file }} sha256sum='{{ storyteller_wp_sha256sum }}'" - name: "Extract archive" become: yes unarchive: "src=/srv/{{ storyteller_wp_file }} dest=/srv copy=no creates=/srv/wordpress" - name: "Detect if there is a wp-config file" become: yes stat: path=/srv/wordpress/wp-config.php register: wp_config - name: "Fetch salts for wordpress config" command: get_url https://api.wordpress.org/secret-key/1.1/salt/ register: "wp_salt" when: not wp_config.stat.exists - name: "Copy Wordpress config" become: yes template: src=wp-config.php dest=/srv/wordpress/ when: not wp_config.stat.exists - name: "Change ownership of Wordpress installation" become: yes file: path=/srv/wordpress/ owner=www-data group=www-data state=directory recurse=yes
--- - name: "Download wordpress" become: yes get_url: "url={{ storyteller_wp_file_url }}/{{ storyteller_wp_file }} dest=/srv/{{ storyteller_wp_file }} sha256sum='{{ storyteller_wp_sha256sum }}'" - name: "Extract archive" become: yes unarchive: "src=/srv/{{ storyteller_wp_file }} dest=/srv copy=no creates=/srv/wordpress" - name: "Detect if there is a wp-config file" become: yes stat: path=/srv/wordpress/wp-config.php register: wp_config - name: "Fetch salts for wordpress config" command: curl https://api.wordpress.org/secret-key/1.1/salt/ register: "wp_salt" when: not wp_config.stat.exists - name: "Copy Wordpress config" become: yes template: src=wp-config.php dest=/srv/wordpress/ when: not wp_config.stat.exists - name: "Change ownership of Wordpress installation" become: yes file: path=/srv/wordpress/ owner=www-data group=www-data state=directory recurse=yes
Revert "replaced curl with get_url"
Revert "replaced curl with get_url" This reverts commit f29409be430c384c9ef96b254931aa69f6d5287f.
YAML
mit
AdnanHodzic/ansible-role-storyteller
41070997753ade8e1350b9675e3f8784ee35b925
ansible/roles/tshark/tasks/main.yml
ansible/roles/tshark/tasks/main.yml
- apt: name: tshark - lineinfile: path: /usr/share/wireshark/init.lua regexp: '^disable_lua =' line: 'disable_lua = true'
- apt: name: tshark - lineinfile: path: /usr/share/wireshark/init.lua regexp: '^disable_lua =' line: 'disable_lua = true' - group: name: wireshark state: present - file: path: /usr/bin/dumpcap group: wireshark mode: 0750 - capabilities: path: /usr/bin/dumpcap capability: - cap_net_raw - cap_net_admin=eip state: present
Add wireshark group and grant execute tshark to wireshark group.
Add wireshark group and grant execute tshark to wireshark group.
YAML
mit
groovenauts/raspi-ops,groovenauts/raspi-ops,groovenauts/raspi-ops,groovenauts/raspi-ops
a1d0405d0941f5b10addb7548f8a8a596a917472
tf-job-operator-chart/values.yaml
tf-job-operator-chart/values.yaml
# Docker image to use. image: gcr.io/tf-on-k8s-dogfood/tf_operator:10b10fd test_image: gcr.io/tf-on-k8s-dogfood/tf_sample:dc944ff ## Install Default RBAC roles and bindings rbac: install: false apiVersion: v1beta1
# Docker image to use. image: gcr.io/tf-on-k8s-dogfood/tf_operator:v20171019-7a05c26 test_image: gcr.io/tf-on-k8s-dogfood/tf_sample:dc944ff ## Install Default RBAC roles and bindings rbac: install: false apiVersion: v1beta1
Update the tfjob image to the latest green CL.
Update the tfjob image to the latest green CL. * The sample jobs were broken because they were using the default PS but the chart hadn't been updated.
YAML
apache-2.0
kubeflow/training-operator,kubeflow/training-operator,kubeflow/training-operator
f38d3ed6daf3e0ac8d87b7bd280027dd2d2a09ef
packages/at/attoparsec-time.yaml
packages/at/attoparsec-time.yaml
homepage: https://github.com/nikita-volkov/attoparsec-time changelog-type: '' hash: 7254ee92d32a5e9c95ac1f570b0a2cea34003428b01b2f50f9b96dd71339355d test-bench-deps: {} maintainer: Nikita Volkov <[email protected]> synopsis: Attoparsec parsers of time changelog: '' basic-deps: bytestring: ==0.10.* base: ! '>=4.9 && <5' time: ! '>=1.4 && <2' text: ! '>=1 && <2' attoparsec: ! '>=0.13 && <0.15' scientific: ==0.3.* all-versions: - '0.1' - 0.1.1 - 0.1.1.1 - 0.1.2 - 0.1.2.1 - 0.1.3 - 0.1.3.1 - 0.1.3.2 - 0.1.4 - '1' - 1.0.1 - 1.0.1.1 author: Nikita Volkov <[email protected]> latest: 1.0.1.1 description-type: haddock description: A collection of Attoparsec parsers for the \"time\" library license-name: MIT
homepage: https://github.com/nikita-volkov/attoparsec-time changelog-type: '' hash: 4b2e24e2ecf1787561428c2ef666a7f2f3e63cd190412afc8ad96176f303ba5f test-bench-deps: {} maintainer: Nikita Volkov <[email protected]> synopsis: Attoparsec parsers of time changelog: '' basic-deps: bytestring: '>=0.10 && <0.12' base: '>=4.9 && <5' time: '>=1.4 && <2' text: '>=1 && <2' attoparsec: '>=0.13 && <0.15' all-versions: - '0.1' - 0.1.1 - 0.1.1.1 - 0.1.2 - 0.1.2.1 - 0.1.3 - 0.1.3.1 - 0.1.3.2 - 0.1.4 - '1' - 1.0.1 - 1.0.1.1 - 1.0.1.2 author: Nikita Volkov <[email protected]> latest: 1.0.1.2 description-type: haddock description: A collection of Attoparsec parsers for the \"time\" library license-name: MIT
Update from Hackage at 2021-06-26T09:00:12Z
Update from Hackage at 2021-06-26T09:00:12Z
YAML
mit
commercialhaskell/all-cabal-metadata
8549471ce5bc0602bba8bb00c8b3b885d1854d12
.github/workflows/ci-build.yml
.github/workflows/ci-build.yml
name: Continous build - build and test on every push on: push jobs: build: name: Build and test runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest] java-version: [8, 11] steps: - name: Checkout uses: actions/checkout@v1 with: submodules: true - name: Setup Java ${{ matrix.java-version }} uses: actions/setup-java@v1 with: java-version: ${{ matrix.java-version }} - name: Report Java version run: | java -version javac -version - name: Build with Ant run: ant test
name: Continous build - build and test on every push on: push jobs: build: name: Build and test runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest] java-version: [8, 11] steps: - name: Checkout uses: actions/checkout@v1 with: submodules: true - name: Setup Java ${{ matrix.java-version }} uses: actions/setup-java@v1 with: java-version: ${{ matrix.java-version }} - name: Report Java version run: | java -version javac -version - name: Build with Ant run: ant test build_j7: name: Build and test on Java 7 runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v1 with: submodules: true - name: Setup Java 7 uses: actions/setup-java@v1 with: java-version: 7 - name: Report Java version run: | java -version javac -version - name: Setup Moxie run: | wget http://gitblit.github.io/moxie/maven/com/gitblit/moxie/moxie+ant/0.9.4/moxie+ant-0.9.4.tar.gz tar -xzf moxie+ant-0.9.4.tar.gz moxie-0.9.4/bin/moxie -version - name: Build with Moxie run: moxie-0.9.4/bin/moxie
Add build with Java 7 on Linux
ci: Add build with Java 7 on Linux Add a job to run a build with Java 7. The job currently only runs on Linux. In order to run on Java 7, an old Ant version is downloaded and installed. We use moxie+ant for this, so we build with moxie.
YAML
apache-2.0
gitblit/gitblit,fzs/gitblit,gitblit/gitblit,gitblit/gitblit,gitblit/gitblit,fzs/gitblit,fzs/gitblit,fzs/gitblit,gitblit/gitblit,fzs/gitblit
ba2dddb5c4dccc7d5a4dbd26efe4e12a93f7dca7
roles/common/tasks/ssh.yml
roles/common/tasks/ssh.yml
--- - name: disable password authentication over SSH copy: src=sshd_config dest=/etc/ssh/sshd_config owner=root group=root mode=0644 sudo: yes - name: trust github's public key lineinfile: dest: /etc/ssh/ssh_known_hosts create: yes state: present line: "{{ github_ssh_pubkey | replace(' ', '') | trim }}" regexp: "^github\\.com" sudo: yes - name: trust GitHub users authorized_key: user=core state=present key=https://github.com/{{ item }}.keys with_items: github_usernames
--- - name: disable password authentication over SSH copy: src=sshd_config dest=/etc/ssh/sshd_config owner=root group=root mode=0644 sudo: yes - name: trust github's public key lineinfile: dest: /etc/ssh/ssh_known_hosts create: yes state: present line: "{{ github_ssh_pubkey | replace(' ', '') | trim }}" regexp: "^github\\.com" sudo: yes - name: trust GitHub users authorized_key: user=core state=present key=https://github.com/{{ item }}.keys with_items: github_usernames tags: keys
Tag the SSH key task.
Tag the SSH key task. This is a stopgap to let me quickly patch things up until I get some time to fix deconst/deconst-docs#160 properly.
YAML
apache-2.0
ktbartholomew/deploy,deconst/deploy,ktbartholomew/deploy,deconst/deploy
7b366cc9e2844b805d0288bb86c0b3e53e554fee
packages/as/ast-monad.yaml
packages/as/ast-monad.yaml
homepage: https://github.com/mouri111/ast-monad#readme changelog-type: '' hash: 677616d2b7ebc0787bc947577f5f40c9f0e2f5948eb39ea38682740af7784952 test-bench-deps: base: -any ast-monad: -any maintainer: [email protected] synopsis: A library for constructing AST by using do-notation changelog: '' basic-deps: base: ! '>=4.8 && <5' all-versions: - '0.1.0.0' author: Masato Mouri latest: '0.1.0.0' description-type: markdown description: ! '# ast-monad A library for constructing AST by using do-notation ' license-name: BSD3
homepage: https://github.com/mouri111/ast-monad#readme changelog-type: '' hash: 43f0394c4465cfd294666ff976242093e8b5f4b0e0322055250cf8e26fb53e8c test-bench-deps: base: -any ast-monad: -any maintainer: [email protected] synopsis: A library for constructing AST by using do-notation changelog: '' basic-deps: base: ! '>=4.8 && <4.11' all-versions: - '0.1.0.0' author: Masato Mouri latest: '0.1.0.0' description-type: markdown description: ! '# ast-monad A library for constructing AST by using do-notation ' license-name: BSD3
Update from Hackage at 2018-10-20T22:35:07Z
Update from Hackage at 2018-10-20T22:35:07Z
YAML
mit
commercialhaskell/all-cabal-metadata
e9bde1bdb12151705329f317f779fdb0d2bf7023
metadata/com.github.ashutoshgngwr.tenbitclockwidget.yml
metadata/com.github.ashutoshgngwr.tenbitclockwidget.yml
Categories: - Time - Theming License: GPL-3.0-only WebSite: https://ashutoshgngwr.github.io/10-bitClockWidget SourceCode: https://github.com/ashutoshgngwr/10-bitClockWidget IssueTracker: https://github.com/ashutoshgngwr/10-bitClockWidget/issues AutoName: 10-bit Clock Widget Description: 10-bit Clock Widget uses 10 binary dots and their color to represent current time in 12-hour format. RepoType: git Repo: https://github.com/ashutoshgngwr/10-bitClockWidget.git Builds: - versionName: 1.6-1 versionCode: 161 commit: v1.6-1 subdir: 10-bitClockWidget/app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.6-1 CurrentVersionCode: 161
Categories: - Time - Theming License: GPL-3.0-only WebSite: https://ashutoshgngwr.github.io/10-bitClockWidget SourceCode: https://github.com/ashutoshgngwr/10-bitClockWidget IssueTracker: https://github.com/ashutoshgngwr/10-bitClockWidget/issues AutoName: 10-bit Clock Widget Description: 10-bit Clock Widget uses 10 binary dots and their color to represent current time in 12-hour format. RepoType: git Repo: https://github.com/ashutoshgngwr/10-bitClockWidget.git Builds: - versionName: 1.6-1 versionCode: 161 commit: v1.6-1 subdir: 10-bitClockWidget/app gradle: - yes - versionName: 1.6-2 versionCode: 162 commit: v1.6-2 subdir: 10-bitClockWidget/app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.6-2 CurrentVersionCode: 162
Update 10-bit Clock Widget to 1.6-2 (162)
Update 10-bit Clock Widget to 1.6-2 (162)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
14b44b049ed9fe7e2c94346480d25864a4fb64a1
config/kubernetes/sig-instrumentation/teams.yaml
config/kubernetes/sig-instrumentation/teams.yaml
teams: sig-instrumentation-leads: description: "" members: - brancz - dashpole - ehashman - logicalhan privacy: closed sig-instrumentation-approvers: description: "" members: - brancz - dashpole - ehashman - logicalhan - RainbowMango - serathius privacy: closed sig-instrumentation-members: description: "" members: - 44past4 - andyxning - brancz - coffeepac - danielqsj - dashpole - DirectXMan12 - ehashman - kawych - lilic - loburm - logicalhan - piosz - RainbowMango - serathius - s-urbaniak - tariq1890 - x13n - zouyee privacy: closed
teams: sig-instrumentation-leads: description: "" members: - brancz - dashpole - ehashman - logicalhan privacy: closed sig-instrumentation-approvers: description: "" members: - brancz - dashpole - ehashman - logicalhan - RainbowMango - serathius privacy: closed sig-instrumentation-members: description: "" members: - 44past4 - andyxning - brancz - coffeepac - dashpole - DirectXMan12 - ehashman - lilic - logicalhan - RainbowMango - s-urbaniak - serathius - tariq1890 privacy: closed
Remove inactive SIG Instrumentation members
Remove inactive SIG Instrumentation members
YAML
apache-2.0
kubernetes/org,kubernetes/org,kubernetes/org
2843ecde9feb38cefd983fa51819532481608755
docs/toc.yml
docs/toc.yml
- name: Articles href: articles/ - name: API Documentation href: api/ homepage: api/index.md - name: Changelog href: /RELEASE_NOTES.html - name: GitHub href: https://github.com/nickbabcock/Farmhash.Sharp
- name: Articles href: articles/ - name: API Documentation href: api/ homepage: api/index.md - name: Changelog href: ../RELEASE_NOTES.md - name: GitHub href: https://github.com/nickbabcock/Farmhash.Sharp
Fix link to release notes
Fix link to release notes
YAML
mit
nickbabcock/Farmhash.Sharp,nickbabcock/Farmhash.Sharp,nickbabcock/Farmhash.Sharp,nickbabcock/Farmhash.Sharp
71317965c04a3d153a2eacf9e934ffdf74933f7e
Resources/config/sluggable.yml
Resources/config/sluggable.yml
parameters: darvin_utils.sluggable.manager.entity.class: Darvin\Utils\Sluggable\SluggableEntityManager darvin_utils.sluggable.subscriber.class: Darvin\Utils\EventListener\SluggableSubscriber services: darvin_utils.sluggable.manager: alias: darvin_utils.sluggable.manager.entity darvin_utils.sluggable.manager.entity: class: %darvin_utils.sluggable.manager.entity.class% arguments: - "@darvin_utils.doctrine.orm.entity_manager_provider" - "@event_dispatcher" - "@darvin_utils.mapping.metadata_factory" - "@property_accessor" darvin_utils.sluggable.subscriber: class: %darvin_utils.sluggable.subscriber.class% public: false arguments: - "@darvin_utils.sluggable.manager" tags: - { name: doctrine.event_subscriber, priority: 200 }
parameters: darvin_utils.sluggable.manager.entity.class: Darvin\Utils\Sluggable\SluggableEntityManager darvin_utils.sluggable.subscriber.class: Darvin\Utils\EventListener\SluggableSubscriber services: darvin_utils.sluggable.manager: alias: darvin_utils.sluggable.manager.entity darvin_utils.sluggable.manager.entity: class: %darvin_utils.sluggable.manager.entity.class% arguments: - "@service_container" - "@darvin_utils.doctrine.orm.entity_manager_provider" - "@event_dispatcher" - "@darvin_utils.mapping.metadata_factory" - "@property_accessor" darvin_utils.sluggable.subscriber: class: %darvin_utils.sluggable.subscriber.class% public: false arguments: - "@darvin_utils.sluggable.manager" tags: - { name: doctrine.event_subscriber, priority: 200 }
Implement dummy publication slug prefix provider.
Implement dummy publication slug prefix provider.
YAML
mit
DarvinStudio/DarvinUtilsBundle
8bacc2115e4d941d75990362ace0a7af716dff1e
lib/business/data/padca.yml
lib/business/data/padca.yml
working_days: - monday - tuesday - wednesday - thursday - friday holidays: - January 1st, 2018 - January 2nd, 2018 - February 12th, 2018 - February 19th, 2018 - March 30th, 2018 - April 2nd, 2018 - May 21st, 2018 - June 21st, 2018 - June 25th, 2018 - July 2nd, 2018 - July 9th, 2018 - August 6th, 2018 - August 20th, 2018 - September 3rd, 2018 - October 8th, 2018 - November 12th, 2018 - December 25th, 2018 - December 26th, 2018 - January 1st, 2019 - January 2nd, 2019 - February 11th, 2019 - February 18th, 2019 - April 19th, 2019 - April 22nd, 2019 - May 20th, 2019 - June 21st, 2019 - June 24th, 2019 - July 1st, 2019 - July 9th, 2019 - August 5th, 2019 - August 19th, 2019 - September 2nd, 2019 - October 14th, 2019 - November 11th, 2019 - December 25th, 2019 - December 26th, 2019
working_days: - monday - tuesday - wednesday - thursday - friday holidays: - January 1st, 2018 - March 30th, 2018 - May 21st, 2018 - July 2nd, 2018 - September 3rd, 2018 - October 8th, 2018 - November 12th, 2018 - December 25th, 2018 - December 26th, 2018 - January 1st, 2019 - April 19th, 2019 - May 20th, 2019 - July 1st, 2019 - September 2nd, 2019 - October 14th, 2019 - November 11th, 2019 - December 25th, 2019 - December 26th, 2019 - January 1st, 2020
Remove regional holiday days. Add 2020 calculated days
Remove regional holiday days. Add 2020 calculated days
YAML
mit
gocardless/business
1feaaf2ff23e90ed08bf1696cdec92e6e73868dc
.appveyor.yml
.appveyor.yml
version: 1.0.0-{build} init: - SET PATH=%PYTHON%;%PYTHON%\Scripts;C:\Program Files\PostgreSQL\12\bin\;%PATH% image: - Visual Studio 2019 - Ubuntu1804 - macos environment: PGUSER: postgres PGPASSWORD: Password12! matrix: - PYTHON: "C:\\Python38" PYTHON_VERSION: "3.8.1" PYTHON_ARCH: "32" - PYTHON: "C:\\Python38-x64" PYTHON_VERSION: "3.8.1" PYTHON_ARCH: "64" cache: - '%LOCALAPPDATA%\pip\Cache' # services: # - postgresql12 # https://github.com/appveyor/ci/issues/3299 install: - pip install --upgrade --requirement requirements.txt build_script: - net start postgresql-x64-12 - createdb harmonbot - echo CREATE USER harmonbot WITH PASSWORD :'pgpassword' | psql --variable=pgpassword="%PGPASSWORD%" test_script: - cd Discord && python Harmonbot.py - cd ../Telegram && python Telegram_Harmonbot.py
version: 1.0.0-{build} init: - SET PATH=%PYTHON%;%PYTHON%\Scripts;C:\Program Files\PostgreSQL\12\bin\;%PATH% image: - Visual Studio 2019 - Ubuntu1804 - macos environment: PGUSER: postgres PGPASSWORD: Password12! matrix: - PYTHON: "C:\\Python38" PYTHON_VERSION: "3.8.1" PYTHON_ARCH: "32" - PYTHON: "C:\\Python38-x64" PYTHON_VERSION: "3.8.1" PYTHON_ARCH: "64" cache: - '%LOCALAPPDATA%\pip\Cache' # services: # - postgresql12 # https://github.com/appveyor/ci/issues/3299 install: - pip install --upgrade --requirement requirements.txt build_script: - net start postgresql-x64-12 - createdb harmonbot - echo CREATE USER harmonbot SUPERUSER PASSWORD :'pgpassword' | psql --variable=pgpassword="%PGPASSWORD%" test_script: - cd Discord && python Harmonbot.py - cd ../Telegram && python Telegram_Harmonbot.py
Create PostgreSQL USER as SUPERUSER
[AppVeyor] Create PostgreSQL USER as SUPERUSER
YAML
mit
Harmon758/Harmonbot,Harmon758/Harmonbot
a2bc26b582b34d4de185678f3dd9fda85655062d
.bazelci/presubmit.yml
.bazelci/presubmit.yml
--- platforms: ubuntu1404: build_flags: - "--build_tag_filters=-nolinux" build_targets: - "..." test_flags: - "--features=race" - "--test_tag_filters=-nolinux" test_targets: - "..." ubuntu1604: build_flags: - "--build_tag_filters=-nolinux" build_targets: - "..." test_flags: - "--features=race" - "--test_tag_filters=-nolinux" test_targets: - "..." macos: build_flags: - "--build_tag_filters=-nomacos" build_targets: - "..." test_flags: - "--features=race" - "--test_tag_filters=-nomacos" test_targets: - "..." windows: build_flags: - "--build_tag_filters=-nowindows" build_targets: - "..." test_flags: - "--test_tag_filters=-nowindows" - "--experimental_enable_runfiles" test_targets: - "..."
--- platforms: ubuntu1804: build_flags: - "--build_tag_filters=-nolinux" build_targets: - "..." test_flags: - "--features=race" - "--test_tag_filters=-nolinux" test_targets: - "..." ubuntu1604: build_flags: - "--build_tag_filters=-nolinux" build_targets: - "..." test_flags: - "--features=race" - "--test_tag_filters=-nolinux" test_targets: - "..." macos: build_flags: - "--build_tag_filters=-nomacos" build_targets: - "..." test_flags: - "--features=race" - "--test_tag_filters=-nomacos" test_targets: - "..." windows: build_flags: - "--build_tag_filters=-nowindows" build_targets: - "..." test_flags: - "--test_tag_filters=-nowindows" - "--experimental_enable_runfiles" test_targets: - "..."
Test on Ubuntu 18.04 not 14.04
Test on Ubuntu 18.04 not 14.04
YAML
apache-2.0
bazelbuild/bazel-watcher,bazelbuild/bazel-watcher,bazelbuild/bazel-watcher,bazelbuild/bazel-watcher
4b79bc6f405b0a25ef61378f3fce9fd4ba793ace
grunt/aliases.yml
grunt/aliases.yml
api: description: Start the api tasks: - 'cssmin:production' - 'buildJS' - 'uglify:production' - 'express:dev' - 'watch' buildJS: tasks: - 'babel' default: description: Default Grunt task tasks: - 'api' test: description: Run the tests tasks: - 'run:createTestUser' - 'express:test' - 'mochaTest'
api: description: Start the api tasks: - 'cssmin:production' - 'buildJS' - 'uglify:production' - 'express:dev' - 'watch' prep: description: Run pre processing tasks tasks: - 'cssmin:production' - 'buildJS' - 'uglify:production' buildJS: tasks: - 'babel' default: description: Default Grunt task tasks: - 'api' test: description: Run the tests tasks: - 'run:createTestUser' - 'express:test' - 'mochaTest'
Add grunt task for use in IDE to pre process css and js
Add grunt task for use in IDE to pre process css and js
YAML
bsd-3-clause
FuelRats/api.fuelrats.com,FuelRats/api.fuelrats.com,FuelRats/api.fuelrats.com
319fa749b4ba5264e7a9ee6bd0266c552c5f1650
demo/analytics-pipeline/spark/service.spark.yaml
demo/analytics-pipeline/spark/service.spark.yaml
# Definition of Spark service name: spark components: - name: zookeeper service: zookeeper - name: spark code: type: aptomi/code/kubernetes-helm metadata: chartName: spark-1.0.0 params: spark: image: repository: mirantisworkloads/spark tag: 2.1.0 master: replicas: 1 worker: replicas: 1 service: type: NodePort zookeeper: deployChart: false externalAddress: zk-{{ .Components.zookeeper.zookeeper }}-0.zk-{{ .Components.zookeeper.zookeeper }}:2181 dependencies: - zookeeper
# Definition of Spark service name: spark components: - name: zookeeper service: zookeeper - name: spark code: type: aptomi/code/kubernetes-helm metadata: chartName: spark-1.0.0 params: spark: image: repository: mirantisworkloads/spark tag: 2.1.0 master: replicas: 1 worker: replicas: 1 service: type: NodePort zookeeper: deployChart: false externalAddress: zk-{{ .Components.zookeeper.zookeeper }}-0.zk-{{ .Components.zookeeper.zookeeper }}:2181 path: /{{ .ComponentInstance }} dependencies: - zookeeper
Fix multiple Sparks using single ZooKeeper
Fix multiple Sparks using single ZooKeeper
YAML
apache-2.0
Aptomi/aptomi,Aptomi/aptomi,Aptomi/aptomi,Aptomi/aptomi
21d3b22482e48e1c2654c256fec667788d2729fb
.expeditor/coverage.pipeline.yml
.expeditor/coverage.pipeline.yml
--- steps: - label: coverage commands: - bundle install --jobs=7 --retry=3 --without tools integration - bundle exec rake test:default expeditor: executor: docker: image: ruby:2.6-stretch
--- steps: - label: coverage commands: - /workdir/.expeditor/buildkite/coverage.sh expeditor: executor: docker: image: ruby:2.6-stretch
Use our coverage.sh rather than embedded commands
Use our coverage.sh rather than embedded commands Signed-off-by: Miah Johnson <[email protected]>
YAML
apache-2.0
chef/train,chef/train
5819a6ef4a7ec9ae5cbb046c229ed31e2638f2dc
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: "/static/admin" webhook_url: sections: - type: heading label: Blog - type: directory path: content/blog label: Billets create: documents match: "**/*" new_doc_ext: md templates: - billet - type: directory path: content/tags label: Tags create: documents match: "**/*" exclude: index.md new_doc_ext: md - type: heading label: Site - type: directory path: content label: Pages create: all match: "*" new_doc_ext: md - type: directory path: content/projets label: Projets create: documents match: "**/*" exclude: index.md new_doc_ext: md - type: heading label: Configuration - type: document path: config.yml label: Site upload_dir: static/images public_path: "/images" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_env: - PHP_VERSION=7.2 preview_output_directory: _site install_dependencies_command: bash .forestry/install.sh preview_docker_image: composer:latest mount_path: "/usr/src" working_dir: "/usr/src" instant_preview_command: php cecil.phar serve -d --host=0.0.0.0 --port=8080
--- new_page_extension: md auto_deploy: false admin_path: "/static/admin" webhook_url: sections: - type: heading label: Blog - type: directory path: content/blog label: Billets create: documents match: "**/*" exclude: index.md new_doc_ext: md templates: - billet - type: directory path: content/tags label: Tags create: documents match: "**/*" exclude: index.md new_doc_ext: md - type: heading label: Site - type: directory path: content label: Pages create: all match: "*" new_doc_ext: md - type: directory path: content/projets label: Projets create: documents match: "**/*" exclude: index.md new_doc_ext: md - type: heading label: Configuration - type: document path: config.yml label: Site upload_dir: static/images public_path: "/images" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_env: - PHP_VERSION=7.2 preview_output_directory: _site install_dependencies_command: bash .forestry/install.sh preview_docker_image: composer:latest mount_path: "/usr/src" working_dir: "/usr/src" instant_preview_command: php cecil.phar serve -d --host=0.0.0.0 --port=8080
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
Narno/arnaudligny.fr,Narno/arnaudligny.fr,Narno/arnaudligny.fr
d9e7419435e26c11456ede8113b58a5a3a87cc4b
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: document path: _data/nav.yml label: 文档 - type: heading label: 博客 - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_env: - JEKYLL_ENV=staging preview_output_directory: _site install_dependencies_command: bundle install jekyll-bliss; bundle install --path vendor/bundle preview_docker_image: forestryio/ruby:2.6 mount_path: "/srv" working_dir: "/srv" instant_preview_command: bliss s --drafts --unpublished --future --port 8080 --host 0.0.0.0 -d _site
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: document path: _data/nav.yml label: 文档 - type: heading label: 博客 - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_env: - JEKYLL_ENV=staging preview_output_directory: _site install_dependencies_command: bundle install --path vendor/bundle preview_docker_image: forestryio/ruby:2.6 mount_path: "/srv" working_dir: "/srv" instant_preview_command: bliss s --drafts --unpublished --future --port 8080 --host 0.0.0.0 -d _site
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
apache-2.0
zuonx/zuonx.github.io,zuonx/zuonx.github.io,zuonx/zuonx.github.io
dcae1a3077957ba7cfbd86ae65fa156d0e2e871a
myapp/myapp.deployment.yml
myapp/myapp.deployment.yml
apiVersion: extensions/v1beta1 kind: Deployment metadata: name: myapp labels: app: myapp spec: replicas: 3 template: metadata: labels: app: myapp spec: containers: - name: myapp image: rosskukulinski/myapp:v2 env: - name: NSOLID_APPNAME value: myapp - name: NSOLID_HUB value: "nsolid-registry.nsolid:4001" - name: NSOLID_SOCKET value: "8000" - name: NSOLID_TAGS value: "nsolid-v1.3.1" - name: PORT value: "4444" ports: - containerPort: 4444 name: myapp - containerPort: 8000 name: nsolid
apiVersion: extensions/v1beta1 kind: Deployment metadata: name: myapp labels: app: myapp spec: replicas: 3 template: metadata: labels: app: myapp spec: containers: - name: myapp image: rosskukulinski/myapp:v4 env: - name: NSOLID_APPNAME value: myapp - name: NSOLID_HUB value: "nsolid-registry.nsolid:4001" - name: NSOLID_SOCKET value: "8000" - name: NSOLID_TAGS value: "nsolid-v1.3.1" - name: PORT value: "4444" ports: - containerPort: 4444 name: myapp - containerPort: 8000 name: nsolid
Use v4 version with vuln
Use v4 version with vuln
YAML
mit
nodesource/nsolid-kubernetes,nodesource/nsolid-kubernetes
ab5b99f2487cad0eb85f3bfddf9c9903886da7ac
packages/co/colour-space.yaml
packages/co/colour-space.yaml
homepage: https://github.com/leftaroundabout/colour-space changelog-type: '' hash: 9f23033c897866cb5efc53a7a5ec989fffa6564655ddbc9ae12c6f4a79f7e66f test-bench-deps: {} maintainer: (@) jsag $ hvl.no synopsis: Instances of the manifold-classes for colour types changelog: '' basic-deps: linearmap-category: ! '>=0.3.5 && <0.3.6' JuicyPixels: ! '>=3.1 && <3.4' base: ! '>=4.7 && <5' vector-space: -any semigroups: -any manifolds: ! '>=0.4.5 && <0.6' lens: -any linear: -any colour: ! '>2 && <3' constrained-categories: -any call-stack: -any all-versions: - 0.1.0.0 - 0.1.1.0 - 0.1.2.0 - 0.1.3.0 - 0.1.4.0 - 0.1.5.0 author: Justus Sagemüller latest: 0.1.5.0 description-type: haddock description: '' license-name: GPL-3.0-only
homepage: https://github.com/leftaroundabout/colour-space changelog-type: '' hash: 479a78f9d2fd6462e6178be1182f3f04ca3e53730551f72b54e9d21481a1ba3f test-bench-deps: {} maintainer: (@) jsag $ hvl.no synopsis: Instances of the manifold-classes for colour types changelog: '' basic-deps: linearmap-category: ! '>=0.3.5' JuicyPixels: ! '>=3.1 && <3.4' base: ! '>=4.7 && <5' vector-space: -any semigroups: -any manifolds: ! '>=0.4.5 && <0.6' lens: -any linear: -any colour: ! '>2 && <3' constrained-categories: -any call-stack: -any all-versions: - 0.1.0.0 - 0.1.1.0 - 0.1.2.0 - 0.1.3.0 - 0.1.4.0 - 0.1.5.0 - 0.1.5.1 author: Justus Sagemüller latest: 0.1.5.1 description-type: haddock description: '' license-name: GPL-3.0-only
Update from Hackage at 2019-10-15T10:28:38Z
Update from Hackage at 2019-10-15T10:28:38Z
YAML
mit
commercialhaskell/all-cabal-metadata
fe5fb1482ddd6257b4605c5a28e323e61f2bd492
packages/in/inline-c-cpp.yaml
packages/in/inline-c-cpp.yaml
homepage: '' changelog-type: '' hash: 14739f674376b05487d1cfd8e6d6803609e654e7dfaa146f7665a4936b783c5e test-bench-deps: base: ! '>=4 && <5' inline-c-cpp: -any maintainer: [email protected] synopsis: Lets you embed C++ code into Haskell. changelog: '' basic-deps: inline-c: ! '>=0.6.0.0' base: ! '>=4.7 && <5' template-haskell: -any all-versions: - '0.1.0.0' - '0.2.0.0' - '0.2.0.1' - '0.2.0.2' author: Francesco Mazzoli latest: '0.2.0.2' description-type: haddock description: ! 'Utilities to inline C++ code into Haskell using inline-c. See tests for example on how to build.' license-name: MIT
homepage: '' changelog-type: '' hash: 144cb09c7c7a54538194bda3d02408f558a254438ad2be5259c775a7b1ae47f8 test-bench-deps: inline-c: -any base: ! '>=4 && <5' hspec: -any safe-exceptions: -any inline-c-cpp: -any maintainer: [email protected] synopsis: Lets you embed C++ code into Haskell. changelog: '' basic-deps: inline-c: ! '>=0.6.0.0' base: ! '>=4.7 && <5' safe-exceptions: -any template-haskell: -any all-versions: - '0.1.0.0' - '0.2.0.0' - '0.2.0.1' - '0.2.0.2' - '0.2.1.0' author: Francesco Mazzoli latest: '0.2.1.0' description-type: haddock description: ! 'Utilities to inline C++ code into Haskell using inline-c. See tests for example on how to build.' license-name: MIT
Update from Hackage at 2017-08-15T15:46:37Z
Update from Hackage at 2017-08-15T15:46:37Z
YAML
mit
commercialhaskell/all-cabal-metadata
ace58fc6fa0218274c6d3e08b896fd9e03687a34
packages/in/interpolator.yaml
packages/in/interpolator.yaml
homepage: '' changelog-type: '' hash: 17d570bce9c004ec631527b0c352954e2e4e0f13614004647b4b66f1a9ebc00d test-bench-deps: either: -any base: <5.0 hspec: -any text: -any containers: -any product-profunctors: -any interpolator: -any mtl: -any QuickCheck: -any aeson: -any template-haskell: -any mono-traversable: -any profunctors: -any maintainer: TVision Insights synopsis: Runtime interpolation of environment variables in records using profunctors changelog: '' basic-deps: either: -any base: <5.0 text: -any containers: -any product-profunctors: -any mtl: -any QuickCheck: -any aeson: -any template-haskell: -any mono-traversable: -any profunctors: -any all-versions: - '0.1' author: Dan Fithian <[email protected]> latest: '0.1' description-type: haddock description: ! 'Runtime interpolation of environment variables in records using profunctors. See https://github.com/tvision-insights/interpolator/README.md.' license-name: MIT
homepage: https://github.com/tvision-insights/interpolator changelog-type: '' hash: b0e0dc6714ce4fb352c530be556499df4504eed12a7f2d04bac2ae3da9d3dea7 test-bench-deps: either: -any base: <5.0 hspec: -any text: -any containers: -any product-profunctors: -any interpolator: -any mtl: -any QuickCheck: -any aeson: -any template-haskell: -any mono-traversable: -any profunctors: -any maintainer: TVision Insights synopsis: Runtime interpolation of environment variables in records using profunctors changelog: '' basic-deps: either: -any base: <5.0 text: -any containers: -any product-profunctors: -any mtl: -any QuickCheck: -any aeson: -any template-haskell: -any mono-traversable: -any profunctors: -any all-versions: - '0.1' - 0.1.1 author: Dan Fithian <[email protected]> latest: 0.1.1 description-type: haddock description: ! 'Runtime interpolation of environment variables in records using profunctors. See `https://github.com/tvision-insights/interpolator/README.md`.' license-name: MIT
Update from Hackage at 2018-12-21T16:55:04Z
Update from Hackage at 2018-12-21T16:55:04Z
YAML
mit
commercialhaskell/all-cabal-metadata
a774fa7213f0aed17dbe1e4e63be4b76a1ddba59
packages/la/language-dot.yaml
packages/la/language-dot.yaml
homepage: '' changelog-type: '' hash: 496812a28439a2f115c74f4d6933b39f978974dc950b1a4cdeb467b454df088a test-bench-deps: {} maintainer: Brian Lewis <[email protected]> synopsis: A library for the analysis and creation of Graphviz DOT files changelog: '' basic-deps: base: ==4.* parsec: ==3.* mtl: ==1.* || ==2.* pretty: ==1.* all-versions: - '0.0.1' - '0.0.2' - '0.0.3' - '0.0.4' - '0.0.5' - '0.0.6' - '0.0.7' - '0.0.8' author: Brian Lewis <[email protected]> latest: '0.0.8' description-type: haddock description: A library for the analysis and creation of Graphviz DOT files. license-name: BSD3
homepage: '' changelog-type: '' hash: ba3c8ad9d5d8dbc7c8edefcc49dab055bc9341b2fda3d0c4dde7b5a96344714a test-bench-deps: base: ==4.* parsec: ==3.* mtl: ==1.* || ==2.* pretty: ==1.* maintainer: Ben Gamari <[email protected]> synopsis: A library for the analysis and creation of Graphviz DOT files changelog: '' basic-deps: base: ==4.* parsec: ==3.* mtl: ! '>=1 && <3' pretty: ==1.* all-versions: - '0.0.1' - '0.0.2' - '0.0.3' - '0.0.4' - '0.0.5' - '0.0.6' - '0.0.7' - '0.0.8' - '0.0.9' author: Brian Lewis <[email protected]> latest: '0.0.9' description-type: haddock description: A library for the analysis and creation of Graphviz DOT files. license-name: BSD3
Update from Hackage at 2016-04-13T12:40:10+0000
Update from Hackage at 2016-04-13T12:40:10+0000
YAML
mit
commercialhaskell/all-cabal-metadata
94bc8bde6a8ed8df78734e6f864f661c8987f550
packages/la/language-elm.yaml
packages/la/language-elm.yaml
homepage: https://github.com/eliaslfox/language-elm#readme changelog-type: '' hash: 8f2873bb01b79ee504c6f4204c12fdcb74fe9497abc637b4f17cb933727a4562 test-bench-deps: base: -any HUnit: -any language-elm: -any pretty: -any maintainer: [email protected] synopsis: Generate elm code changelog: '' basic-deps: MissingH: -any base: ! '>=4.7 && <5' pretty: -any all-versions: - '0.0.1.0' - '0.0.2.0' - '0.0.3.0' - '0.0.4.0' - '0.0.5.0' - '0.0.6.0' - '0.0.7.0' - '0.0.8.0' author: Elias Lawson-Fox latest: '0.0.8.0' description-type: markdown description: ! '# language-elm ' license-name: BSD3
homepage: https://github.com/eliaslfox/language-elm#readme changelog-type: '' hash: ee3ad07d8cb735458d24e0028933ba499c70b0a97036ee06dc0507fcc96b91e7 test-bench-deps: base: -any HUnit: -any language-elm: -any pretty: -any maintainer: [email protected] synopsis: Generate elm code changelog: '' basic-deps: MissingH: -any base: ! '>=4.7 && <5' pretty: -any all-versions: - '0.0.1.0' - '0.0.2.0' - '0.0.3.0' - '0.0.4.0' - '0.0.5.0' - '0.0.6.0' - '0.0.7.0' - '0.0.8.0' - '0.0.9.0' author: Elias Lawson-Fox latest: '0.0.9.0' description-type: markdown description: ! '# language-elm ' license-name: BSD3
Update from Hackage at 2017-08-21T06:48:23Z
Update from Hackage at 2017-08-21T06:48:23Z
YAML
mit
commercialhaskell/all-cabal-metadata
05d49d75253d12f0442ea3c4f00daf2a283be497
packages/po/potoki-hasql.yaml
packages/po/potoki-hasql.yaml
homepage: https://github.com/metrix-ai/potoki-hasql changelog-type: '' hash: 737114290de778e5c020860e504bc1b1f41566a305968fd86fde9ba4e3c9b9e0 test-bench-deps: {} maintainer: Metrix.AI Ninjas <[email protected]> synopsis: Integration of "potoki" and "hasql". changelog: '' basic-deps: hasql: ==1.1.1 bytestring: ==0.10.8.2 base: ==4.10.1.0 text: ==1.2.3.0 potoki-core: ==1.5.2 potoki: ==0.11.1 profunctors: ==5.2.2 vector: ==0.12.0.1 all-versions: - '1' author: Nikita Volkov <[email protected]> latest: '1' description-type: haddock description: Utilities, which integrate Hasql and Potoki. license-name: MIT
homepage: https://github.com/metrix-ai/potoki-hasql changelog-type: '' hash: 1be5138bc7a066be6dfdea3fc807c4c34f737379c8aa45d81f3eeac3b8c9e668 test-bench-deps: {} maintainer: Metrix.AI Ninjas <[email protected]> synopsis: Integration of "potoki" and "hasql". changelog: '' basic-deps: hasql: ==1.1.1 bytestring: ==0.10.8.2 base: ==4.10.1.0 text: ==1.2.3.0 potoki-core: ==1.5.2 potoki: ==0.11.1 profunctors: ==5.2.2 vector: ==0.12.0.1 all-versions: - '1' - '1.1' author: Nikita Volkov <[email protected]> latest: '1.1' description-type: haddock description: Utilities, which integrate Hasql and Potoki. license-name: MIT
Update from Hackage at 2018-03-25T17:00:17Z
Update from Hackage at 2018-03-25T17:00:17Z
YAML
mit
commercialhaskell/all-cabal-metadata
3c6e94c8e0e3dd9901cd4f43068ac5b110c6e1da
.github/workflows/buildWindows.yml
.github/workflows/buildWindows.yml
name: CI-Windows on: [push] jobs: build-n-run-tests: runs-on: windows-2019 steps: - uses: actions/checkout@master - name: Build Everything run: | dotnet build - name: Download OSMesa Binary run: | curl -L http://github.com/pal1000/mesa-dist-win/releases/download/19.1.6/mesa3d-19.1.6-release-mingw.7z -o mesa.7z 7z x mesa.7z mkdir .\Tests\bin\Debug\netcoreapp3.0\mesa mv .\x64\opengl32.dll .\Tests\bin\Debug\netcoreapp3.0\mesa\opengl32.dll ls .\Tests\bin\Debug\netcoreapp3.0 - name: Run Tests run: | cd .\Tests\bin\Debug\netcoreapp3.0 ls . .\Tests.exe - name: Upload Test Artifact uses: actions/upload-artifact@master with: name: Test Result Artifact path: Tests\bin\Debug\netcoreapp3.0\TestResults
name: CI-Windows on: [push] jobs: build-n-run-tests: runs-on: windows-2019 steps: - uses: actions/checkout@master - name: Build Everything run: | dotnet build - name: Download OSMesa Binary run: | curl -L http://github.com/pal1000/mesa-dist-win/releases/download/19.1.6/mesa3d-19.1.6-release-mingw.7z -o mesa.7z 7z x mesa.7z mkdir .\Tests\bin\Debug\netcoreapp3.0\mesa mv .\x64\opengl32.dll .\Tests\bin\Debug\netcoreapp3.0\mesa\opengl32.dll ls .\Tests\bin\Debug\netcoreapp3.0 - name: Run Tests run: | cd .\Tests\bin\Debug\netcoreapp3.0 ls . .\Tests.exe - name: Upload Test Artifact if: always() uses: actions/upload-artifact@master with: name: Test Result Artifact path: Tests\bin\Debug\netcoreapp3.0\TestResults
Test artifact will be created even if the build fails.
Test artifact will be created even if the build fails.
YAML
mit
Cryru/SoulEngine
9cd094d1749685b587e22ce7545da4b4e31a40a8
.github/workflows/run_renovate.yml
.github/workflows/run_renovate.yml
name: Renovate-Dry-Run on: workflow_dispatch: inputs: pac_to_use: description: "Name of the workflow secret to use" type: string required: true branch: description: "Branch that renovate should operate on" type: string required: true jobs: renovate: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 - name: Renovate-dry-run uses: renovatebot/[email protected] with: configurationFile: renovate.json token: ${{secrets.$inputs.pac_to_use}} env: LOG_LEVEL: "debug" RENOVATE_DRY_RUN: "full" RENOVATE_BASE_BRANCHES: ${{inputs.branch}} RENOVATE_REPOSITORIES: "TNG/JGiven"
name: Renovate-Dry-Run on: workflow_dispatch: inputs: pac_to_use: description: "Name of the workflow secret to use" type: string required: true branch: description: "Branch that renovate should operate on" type: string required: true jobs: renovate: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 - name: Renovate-dry-run uses: renovatebot/[email protected] with: configurationFile: renovate.json token: ${{secrets.$inputs.pac_to_use}} env: LOG_LEVEL: "debug" RENOVATE_DRY_RUN: "full" RENOVATE_BASE_BRANCHES: ${{inputs.branch}} RENOVATE_REPOSITORIES: "TNG/JGiven"
Update renovatebot/github-action action to v34.13.2
Update renovatebot/github-action action to v34.13.2 Signed-off-by: Renovate Bot <[email protected]>
YAML
apache-2.0
TNG/JGiven,TNG/JGiven,TNG/JGiven,TNG/JGiven
017bce7de5771809d10ff7bcedae6051a9f02624
.github/workflows/nodejs.yml
.github/workflows/nodejs.yml
name: CI on: push: branches: - master pull_request: branches: - '**' jobs: test: name: Lint and test runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: 'lts/*' - run: npm ci - run: npm run lint - run: npm test
name: CI on: push: branches: - master pull_request: branches: - '**' jobs: test: name: Lint and test runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: 'lts/*' - name: Install latest npm run: npm install --global npm@latest - run: npm ci - run: npm run lint - run: npm test
Use latest npm in CI
Use latest npm in CI
YAML
mit
hudochenkov/stylelint-config-hudochenkov,hudochenkov/stylelint-config-hudochenkov
64f504608b25ddb52083f84088267ae0818a7a99
provisioning/playbook.yaml
provisioning/playbook.yaml
--- - name: Node hosts: all tasks: - name: ensure python-software-properties apt: name=python-software-properties state=present sudo: true - name: add Chris Lea's node.js repo apt_repository: repo='ppa:chris-lea/node.js' state=present update-cache=yes sudo: true - name: ensure node.js apt: name=nodejs state=latest sudo: true - name: ensure n npm: name=n global=yes state=present sudo: true - name: set custom node.js version if necessary when: node_version is defined command: n {{ node_version }} sudo: true - name: Gulp hosts: all tasks: - name: ensure gulp npm: name=gulp global=yes state=present - name: Mongo hosts: all tasks: - name: ensure mongo apt: pkg=mongodb state=latest sudo: true - name: NPM node_modules mountpoint hosts: all tasks: - name: mount folder mount: name=/vagrant/node_modules src=/tmp/node_modules opts=bind fstype=none state=mounted
--- - name: Node hosts: all tasks: - name: ensure python-software-properties apt: name=python-software-properties state=present sudo: true - name: add Chris Lea's node.js repo apt_repository: repo='ppa:chris-lea/node.js' state=present update-cache=yes sudo: true - name: ensure node.js apt: name=nodejs state=latest sudo: true - name: ensure n npm: name=n global=yes state=present sudo: true - name: set custom node.js version if necessary when: node_version is defined command: n {{ node_version }} sudo: true - name: Gulp hosts: all tasks: - name: ensure gulp npm: name=gulp global=yes state=present - name: Mongo hosts: all tasks: - name: ensure mongo apt: pkg=mongodb state=latest sudo: true - name: NPM node_modules mountpoint hosts: all tasks: - name: create local folder file: dest=/tmp/node_modules mode=777 owner=vagrant group=vagrant state=directory - name: mount folder mount: name=/vagrant/node_modules src=/tmp/node_modules opts=bind fstype=none state=mounted
Create temporary folder prior to mounting
Create temporary folder prior to mounting
YAML
mit
mechanica/boilerplate,mechanica/boilerplate
e36669b2537c0e3c5dce98f3ae6387afed7fe4ba
.builds/debian_stable.yml
.builds/debian_stable.yml
image: debian/stable packages: - cmake - ncurses-dev sources: - https://github.com/donmccaughey/fiends_and_fortune tasks: - setup: | cd fiends_and_fortune cmake -S . -B tmp - build: | cd fiends_and_fortune cmake --build tmp --target all test triggers: - action: email condition: failure to: Don McCaughey <[email protected]>
image: debian/stable packages: - cmake - libbsd-dev - ncurses-dev sources: - https://github.com/donmccaughey/fiends_and_fortune tasks: - setup: | cd fiends_and_fortune cmake -S . -B tmp - build: | cd fiends_and_fortune cmake --build tmp --target all test triggers: - action: email condition: failure to: Don McCaughey <[email protected]>
Add libbsd to Debian build on Sourcehut.
Add libbsd to Debian build on Sourcehut.
YAML
bsd-2-clause
donmccaughey/FiendsAndFortune,donmccaughey/FiendsAndFortune,donmccaughey/FiendsAndFortune
8ccededde23fbed04eb230ef55f02c09d615f34a
.github/workflows/ci.yaml
.github/workflows/ci.yaml
name: CI on: [push, pull_request] jobs: test: runs-on: ${{ matrix.os }} strategy: fail-fast: true matrix: os: ["windows-latest", "ubuntu-latest", "macos-latest"] python-version: ["3.9"] env: PYTHON_VERSION: ${{ matrix.python-version }} OS: ${{ matrix.os }} ACTIONS_ALLOW_UNSECURE_COMMANDS: true steps: - name: Checkout source uses: actions/checkout@v2 - name: Setup Conda Environment uses: mamba-org/provision-with-micromamba@main with: # python-version: ${{ matrix.python-version }} environment-file: continuous_integration/environment.yaml - name: Install Donfig shell: bash -l {0} run: | pip install --no-deps -e . - name: Run unit tests shell: bash -l {0} run: | pytest --cov=donfig donfig --cov-report=xml - name: Upload unittest coverage to Codecov uses: codecov/codecov-action@v1 with: flags: unittests file: ./coverage.xml env_vars: OS,PYTHON_VERSION,UNSTABLE
name: CI on: [push, pull_request] jobs: test: runs-on: ${{ matrix.os }} strategy: fail-fast: true matrix: os: ["windows-latest", "ubuntu-latest", "macos-latest"] python-version: ["3.9"] env: PYTHON_VERSION: ${{ matrix.python-version }} OS: ${{ matrix.os }} ACTIONS_ALLOW_UNSECURE_COMMANDS: true steps: - name: Checkout source uses: actions/checkout@v2 - name: Setup Conda Environment uses: mamba-org/provision-with-micromamba@main with: # python-version: ${{ matrix.python-version }} environment-file: continuous_integration/environment.yaml - name: Install Donfig shell: bash -l {0} run: | pip install --no-deps -e . - name: Run unit tests on non-Windows shell: bash -l {0} run: | pytest --cov=donfig donfig --cov-report=xml if: runner.os != 'Windows' - name: Run unit tests on Windows shell: powershell run: | pytest --cov=donfig donfig --cov-report=xml if: runner.os == 'Windows' - name: Upload unittest coverage to Codecov uses: codecov/codecov-action@v1 with: flags: unittests file: ./coverage.xml env_vars: OS,PYTHON_VERSION,UNSTABLE
Fix CI micromamba on windows and non-windows
Fix CI micromamba on windows and non-windows
YAML
mit
pytroll/donfig
598c01b46fc8330e2d1d830e46cea30ef30efa2c
.github/workflows/ci.yaml
.github/workflows/ci.yaml
name: Build and publish to ECR on: workflow_dispatch: branches: - main push: branches: - main paths-ignore: - "Jenkinsfile" - ".git**" jobs: build-publish-image-to-ecr: uses: alphagov/govuk-infrastructure/.github/workflows/ci-ecr.yaml@main secrets: AWS_GOVUK_ECR_ACCESS_KEY_ID: ${{ secrets.AWS_GOVUK_ECR_ACCESS_KEY_ID }} AWS_GOVUK_ECR_SECRET_ACCESS_KEY: ${{ secrets.AWS_GOVUK_ECR_SECRET_ACCESS_KEY }}
name: CI on: workflow_dispatch: branches: - main push: branches: - main paths-ignore: - "Jenkinsfile" - ".git**" jobs: build-and-publish-image: name: Build and publish image uses: alphagov/govuk-infrastructure/.github/workflows/ci-ecr.yaml@main secrets: AWS_GOVUK_ECR_ACCESS_KEY_ID: ${{ secrets.AWS_GOVUK_ECR_ACCESS_KEY_ID }} AWS_GOVUK_ECR_SECRET_ACCESS_KEY: ${{ secrets.AWS_GOVUK_ECR_SECRET_ACCESS_KEY }} trigger-deploy-to-integration: name: Trigger deploy to integration needs: build-and-publish-image uses: alphagov/govuk-infrastructure/.github/workflows/deploy.yaml@main secrets: GOVUK_CI_GITHUB_API_TOKEN: ${{ secrets.GOVUK_CI_GITHUB_API_TOKEN }}
Update CI workflow to trigger deploy to integration
Update CI workflow to trigger deploy to integration This adds an additional job to the CI workflow to run a reusable workflow that writes the newly built image tag to helm charts file. This triggers ArgoCD to deploy the integration.
YAML
mit
alphagov/manuals-frontend,alphagov/manuals-frontend,alphagov/manuals-frontend,alphagov/manuals-frontend
1bd2883368b0c3d51a1e0b46c3e3da86d8c9295d
recipes/r-dbchip/meta.yaml
recipes/r-dbchip/meta.yaml
package: name: r-dbchip version: "1.1.6" source: fn: DBChIP_1.1.6.tar.gz url: http://pages.cs.wisc.edu/~kliang/DBChIP/DBChIP_1.1.6.tar.gz md5: f4b22bb2051ad6b2d33d4687754e8cee build: number: 0 # This is required to make R link correctly on Linux. rpaths: - lib/R/lib/ - lib/ requirements: build: - bioconductor-deseq - bioconductor-edger run: - bioconductor-deseq - bioconductor-edger test: commands: - $R -e "library('DBChIP')" # [not win] about: home: http://pages.cs.wisc.edu/~kliang/DBChIP license: 'GPL (>= 2)' summary: 'ChIP-seq differential binding'
package: name: r-dbchip version: "1.1.6" source: fn: DBChIP_1.1.6.tar.gz url: http://pages.cs.wisc.edu/~kliang/DBChIP/DBChIP_1.1.6.tar.gz md5: f4b22bb2051ad6b2d33d4687754e8cee build: number: 1 # This is required to make R link correctly on Linux. rpaths: - lib/R/lib/ - lib/ requirements: build: - r - bioconductor-deseq - bioconductor-edger run: - r - bioconductor-deseq - bioconductor-edger test: commands: - $R -e "library('DBChIP')" # [not win] about: home: http://pages.cs.wisc.edu/~kliang/DBChIP license: 'GPL (>= 2)' summary: 'ChIP-seq differential binding'
Add explicit build/run r requirement
Add explicit build/run r requirement
YAML
mit
acaprez/recipes,ivirshup/bioconda-recipes,jasper1918/bioconda-recipes,daler/bioconda-recipes,jfallmann/bioconda-recipes,gvlproject/bioconda-recipes,rob-p/bioconda-recipes,JenCabral/bioconda-recipes,joachimwolff/bioconda-recipes,phac-nml/bioconda-recipes,JenCabral/bioconda-recipes,saketkc/bioconda-recipes,ivirshup/bioconda-recipes,matthdsm/bioconda-recipes,pinguinkiste/bioconda-recipes,CGATOxford/bioconda-recipes,saketkc/bioconda-recipes,cokelaer/bioconda-recipes,shenwei356/bioconda-recipes,Luobiny/bioconda-recipes,blankenberg/bioconda-recipes,colinbrislawn/bioconda-recipes,bioconda/recipes,zachcp/bioconda-recipes,CGATOxford/bioconda-recipes,JingchaoZhang/bioconda-recipes,HassanAmr/bioconda-recipes,mdehollander/bioconda-recipes,dmaticzka/bioconda-recipes,jfallmann/bioconda-recipes,lpantano/recipes,instituteofpathologyheidelberg/bioconda-recipes,abims-sbr/bioconda-recipes,mdehollander/bioconda-recipes,blankenberg/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,omicsnut/bioconda-recipes,rob-p/bioconda-recipes,gvlproject/bioconda-recipes,bioconda/recipes,jasper1918/bioconda-recipes,martin-mann/bioconda-recipes,peterjc/bioconda-recipes,mcornwell1957/bioconda-recipes,joachimwolff/bioconda-recipes,jfallmann/bioconda-recipes,daler/bioconda-recipes,mcornwell1957/bioconda-recipes,peterjc/bioconda-recipes,ThomasWollmann/bioconda-recipes,rvalieris/bioconda-recipes,keuv-grvl/bioconda-recipes,omicsnut/bioconda-recipes,bow/bioconda-recipes,peterjc/bioconda-recipes,zachcp/bioconda-recipes,mdehollander/bioconda-recipes,omicsnut/bioconda-recipes,gvlproject/bioconda-recipes,guowei-he/bioconda-recipes,rvalieris/bioconda-recipes,keuv-grvl/bioconda-recipes,bow/bioconda-recipes,ostrokach/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,HassanAmr/bioconda-recipes,mcornwell1957/bioconda-recipes,bow/bioconda-recipes,hardingnj/bioconda-recipes,matthdsm/bioconda-recipes,peterjc/bioconda-recipes,keuv-grvl/bioconda-recipes,xguse/bioconda-recipes,blankenberg/bioconda-recipes,zwanli/bioconda-recipes,rvalieris/bioconda-recipes,gregvonkuster/bioconda-recipes,zwanli/bioconda-recipes,saketkc/bioconda-recipes,cokelaer/bioconda-recipes,pinguinkiste/bioconda-recipes,cokelaer/bioconda-recipes,dmaticzka/bioconda-recipes,keuv-grvl/bioconda-recipes,JenCabral/bioconda-recipes,JingchaoZhang/bioconda-recipes,gregvonkuster/bioconda-recipes,colinbrislawn/bioconda-recipes,Luobiny/bioconda-recipes,bebatut/bioconda-recipes,bow/bioconda-recipes,CGATOxford/bioconda-recipes,lpantano/recipes,gregvonkuster/bioconda-recipes,pinguinkiste/bioconda-recipes,guowei-he/bioconda-recipes,rob-p/bioconda-recipes,colinbrislawn/bioconda-recipes,acaprez/recipes,rvalieris/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,oena/bioconda-recipes,jasper1918/bioconda-recipes,chapmanb/bioconda-recipes,dkoppstein/recipes,roryk/recipes,JingchaoZhang/bioconda-recipes,colinbrislawn/bioconda-recipes,zachcp/bioconda-recipes,gvlproject/bioconda-recipes,abims-sbr/bioconda-recipes,daler/bioconda-recipes,jfallmann/bioconda-recipes,colinbrislawn/bioconda-recipes,zwanli/bioconda-recipes,JenCabral/bioconda-recipes,dkoppstein/recipes,rob-p/bioconda-recipes,oena/bioconda-recipes,chapmanb/bioconda-recipes,mdehollander/bioconda-recipes,acaprez/recipes,joachimwolff/bioconda-recipes,chapmanb/bioconda-recipes,ThomasWollmann/bioconda-recipes,CGATOxford/bioconda-recipes,matthdsm/bioconda-recipes,hardingnj/bioconda-recipes,ostrokach/bioconda-recipes,hardingnj/bioconda-recipes,dmaticzka/bioconda-recipes,bebatut/bioconda-recipes,xguse/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,pinguinkiste/bioconda-recipes,chapmanb/bioconda-recipes,ivirshup/bioconda-recipes,shenwei356/bioconda-recipes,phac-nml/bioconda-recipes,martin-mann/bioconda-recipes,xguse/bioconda-recipes,joachimwolff/bioconda-recipes,npavlovikj/bioconda-recipes,phac-nml/bioconda-recipes,ostrokach/bioconda-recipes,jasper1918/bioconda-recipes,joachimwolff/bioconda-recipes,mdehollander/bioconda-recipes,yesimon/bioconda-recipes,roryk/recipes,ivirshup/bioconda-recipes,roryk/recipes,ostrokach/bioconda-recipes,ThomasWollmann/bioconda-recipes,JingchaoZhang/bioconda-recipes,ivirshup/bioconda-recipes,bioconda/recipes,saketkc/bioconda-recipes,pinguinkiste/bioconda-recipes,abims-sbr/bioconda-recipes,yesimon/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,yesimon/bioconda-recipes,joachimwolff/bioconda-recipes,shenwei356/bioconda-recipes,saketkc/bioconda-recipes,CGATOxford/bioconda-recipes,bebatut/bioconda-recipes,npavlovikj/bioconda-recipes,keuv-grvl/bioconda-recipes,zachcp/bioconda-recipes,matthdsm/bioconda-recipes,abims-sbr/bioconda-recipes,mcornwell1957/bioconda-recipes,ThomasWollmann/bioconda-recipes,saketkc/bioconda-recipes,Luobiny/bioconda-recipes,martin-mann/bioconda-recipes,guowei-he/bioconda-recipes,gvlproject/bioconda-recipes,bow/bioconda-recipes,ThomasWollmann/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,xguse/bioconda-recipes,yesimon/bioconda-recipes,bioconda/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,dkoppstein/recipes,instituteofpathologyheidelberg/bioconda-recipes,npavlovikj/bioconda-recipes,guowei-he/bioconda-recipes,npavlovikj/bioconda-recipes,chapmanb/bioconda-recipes,oena/bioconda-recipes,phac-nml/bioconda-recipes,rvalieris/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,bioconda/bioconda-recipes,lpantano/recipes,martin-mann/bioconda-recipes,shenwei356/bioconda-recipes,ThomasWollmann/bioconda-recipes,ostrokach/bioconda-recipes,JenCabral/bioconda-recipes,dmaticzka/bioconda-recipes,hardingnj/bioconda-recipes,blankenberg/bioconda-recipes,bioconda/bioconda-recipes,peterjc/bioconda-recipes,hardingnj/bioconda-recipes,daler/bioconda-recipes,Luobiny/bioconda-recipes,daler/bioconda-recipes,gvlproject/bioconda-recipes,pinguinkiste/bioconda-recipes,matthdsm/bioconda-recipes,mcornwell1957/bioconda-recipes,CGATOxford/bioconda-recipes,HassanAmr/bioconda-recipes,dmaticzka/bioconda-recipes,rvalieris/bioconda-recipes,abims-sbr/bioconda-recipes,ivirshup/bioconda-recipes,mdehollander/bioconda-recipes,JenCabral/bioconda-recipes,zwanli/bioconda-recipes,jasper1918/bioconda-recipes,keuv-grvl/bioconda-recipes,daler/bioconda-recipes,peterjc/bioconda-recipes,omicsnut/bioconda-recipes,HassanAmr/bioconda-recipes,zwanli/bioconda-recipes,omicsnut/bioconda-recipes,martin-mann/bioconda-recipes,gregvonkuster/bioconda-recipes,abims-sbr/bioconda-recipes,oena/bioconda-recipes,matthdsm/bioconda-recipes,lpantano/recipes,guowei-he/bioconda-recipes,dmaticzka/bioconda-recipes,zwanli/bioconda-recipes,oena/bioconda-recipes,bebatut/bioconda-recipes,bow/bioconda-recipes,HassanAmr/bioconda-recipes,ostrokach/bioconda-recipes,xguse/bioconda-recipes,phac-nml/bioconda-recipes,cokelaer/bioconda-recipes,acaprez/recipes,colinbrislawn/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,HassanAmr/bioconda-recipes,bioconda/bioconda-recipes
9d2a64e0bf7d66a0901d4268c888228524256914
tasks/main.yml
tasks/main.yml
# This role prepares a runit folder structure. # The run script itself has to be written by # the caller. --- - name: Create runit service directory file: path=/etc/sv/{{runit_name}}/log state=directory - name: Create runit supervise directory file: path={{item}} state=directory mode=0700 with_items: - "/etc/sv/{{runit_name}}/supervise" - "/etc/sv/{{runit_name}}/log/supervise" - name: Create runit log run script template: src=log-run.j2 dest=/etc/sv/{{runit_name}}/log/run mode=0755 notify: restart {{runit_name}} - name: Log to central loghost template: src=log-config.j2 dest=/var/log/{{runit_name}}/config mode=0644 when: rsyslog_central_host_port is defined notify: restart {{runit_name}}/log - name: Link service file: src=/etc/sv/{{runit_name}} dest=/etc/service/{{runit_name}} state=link
# This role prepares a runit folder structure. # The run script itself has to be written by # the caller. --- - name: Create runit service directory file: path=/etc/sv/{{runit_name}}/log state=directory - name: Create runit supervise directory file: path={{item}} state=directory mode=0700 with_items: - "/etc/sv/{{runit_name}}/supervise" - "/etc/sv/{{runit_name}}/log/supervise" - name: Create runit log run script template: src=log-run.j2 dest=/etc/sv/{{runit_name}}/log/run mode=0755 notify: restart {{runit_name}} - name: Log to central loghost template: src=log-config.j2 dest=/var/log/{{runit_name}}/config mode=0644 when: (rsyslog_remote is defined and rsyslog_remote != False) rsyslog_central_host_port is defined notify: restart {{runit_name}}/log - name: Disable logging to central loghost file: path=/var/log/{{runit_name}}/config state=absent when: rsyslog_remote is defined and rsyslog_remote == False notify: restart {{runit_name}}/log - name: Link service file: src=/etc/sv/{{runit_name}} dest=/etc/service/{{runit_name}} state=link
Allow to disable logging for specified services
Allow to disable logging for specified services
YAML
apache-2.0
betterplace/ansible-runit-structure
c8ff75903056e636252fca1a15dfefc772354a98
compose.ontowiki-setup/docker-compose.yml
compose.ontowiki-setup/docker-compose.yml
store: image: aksw/dld-store-virtuoso7 presentation: image: aksw/dld-present-ontowiki links: - store ports: - "8080:80"
store: image: aksw/dld-store-virtuoso7 environment: PWDDBA: "password" volumes: - /tmp/volumes/virt/:/var/lib/virtuoso/db/ presentation: image: aksw/dld-present-ontowiki links: - store ports: - "8080:80"
Add entries for environment password and volume
Add entries for environment password and volume
YAML
apache-2.0
Dockerizing/dockerizing-bootstrap,Dockerizing/dockerizing-bootstrap
b463b8aa57efe514a88ef5924642ba6d99195bf2
k8s-deploy/development/secrets.yaml
k8s-deploy/development/secrets.yaml
GITCRYPT5 LJGGX%? QV7Mp>g|.i?{{^%VH A?|v!m%}d:V\|XcyV2[EY;.ЅQH$~GR
GITCRYPT6'b<Urhx&t[,/7-FLPd}Du6x)Q ܡ ^n2N x=:ΤV_[rEpvoD,RqEsWS˚ ,Eڞ:FZjn6(c^0nl.x6
Update ruby version to 2.5.5
Update ruby version to 2.5.5
YAML
mit
ministryofjustice/parliamentary-questions,ministryofjustice/parliamentary-questions,ministryofjustice/parliamentary-questions,ministryofjustice/parliamentary-questions,ministryofjustice/parliamentary-questions
8fa8516d805aa0d069a890f6aa56977180359d10
packages/gm/gmpint.yaml
packages/gm/gmpint.yaml
homepage: https://github.com/vmchale/gmpint#readme changelog-type: '' hash: 8f91ceb17e9d35278d4c83c3bc7e4c4fed97ede03facf7ad4d08ebe6b869be7b test-bench-deps: {} maintainer: [email protected] synopsis: GMP integer conversions changelog: '' basic-deps: base: ! '>=4.8 && <5' recursion-schemes: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.0.3' author: Vanessa McHale latest: '0.1.0.3' description-type: markdown description: ! '# gmpint This defines a `GMPInt` type and a `Storable` instance for that type, as well functions for working with such types. ' license-name: BSD3
homepage: https://github.com/vmchale/gmpint#readme changelog-type: '' hash: 685cf498d68eca0f2dc1ff53a2f19f297a71a290e8a0099d4387621179051b3f test-bench-deps: {} maintainer: [email protected] synopsis: GMP integer conversions changelog: '' basic-deps: base: ! '>=4.8 && <5' recursion-schemes: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.0.3' - '0.1.0.4' author: Vanessa McHale latest: '0.1.0.4' description-type: markdown description: ! '# gmpint This defines a `GMPInt` type and a `Storable` instance for that type, as well functions for working with such types. ' license-name: BSD3
Update from Hackage at 2018-02-08T05:21:12Z
Update from Hackage at 2018-02-08T05:21:12Z
YAML
mit
commercialhaskell/all-cabal-metadata
b07f1084c29c5075593d3be857efbe5dadc99f49
packages/us/userid.yaml
packages/us/userid.yaml
homepage: http://www.github.com/Happstack/userid changelog-type: '' hash: a773613219363386db87e14c3adf8ef748ea871c1a98e1e90b694c819d562164 test-bench-deps: {} maintainer: [email protected] synopsis: A library which provides the UserId type and useful instances for web development changelog: '' basic-deps: base: ! '>=4.8 && <4.9' boomerang: ! '>=1.4 && <1.5' lens: ! '>=4.9 && <4.13' safecopy: ! '>=0.8 && <0.9' web-routes: ! '>=0.27 && <0.28' web-routes-th: ! '>=0.22 && <0.23' aeson: ! '>=0.9 && <0.10' all-versions: - '0.1.0.0' author: Jeremy Shaw latest: '0.1.0.0' description-type: haddock description: Includes instances for SafeCopy, Lens, Boomerang, PathInfo and more license-name: BSD3
homepage: http://www.github.com/Happstack/userid changelog-type: '' hash: 847365cb6e59dbcb122a20eb653f3e7ca6a162b0ee29ed700d07d748561c1bf3 test-bench-deps: {} maintainer: [email protected] synopsis: A library which provides the UserId type and useful instances for web development changelog: '' basic-deps: base: ! '>=4.8 && <4.9' boomerang: ! '>=1.4 && <1.5' lens: ! '>=4.9 && <4.14' safecopy: ! '>=0.8 && <0.9' web-routes: ! '>=0.27 && <0.28' web-routes-th: ! '>=0.22 && <0.23' aeson: ! '>=0.9 && <0.10' all-versions: - '0.1.0.0' - '0.1.1.0' author: Jeremy Shaw latest: '0.1.1.0' description-type: haddock description: Includes instances for SafeCopy, Lens, Boomerang, PathInfo and more license-name: BSD3
Update from Hackage at 2015-09-19T01:37:47+0000
Update from Hackage at 2015-09-19T01:37:47+0000
YAML
mit
commercialhaskell/all-cabal-metadata
f4f62342e793860648062f77a79ccb39ed93b22a
packages/wi/windns.yaml
packages/wi/windns.yaml
homepage: '' changelog-type: markdown hash: bb46bfb801035791bad65e88afea9a75fafd52ec2b9e42bdb5f6dedbc87ee64f test-bench-deps: {} maintainer: [email protected] synopsis: Domain Name Service (DNS) lookup via the Windows dnsapi standard library changelog: ! '## 0.1.0.0 * First version. Released on an unsuspecting world. ' basic-deps: bytestring: ! '>=0.9.2 && <0.11' base: ! '>=4.8 && <4.11 && <0' deepseq: ! '>=1.3.0.0 && <1.5' all-versions: - '0.1.0.0' author: Herbert Valerio Riedel latest: '0.1.0.0' description-type: haddock description: ! 'This package implements an API for accessing the [Domain Name Service (DNS)](https://tools.ietf.org/html/rfc1035) resolver service via the standard [<windns.h>/dnsapi.dll](https://msdn.microsoft.com/en-us/library/windows/desktop/ms682100\(v=vs.85\).aspx) system library on Win32 systems. This package provides the high-level API-subset of the [resolv](https://hackage.haskell.org/package/resolv) package.' license-name: GPL-3
homepage: '' changelog-type: markdown hash: c76bd0ad129ea694e1e20c5397a9e58232de656dfafc336ecbe9bf5accb2c1a6 test-bench-deps: {} maintainer: [email protected] synopsis: Domain Name Service (DNS) lookup via the Windows dnsapi standard library changelog: ! '## 0.1.0.0 * First version. Released on an unsuspecting world. ' basic-deps: bytestring: ! '>=0.9.2 && <0.11' base: ! '>=4.8 && <4.12 && <0' deepseq: ! '>=1.3.0.0 && <1.5' all-versions: - '0.1.0.0' author: Herbert Valerio Riedel latest: '0.1.0.0' description-type: haddock description: ! 'This package implements an API for accessing the [Domain Name Service (DNS)](https://tools.ietf.org/html/rfc1035) resolver service via the standard [<windns.h>/dnsapi.dll](https://msdn.microsoft.com/en-us/library/windows/desktop/ms682100\(v=vs.85\).aspx) system library on Win32 systems. This package provides the high-level API-subset of the [resolv](https://hackage.haskell.org/package/resolv) package.' license-name: GPL-3
Update from Hackage at 2018-03-28T16:41:46Z
Update from Hackage at 2018-03-28T16:41:46Z
YAML
mit
commercialhaskell/all-cabal-metadata
1c4db4907283095afd15e8114dfb297b62844a5f
roles/nginx/tasks/main.yml
roles/nginx/tasks/main.yml
--- - name: Adding NGINX Repository, Hold on... apt_repository: repo=ppa:miteshshah/nginx-pagespeed register: nginx_repo - include: roles/libs/tasks/apt/update.yml when: nginx_repo.changed == True or nginx_key.changed == True - name: Installing NGINX, Hold on... apt: name=nginx-pagespeed state=present register: package_install # The notify will call the ../handlers/main.yml notify: service nginx restart
--- - name: Adding NGINX Repository, Hold on... apt_repository: repo=ppa:miteshshah/nginx-pagespeed register: nginx_repo - include: roles/libs/tasks/apt/update.yml when: nginx_repo.changed == True - name: Installing NGINX, Hold on... apt: name=nginx-pagespeed state=present register: package_install # The notify will call the ../handlers/main.yml notify: service nginx restart
Remove NGINX key not needed
Remove NGINX key not needed
YAML
mit
AnsiPress/AnsiPress,AnsiPress/AnsiPress
65be9e09336490a60683ebf9538d9bd819bb1c84
roles/piwik/tasks/main.yml
roles/piwik/tasks/main.yml
--- - name: download piwik get_url: url=http://builds.piwik.org/piwik.tar.gz dest=/tmp/piwik.tar.gz - name: extract piwik command: tar -xf /tmp/piwik.tar.gz --directory /home/ubuntu - name: copy piwik config template: src=config.ini.php dest=/home/ubuntu/piwik/config/config.ini.php
--- - name: download piwik get_url: url=http://builds.piwik.org/piwik.tar.gz dest=/tmp/piwik.tar.gz - name: extract piwik command: tar -xf /tmp/piwik.tar.gz --directory /home/deploy - name: copy piwik config template: src=config.ini.php dest=/home/deploy/piwik/config/config.ini.php
Use deploy home instead of ubuntu for piwik
Use deploy home instead of ubuntu for piwik
YAML
mit
devcon-ph/devcon-ansible-playbook
4e5529ecf30292459725afb9c9f702f9a83c95ed
zuul.d/project.yaml
zuul.d/project.yaml
- project: templates: - check-requirements - openstack-cover-jobs - openstack-lower-constraints-jobs - openstack-python3-victoria-jobs - publish-openstack-docs-pti - release-notes-jobs-python3 check: jobs: - ironic-inspector-grenade - ironic-inspector-tempest - ironic-inspector-tempest-discovery - ironic-inspector-tempest-managed-non-standalone - openstack-tox-functional-py36 - bifrost-integration-tinyipa-ubuntu-bionic: voting: false - ironic-inspector-tox-bandit: voting: false gate: queue: ironic jobs: - ironic-inspector-grenade - ironic-inspector-tempest - ironic-inspector-tempest-discovery - ironic-inspector-tempest-managed-non-standalone - openstack-tox-functional-py36
- project: templates: - check-requirements - openstack-cover-jobs - openstack-lower-constraints-jobs - openstack-python3-wallaby-jobs - publish-openstack-docs-pti - release-notes-jobs-python3 check: jobs: - ironic-inspector-grenade - ironic-inspector-tempest - ironic-inspector-tempest-discovery - ironic-inspector-tempest-managed-non-standalone - openstack-tox-functional-py36 - bifrost-integration-tinyipa-ubuntu-bionic: voting: false - ironic-inspector-tox-bandit: voting: false gate: queue: ironic jobs: - ironic-inspector-grenade - ironic-inspector-tempest - ironic-inspector-tempest-discovery - ironic-inspector-tempest-managed-non-standalone - openstack-tox-functional-py36
Add Python3 wallaby unit tests
Add Python3 wallaby unit tests This is an automatically generated patch to ensure unit testing is in place for all the of the tested runtimes for wallaby. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html Change-Id: I254b880e98550431ca14e55871b3069c99717bde
YAML
apache-2.0
openstack/ironic-inspector,openstack/ironic-inspector
656046ca30a759abba28cd7026565e4e59a9d685
.circleci/config.yml
.circleci/config.yml
# Python CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-python/ for more details # version: 2 jobs: build: docker: # specify the version you desire here # use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers` - image: jjanzic/docker-python3-opencv python # Specify service dependencies here if necessary # CircleCI maintains a library of pre-built images # documented at https://circleci.com/docs/2.0/circleci-images/ # - image: circleci/postgres:9.4 working_directory: ~/repo steps: - checkout # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "requirements.txt" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: name: install dependencies command: | python3 -m venv venv . venv/bin/activate python3 setup.py install - save_cache: paths: - ./venv key: v1-dependencies-{{ checksum "requirements.txt" }} # run tests! # this example uses Django's built-in test-runner # other common Python testing frameworks include pytest and nose # https://pytest.org # https://nose.readthedocs.io - run: name: run tests command: | . venv/bin/activate python setup.py test - store_artifacts: path: test-reports destination: test-reports
# Python CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-python/ for more details # version: 2 jobs: build: docker: # specify the version you desire here # use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers` - image: jjanzic/docker-python3-opencv python # Specify service dependencies here if necessary # CircleCI maintains a library of pre-built images # documented at https://circleci.com/docs/2.0/circleci-images/ # - image: circleci/postgres:9.4 working_directory: ~/repo steps: - checkout - run: name: install dependencies command: | python3 -m venv venv . venv/bin/activate python3 setup.py install # run tests! # this example uses Django's built-in test-runner # other common Python testing frameworks include pytest and nose # https://pytest.org # https://nose.readthedocs.io - run: name: run tests command: | . venv/bin/activate python3 setup.py test - store_artifacts: path: test-reports destination: test-reports
Remove cache from circleci conf
Remove cache from circleci conf
YAML
apache-2.0
ulikoehler/cv_algorithms,ulikoehler/cv_algorithms
9d47e2eaa5467ab02f2ef7a1bd355eee7fc943b4
.circleci/config.yml
.circleci/config.yml
version: 2.1 orbs: codecov: codecov/[email protected] runtest: &runtest steps: - checkout - run: name: Install GPflow command: | pip install -U tfp-nightly-2.0-preview tfp-nightly python setup.py install - run: name: Run tests command: pytest -v -W ignore::UserWarning --durations=10 -m "${PYTEST_FILTER}" --cov=./gpflow ./tests - run: name: Upload coverage report command: bash <(curl -s https://codecov.io/bash) -t "${CODECOV_TOKEN}" jobs: unit-test: <<: *runtest docker: - image: awav/tensorflow:2.0-nightly-preview environment: PYTEST_FILTER: not notebooks # notebook-test: # <<: *runtest # docker: # - image: awav/tensorflow:1.12.1 # environment: # PYTEST_FILTER: notebooks workflows: version: 2.1 build_and_test: jobs: - unit-test # - notebook-test
version: 2.1 runtest: &runtest steps: - checkout - run: name: Install GPflow command: | pip install -U tfp-nightly-2.0-preview tfp-nightly python setup.py install - run: name: Run tests command: pytest -v -W ignore::UserWarning --durations=10 -m "${PYTEST_FILTER}" --cov=./gpflow ./tests - run: name: Upload coverage report command: bash <(curl -s https://codecov.io/bash) -t "${CODECOV_TOKEN}" jobs: unit-test: <<: *runtest docker: - image: awav/tensorflow:2.0-nightly-preview environment: PYTEST_FILTER: not notebooks # notebook-test: # <<: *runtest # docker: # - image: awav/tensorflow:1.12.1 # environment: # PYTEST_FILTER: notebooks workflows: version: 2.1 build_and_test: jobs: - unit-test # - notebook-test
Remove support in circleci org
Remove support in circleci org
YAML
apache-2.0
GPflow/GPflow