commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
f1a23f02ae2ee128210fa1aad03e739db4904ff1 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "6"
cache:
directories:
- client/node_modules
addons:
code_climate:
repo_token: 4ad3e12283a16e2adf2b673cf3c3d3fd211af822b86105bd768136c72bf16eb1
before_script: cd client && npm install
script: npm test && echo "Test finished" && exit 1
after_success:
- npm... | sudo: false
language: node_js
node_js:
- "6"
cache:
directories:
- client/node_modules
addons:
code_climate:
repo_token: 4ad3e12283a16e2adf2b673cf3c3d3fd211af822b86105bd768136c72bf16eb1
before_script: cd client && npm install
script: echo "Build finished" && exit 1
after_success:
- npm install -g... | Change scripts to fix TravisCI stalled build issue | Change scripts to fix TravisCI stalled build issue
| YAML | mit | kukiron/graphql-messaging-app,kukiron/graphql-messaging-app |
03f66bea2dd452cfb328a3c99fce07e9962600de | .travis.yml | .travis.yml | ---
language: ruby
rvm:
- 1.9.3
- 2.0.0
script:
- rake test:unit
- if [ "$TRAVIS_SECURE_ENV_VARS" == "true" ] ; then rake test:integration ; fi
| ---
language: ruby
rvm:
- 1.9.3
- 2.0.0
script:
- bundle exec rake test:unit
- if [ "$TRAVIS_SECURE_ENV_VARS" == "true" ] ; then rake test:integration ; fi
| Resolve failures caused by conflicting gem versions. Tests fails due to minitest version conflict. | Resolve failures caused by conflicting gem versions. Tests fails due to minitest version conflict.
| YAML | mit | devigned/azure-sdk-for-ruby,alexderz/azure-sdk-for-ruby,Azure/azure-sdk-for-ruby,kshmir/azure-sdk-for-ruby,theckman/azure-sdk-for-ruby,mstuefer/azure-sdk-for-ruby,devigned/azure-sdk-for-ruby,oaastest/azure-sdk-for-ruby,wastoresh/azure-sdk-for-ruby,Azure/azure-sdk-for-ruby |
0ab5aabc396c50d5d3bf14dab670842a8ba54dab | .travis.yml | .travis.yml | sudo: false
language: python
python:
- '2.7'
- '3.3'
install:
- pip install -U --force setuptools pip
- ./setup.py develop
- pip install -e '.[tests]'
script:
- pylama
- py.test
| sudo: false
language: python
python:
- '2.7'
- '3.4'
install:
- pip install -U --force setuptools pip
- ./setup.py develop
- pip install -e '.[tests]'
script:
- pylama
- py.test
| Add Python 3.4 to Travis CI builds | Add Python 3.4 to Travis CI builds
Change .travis.yml to run the build with Python 3.4 and remove 3.3 no
longer supported by setuptools.
| YAML | apache-2.0 | zaproxy/zap-api-python |
dacb9dc4bb03ce75a751925f487583b3feb2875c | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "2.7"
env:
global:
- DJANGO_SETTINGS_MODULE=fiware_cloto.cloto_settings.settings_tests
- COVERALLS_SERVICE_NAME=travis-ci
# COVERALLS_REPO_TOKEN (encrypted)
- secure: "Cl2WLpbSJEo8PYmjlNOv0X+AUwewZxk4NfXNwDAcpnpSvUL7NTTVkghQUkmY8gH8VKPqAi5sgpEMPRUJUQLnbXtcN4z8... | language: python
sudo: required
python:
- "2.7"
env:
global:
- DJANGO_SETTINGS_MODULE=fiware_cloto.cloto_settings.settings_tests
- COVERALLS_SERVICE_NAME=travis-ci
# COVERALLS_REPO_TOKEN (encrypted)
- secure: "Cl2WLpbSJEo8PYmjlNOv0X+AUwewZxk4NfXNwDAcpnpSvUL7NTTVkghQUkmY8gH8VKPqAi5sgpEMPRUJUQLnbXtcN... | Correct Travis execution in the new infrastructure | Correct Travis execution in the new infrastructure
| YAML | apache-2.0 | telefonicaid/fiware-cloto,Fiware/cloud.Cloto,FiwareULPGC/fiware-cloto,FiwareULPGC/fiware-cloto,Fiware/cloud.Cloto,telefonicaid/fiware-cloto |
6d7ab8b7a1428217332b73ad7024feeb920d7fe6 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.3
- ree
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
notifications:
irc: "irc.freenode.org#celluloid"
| rvm:
- 1.8.7
- 1.9.3
- ree
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-18mode
- rvm: rbx-19mode
notifications:
irc: "irc.freenode.org#celluloid"
| Move rbx to allowed failures | Move rbx to allowed failures
| YAML | mit | copiousfreetime/timers,celluloid/timers |
668086907142c4907a7ee6dfc0eaf35456a397ca | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
before_script:
- composer install
notifications:
email: matthiasnoback@gmail.com | language: php
php:
- 5.3
- 5.4
env:
- DOCTRINE_VERSION: 2.1.*
- DOCTRINE_VERSION: 2.2.*
- DOCTRINE_VERSION: 2.3.*
- DOCTRINE_VERSION: 2.4.*@dev
before_script:
- composer require --dev doctrine/dbal:${DOCTRINE_VERSION}
notifications:
email: matthiasnoback@gmail.com | Test against multiple Doctrine DBAL versions | Test against multiple Doctrine DBAL versions
| YAML | mit | matthiasnoback/doctrine-dbal-test-service-provider |
f87922be040fc28831eb618df10ad7570387a6a5 | .travis.yml | .travis.yml | language: bash
env:
- SHUNIT_COLOR='always'
script:
# Execute the unit tests.
- ./test_runner
os:
- linux
- osx
addons:
apt:
packages:
- ksh
- zsh
matrix:
include:
- os: linux
script:
# Run the source through ShellCheck (http://www.shellcheck.net).
- shellche... | language: bash
env:
- SHUNIT_COLOR='always'
script:
# Execute the unit tests.
- ./test_runner
addons:
apt:
packages:
- ksh
- mksh
- zsh
matrix:
include:
- os: linux
dist: bionic # Support Ubuntu Bionic 18.04 through at least Apr 2023.
- os: linux
dist: xenial # ... | Support more linux versions and mksh. | Support more linux versions and mksh.
| YAML | apache-2.0 | kward/shunit2 |
fbd0ce006326e2e410084297e64afdfb9052d2a1 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6.9.2"
addons:
firefox: "latest"
before_install:
- ./tools/travis/init-env
- ./tools/travis/install-geckodriver
- ./tools/travis/start-xvfb
- . ./tools/travis/env.sh
- export DISPLAY=$ENV_DISPLAY
- export PATH=$PATH:$ENV_LOCAL_BIN_DIR
install:
- npm install --global gulp-... | language: node_js
node_js:
- "6.9.2"
addons:
firefox: "latest"
before_install:
- ./tools/travis/init-env
- ./tools/travis/install-geckodriver
- ./tools/travis/start-xvfb
- . ./tools/travis/env.sh
- export DISPLAY=$ENV_DISPLAY
- export PATH=$PATH:$ENV_LOCAL_BIN_DIR
install:
- npm install --global gulp-... | Add PhantomJS to list of browsers to be tested on Travis | Add PhantomJS to list of browsers to be tested on Travis
| YAML | mit | ssoloff/dice-server-js,ssoloff/dice-server-js,ssoloff/dice-server-js,ssoloff/dice-server-js |
7ca9756ddd115bd680c5c600f648a88f3550a183 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "3"
- "4"
cache:
directories:
- node_modules
matrix:
fast_finish: true
allow_failures:
- node_js: "3"
| sudo: false
language: node_js
node_js:
- "0.12"
- "4"
cache:
directories:
- node_modules
matrix:
fast_finish: true
| Test only relevant Node.js versions at Travis CI | Test only relevant Node.js versions at Travis CI
| YAML | mit | paazmaya/grunt-html2md |
1a62ede32054d03a17391e6e6033fd7402cde12b | snapcraft.yaml | snapcraft.yaml | name: micro
version: git
summary: A modern and intuitive terminal-based text editor
description: |
Micro is a terminal-based text editor that aims to be easy to use and
intuitive, while also taking advantage of the full capabilities of modern
terminals.
confinement: classic
apps:
micro:
command: bin/micro
... | name: micro
version: git
summary: A modern and intuitive terminal-based text editor
description: |
Micro is a terminal-based text editor that aims to be easy to use and
intuitive, while also taking advantage of the full capabilities of modern
terminals.
confinement: classic
apps:
micro:
command: bin/micro
... | Build snap using up-to-date golang | Build snap using up-to-date golang
| YAML | mit | zyedidia/micro,zyedidia/micro |
ee8707ff16d69e1764d1b5df5c2cda6447e38871 | .github/workflows/node.js.yml | .github/workflows/node.js.yml | # This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branc... | # This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branc... | Add github token secret for coveralls | Add github token secret for coveralls
| YAML | mit | ayebear/picoes |
4282f556e43debf45a468bde68b8ad5f192c400d | files/.travis.yml | files/.travis.yml | ---
language: python
python: "2.7"
before_install:
- sudo apt-get update --assume-yes -qq
- sudo apt-get install --assume-yes -qq python-apt python-pycurl
install:
- sudo pip install ansible
script:
- ansible --version
- ansible-playbook --inventory-file tests/hosts --syntax-check tests/playbook.yml
- ansible-pla... | ---
language: python
python: "2.7"
before_install:
- sudo apt-get update --assume-yes -qq
- sudo apt-get install --assume-yes -qq python-apt python-pycurl
install:
- sudo pip install ansible
script:
- ansible --version
- ansible-playbook --inventory-file tests/hosts --syntax-check tests/playbook.yml
- ansib... | Fix YAML indentation to two whitespace indents | Fix YAML indentation to two whitespace indents
| YAML | apache-2.0 | silpion/ansible-generator,silpion/ansible-generator |
30fed5855abad38724e23f2cd98331ec0b0d14ad | appveyor.yml | appveyor.yml | os: 'Visual Studio 2015'
init:
- 'git config --global core.autocrlf input'
environment:
matrix:
- platform: x64
configuration: Release
- platform: x86
configuration: Release
- platform: x64
configuration: Debug
- platform: x86
configuration: Debug
before_build:
- 'cmake ... | os: 'Visual Studio 2015'
init:
- 'git config --global core.autocrlf input'
environment:
matrix:
- platform: x64
configuration: Release
- platform: x86
configuration: Release
- platform: x64
configuration: Debug
- platform: x86
configuration: Debug
before_build:
- >-
... | Set Boost root for Appveyor | Set Boost root for Appveyor
| YAML | isc | DemiMarie/SlipRock,DemiMarie/SlipRock,DemiMarie/SlipRock,DemiMarie/SlipRock,DemiMarie/SlipRock |
b7bfff8866597ca0f72936fec40b815c570d2e4e | appveyor.yml | appveyor.yml | # Test against this version of Node.js
os: Visual Studio 2015
environment:
nodejs_version: "4.0.0"
platform:
- x86
- x64
# Install scripts. (runs after repo cloning)
install:
# Init submodules
- git submodule update --init --recursive
# Get the latest stable version of Node.js or io.js
- ps: Install-Pr... | # Test against this version of Node.js
os: Visual Studio 2015
environment:
matrix:
- nodejs_version: "4.4.7"
- nodejs_version: "6.3.0"
platform:
- x86
- x64
# Install scripts. (runs after repo cloning)
install:
# Init submodules
- git submodule update --init --recursive
# Get the latest stable ve... | Build for LTS and dev node | Build for LTS and dev node
| YAML | mit | APE-EDX/APE,APE-EDX/APE |
8074fad393907b88d65ad0a49cfa0912eb2293e6 | appveyor.yml | appveyor.yml | environment:
matrix:
# For Python versions available on Appveyor, see
# http://www.appveyor.com/docs/installed-software#python
# The list here is complete (excluding Python 2.6, which
# isn't covered by this document) at the time of writing.
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"
... | environment:
matrix:
# For Python versions available on Appveyor, see
# http://www.appveyor.com/docs/installed-software#python
# The list here is complete (excluding Python 2.6, which
# isn't covered by this document) at the time of writing.
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"
... | Remove Python 3.3x64 and Add Python 3.6 | Remove Python 3.3x64 and Add Python 3.6 | YAML | mit | somebody1234/Charcoal |
2d1a501ce9183974d3f06849effef27e5d91f24c | appveyor.yml | appveyor.yml | version: 1.0.{build}
os: Visual Studio 2015
configuration: Release
before_build:
- nuget restore
build:
project: src\Wundercal.sln
verbosity: minimal
test: off | version: 1.0.{build}
os: Visual Studio 2015
configuration: Release
before_build:
- nuget restore src\Wundercal.sln
build:
project: src\Wundercal.sln
verbosity: minimal
test: off | Add path to solution for huget restore | Add path to solution for huget restore
| YAML | apache-2.0 | marska/wundercal |
9e7f1dcb6994ce4fe92043111f0bdfa1b112aa82 | appveyor.yml | appveyor.yml | configuration: Release
install:
- choco install GitVersion
- choco install opencover -source https://nuget.org/api/v2/
- choco install coveralls.io -source https://nuget.org/api/v2/
- choco install resharper-clt
- GitVersion /output buildserver /UpdateAssemblyInfo true
cache:
- packages -> **\packages.config
- C:\Pro... | configuration: Release
install:
- choco install GitVersion.Portable
- choco install opencover -source https://nuget.org/api/v2/
- choco install coveralls.io -source https://nuget.org/api/v2/
- choco install resharper-clt
- GitVersion /output buildserver /UpdateAssemblyInfo true
cache:
- packages -> **\packages.config... | Fix obsolete version of GitVersion | Fix obsolete version of GitVersion | YAML | apache-2.0 | laedit/vika |
b3f271b3ce6f9b25cc0c7cdcf423c030b810de74 | appveyor.yml | appveyor.yml | environment:
APPVEYOR_YML_DISABLE_PS_LINUX: true
COVERALLS_TOKEN:
secure: 9e+vrJ65VDmTcwWipInm3fmWWnG1cLYLsoQHnKkroGtLHTkUvTJ9w8KwD12W0u0w
GITHUB_TOKEN:
secure: tohnGHbkou++U/1IejloBChnM+z8eK+cPOBbdgutCzD9QYWjnfhDTnO04+Xgk21Y
install:
- dotnet tool install -g Cake.Tool --version 0.34.1
build_script:
- d... | environment:
APPVEYOR_YML_DISABLE_PS_LINUX: true
COVERALLS_TOKEN:
secure: 9e+vrJ65VDmTcwWipInm3fmWWnG1cLYLsoQHnKkroGtLHTkUvTJ9w8KwD12W0u0w
GITHUB_TOKEN:
secure: tohnGHbkou++U/1IejloBChnM+z8eK+cPOBbdgutCzD9QYWjnfhDTnO04+Xgk21Y
install:
- dotnet tool install -g Cake.Tool --version 0.34.1
build_script:
- d... | Update Visual Studio image version on AppVeyor | Update Visual Studio image version on AppVeyor
| YAML | mit | k94ll13nn3/Strinken |
a513f353c8772c726e307f2e2fddbd3293f0a708 | appveyor.yml | appveyor.yml | version: 0.1.0 ({build})
platform:
- x86
- x64
# build Configuration, i.e. Debug, Release, etc.
configuration:
- Debug
- Release
# scripts that run after cloning repository
install:
- cmd: git submodule update --init
# scripts to run before build
before_build:
- cmd: python external/styleguide/cpplint/c... | version: 0.1.0 ({build})
clone_folder: c:\projects\fluid-engine-dev
platform:
- x86
- x64
# build Configuration, i.e. Debug, Release, etc.
configuration:
- Debug
- Release
# scripts that run after cloning repository
install:
- cmd: git submodule update --init
# scripts to run before build
before_build:
... | Use full path when running cpplint from AppVeyor | Use full path when running cpplint from AppVeyor
| YAML | mit | doyubkim/fluid-engine-dev,doyubkim/fluid-engine-dev,doyubkim/fluid-engine-dev,doyubkim/fluid-engine-dev |
ec74de0bf94b79c789026d377fa4758d451809c0 | appveyor.yml | appveyor.yml | version: 0.8.0-{build}
environment:
matrix:
- GENERATOR: Visual Studio 14 2015
- GENERATOR: Visual Studio 14 2015 Win64
configuration: Debug
before_build:
- git submodule update --init --recursive
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=%CONFIGURATION% -G "%GENERATOR%" -DENABLE_GIPFELI=no -... | version: 0.8.0-{build}
environment:
matrix:
- GENERATOR: Visual Studio 14 2015
- GENERATOR: Visual Studio 14 2015 Win64
configuration: Debug
install: git submodule update --init --recursive
before_build:
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=%CONFIGURATION% -G "%GENERATOR%" -DENABLE_GIPFEL... | Update submodules in install section | Update submodules in install section
| YAML | mit | jibsen/squash,jibsen/squash,Cloudef/squash,jibsen/squash,quixdb/squash,Cloudef/squash,quixdb/squash,Cloudef/squash,quixdb/squash |
112cc5f52b145eea1680713a1c7cc578c6e98c2a | appveyor.yml | appveyor.yml | version: 2.0.{build}
os: Visual Studio 2022
configuration: Release
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
# restore NuGet packages before running
before_build:
# Display .NET Core version
... | version: 2.0.{build}
os: Visual Studio 2022
configuration: Release
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
# restore NuGet packages before running
before_build:
# Display .NET Core version
... | Add command to list available SDKs | Add command to list available SDKs
Need to see what SDK's are available on appveyor.
| YAML | mit | Tazmainiandevil/Useful.Extensions |
b623ed2b88ca86f50f33c200b0fa663a2987c3fc | appveyor.yml | appveyor.yml | version: 0.5.0.{build}
install:
- cinst -y pester
- git clone https://github.com/PowerShell/DscResource.Tests
build: off
test_script:
- ps: |
$testResultsFile = ".\TestsResults.xml"
$res = Invoke-Pester -OutputFormat NUnitXml -OutputFile $testResultsFile -PassThru
(New-Object 'System.Net.... | version: 0.5.0.{build}
install:
- cinst -y pester
- git clone https://github.com/PowerShell/DscResource.Tests
build: off
test_script:
- ps: |
$testResultsFile = ".\TestsResults.xml"
$res = Invoke-Pester -OutputFormat NUnitXml -OutputFile $testResultsFile -PassThru
(New-Object 'System.Net.... | Use PS to publish artifact | Use PS to publish artifact
| YAML | mit | ykuijs/xSharePoint,ykuijs/xSharePoint,MikeLacher448/xSharePoint,mrpullen/xSharePoint,BrunoReboul/SharePointDsc,MikeLacher448/xSharePoint,BrunoReboul/SharePointDsc,mrpullen/xSharePoint |
d8ae50800ac547295b54179d6c396578c4e3336b | roles/download/tasks/set_docker_image_facts.yml | roles/download/tasks/set_docker_image_facts.yml | ---
- set_fact:
pull_by_digest: >-
{%- if download.sha256 is defined and download.sha256 != '' -%}true{%- else -%}false{%- endif -%}
- set_fact:
pull_args: >-
{%- if pull_by_digest|bool %}{{download.repo}}@sha256:{{download.sha256}}{%- else -%}{{download.repo}}:{{download.tag}}{%- endif -%}
- name... | ---
- set_fact:
pull_by_digest: >-
{%- if download.sha256 is defined and download.sha256 != '' -%}true{%- else -%}false{%- endif -%}
- set_fact:
pull_args: >-
{%- if pull_by_digest|bool %}{{download.repo}}@sha256:{{download.sha256}}{%- else -%}{{download.repo}}:{{download.tag}}{%- endif -%}
- name... | Work around escaping curly braces for docker inspect | Work around escaping curly braces for docker inspect
| YAML | apache-2.0 | Abdelsalam-Abbas/kubespray_fork,kubespray/kargo,rogerwelin/kargo,ayaz/kubespray,kubernetes-incubator/kargo,sgm-media/kargo,hatch-k8s/kargo,hatch-k8s/kargo,VincentS/kargo,insequent/kargo,kubernetes-sigs/kubespray,Lendico/kargo,VincentS/kargo,kubernetes-incubator/kubespray,galthaus/setup-kubernetes,galthaus/setup-kuberne... |
6454e8bd29f5001483dcb1506710633c0d8a020f | util/ansible/deploy.yml | util/ansible/deploy.yml | ---
- hosts: all
become: true
vars:
util_base: "{{ playbook_dir | dirname }}"
www_base: "{{ util_base | dirname }}"
app_base: "{{ www_base | dirname }}"
tmp_base: "{{ app_base }}/www_tmp"
app_env: "production"
update_mode: false
dev_azuracast_user_password: "azuracast"
dev_mysql_use... | ---
- hosts: all
become: true
vars:
util_base: "{{ playbook_dir | dirname }}"
www_base: "{{ util_base | dirname }}"
app_base: "{{ www_base | dirname }}"
tmp_base: "{{ app_base }}/www_tmp"
app_env: "production"
update_mode: false
dev_azuracast_user_password: "azuracast"
dev_mysql_use... | Switch order of install operations. | Switch order of install operations.
| YAML | agpl-3.0 | AzuraCast/AzuraCast,AzuraCast/AzuraCast,AzuraCast/AzuraCast,SlvrEagle23/AzuraCast,AzuraCast/AzuraCast,SlvrEagle23/AzuraCast,SlvrEagle23/AzuraCast,SlvrEagle23/AzuraCast,SlvrEagle23/AzuraCast |
725a587b4b002dfa05b2067cf20a3aae96087d0d | metadata/inc.flide.vi8.yml | metadata/inc.flide.vi8.yml | Categories:
- System
License: Apache-2.0
AuthorName: Ravi Agarwal
AuthorEmail: 8vim@protonmail.com
SourceCode: https://github.com/flide/8VIM
IssueTracker: https://github.com/flide/8VIM/issues
AutoName: 8Vim
RepoType: git
Repo: https://github.com/flide/8VIM
Builds:
- versionName: iteration-3
versionCode: 4
... | Categories:
- System
License: Apache-2.0
AuthorName: Ravi Agarwal
AuthorEmail: 8vim@protonmail.com
SourceCode: https://github.com/flide/8VIM
IssueTracker: https://github.com/flide/8VIM/issues
AutoName: 8Vim
RepoType: git
Repo: https://github.com/flide/8VIM
Builds:
- versionName: iteration-3
versionCode: 4
... | Update 8Vim to iteration-5 (5) | Update 8Vim to iteration-5 (5)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
0bbd7cd069404c73a15467bc5ed348b5f2bc1561 | catalog/Developer_Tools/Concurrent_Processing.yml | catalog/Developer_Tools/Concurrent_Processing.yml | name: Concurrent Processing
description: Tools that simplify the writing of concurrent Ruby programs
projects:
- celluloid
- concurrent-ruby
- cool.io
- dataflow
- eventbox
- eventmachine
- tribe
- wires
- workers
| name: Concurrent Processing
description: Tools that simplify the writing of concurrent Ruby programs
projects:
- async
- celluloid
- concurrent-ruby
- cool.io
- dataflow
- eventbox
- eventmachine
- tribe
- wires
- workers
| Add async to Concurrent Processing | Add async to Concurrent Processing
| YAML | mit | rubytoolbox/catalog |
471893f22af2be5b79fec653ff2cef1d35b4a271 | ci/pyuvdata_tests.yml | ci/pyuvdata_tests.yml | name: pyuvdata_tests
channels:
- conda-forge
- defaults
dependencies:
- astropy
- h5py
- astropy-healpix
- numpy
- python-casacore
- pyyaml
- scipy
- coverage
- pytest-cov
- setuptools_scm
- pip
- pip:
- pytest-cases
- pygitversion
| name: pyuvdata_tests
channels:
- conda-forge
- defaults
dependencies:
- astropy
- h5py
- astropy-healpix
- numpy
- python-casacore
- pyyaml
- scipy
- coverage
- pytest-cov
- setuptools_scm
- pip
- pip:
- pytest-cases
| Remove pygitversion from deps as it is only required in pyproject | Remove pygitversion from deps as it is only required in pyproject
| YAML | bsd-2-clause | HERA-Team/pyuvdata,HERA-Team/pyuvdata,HERA-Team/pyuvdata,HERA-Team/pyuvdata |
8a29a32739549dae7a341daba4d520cec9ab3c74 | metadata/com.svenjacobs.app.leon.yml | metadata/com.svenjacobs.app.leon.yml | Categories:
- System
License: GPL-3.0-or-later
AuthorName: Sven Jacobs
AuthorEmail: leon-app@svenjacobs.com
AuthorWebSite: https://svenjacobs.com
SourceCode: https://github.com/svenjacobs/leon
IssueTracker: https://github.com/svenjacobs/leon/issues
Changelog: https://github.com/svenjacobs/leon/blob/main/CHANGELOG.md
... | Categories:
- System
License: GPL-3.0-or-later
AuthorName: Sven Jacobs
AuthorEmail: leon-app@svenjacobs.com
AuthorWebSite: https://svenjacobs.com
SourceCode: https://github.com/svenjacobs/leon
IssueTracker: https://github.com/svenjacobs/leon/issues
Changelog: https://github.com/svenjacobs/leon/blob/main/CHANGELOG.md
... | Update URL Cleaner to 0.4.1 (225) | Update URL Cleaner to 0.4.1 (225)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
5168a21a9763919670c832991ac5c0d91d5996e9 | shippable.yml | shippable.yml | language: java
jdk:
- oraclejdk8
build:
ci:
- mvn install
#Create folders for test and code coverage
- mkdir -p shippable/testresults
- mkdir -p shippable/codecoverage
- cp -r target/site/jacoco/jacoco.xml shippable/codecoverage
runtime:
nodePool: shippable_shared_aarch64
| language: java
jdk:
- oraclejdk8
build:
ci:
- mvn install
#Create folders for test and code coverage
- mkdir -p shippable/testresults
- cp -r target/surefire-reports/* shippable/testresults
runtime:
nodePool: shippable_shared_aarch64
| Remove code coverage copy/paste error (Jacoco is not used) | Remove code coverage copy/paste error (Jacoco is not used) | YAML | apache-2.0 | brettwooldridge/NuProcess,brettwooldridge/NuProcess,brettwooldridge/NuProcess |
902d76e72a81e84424f025fd7c93fe1cbdb168a3 | catalog/Web_Apps_Services_Interaction/Web_Analytics.yml | catalog/Web_Apps_Services_Interaction/Web_Analytics.yml | name: Web Analytics
description:
projects:
- ga_events
- gabba
- gabbara
- garb
- gattica
- google-analytics-rails
- googlepagerank
- legato
- mixpanel_rails
- PageRankr
- rack-google-analytics
- rack_clicky
- redis_analytics
- rugalytics
- wwwtf
- yaga
| name: Web Analytics
description:
projects:
- callcounter
- ga_events
- gabba
- gabbara
- garb
- gattica
- google-analytics-rails
- googlepagerank
- legato
- mixpanel_rails
- PageRankr
- rack-google-analytics
- rack_clicky
- redis_analytics
- rugalytics
- wwwtf
- yaga
| Add callcounter gem to analytics category | Add callcounter gem to analytics category | YAML | mit | rubytoolbox/catalog |
0c038bd82925042eacdb2b5ae36f03417528c3df | pubspec.yaml | pubspec.yaml | name: fl_chart
description: A powerful Flutter chart library, currently supporting Line Chart, Bar Chart and Pie Chart.
version: 0.55.0
homepage: https://github.com/imaNNeoFighT/fl_chart
environment:
sdk: ">=2.12.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
equatable: ^2.0.3
dev_dependencies:
mockito: ^... | name: fl_chart
description: A powerful Flutter chart library, currently supporting Line Chart, Bar Chart and Pie Chart.
version: 0.55.0
homepage: https://github.com/imaNNeoFighT/fl_chart
environment:
sdk: ">=2.12.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
equatable: ^2.0.3
dev_dependencies:
mockito: ^... | Upgrade mockito and build_runner dependencies | Upgrade mockito and build_runner dependencies
| YAML | mit | imaNNeoFighT/fl_chart,imaNNeoFighT/fl_chart,imaNNeoFighT/fl_chart,imaNNeoFighT/fl_chart,imaNNeoFighT/fl_chart,imaNNeoFighT/fl_chart,imaNNeoFighT/fl_chart |
9d9f3ff1771d2b4c0fcfdc4dc7a9df76bf411bfa | ansible/roles/init/tasks/dotfiles.yml | ansible/roles/init/tasks/dotfiles.yml | ---
- name: Get the dots!
git:
repo: https://github.com/e4r7hbug/dotfiles.git
dest: ~/git/github.dotfiles
| ---
- name: Get the dots!
become: yes
become_user: "{{ user }}"
git:
repo: https://github.com/e4r7hbug/dotfiles.git
dest: "~{{ user }}/git/github.dotfiles"
| Use become for correct dotfile permissions | ansible: Use become for correct dotfile permissions
| YAML | mit | e4r7hbug/dotfiles,e4r7hbug/dotfiles |
258b3c7a821186d743944dd6c7972a1d5ced375b | ansible/roles/php-base/tasks/main.yml | ansible/roles/php-base/tasks/main.yml | ---
- name: Install base packages for php development environment
apt: name={{ item }} state=present update_cache=yes
with_items:
- php5-common
- php5-cli
- name: Set some configuration values in php.ini
lineinfile:
dest: /etc/php5/cli/php.ini
regexp: "{{ item.regexp }}"
line: "{{ item.line }... | ---
- name: Install base packages for php development environment
apt: name={{ item }} state=present update_cache=yes
with_items:
- php5-common
- php5-cli
- php5-intl
- name: Set some configuration values in php.ini
lineinfile:
dest: /etc/php5/cli/php.ini
regexp: "{{ item.regexp }}"
line:... | Add php5-intl module to PHP dev environment | Add php5-intl module to PHP dev environment
| YAML | mit | ebargtuo/docker-dev-env,ebargtuo/docker-dev-env,ebargtuo/docker-dev-env |
4c69eadf856a3b3061001ec20baf40df6a0f928d | zuul.d/layout.yaml | zuul.d/layout.yaml | - project:
templates:
- tripleo-buildimage-jobs
- openstack-python3-ussuri-jobs
- release-notes-jobs-python3
| - project:
templates:
- tripleo-buildimage-jobs
- openstack-python3-victoria-jobs
- release-notes-jobs-python3
| Add Python3 victoria unit tests | Add Python3 victoria unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for victoria.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: I0cc58532d0f0312b39d5cf90585a8... | YAML | apache-2.0 | openstack/tripleo-puppet-elements,openstack/tripleo-puppet-elements |
21b85df49066d3a1e67561953acbc9e9e23abcf1 | zuul.d/layout.yaml | zuul.d/layout.yaml | - project:
templates:
- openstack-python-jobs
- openstack-python35-jobs
- openstack-python36-jobs
- openstack-python37-jobs
- tripleo-multinode-container-minimal
- release-notes-jobs-python3
post:
jobs:
- publish-openstack-python-branch-tarball
| - project:
templates:
- tripleo-buildimage-jobs
- openstack-python-jobs
- openstack-python35-jobs
- openstack-python36-jobs
- openstack-python37-jobs
- release-notes-jobs-python3
post:
jobs:
- publish-openstack-python-branch-tarball
| Replace multinode jobs with image builds | Replace multinode jobs with image builds
This repository is not used in the multinode jobs. We should be running
the image build job and OVB jobs to test this.
Change-Id: I757bacb4d4f8a8ab30886a3624b4d985960bbc8a
| YAML | apache-2.0 | openstack/tripleo-image-elements,openstack/tripleo-image-elements |
4469a326fd99f2c8567f974bd1f7e6b2d5db9868 | .cirrus.yml | .cirrus.yml | freebsd_instance:
image: freebsd-12-0-release-amd64
task:
name: stable x86_64-unknown-freebsd
setup_script:
- pkg install -y curl gmake py36-sphinx
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y
build_script:
- . $HOME/.cargo/env
- cargo build
test_script:
- . $... | freebsd_instance:
image: freebsd-12-0-release-amd64
task:
name: stable x86_64-unknown-freebsd
setup_script:
- pkg install -y curl gmake
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y
build_script:
- . $HOME/.cargo/env
- cargo build
test_script:
- . $HOME/.cargo/... | Disable installation test on FreeBSD due to sphinx-build issue | Disable installation test on FreeBSD due to sphinx-build issue
| YAML | mit | uutils/coreutils,uutils/coreutils,uutils/coreutils |
e51b4eb694b7874cdb265d3fe16f585f4de3a9a5 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
rvm:
- 2.4.1
before_install:
- gem install bundler -v 1.14.6
- git clone --depth 10 https://github.com/antirez/redis.git
- cd redis
- git fetch && git fetch --tags
- git checkout 4.0.6
- make
- cd ..
- git clone --depth 1 https://github.com/RedisLabsModules/RediSearch.git
- ... | sudo: required
dist: trusty
language: ruby
rvm:
- 2.4.1
before_install:
- gem install bundler -v 1.14.6
- git clone --depth 10 https://github.com/antirez/redis.git
- cd redis
- git fetch && git fetch --tags
- git checkout 4.0.6
- make
- cd ..
- git clone --depth 1 https://github.com/RedisLabsModules/RediSearch.git
- ... | Upgrade RediSearch version used in CI tests | Upgrade RediSearch version used in CI tests
| YAML | mit | vruizext/redisearch-rb |
a08964ea00c686c2f16a2619f15aabcadb3aa564 | .travis.yml | .travis.yml | language: go
go:
- 1.4
- 1.5
- 1.6
install:
- go get -t ./...
script:
- go build
- go test ./...
| language: go
go:
- 1.7
- 1.8
- 1.9
- "1.10"
- tip
install:
- go get -t ./...
script:
- go build
- go test ./...
| Update Travis to use modern versions of Go | Update Travis to use modern versions of Go
| YAML | mit | dingoblog/dingo,dinever/dingo,dingoblog/dingo,dinever/dingo |
ddc156f755d7f0e88530db3647aba466017f7f9d | .travis.yml | .travis.yml | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=defa... | addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
env:
- CHEF_LICENSE=accept
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- IN... | Update for Chef 15 license agreement and Chef Workstation | Update for Chef 15 license agreement and Chef Workstation
| YAML | apache-2.0 | chef-cookbooks/yum-centos |
5aa0deae0e45b63aaca80e5e800b0991725ea757 | .travis.yml | .travis.yml | language: node_js
node_js:
- 4
- 0.12
- 0.10
sudo: false
| language: node_js
node_js:
- 6
- 5
- 4
- 3
- 2
- 1
- 0.12
- 0.10
sudo: false
| Test on more Node versions | Test on more Node versions
| YAML | mit | nicolasmccurdy/procrastinate,nicolasmccurdy/procrastinate |
456ebb1e3a7ea2db43f629414b6bb74d7fd93d67 | .travis.yml | .travis.yml | language: php
php:
- "5.3.3"
- "5.3"
- "5.4"
- "5.5"
- "5.6"
- "hhvm"
- "hhvm-nightly"
install: composer install
script: vendor/bin/phpunit --configuration phpunit.coverage.xml
| language: php
php:
- "5.3.3"
- "5.3"
- "5.4"
- "5.5"
- "5.6"
- "hhvm"
- "hhvm-nightly"
matrix:
allow_failures:
- php: "hhvm-nightly"
install: composer install
script: vendor/bin/phpunit --configuration phpunit.coverage.xml
| Allow failures for HHVM nightly. | Allow failures for HHVM nightly.
| YAML | mit | eloquent/phony,eloquent/phony,eloquent/phony,eloquent/phony |
90b0fa0caa7ec42466a6189d39e607c1dc6f75ce | .travis.yml | .travis.yml | language: python
python:
- "3.5"
sudo: false
env:
- TOXENV=py27-lint
- TOXENV=py27-docs
- TOXENV=py35-django19
- TOXENV=py34-django19
- TOXENV=py27-django19
- TOXENV=py35-django18
- TOXENV=py34-django18
- TOXENV=py33-django18
- TOXENV=py32-django18
- TOXENV=py27-django18
... | language: python
python:
- "3.5"
sudo: false
env:
- TOXENV=py27-lint
- TOXENV=py27-docs
- TOXENV="py35-django1.9"
- TOXENV="py34-django1.9"
- TOXENV="py27-django1.9"
- TOXENV="py35-django1.8"
- TOXENV="py34-django1.8"
- TOXENV="py33-django1.8"
- TOXENV="py32-django1.8"
- T... | Fix names of tox environments. | Fix names of tox environments. | YAML | bsd-3-clause | kanemra/django-celery,axiom-data-science/django-celery,celery/django-celery,axiom-data-science/django-celery,axiom-data-science/django-celery,kanemra/django-celery,kanemra/django-celery,celery/django-celery,celery/django-celery |
f64cb4a8f5c0331f49d4b90044d990f0f8bcaf47 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.3
- 5.4
env:
- DB=MYSQL CORE_RELEASE=3.5
matrix:
include:
- php: 5.5
env: DB=PGSQL CORE_RELEASE=3.1
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.2
- php: 7.1
env: DB=MYSQL CORE_RELEASE=3.6
before_script:
- composer self-update || true
- phpenv reh... | language: php
sudo: false
php:
- 5.4
env:
- DB=MYSQL CORE_RELEASE=3.5
matrix:
include:
- php: 5.5
env: DB=PGSQL CORE_RELEASE=3.1
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.2
- php: 7.1
env: DB=MYSQL CORE_RELEASE=3.6
before_script:
- composer self-update || true
- phpenv rehash
- ... | Remove PHP 5.3 from Travis build matrix | Remove PHP 5.3 from Travis build matrix | YAML | bsd-3-clause | silverstripe-labs/silverstripe-selectupload,silverstripe-labs/silverstripe-selectupload,silverstripe-labs/silverstripe-selectupload |
af0bb0a663918a078e7f7f44416832baad3e1364 | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- oraclejdk8
before_script:
- echo ==== Setting up toolchain.xml ====
- ls /usr/lib/jvm
- cp kura/setups/toolchains/toolchains-travis.xml ~/.m2/toolchains.xml
- echo ==== Setting up Maven 3.3 for Travis ====
- wget -O maven.tar.gz http://www-eu.apache.org/dist/maven/maven-... | language: java
sudo: false
jdk:
- oraclejdk8
before_script:
- echo ==== Setting up toolchain.xml ====
- ls /usr/lib/jvm
- cp kura/setups/toolchains/toolchains-travis.xml ~/.m2/toolchains.xml
- echo ==== Setting up Maven 3.3 for Travis ====
- wget -O maven.tar.gz http://www-eu.apache.org/dist/maven/maven-... | Fix net.admin tests on Travis | Fix net.admin tests on Travis
net.admin tests are failing on Travis due to missing dos2unix.
Install the dos2unix package.
| YAML | epl-1.0 | markoer/kura,nicolatimeus/kura,ctron/kura,nicolatimeus/kura,nicolatimeus/kura,ctron/kura,ymai/kura,gavinying/kura,ctron/kura,nicolatimeus/kura,cdealti/kura,ctron/kura,cdealti/kura,darionct/kura,cdealti/kura,cdealti/kura,gavinying/kura,darionct/kura,gavinying/kura,nicolatimeus/kura,darionct/kura,cdealti/kura,darionct/ku... |
bb3ea50120190feedba16ca9acdfe2da5ce2990d | .travis.yml | .travis.yml | language: php
before_install:
- npm install -g dredd
- bundle install
- composer install
php:
- "5.5"
- "5.6"
- "7"
script:
- bundle exec cucumber
- vendor/bin/phpunit
| language: php
before_install:
- npm install -g dredd
- bundle install
- composer install
php:
- "5.4"
- "5.5"
- "5.6"
- "7"
script:
- bundle exec cucumber
- vendor/bin/phpunit
| Test php version 5.4 with project | Test php version 5.4 with project
| YAML | mit | ddelnano/dredd-hooks-php,ddelnano/dredd-hooks-php |
b797c13515a366260e00d5362f8454452df440fa | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit --verbose
| language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit --verbose
| Test against PHP 7.1 and 7.2 | Test against PHP 7.1 and 7.2 | YAML | mit | laravel/cashier,laravel/cashier |
c4f4679642ac71a5bf2bfac2c75f047eb1d05103 | .travis.yml | .travis.yml | language: php
php:
- '5.4'
- '5.6'
- '7.0'
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: phpunit
notifications:
on_success: never
on_failure: always
| language: php
php:
- '5.6'
- '7.0'
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: php vendor/bin/phpunit Tests --coverage-text
notifications:
on_success: never
on_failure: always
| Fix php versions and fix script call. | Fix php versions and fix script call.
| YAML | mit | IDCI-Consulting/ExtraFormBundle,IDCI-Consulting/ExtraFormBundle |
ae2b2a98146807209bae5b01718e789800ec47e0 | .travis.yml | .travis.yml | sudo: false
language: node_js
env:
- TEST=lint-ci
- TEST=test-ci
node_js:
- 8
- 7
cache:
apt: true
yarn: true
directories:
- node_modules
- flow-typed
- app/node_modules
addons:
apt:
packages:
- icnsutils
- graphicsmagick
- xz-utils
- xorriso
install:
- ya... | sudo: false
language: node_js
env:
- TEST=lint-ci
- TEST=test-ci
node_js:
- node
- 8
cache:
apt: true
yarn: true
directories:
- node_modules
- flow-typed
- app/node_modules
addons:
apt:
packages:
- icnsutils
- graphicsmagick
- xz-utils
- xorriso
install:
-... | Test on node 8 and the lastest stable release | enhance(ci): Test on node 8 and the lastest stable release
Because yarn no longer supports node 7:
warning You are using Node "7.10.1" which is not supported and may encounter bugs or unexpected behavior. Yarn supports the following semver range: "^4.8.0 || ^5.7.0 || ^6.2.2 || >=8.0.0"
| YAML | mit | LN-Zap/zap-desktop,LN-Zap/zap-desktop,LN-Zap/zap-desktop |
854e319242c02cfb7cccb6a30a90ffe8e7034e65 | .travis.yml | .travis.yml | language: python
python:
- '2.7'
- '3.5'
- '3.5-dev'
- '3.6'
- '3.6-dev'
before_install:
- openssl aes-256-cbc -K $encrypted_a288ee1b388d_key -iv $encrypted_a288ee1b388d_iv
-in tests/test_data.tar.bz2.enc -out tests/test_data.tar.bz2 -d
- tar jxf tests/test_data.tar.bz2 -C tests
install:
- pip install -U pip pytest-c... | language: python
cache: pip
sudo: false
matrix:
include:
- python: 2.7
- python: 3.5
- python: 3.6
- python: 3.7
dist: xenial
sudo: yes
- python: nightly
dist: xenial
sudo: yes
- python: pypy
- python: pypy3
before_install:
- openssl aes-256-cbc -K $encrypted_a288ee... | Enable testing for more recent python3.7 and pip | Enable testing for more recent python3.7 and pip
| YAML | mit | erocarrera/pefile |
de86b0f0389d5e974e52c4e4631fe0633ba5bee4 | .travis.yml | .travis.yml | sudo: false
cache: bundler
language: ruby
matrix:
include:
- rvm: jruby-9.0.1.0
env: JRUBY_OPTS='--debug' # get more accurate coverage data
- rvm: 2.0.0
- rvm: 2.1.10
- rvm: 2.2.7
- rvm: 2.3.4
- rvm: 2.4.1
- rvm: ruby-head
- rvm: rbx-3
allow_failures:
- rvm: ruby-h... | sudo: false
cache: bundler
language: ruby
matrix:
include:
- rvm: jruby-9.0.1.0
env: JRUBY_OPTS='--debug' # get more accurate coverage data
- rvm: 2.0.0
- rvm: 2.1.10
- rvm: 2.2.7
- rvm: 2.3.4
- rvm: 2.4.1
- rvm: ruby-head
- rvm: rbx-3
allow_failures:
- rvm: ruby-h... | Add a "sanity check" on Travis CI | Add a "sanity check" on Travis CI
| YAML | mit | pocke/rubocop,tdeo/rubocop,deivid-rodriguez/rubocop,tejasbubane/rubocop,jfelchner/rubocop,meganemura/rubocop,bbatsov/rubocop,sue445/rubocop,haziqhafizuddin/rubocop,iGEL/rubocop,tejasbubane/rubocop,rrosenblum/rubocop,maxjacobson/rubocop,maxjacobson/rubocop,bquorning/rubocop,jmks/rubocop,scottmatthewman/rubocop,b-t-g/rub... |
f89e5c87dcfaad8761ba1d1dbcf70c8605ba091d | .travis.yml | .travis.yml | language: node_js
matrix:
include:
- node_js: "6"
- node_js: "5"
env: BABEL=true
- node_js: "4"
env: BABEL=true
- node_js: "0.12"
env: BABEL=true
- node_js: "0.10"
env: BABEL=true
script: "[[ $BABEL == true ]] && npm run test:babel || npm test"
after_success:
- npm run t... | language: node_js
matrix:
include:
- node_js: "7"
- node_js: "6"
- node_js: "4"
env: BABEL=true
- node_js: "0.12"
env: BABEL=true
- node_js: "0.10"
env: BABEL=true
script: "[[ $BABEL == true ]] && npm run test:babel || npm test"
after_success:
- npm run travis-coverage
| Remove node v5 tests in favor of v7 | Remove node v5 tests in favor of v7
| YAML | mit | garthenweb/bubleify |
1b93db3ee266fe334f639706c026d34e54880a0f | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.2"
branches:
only:
- master
before_install:
- npm install -g bower
- npm install -g gulp
install:
- npm install
- bower install
script: gulp | language: node_js
node_js:
- "4.2"
branches:
only:
- master
before_install:
- npm install -g bower
- npm install -g gulp
install:
- npm install
- bower install
script: gulp build | Update config to fix latest issues | Update config to fix latest issues
| YAML | mit | kelyvin/kelyvin-ghost-theme,newgene/caffeine-theme,andrewlock/caffeine-theme,andrewlock/caffeine-theme,kelyvin/kelyvin-ghost-theme,kelyvin/caffeine-theme,newgene/caffeine-theme |
b775c3de33b73e1e4de260e9fe83142388dbeafd | .travis.yml | .travis.yml | sudo: required
language: generic
services:
- docker
script:
- docker build -t lab41/base-notebook 01_base_notebook
after_success:
- echo "TRAVIS_BRANCH\: $TRAVIS_BRANCH";
echo "TRAVIS_REPO_SLUG\: $TRAVIS_REPO_SLUG"
- if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_REPO_SLUG" == "Lab41/nbserver" ]; the... | sudo: required
language: generic
services:
- docker
script:
- docker build -t lab41/base-notebook 01_base_notebook
- docker build -t lab41/tensorflow-notebook 02_deep_learning
after_success:
- echo "TRAVIS_BRANCH\: $TRAVIS_BRANCH";
echo "TRAVIS_REPO_SLUG\: $TRAVIS_REPO_SLUG"
- if [ "$TRAVIS_BRANCH" ==... | Add 02_deep_learning compilation to Travis | Add 02_deep_learning compilation to Travis
| YAML | apache-2.0 | kylemvz/nbserver,agude/nbserver,Lab41/nbserver,agude/nbserver,Lab41/nbserver,kylemvz/nbserver |
0b9a3decd744dd8deada0fcfea5cdbd034b4ef8d | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.6
before_install:
- go get github.com/mattn/goveralls
- go get -u github.com/signalfx/gobuild
- go get -u github.com/golang/lint/golint
- go get -u github.com/opennota/check/cmd/aligncheck
- go get -u github.com/opennota/check/cmd/structcheck
- go get -u github.com/open... | language: go
sudo: false
go:
- 1.6
before_install:
- go get -u github.com/signalfx/gobuild
- go get -u github.com/alecthomas/gometalinter
- gometalinter --install --update
install:
- echo -e "Host heroku.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- echo -e "Host github.com\n\tStrictHostKeyChec... | Use gometalinter's commands to install all the linters | Use gometalinter's commands to install all the linters
| YAML | apache-2.0 | signalfx/golib,signalfx/golib |
cd7797dc7cd772007e5cba150f1cf86c1033f5c0 | .travis.yml | .travis.yml | language: python
python:
- '3.7'
- '3.8'
cache:
pip: true
directories:
- $HOME/.cache/pre-commit
before_install:
- pip install -U pip
install:
- pip install -r requirements.txt
- pip install -r requirements_test.txt
before_script:
- mv secrets_dummy.yaml secrets.yaml
- pre-commit install-hooks
scr... | dist: bionic
language: python
python:
- '3.7'
- '3.8'
cache:
pip: true
directories:
- $HOME/.cache/pre-commit
before_install:
- pip install -U pip
install:
- pip install -r requirements.txt
- pip install -r requirements_test.txt
before_script:
- mv secrets_dummy.yaml secrets.yaml
- pre-commit inst... | Update TravisCI configuration to use Ubuntu 18.04 | Update TravisCI configuration to use Ubuntu 18.04
| YAML | mit | davidorlea/homeassistant-config,davidorlea/homeassistant-config,davidorlea/homeassistant-config |
0b515968f77f75baca546c301902b6785539228f | .travis.yml | .travis.yml | notifications:
email:
recipients:
- tim@takkconsulting.co.uk
language: node_js
node_js:
- "6"
- "7"
- "8"
- "9"
- "10"
- "11"
- "12"
| notifications:
email:
recipients:
- tim@takkconsulting.co.uk
language: node_js
node_js:
- "8"
- "9"
- "10"
- "11"
- "12"
| Remove node 6 and 7 support | Remove node 6 and 7 support
| YAML | mit | timbeadle/grunt-cfpathcheck,timbeadle/grunt-cfpathcheck |
4b51ca3018c32f51b9f49b924ea29e9d7149b025 | .travis.yml | .travis.yml | language: ruby
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y texlive-latex-base texlive-latex-recommended
before_script:
- createdb -U travis travis
after_failure:
- "pwd"
- "cat ./spec/tmp/latex.err"
- "cat ./spec/tmp/example1.log"
- "cat ./spec/tmp/psql.out"
bundler_args: --without... | language: ruby
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y texlive-latex-base texlive-latex-recommended
before_script:
- createdb -U travis travis
after_failure:
- "pwd"
- "cat ./spec/tmp/latex.err"
- "cat ./spec/tmp/example1.log"
- "cat ./spec/tmp/psql.out"
bundler_args: --without... | Fix failing db test when db already exists. | Fix failing db test when db already exists.
| YAML | mit | ddoherty03/fat_table,ddoherty03/fat_table |
6046fa8b52aab71c9b17b1fb4e57ec4302411456 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev"
- "pypy"
install:
- pip install --upgrade setuptools coveralls
- python setup.py develop
script:
- coverage run --source=flowlogs_reader setup.py test
after_success:
- coveralls
| language: python
dist: xenial
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "pypy2.7-6.0"
- "pypy3.5-6.0"
install:
- pip install --upgrade setuptools coveralls
- python setup.py develop
script:
- coverage run --source=flowlogs_reader setup.py test
after_success:
- cov... | Update Python versions for testing | Update Python versions for testing | YAML | apache-2.0 | obsrvbl/flowlogs-reader |
f9e01f52687331fa78d3ebb3a6130442cc17e8e7 | .travis.yml | .travis.yml | language: cpp
os:
- linux
- osx
addons:
apt:
packages:
- libboost-dev
- libicu-dev
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install boost ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install icu4c ; fi
s... | language: cpp
os:
- linux
- osx
dist: trusty
sudo: false
addons:
apt:
packages:
- libboost-dev
- libicu-dev
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install boost ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ... | Use a more modern Ubuntu version for Travis. | Use a more modern Ubuntu version for Travis.
| YAML | apache-2.0 | thomaskrause/graphANNIS,thomaskrause/graphANNIS,thomaskrause/graphANNIS,thomaskrause/graphANNIS,thomaskrause/graphANNIS,thomaskrause/graphANNIS,thomaskrause/graphANNIS |
5e2d3146e4d066838eb1bff530928e01a368ce04 | .travis.yml | .travis.yml | before_install:
- mysql -uroot -Dmysql -e 'UPDATE user SET password=PASSWORD("root") WHERE user="root"; FLUSH PRIVILEGES;'
install:
- pip install flake8
- sudo ./setup.sh
before_script:
flake8 .
script:
- INBOX_ENV=test py.test tests
| before_install:
- mysql -uroot -Dmysql -e 'UPDATE user SET password=PASSWORD("root") WHERE user="root"; FLUSH PRIVILEGES;'
install:
- sudo pip install flake8
- sudo ./setup.sh
before_script:
flake8 .
script:
- INBOX_ENV=test py.test tests
| Make Travis try extra hard to run flake8+pep | Make Travis try extra hard to run flake8+pep
| YAML | agpl-3.0 | closeio/nylas,jobscore/sync-engine,closeio/nylas,closeio/nylas,jobscore/sync-engine,nylas/sync-engine,nylas/sync-engine,nylas/sync-engine,closeio/nylas,nylas/sync-engine,jobscore/sync-engine,jobscore/sync-engine |
f3eb29f1c037e2adf048211d6b5a5c080152b652 | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
install:
- composer global require "fxp/composer-asset-plugin:~1.0.0" --no-plugins
- composer install --no-interaction --prefer-source
script: vendor/bin/phpunit | language: php
php:
- 7.0
- 7.1
install:
- composer global require fxp/composer-asset-plugin --no-plugins
- composer install --no-interaction --prefer-source
script: vendor/bin/phpunit | Solve problems with Yii2 dependencies | Solve problems with Yii2 dependencies
| YAML | mit | mikemadisonweb/yii2-rabbitmq |
1349267471d0f2ca4055133f3a94ebf185234f1b | .travis.yml | .travis.yml | language: python
before_install:
- wget -nc https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh
- bash Miniconda-latest-Linux-x86_64.sh -b -p conda
- source conda/bin/activate root
- conda install -y -q -c https://conda.anaconda.org/rdkit rdkit pytables bsddb
install:
- pip install -r require... | language: python
before_install:
- wget -nc https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh
- bash Miniconda-latest-Linux-x86_64.sh -b -p conda
- source conda/bin/activate root
- conda install -y -q -c https://conda.anaconda.org/rdkit rdkit pytables bsddb pandas coverage sphinx
install:
-... | Install deps using conda instead of pip, to reduce Travis-CI build time. | Install deps using conda instead of pip, to reduce Travis-CI build time.
| YAML | apache-2.0 | 3D-e-Chem/kripodb,3D-e-Chem/python-modified-tanimoto,3D-e-Chem/kripodb |
30c716c46da3833b38ac298f32f42b1efb1a3824 | .travis.yml | .travis.yml | language: android
android:
components:
# Uncomment the lines below if you want to
# use the latest revision of Android SDK Tools
- platform-tools
- tools
# The BuildTools version used by your project
- build-tools-23.0.3
# The SDK version used to compile your project
- android-23
... | language: android
android:
components:
# Uncomment the lines below if you want to
# use the latest revision of Android SDK Tools
- platform-tools
- tools
# The BuildTools version used by your project
- build-tools-23.0.3
# The SDK version used to compile your project
- android-23
... | Revert "Add info logging to find the build error" | Revert "Add info logging to find the build error"
This reverts commit ee15db9816b4cb252a51a49e33bfa9e309ff3472.
| YAML | apache-2.0 | passsy/CompositeAndroid,passsy/CompositeAndroid |
bc4e7cb64ecc3308830bcb17663bd5ddf9c99111 | .travis.yml | .travis.yml | language: node_js
node_js:
- '10'
deploy:
provider: releases
api_key: ${GITHUB_TOKEN}
file: build/bundle.js
skip_cleanup: true
on:
repo: DennisSchwartz/mplexviz-ngraph
| language: node_js
node_js:
- '10'
deploy:
provider: releases
api_key: ${GITHUB_TOKEN}
file: build/bundle.js
skip_cleanup: true
on:
branch: master
tags: true
| Update CI config to deploy only on master commits with tags. | Update CI config to deploy only on master commits with tags.
| YAML | mit | DennisSchwartz/mplexviz-ngraph,DennisSchwartz/mplexviz-ngraph |
e632d0dd44a727ab203e998768172931d34767be | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
install: python setup.py build
script: python setup.py test -q
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
install: python setup.py build
script: python setup.py test -q
| Update Travis CI configuration to also test with Python 2.6. | Update Travis CI configuration to also test with Python 2.6.
| YAML | mit | wikimedia/operations-debs-python-mwparserfromhell,SunghanKim/mwparserfromhell,yuvipanda/mwparserfromhell,wikimedia/operations-debs-python-mwparserfromhell,gencer/mwparserfromhell,earwig/mwparserfromhell,yuvipanda/mwparserfromhell,wikimedia/operations-debs-python-mwparserfromhell,yuvipanda/mwparserfromhell,kumasento/mwp... |
553f4e9e2fb9f51ab2149cb204edd1c82b7ed41b | .travis.yml | .travis.yml | language: php
php: [5.4, 5.5, 5.6, hhvm]
matrix:
include:
# Test against librabbitmq cutting-edge
- { php: 5.5, env: LIBRABBITMQ_VERSION=master }
allow_failures:
- php: hhvm
services: [rabbitmq]
before_script:
- sh -c 'if [ "$LIBRABBITMQ_VERSION" != "" ]; then ./tests/bin/install_l... | language: php
php: [5.4, 5.5, 5.6, hhvm]
matrix:
include:
# Test against librabbitmq cutting-edge
- { php: 5.5, env: LIBRABBITMQ_VERSION=master }
- { php: 5.4, env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable' }
allow_failures:
- php: hhvm
services: [rabbitmq]
before_scri... | Add testing against the lowest dependencies on Travis | Add testing against the lowest dependencies on Travis | YAML | mit | odolbeau/swarrot,stof/swarrot,MattKetmo/swarrot,lafourchette/swarrot,swarrot/swarrot,odolbeau/swarrot,olaurendeau/swarrot,metfan/swarrot,olaurendeau/swarrot,stof/swarrot,metfan/swarrot,swarrot/swarrot,MattKetmo/swarrot,lafourchette/swarrot |
b9d15dc1b7f88eec404c17659afe0273df53c64d | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer install
| language: php
sudo: required
dist: trusty
group: edge
php:
- 7.0
- 7.1
- nightly
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer install
| Change Travis environment, add PHP nightly | Change Travis environment, add PHP nightly
| YAML | mit | mpajunen/phamda |
2d97c545ef6a34d932415760f734e514341732e1 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: generic
addons:
apt:
packages:
- python3
- r-base
- gcc
- g++
- default-jdk
- sqlite3
before_install:
# Install a more recent Scala version
- wget http://downloads.lightbend.com/scala/2.11.7/scala-2.11.7.tgz
- sudo dpkg -i scala-2.11.... | sudo: required
dist: trusty
language: generic
addons:
apt:
packages:
- python3
- r-base
- gcc
- g++
- default-jdk
- sqlite3
before_install:
# Install a more recent Scala version
- wget http://www.scala-lang.org/files/archive/scala-2.11.6.deb
- sudo dpkg -i scala-2.11.6.de... | Fix the Scala download URL | Fix the Scala download URL
| YAML | mit | yasserglez/programming-problems,yasserglez/programming-problems,yasserglez/programming-problems,yasserglez/programming-problems,yasserglez/programming-problems |
3b8f628f904e72ceb0ce4ba1746d5a99eb6fdcbc | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.10"
- "iojs"
after_success:
- "npm run post-to-coveralls-io"
| language: node_js
node_js:
- "0.12"
- "0.10"
- "iojs"
- "4"
- "5"
after_success:
- "npm run post-to-coveralls-io"
| Test against more Node versions | Test against more Node versions
Can we test it against new Nodes? I think everything should be fine. | YAML | mit | jayrbolton/flyd,jayrbolton/flyd,jplikesbikes/flyd,paldepind/flyd,jayrbolton/flyd,paldepind/flyd,paldepind/flyd,jplikesbikes/flyd,jplikesbikes/flyd |
2457098d93fb3a0a62d012fbc575af6e5d37bde5 | .travis.yml | .travis.yml | # Travis CI configuration
language: php
services:
- redis-server
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev
script: phpunit
| # Travis CI configuration
language: php
services:
- redis-server
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev
script: phpunit
| Drop PHP 5.4, add 7.0 | Drop PHP 5.4, add 7.0
| YAML | mit | cviebrock/eloquent-sluggable |
fb5b05812753498509e0c45d78ac2a5e70c40b48 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
script: make test
| language: python
python:
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- 3.6
script: make test
| Add testing for Python 3.6 | Add testing for Python 3.6 | YAML | bsd-2-clause | kennethreitz/dj-database-url |
8d4d540c5162628286cc6848ae230eb152b6efd2 | .travis.yml | .travis.yml | language: python
python:
- 2.7
env: DISPLAY=:99
before_install:
- sudo apt-get update
- "/sbin/start-stop-daemon --start --quiet --make-pidfile --pidfile /tmp/custom_xvfb_99.pid --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1024x768x24"
install:
- sudo apt-get install flashplugin-nonfree su... | language: python
python:
- 2.7
env: DISPLAY=:99
before_install:
- sudo apt-get update
- "/sbin/start-stop-daemon --start --quiet --make-pidfile --pidfile /tmp/custom_xvfb_99.pid --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1024x768x24"
install:
- sudo apt-get install flashplugin-nonfree su... | Fix py extension of setup script | Fix py extension of setup script
| YAML | mpl-2.0 | armenzg/firefox-ui-tests,armenzg/firefox-ui-tests,sr-murthy/firefox-ui-tests,myrdd/firefox-ui-tests,armenzg/firefox-ui-tests,Motwani/firefox-ui-tests,chmanchester/firefox-ui-tests,sr-murthy/firefox-ui-tests,whimboo/firefox-ui-tests,myrdd/firefox-ui-tests,chmanchester/firefox-ui-tests,sr-murthy/firefox-ui-tests,Motwani/... |
f00d81bc1d8586d5371354e248e0a6af3c798492 | .travis.yml | .travis.yml | sudo: true
language: erlang
# Choose which platforms you want your builds run against (done in parallel)
env:
# - ST=Squeak-4.4
# - ST=Squeak-4.5
- ST=Squeak-Trunk
matrix:
allow_failures:
- env: ST=Squeak-Trunk
# Boilerplate ... should be no reason to edit the install section
install:
- export PROJEC... | sudo: true
language: erlang
# Choose which platforms you want your builds run against (done in parallel)
env:
- ST=Squeak-4.6
# Boilerplate ... should be no reason to edit the install section
install:
- export PROJECT_HOME="$(pwd)"
- cd $HOME
- wget -q -O builderCI.zip https://github.com/dalehenrich/build... | Use Squeak 4.6 instead of SqueakTrunk | Use Squeak 4.6 instead of SqueakTrunk | YAML | mit | HPI-SWA-Teaching/SWT15-Project-02,HPI-SWA-Teaching/squIRC-Bots |
980dc114926224027baaeffc80013614260a1643 | .travis.yml | .travis.yml | sudo: false
language: node_js
install:
- npm install -g yarn
- yarn self-update
- yarn install
before_script:
- npm run build
- ./index.js init
node_js:
- "7"
notifications:
email: false
webhooks: http://cq-dokidokivisual.rhcloud.com/travis
# blacklist
branches:
except:
- tmp
cache:
yarn:... | sudo: false
language: node_js
before_script:
# - yarn install # TravisCI runs `yarn` in install phase.
- npm run build
- ./index.js init
node_js:
- "7"
notifications:
email: false
webhooks: http://cq-dokidokivisual.rhcloud.com/travis
# blacklist
branches:
except:
- tmp
cache:
yarn: true
dire... | Remove 'install' section to install by TravisCI's builtin script. | Remove 'install' section to install by TravisCI's builtin script.
| YAML | mit | karen-irc/karen,karen-irc/karen |
fc81f82844b16713976e31eec802adcf62a056d7 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
| rvm:
- 1.8.7
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
| Remove 1.9.2 from Travis CI. Is anyone using that one still? | Remove 1.9.2 from Travis CI. Is anyone using that one still?
| YAML | mit | Mange/cucumber-the |
f6ecd89f553bfa194fe866ec272cb57d731163bb | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
matrix:
fast_finish: true
include:
- php: 5.6
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
env: SYMFONY_VERSION=2.6.*
- php: 5.6
env: SYMFONY_VERSION=2.7.*
- php: 5.6
env: SYMFONY_VERSION=2... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
matrix:
fast_finish: true
include:
- php: 5.6
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
env: SYMFONY_VERSION=2.6.*
- php: 5.6
env: SYMFONY_VERSION=2.7.*
- php: 5.6
env: SYMFONY_VERSION=2... | Use Coveralls from bin dir | Use Coveralls from bin dir
| YAML | mit | scheb/two-factor-bundle,scheb/two-factor-bundle |
a6c5019ec1021387a01afd2085af029ef0b17174 | .travis.yml | .travis.yml | language: objective-c
script:
- xctool -workspace VENTouchLock.xcworkspace -scheme VENTouchLockTests -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
- xctool test -workspace VENTouchLock.xcworkspace -scheme VENTouchLockTests -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
- xctool -workspace VENTouchLockSample/VENTouchLockSample.xc... | language: objective-c
script:
- xctool -workspace VENTouchLock.xcworkspace -scheme VENTouchLockTests -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
- xcodebuild test -workspace VENTouchLock.xcworkspace -scheme VENTouchLockTests -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
- xctool -workspace VENTouchLockSample/VENTouchLockSampl... | Use xcodebuild for unit tests in order to use keychain | Use xcodebuild for unit tests in order to use keychain
| YAML | mit | msdgwzhy6/VENTouchLock,cyupa/VENTouchLock,abhuzz/VENTouchLock,scottphc/VENTouchLock,lijie121210/VENTouchLock,SympleHealth/VENTouchLock,1debit/VENTouchLock,venmo/VENTouchLock |
2c13fcd30f900d6118367f565ef21c3e70333a5f | .travis.yml | .travis.yml | ---
sudo: false
language: ruby
before_install:
- rvm reinstall $TRAVIS_RUBY_VERSION --patch
http://github.com/k0kubun/ruby/commit/6747055326e634899f0efb0ba7cf46.patch
install:
- gem update --system --no-document || test true
- gem install bundler --no-document || test true
- bundle install --jobs 3 --... | ---
sudo: false
language: ruby
before_install:
- rvm reinstall $TRAVIS_RUBY_VERSION --patch
http://github.com/k0kubun/ruby/commit/6747055326e634899f0efb0ba7cf46.patch
install:
- gem update --system --no-document || test true
- gem install bundler --no-document || test true
- bundle install --jobs 3 --... | Test against latest patch level rubies | Test against latest patch level rubies
| YAML | mit | deivid-rodriguez/pry-byebug,stephenprater/pry-byebug,andrewfader/pry-byebug |
d9ebead884f3cb210401dd8203fa56c82242b631 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.0.0
- 2.1.0
- 2.2.0
bundler_args: --retry=3 --jobs=3
script: bundle exec rspec spec
notifications:
emails: false
| sudo: false
language: ruby
rvm:
- 2.0.0
- 2.1.0
- 2.2.0
- 2.3.0-preview1
bundler_args: --retry=3 --jobs=3
script: bundle exec rspec spec
notifications:
emails: false
| Add ruby 2.3.0 preview to build list | Add ruby 2.3.0 preview to build list
| YAML | mit | jacobbednarz/envato-ruby-sdk,jacobbednarz/envato-ruby-sdk |
6fe73fe6c8d181847623123a6b55f702cefd1302 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
fast_finish: true
install:
- travis_retry composer install
script:
- phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- if [ "$TRAVI... | language: php
sudo: false
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
fast_finish: true
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer install
script:
- phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- wget htt... | Enable caching of dependencies installed with Composer | Enhancement: Enable caching of dependencies installed with Composer
| YAML | mit | thephpleague/uri-schemes,mleko/url,thephpleague/uri-manipulations,localheinz/uri,localheinz/url,KorvinSzanto/uri,thephpleague/uri-parser |
6a71271a7c355f22a783c0f4239d041be0d9197b | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.0
- 2.1
- 2.2
- 2.3.0
- jruby-21mode
| language: ruby
rvm:
- "2.0"
- "2.1"
- "2.2"
- "2.3.0"
| Update Travis CI config and remove JRuby | Update Travis CI config and remove JRuby | YAML | mit | ai/rails-sass-images |
f0e4d8b11606d24caf08d7565db61f92f743b978 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.1
before_script:
- brew install couchdb
- couchdb &
script:
- ./setup.rb
- xcodebuild -workspace ObjectiveCloudant.xcworkspace/ -scheme SwiftCloudant -destination 'platform=iOS Simulator,OS=latest,name=iPhone 4S' build test | xcpretty; exit ${PIPESTATUS[0]}
- pod lib... | language: objective-c
osx_image: xcode7.2
before_script:
- brew install couchdb
- couchdb &
script:
- ./setup.rb
- xcodebuild -workspace ObjectiveCloudant.xcworkspace/ -scheme SwiftCloudant -destination 'platform=iOS Simulator,OS=latest,name=iPhone 6S' build test | xcpretty; exit ${PIPESTATUS[0]}
- pod lib... | Update to xcode 7.2 and use iPhone 6s for tests | Update to xcode 7.2 and use iPhone 6s for tests
| YAML | apache-2.0 | cloudant/swift-cloudant,cloudant/swift-cloudant |
8b9e006e23b0b8e6aaaab0e7ce43b377bf29826e | .travis.yml | .travis.yml | branches:
only:
- production
language: python
python: 2.7
cache:
directories:
- $HOME/.cache/pip
- $HOME/.cache/lektor/builds
install: "pip install Lektor"
script: "lektor build"
deploy:
provider: script
script: "lektor deploy ghpages"
on:
branch: production
| branches:
only:
- production
language: python
python: 2.7
cache:
directories:
- $HOME/.cache/pip
- $HOME/.cache/lektor/builds
# http://stackoverflow.com/a/38216821
# install: "pip install Lektor"
install: "pip install git+https://github.com/singingwolfboy/lektor.git@fix-ghpages-https-deploy#egg=lektor"
sc... | Use temporary bugfix for deployment | Use temporary bugfix for deployment
| YAML | mit | seantis/lektor-seantis-website,seantis/lektor-seantis-website,seantis/lektor-seantis-website |
bb43850424e9c816528d2c313cd117020b12982c | .travis.yml | .travis.yml | language: cpp
os:
# - linux
- osx
compiler:
- gcc
- clang
osx_image: xcode9.2
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew tap homebrew/php; brew update; fi
install:
# Install packages from Homebrew/Aptitude
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install swig php71 lua; ... | language: cpp
os:
# - linux
- osx
compiler:
- gcc
- clang
osx_image: xcode9.2
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew tap homebrew/php; brew update; fi
install:
# Install packages from Homebrew/Aptitude
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install swig php71 lua; ... | Remove stray "then" from Travis buildscript | Remove stray "then" from Travis buildscript
| YAML | mit | msteinbeck/tinyspline,msteinbeck/tinyspline,retuxx/tinyspline,msteinbeck/tinyspline,msteinbeck/tinyspline,retuxx/tinyspline,msteinbeck/tinyspline,msteinbeck/tinyspline,msteinbeck/tinyspline,msteinbeck/tinyspline,retuxx/tinyspline |
a42ff6e4773e7ab927a819438d138ffa3f5a694c | .travis.yml | .travis.yml | language: cpp
compiler: gcc
dist: trusty
sudo: required
branches:
only:
- develop
addons:
apt:
sources:
- george-edison55-precise-backports
packages:
- cmake
- cmake-data
install:
- sudo apt-get upgrade --yes
script:
- mkdir build && cd build && cmake .. && make
- ./xzbuf-test | language: cpp
compiler: gcc
dist: trusty
sudo: required
branches:
only:
- develop
addons:
apt:
sources:
- george-edison55-precise-backports
packages:
- cmake
- cmake-data
install:
- sudo apt-get install --yes --only-upgrade cmake-data
- sudo apt-get install --yes --only-upgrade cma... | Update cmake version in Travis CI config. | Update cmake version in Travis CI config.
| YAML | mit | jonathonl/xzbuf |
67c2819aedf269fedd0d1960c0a037cf7ebbe2d2 | .travis.yml | .travis.yml | language: node_js
node_js:
- "9"
- "8"
- "7"
- "6"
- "5"
sudo: false
script:
- npm run test-with-cov
after_success:
- CODECLIMATE_REPO_TOKEN=$CODECLIMATE_TOKEN ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info
git:
depth: 10
| language: node_js
node_js:
- "9"
- "8"
- "7"
- "6"
- "5"
sudo: false
test:
- npm run test-with-cov
deploy:
provider: npm
email: peter@reidweb.com
api_key:
secure: HtlC7Ylj1Pv7iQHAvmRsClO26jOHfe/s+JUWZwNSbMM7x49XQxjSEuP+XD1kWNBlZ4SM432qRoSgojtBusXXWPcJ7OzH9kAnvHafmR9t70lNXW0yazycIhFooxAzYZvhRTRmP... | Add auto-deployment stage to Travis config | chore(ci): Add auto-deployment stage to Travis config
| YAML | mit | ReidWeb/GitInspector-CSV |
a66a197d7da4a2cf5dea92dafdc9e3355ea1944a | .travis.yml | .travis.yml | dist: xenial
sudo: false
language: python
python:
- "3.5"
- "3.6"
- "3.7"
install: "python setup.py -q install"
script: py.test
| dist: xenial
sudo: false
language: python
python:
- "3.5"
- "3.6"
- "3.7"
install:
- pip install .[tests]
script: py.test
| Change Travis-CI install command to use extra | Change Travis-CI install command to use extra
| YAML | mit | delph-in/pydelphin,goodmami/pydelphin |
397466b44b61ade55c9660066625f4675c0ce902 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.6
- 2.2.2
gemfile:
- gemfiles/rails_3.gemfile
- gemfiles/rails_4.gemfile
- gemfiles/rails_4.1.gemfile
- gemfiles/rails_4.2.gemfile
matrix:
exclude:
- rvm: 2.2.2
gemfile: gemfiles/rails_3.gemfile
before_install:
- gem install bundler
script:
- bun... | language: ruby
cache: bundler
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.6
- 2.2.2
gemfile:
- gemfiles/rails_3.gemfile
- gemfiles/rails_4.gemfile
- gemfiles/rails_4.1.gemfile
- gemfiles/rails_4.2.gemfile
matrix:
exclude:
- rvm: 2.2.2
gemfile: gemfiles/rails_3.gemfile
before_install:
- gem inst... | Migrate to new Travis container-based infrastructure | Migrate to new Travis container-based infrastructure
| YAML | mit | Papierkorb/config,Papierkorb/config,Papierkorb/config |
435dcc73ac91718f80d1e4d4a9e969529ec37295 | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
| language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: stable
- rust: beta
| Allow failure on stable and beta, since nightly is required for lazy_static doc test | Allow failure on stable and beta, since nightly is required for lazy_static doc test
| YAML | apache-2.0 | phil-opp/rust-once |
b9bec0b7422fd0b19b1e2d993510054ca36f252b | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 5"
| language: ruby
rvm:
- 1.9.3
- 2.0.0
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 5"
| Add Ruby 2.0.0 to Travis configuration. | Add Ruby 2.0.0 to Travis configuration.
| YAML | mit | tristandunn/cucumber-websocket-example,tristandunn/cucumber-websocket-example |
3749a419ef54cd9945e5b5bbb23570f9b5afbeda | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- np... | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install... | Test with latest Node.js 5 on Travis CI. | Test with latest Node.js 5 on Travis CI.
| YAML | mit | bigeasy/pair,bigeasy/pair |
6c0d5937f53809f82dd2b02f2ba5c5200cd7291d | .travis.yml | .travis.yml | sudo: false
language: cpp
compiler:
- gcc
- clang
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.7" CC="gcc-4.7"; fi
script:
- mkdir build
- cd build
- cmake ..
- make
- ctest -D ExperimentalBuild
- ctest -D ExperimentalMemCheck
addons:
apt:
sources:
- ubuntu-toolchai... | sudo: false
language: cpp
compiler:
- gcc
- clang
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.7" CC="gcc-4.7"; fi
script:
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} ..
- make
- ctest -D ExperimentalBuild
- ctest -D Ex... | Build types added to matrix. | CI: Build types added to matrix.
| YAML | bsd-2-clause | offa/seasocks,mattgodbolt/seasocks,offa/seasocks,offa/seasocks,mattgodbolt/seasocks,offa/seasocks,mattgodbolt/seasocks,mattgodbolt/seasocks,mattgodbolt/seasocks,offa/seasocks,mattgodbolt/seasocks,offa/seasocks |
b82cf17ed296cd7b625bdd4500d91e916feb1ba0 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without=development
rvm:
- jruby
- rbx
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
matrix:
allow_failures:
- rvm: rbx
- rvm: jruby
fast_finish: true
| language: ruby
rvm:
- jruby
- rbx
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
matrix:
allow_failures:
- rvm: rbx
- rvm: jruby
fast_finish: true
| Install dev gems on Travis CI | Install dev gems on Travis CI
| YAML | mit | nTraum/ETF2L |
a56722114be5d4e0f4789cdf0d9e28be91d927fc | .travis.yml | .travis.yml | language: rust
rust:
- stable
- bet
- nightly
matrix:
allow_failures:
- rust: nightly
| language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
| Fix typo in Travis config | Fix typo in Travis config
| YAML | unlicense | scott-linder/rustpn |
0fdf8569e67bc75b8e8984c2c2fcd6bf3d4edad9 | .travis.yml | .travis.yml | language: csharp
mono: latest
dotnet: 2.0.0
script:
- cd src
- dotnet test
| language: csharp
mono: latest
dotnet: 2.0.0
script:
- cd src/Tests
- dotnet test
| Change working directory to test suite directory | Change working directory to test suite directory | YAML | mit | mikeobrien/TDMSReader,mikeobrien/TDMSReader,mikeobrien/TDMSReader |
b39e82a864425fb42a3cab94dd6ad803fdee3125 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8" | language: node_js
sudo: false
node_js:
- "0.11"
- "0.10"
- "0.8"
| Enable Travis builds using Docker | Enable Travis builds using Docker | YAML | mit | iwhitfield/neek,zackehh/neek |
2602e470823128b116d9c4208eadf59b411e0001 | .travis.yml | .travis.yml | language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- cpanm --quiet --notest Devel::Cover::Repo... | language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- cpanm --... | Fix whitespace in YAML: tabs no longer allowed | Fix whitespace in YAML: tabs no longer allowed
| YAML | artistic-2.0 | wu-lee/module-release,wu-lee/module-release |
289998f465c881892e7ee9d7779b1bf9e638571b | .travis.yml | .travis.yml | sudo: false
# We are using our own python
language: c
addons:
apt:
packages:
- wget
before_install:
- wget http://ftp.openquake.org/travis/openquake-env-setup-py3-precise64.run
- chmod +x openquake-env-setup-py3-precise64.run
env:
LD_LIBRARY_PATH=$HOME/openquake/lib
PATH=$HOME/openquake/bin:$P... | sudo: false
# We are using our own python
language: c
addons:
apt:
packages:
- wget
before_install:
- wget http://ftp.openquake.org/travis/openquake-env-setup-py3-precise64.run
- chmod +x openquake-env-setup-py3-precise64.run
env:
LD_LIBRARY_PATH=$HOME/openquake/lib
PATH=$HOME/openquake/bin:$P... | Make a test run with just nosetests -v -a '!slow' | Make a test run with just nosetests -v -a '!slow'
Former-commit-id: 88638c1ad0674a29d66c281caf3ea7435a63a48e [formerly 810cf7503d1b400a51461ae5e541a4002bb3606b] [formerly 810cf7503d1b400a51461ae5e541a4002bb3606b [formerly 83766620c946a5862511a4bd9ae969346e788d4d]]
Former-commit-id: 28b377c5181d608ee8b108e71a743476225... | YAML | agpl-3.0 | gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine |
ca27786ce4f5628645ba8541859bb34d7bf4af34 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.8'
- '0.10'
- '0.11'
before_script:
- npm install -g grunt-cli
matrix:
allow_failures:
- node_js: '0.11'
| language: node_js
node_js:
- '0.8'
- '0.10'
- '0.11'
before_script:
- npm install -g grunt-cli
matrix:
fast_finish: true
allow_failures:
- node_js: '0.11'
| Allow `fast_finish` with Travis CI. | Allow `fast_finish` with Travis CI.
See http://blog.travis-ci.com/2013-11-27-fast-finishing-builds/
| YAML | mit | joshuaspence/lesscsslint |
dcbed055357819543c7d07144dc1c8859e9a73c6 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
install: pip install -r requirements.txt
script: python tests/test.py unit
branches:
only:
- travis-ci
| language: python
python:
- "2.6"
- "2.7"
before_install:
- sudo apt-get update
- sudo apt-get install swig
install: pip install -r requirements.txt
script: python tests/test.py unit
branches:
only:
- travis-ci
| Install swig (needed for M2Crypto) | Install swig (needed for M2Crypto)
| YAML | mit | appneta/boto,rjschwei/boto,kouk/boto,darjus-amzn/boto,Timus1712/boto,ric03uec/boto,jameslegg/boto,alfredodeza/boto,cyclecomputing/boto,janslow/boto,andresriancho/boto,shaunbrady/boto,felix-d/boto,varunarya10/boto,pfhayes/boto,revmischa/boto,vishnugonela/boto,israelbenatar/boto,SaranyaKarthikeyan/boto,Pretio/boto,vijayl... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.