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 |
|---|---|---|---|---|---|---|---|---|---|
7958a50e210588bd1b57ab6b184f694a6615d01e | .travis.yml | .travis.yml | notifications:
email:
recipients:
- tim.beadle@gmail.com
language: node_js
node_js:
- "10"
- "9"
- "8"
- "7"
- "6"
- "5"
- "4"
before_script:
- npm install -g grunt-cli
| notifications:
email:
recipients:
- tim.beadle@gmail.com
language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
- "8"
- "9"
- "10"
before_script:
- npm install -g grunt-cli
| Reorder nodejs versions in ascending order | [CHORE] Reorder nodejs versions in ascending order
| YAML | mit | Bartvds/tv4-reporter,timbeadle/tv4-reporter |
9e568d82d9a7c411a76db47e4cd1875ae655759b | .travis.yml | .travis.yml | sudo: false
language: php
php:
- "7.1"
- "7.2"
- "7.3"
cache:
directories:
- vendor
- $HOME/.composer/cache
env:
matrix:
- DEPENDENCIES=latest
- DEPENDENCIES=oldest
before_install:
- phpenv config-rm xdebug.ini || echo "xdebug not available"
install:
- >
echo;
if [ "$DEPENDENCIES" = "latest" ]; then
echo "Installing the latest dependencies";
composer update --with-dependencies
else
echo "Installing the lowest dependencies";
composer update --with-dependencies --prefer-lowest
fi;
composer show;
script:
- >
echo;
echo "Validating the composer.json";
composer validate --no-check-all --no-check-lock --strict;
- >
echo;
echo "Linting all PHP files";
composer ci:lint;
- >
echo;
echo "Running the Psalm static analyzer";
composer ci:psalm;
- >
echo;
echo "Running the PHPUnit tests";
composer ci:tests;
- >
echo;
echo "Running PHP_CodeSniffer";
composer ci:sniff;
| sudo: false
language: php
php:
- "7.1"
- "7.2"
- "7.3"
cache:
directories:
- $HOME/.composer/cache
env:
matrix:
- DEPENDENCIES=latest
- DEPENDENCIES=oldest
before_install:
- phpenv config-rm xdebug.ini || echo "xdebug not available"
install:
- >
echo;
if [ "$DEPENDENCIES" = "latest" ]; then
echo "Installing the latest dependencies";
composer update --with-dependencies
else
echo "Installing the lowest dependencies";
composer update --with-dependencies --prefer-lowest
fi;
composer show;
script:
- >
echo;
echo "Validating the composer.json";
composer validate --no-check-all --no-check-lock --strict;
- >
echo;
echo "Linting all PHP files";
composer ci:lint;
- >
echo;
echo "Running the Psalm static analyzer";
composer ci:psalm;
- >
echo;
echo "Running the PHPUnit tests";
composer ci:tests;
- >
echo;
echo "Running PHP_CodeSniffer";
composer ci:sniff;
| Stop caching vendor/ on Travis CI | [BUGFIX] Stop caching vendor/ on Travis CI
Caching this directory creates problems between builds with different
PHP versions and highest/lowest dependencies.
Caching the Composer cache directory should suffice to not download
the packages.
| YAML | mit | mjaschen/collmex |
f9e75e250998e209015e56198210ec8abbafae9d | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8
# Important to specify the simulator SDK, otherwise Travis CI will attempt to
# build for the real iPhone and fail due to code-signing issues.
# See https://docs.travis-ci.com/user/languages/objective-c for details.
xcode_sdk: iphonesimulator
before_install:
- brew update
- brew uninstall xctool && brew install --HEAD xctool
xcode_project: NetworkReachability.xcodeproj
xcode_scheme: NetworkReachability
| language: objective-c
osx_image: xcode8
# Important to specify the simulator SDK, otherwise Travis CI will attempt to
# build for the real iPhone and fail due to code-signing issues.
# See https://docs.travis-ci.com/user/languages/objective-c for details.
xcode_sdk: iphonesimulator
before_install:
- brew update
- brew outdated xctool || brew upgrade xctool
xcode_project: NetworkReachability.xcodeproj
xcode_scheme: NetworkReachability
| Upgrade Xcode Tool rather than install from HEAD | Upgrade Xcode Tool rather than install from HEAD
| YAML | mit | royratcliffe/NetworkReachability,royratcliffe/NetworkReachability |
2fbbb3ad2ee522305f7e928e7a6a670d2582af39 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.1
- jruby
gemfile:
- gemfiles/ar30.gemfile
- gemfiles/ar31.gemfile
- gemfiles/ar32.gemfile
- gemfiles/ar40.gemfile
- gemfiles/ar41.gemfile
- gemfiles/ar42.gemfile
sudo: false
services:
- mysql
- postgresql
before_script:
- mysql -e 'create database makara_test;'
- psql -c 'create database makara_test;' -U postgres
before_install:
- gem update --system 2.1.11
- gem --version
matrix:
exclude:
- rvm: 1.8.7
gemfile: gemfiles/ar40.gemfile
- rvm: 1.9.2
gemfile: gemfiles/ar40.gemfile
- rvm: 1.8.7
gemfile: gemfiles/ar41.gemfile
- rvm: 1.9.2
gemfile: gemfiles/ar41.gemfile
- rvm: 1.8.7
gemfile: gemfiles/ar42.gemfile
- rvm: 1.9.2
gemfile: gemfiles/ar42.gemfile
| language: ruby
rvm:
- 2.0.0
- 2.1.1
- jruby
gemfile:
- gemfiles/ar30.gemfile
- gemfiles/ar31.gemfile
- gemfiles/ar32.gemfile
- gemfiles/ar40.gemfile
- gemfiles/ar41.gemfile
- gemfiles/ar42.gemfile
sudo: false
services:
- mysql
- postgresql
before_script:
- mysql -e 'create database makara_test;'
- psql -c 'create database makara_test;' -U postgres
before_install:
- gem update --system 2.1.11
- gem --version | Drop Ruby < 2.0 builds | Drop Ruby < 2.0 builds
| YAML | mit | wanelo/makara,instacart/makara,Drakula2k/makara,taskrabbit/makara |
a7f104288ea65f5292c892d89bccd5cdea6c5716 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
install:
- composer install
script:
- vendor/bin/pake $TASK
env:
- TASK="phpunit"
cache:
directories:
- vendor
branches:
only:
- master
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
install:
- composer install
script:
- vendor/bin/pake $TASK
env:
- TASK="phpunit"
matrix:
allow_failures:
- php: 7
- php: hhvm
cache:
directories:
- vendor
branches:
only:
- master
| Allow PHP 7 and HHVM to fail | Allow PHP 7 and HHVM to fail
| YAML | mit | mscharley/colourist |
99cb1d0ddb7ab19d73520665975dc6246da47201 | .travis.yml | .travis.yml | language: rust
rust:
- stable
| language: rust
sudo: false
matrix:
include:
- rust: stable
env:
- FEATURES='serialize'
- rust: nightly
env:
- FEATURES='serialize'
- BENCH=1
script:
- |
cargo build --verbose --features "$FEATURES" &&
cargo test --verbose --features "$FEATURES" &&
([ "$BENCH" != 1 ] || cargo bench --verbose --features "$FEATURES")
| Use build matrix, and set 'serialize' feature in Travis build script | Use build matrix, and set 'serialize' feature in Travis build script
| YAML | apache-2.0 | rusticata/tls-parser,rusticata/tls-parser |
c3803c92221a2c8d4ab3e5273df2ad7dbc85bf08 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 6
- 5
- 4
notifications:
email: false
| sudo: false
language: node_js
node_js:
- 6
- 4
notifications:
email: false
| Remove a test case for Node.js v5 | Remove a test case for Node.js v5
| YAML | mit | 1000ch/grunt-image |
23d4655fc045c23fc673c8cad867bea850e0185d | .travis.yml | .travis.yml | language: ruby
rvm:
- ree
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- rbx-18mode
- rbx-19mode
- jruby-18mode
- jruby-19mode
script: "bundle exec rake test"
gemfile:
- gemfiles/3.0.gemfile
- gemfiles/3.1.gemfile
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
matrix:
exclude:
- rvm: jruby-18mode
gemfile: gemfiles/4.0.gemfile
- rvm: rbx-18mode
gemfile: gemfiles/4.0.gemfile
- rvm: 1.8.7
gemfile: gemfiles/4.0.gemfile
- rvm: ree
gemfile: gemfiles/4.0.gemfile
- rvm: 1.9.2
gemfile: gemfiles/4.0.gemfile
| language: ruby
rvm:
- ree
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- rbx-2
- jruby-18mode
- jruby-19mode
script: "bundle exec rake test"
gemfile:
- gemfiles/3.0.gemfile
- gemfiles/3.1.gemfile
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
matrix:
exclude:
- rvm: jruby-18mode
gemfile: gemfiles/4.0.gemfile
- rvm: 1.8.7
gemfile: gemfiles/4.0.gemfile
- rvm: ree
gemfile: gemfiles/4.0.gemfile
- rvm: 1.9.2
gemfile: gemfiles/4.0.gemfile
| Test against supported versions of Rubinius. | Test against supported versions of Rubinius.
See http://docs.travis-ci.com/user/languages/ruby/#Rubinius for
details
| YAML | mit | transloadit/rails-sdk |
c5f7f848be3ddc564dbf31533f153db21b61442a | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: node_js
matrix:
include:
#- os: osx
- os: linux
node_js:
- 8
env:
- ELECTRON_CACHE=$HOME/.electron
cache:
directories:
- $HOME/.electron
- node_modules
addons:
apt:
packages:
- icnsutils
install:
- npm install
script:
- npm run dist
| sudo: required
dist: trusty
language: node_js
matrix:
include:
#- os: osx
- os: linux
node_js:
- 8
env:
- ELECTRON_CACHE=$HOME/.electron
cache:
directories:
- $HOME/.electron
- node_modules
addons:
apt:
packages:
- icnsutils
install:
- npm install
#script:
# - npm run dist
| Disable linux dist for a meanwhile | Disable linux dist for a meanwhile
| YAML | apache-2.0 | meltedspark/electron-angular2-native,meltedspark/electron-angular2-native,meltedspark/electron-angular2-native,meltedspark/electron-angular2-native |
d19e9fe2baeba34eb9073c1dcf6dc9f72a3d5e9b | azure-pipelines.yml | azure-pipelines.yml | # Maven package Java project Web App to Linux on Azure
# Build your Java project and deploy it to Azure as a Linux web app
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/java
trigger:
- master
- develop
pool:
vmImage: 'ubuntu-latest'
steps:
- task: Maven@3
inputs:
mavenPomFile: 'pom.xml'
mavenOptions: '-Xmx3072m'
javaHomeOption: 'JDKVersion'
jdkVersionOption: '1.8'
jdkArchitectureOption: 'x64'
publishJUnitResults: true
testResultsFiles: '**/surefire-reports/TEST-*.xml'
goals: 'package'
- task: PublishPipelineArtifact@1
inputs:
targetPath: '$(System.DefaultWorkingDirectory)/target/mouseinventory.war'
artifact: 'mouseinventory' | # Maven package Java project Web App to Linux on Azure
# Build your Java project and deploy it to Azure as a Linux web app
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/java
trigger:
- master
- develop
pool:
vmImage: 'ubuntu-latest'
steps:
- task: Maven@3
inputs:
mavenPomFile: 'pom.xml'
mavenOptions: '-Xmx3072m'
javaHomeOption: 'JDKVersion'
jdkVersionOption: '1.8'
jdkArchitectureOption: 'x64'
publishJUnitResults: true
testResultsFiles: '**/surefire-reports/TEST-*.xml'
goals: 'package'
- task: PublishPipelineArtifact@1
inputs:
targetPath: '$(System.DefaultWorkingDirectory)/target/ROOT.war'
artifact: 'mouseinventory' | Update pipeline with new war name | Update pipeline with new war name
| YAML | agpl-3.0 | musIndex/mouseinventory,musIndex/mouseinventory,musIndex/mouseinventory |
0c8997131de87cab184e73fed0a853143508d037 | azure-pipelines.yml | azure-pipelines.yml | strategy:
matrix:
linux:
imageName: 'ubuntu-latest'
windows:
imageName: 'windows-latest'
trigger:
- master
pool:
vmImage: $(imageName)
variables:
buildConfiguration: 'Release'
steps:
- task: UseDotNet@2
displayName: 'Install .NET Core SDK (based on global.json)'
inputs:
packageType: 'sdk'
useGlobalJson: true
installationPath: $(Agent.ToolsDirectory)/dotnet
- bash: ./build.sh
condition: or( eq( variables['Agent.OS'], 'Darwin' ), eq( variables['Agent.OS'], 'Linux' ))
displayName: 'build.sh'
- powershell: .\build.cmd
condition: eq( variables['Agent.OS'], 'Windows_NT' )
displayName: 'build.cmd'
### SAMPLE - for if/when we do automated tests
##
# - task: PublishTestResults@2
# inputs:
# testResultsFormat: 'NUnit'
# testResultsFiles: 'bin/TestResults-*.xml'
# #searchFolder: '$(System.DefaultWorkingDirectory)' # Optional
# mergeTestResults: true
| strategy:
matrix:
linux:
imageName: 'ubuntu-latest'
windows:
imageName: 'windows-latest'
trigger:
- master
pool:
vmImage: $(imageName)
variables:
buildConfiguration: 'Release'
steps:
- task: UseDotNet@2
displayName: 'Install .NET Core SDK (based on global.json)'
inputs:
packageType: 'sdk'
useGlobalJson: true
installationPath: $(Agent.ToolsDirectory)/dotnet
- bash: ./build.sh target BuildPackages
condition: or( eq( variables['Agent.OS'], 'Darwin' ), eq( variables['Agent.OS'], 'Linux' ))
displayName: 'build.sh'
- powershell: .\build.cmd target BuildPackages
condition: eq( variables['Agent.OS'], 'Windows_NT' )
displayName: 'build.cmd'
### SAMPLE - for if/when we do automated tests
##
# - task: PublishTestResults@2
# inputs:
# testResultsFormat: 'NUnit'
# testResultsFiles: 'bin/TestResults-*.xml'
# #searchFolder: '$(System.DefaultWorkingDirectory)' # Optional
# mergeTestResults: true
| Build packages in CI though | Build packages in CI though
| YAML | apache-2.0 | TahaHachana/XPlot,fslaborg/XPlot,TahaHachana/XPlot,fslaborg/XPlot,fslaborg/XPlot |
8c4762caa6960fc334f1bb28b0e6dc3e95884273 | azure-pipelines.yml | azure-pipelines.yml | # .NET Desktop
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
pool:
vmImage: 'VS2017-Win2016'
variables:
solution: 'build/*.sln'
buildPlatform: Win32
buildConfiguration: 'Release'
steps:
#Do both 32 bit and 64 bit
- script: |
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
.\bootstrap-vcpkg.bat
.\vcpkg integrate install
call RefreshEnv.cmd
displayName: 'Vcpkg Setup'
- script: |
cd vcpkg
.\vcpkg install openssl-windows:x86-windows-static
displayName: 'OpenSSL Install'
- task: CMake@1
inputs:
CMakeArgs: .. -DBUILD_SLEEPY_DISCORD_EXAMPLES=1 -DCMAKE_TOOLCHAIN_FILE=D:\a\1\s\vcpkg\scripts\buildsystems\vcpkg.cmake -DOPENSSL_USE_STATIC_LIBS=TRUE -DOPENSSL_ROOT_DIR="D:\a\1\s\vcpkg\installed\x86-windows-static" -DBUILD_CPR_TESTS=OFF
- task: VSBuild@1
inputs:
solution: '$(solution)'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)' | # .NET Desktop
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
pool:
vmImage: 'VS2017-Win2016'
variables:
solution: 'build/*.sln'
buildPlatform: Win32
buildConfiguration: 'Release'
steps:
#Do both 32 bit and 64 bit
- script: |
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
.\bootstrap-vcpkg.bat
.\vcpkg integrate install
call RefreshEnv.cmd
displayName: 'Vcpkg Setup'
- script: |
cd vcpkg
.\vcpkg install openssl-windows:x86-windows-static
displayName: 'OpenSSL Install'
- task: CMake@1
inputs:
CMakeArgs: .. -DBUILD_SLEEPY_DISCORD_EXAMPLES=1 -DCMAKE_TOOLCHAIN_FILE=D:\a\1\s\vcpkg\scripts\buildsystems\vcpkg.cmake -DOPENSSL_USE_STATIC_LIBS=TRUE -DOPENSSL_ROOT_DIR="C:\vcpkg\installed\x86-windows-static" -DBUILD_CPR_TESTS=OFF
- task: VSBuild@1
inputs:
solution: '$(solution)'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)' | Fix azure openssl link errors | Fix azure openssl link errors
| YAML | mit | yourWaifu/sleepy-discord,yourWaifu/sleepy-discord,NoNamer64/sleepy-discord,NoNamer64/sleepy-discord,yourWaifu/sleepy-discord |
145b9be7e4bec1f9ed25eb91b59b119f4a588d20 | .travis.yml | .travis.yml | language: java
sudo: false
before_install:
# Install zookeeper
- mkdir /tmp/zookeeper
- wget http://www.eu.apache.org/dist/zookeeper/zookeeper-3.4.8/zookeeper-3.4.8.tar.gz
- tar xzf zookeeper-3.4.8.tar.gz -C /tmp/zookeeper
- cp /tmp/zookeeper/zookeeper-3.4.8/conf/zoo_sample.cfg /tmp/zookeeper/zookeeper-3.4.8/conf/zoo.cfg
- /tmp/zookeeper/zookeeper-3.4.8/bin/zkServer.sh start
- echo "#####################################################################"
- cat conf/scalephant.yaml
- echo "#####################################################################"
cache:
directories:
- $HOME/.m2 | language: java
sudo: false
before_install:
# Install zookeeper
- mkdir /tmp/zookeeper
- wget http://www.eu.apache.org/dist/zookeeper/zookeeper-3.4.8/zookeeper-3.4.8.tar.gz
- tar xzf zookeeper-3.4.8.tar.gz -C /tmp/zookeeper
- cp /tmp/zookeeper/zookeeper-3.4.8/conf/zoo_sample.cfg /tmp/zookeeper/zookeeper-3.4.8/conf/zoo.cfg
- /tmp/zookeeper/zookeeper-3.4.8/bin/zkServer.sh start
# Change config
- sed -i "s/zookeepernodes: .*/zookeepernodes: ['localhost:2181']/" conf/scalephant.yaml
# Dump config
- echo "#####################################################################"
- cat conf/scalephant.yaml
- echo "#####################################################################"
cache:
directories:
- $HOME/.m2 | Change zookeeper node to localhost | Change zookeeper node to localhost | YAML | apache-2.0 | jnidzwetzki/bboxdb,jnidzwetzki/scalephant,jnidzwetzki/scalephant,jnidzwetzki/bboxdb,jnidzwetzki/bboxdb |
bd5b87a4530921aaa6b9915a580c26aa040678bb | .travis.yml | .travis.yml | language: ruby
rvm:
- "2.2.5"
- "2.3.1"
env:
- 'RAILS_VERSION="~> 3.2.0"'
- 'RAILS_VERSION="~> 4.0.0"'
- 'RAILS_VERSION="~> 4.1.0"'
- 'RAILS_VERSION="~> 4.2.0"'
- 'RAILS_VERSION="~> 5.0.0"'
- 'RAILS_VERSION="= 5.1.4"'
- 'RAILS_VERSION="= 5.1.5"'
- 'RAILS_VERSION="~> 5.1.5"'
- 'RAILS_VERSION="~> 5.2.0"'
install:
- bundle update
script: TRAVIS=true bundle exec rake spec
| language: ruby
rvm:
- "2.3.7"
- "2.4.4"
- "2.5.1"
env:
- 'RAILS_VERSION="~> 3.2.0"'
- 'RAILS_VERSION="~> 4.0.0"'
- 'RAILS_VERSION="~> 4.1.0"'
- 'RAILS_VERSION="~> 4.2.0"'
- 'RAILS_VERSION="~> 5.0.0"'
- 'RAILS_VERSION="= 5.1.4"'
- 'RAILS_VERSION="= 5.1.5"'
- 'RAILS_VERSION="~> 5.1.5"'
- 'RAILS_VERSION="~> 5.2.0"'
install:
- bundle update
script: TRAVIS=true bundle exec rake spec
| Stop testing against Ruby 2.2, start 2.4 and 2.5 | Stop testing against Ruby 2.2, start 2.4 and 2.5
| YAML | mit | magnusvk/counter_culture,magnusvk/counter_culture |
c921e4fa7f69f96f9bec549094ab0158e90d17ca | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- ruby-head
- 2.1.1
- 2.1.0
- 2.0.0
- 1.9.3
- jruby-19mode
- jruby-head
- rbx-2.1
- rbx-2.2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
cache: bundler
rvm:
- ruby-head
- 2.1.1
- 2.1.0
- 2.0.0
- 1.9.3
- jruby-19mode
- jruby-head
- rbx-2.1.1
- rbx-2.2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| Use a specific RBX version, attempt at fixing CI. | Use a specific RBX version, attempt at fixing CI.
| YAML | mit | elliotlarson/grape,QuickPay/grape,ruby-grape/grape,klaustopher/grape,peterwillcn/grape,phusion/grape,suan/grape,ronald/grape,ryancheung/grape,brainyandbrown/grape,reprah/grape,xurde/grape,LIQIDTechnology/grape,samotarnik/grape,gencer/grape,cutalion/grape,hnq90/grape,intridea/grape,tildeio/grape,jlfaber/grape,cyberid41/grape,kiela/grape,uberjay/grape,balasankarc/grape,pvijayror/grape,croeck/grape,rubyinhell/grape,zbelzer/grape,virajs/grape,yonglehou/grape,thogg4/grape,whouses/grape,krufyliu/grape,franzliedke/grape,nikolai-b/grape,markgeek/grape,tylerdooling/grape,jtmarmon/grape,jrforrest/grape,dblock/grape,sideci-sample/sideci-sample-grape,generalassembly/grape,namusyaka/grape,ferdinandrosario/grape,rnubel/grape,hobofan/grape,oliveiradev/grape,fangzhu19880123/grape,hpcloud/grape,ctembreull/grape,jerrod/grape,Ivanknmk/grape,marshall-lee/grape,niedhui/grape,masarakki/grape,dslh/grape,reynardmh/grape,shunyam/grape,maxprig/grape |
3dc51bfd5e6f00e1550ca491d540333d26100171 | .travis.yml | .travis.yml | version: ~> 1.0
os: linux
dist: bionic
language: python
cache:
pip: true
directories:
- .tox
jobs:
include:
- python: 3.6
env: TOXENV=py36-lower_bound_deps
- python: 3.7
env: TOXENV=py37-lower_bound_deps
- python: 3.8
env: TOXENV=py38-lower_bound_deps
- python: 3.6
env: TOXENV=py36-upper_bound_deps
- python: 3.7
env: TOXENV=py37-upper_bound_deps
- python: 3.8
env: TOXENV=py38-upper_bound_deps
- python: 3.8
install:
- pip install -e .
script:
- make lint
- make benchmark
- language: node_js
install:
- npm install --no-optional --no-audit --progress=false
script:
- npm run lint
install:
- pip install tox coveralls==1.10.0
script:
- make test-ci
after_success:
- coveralls
notifications:
email: false
| version: ~> 1.0
os: linux
dist: bionic
language: python
cache:
pip: true
directories:
- .tox
jobs:
include:
- python: 3.6
env: TOXENV=py36-lower_bound_deps
- python: 3.7
env: TOXENV=py37-lower_bound_deps
- python: 3.8
env: TOXENV=py38-lower_bound_deps
- python: 3.6
env: TOXENV=py36-upper_bound_deps
- python: 3.7
env: TOXENV=py37-upper_bound_deps
- python: 3.8
env: TOXENV=py38-upper_bound_deps
- python: 3.8
install:
- pip install -e '.[testing]'
script:
- make lint
- make benchmark
- language: node_js
install:
- npm install --no-optional --no-audit --progress=false
script:
- npm run lint
install:
- pip install tox coveralls==1.10.0
script:
- make test-ci
after_success:
- coveralls
notifications:
email: false
| Add missing extras dependencies for linting | Add missing extras dependencies for linting
| YAML | mit | springload/draftjs_exporter,springload/draftjs_exporter,springload/draftjs_exporter |
4adf7f46e6cf189b09c67244ecbcef1e0c7f3646 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "4"
- "0.12"
| language: node_js
node_js:
- stable
- "6"
- "4"
- "0.12"
| Add node.js 7 to Travis CI | Add node.js 7 to Travis CI
| YAML | mit | postcss/postcss,pascalduez/postcss,postcss/postcss,Semigradsky/postcss,jonathantneal/postcss,bezoerb/postcss |
ead915dee1934035a1ba7562e68b7131b72a3716 | .travis.yml | .travis.yml | language: php
dist: trusty
sudo: false
php:
- '7.2'
- '7.3'
cache:
directories:
- ~/.composer/cache/files
env:
global:
- APP_ENV=test
before_install:
- phpenv config-rm xdebug.ini
- echo "memory_limit=4096M" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
install:
- composer install --no-interaction --prefer-dist
before_script:
- (cd tests/Application && bin/console doctrine:database:create -vvv)
- (cd tests/Application && bin/console doctrine:schema:create -vvv)
script:
- composer validate --strict
- composer security
- composer check-style
- composer analyse
- composer test
| language: php
dist: trusty
sudo: false
php:
- '7.2'
- '7.3'
cache:
directories:
- ~/.composer/cache/files
env:
global:
- APP_ENV=test
before_install:
- phpenv config-rm xdebug.ini
- echo "memory_limit=4096M" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
install:
- composer install --no-interaction --prefer-dist
# Temporary 'fix' to be compatible with Sylius Plugin Skeleton v1.3
- composer require sylius/sylius:~1.3.0 --no-interaction --prefer-dist
before_script:
- (cd tests/Application && bin/console doctrine:database:create -vvv)
- (cd tests/Application && bin/console doctrine:schema:create -vvv)
script:
- composer validate --strict
- composer security
- composer check-style
- composer analyse
- composer test
| Fix build: use Sylius version similar to Skeleton framework used | Fix build: use Sylius version similar to Skeleton framework used
| YAML | mit | stefandoorn/sitemap-plugin,stefandoorn/sitemap-plugin,stefandoorn/sitemap-plugin |
b0dc2a707035035b9a689105c8f833894fb59eb7 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install: pip install --use-mirrors
script:
- python setup.py test
| language: python
python:
- "2.7"
install: pip install
script:
- python setup.py test
| Remove --use-mirrors on pip command line | Remove --use-mirrors on pip command line
The pip Travis CI uses doesn't appear to have this flag anymore.
| YAML | mit | pteichman/cobe,pteichman/cobe |
08316ef4e8bfe51f845ba2b637250495cdd37b0c | .travis.yml | .travis.yml | language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- jruby-19mode # JRuby in 1.9 mode
- rbx-19mode
# TODO: restore hashrocks before eveing thinking about these:
# - "1.8.7"
# - jruby-18mode # JRuby in 1.8 mode
# - rbx-18mode
gemfile:
- will_paginate.rails31.gemfile
- will_paginate.rails32.gemfile
- kaminari.rails31.gemfile
- kaminari.rails32.gemfile
- no_paginator.rails31.gemfile
- no_paginator.rails32.gemfile
| language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- "2.0.0"
- jruby-19mode # JRuby in 1.9 mode
- rbx-19mode
# TODO: restore hashrocks before eveing thinking about these:
- "1.8.7"
- jruby-18mode # JRuby in 1.8 mode
- rbx-18mode
gemfile:
- will_paginate.rails31.gemfile
- will_paginate.rails32.gemfile
- kaminari.rails31.gemfile
- kaminari.rails32.gemfile
- no_paginator.rails31.gemfile
- no_paginator.rails32.gemfile
| Enable more versions of Ruby in Travis | Enable more versions of Ruby in Travis
| YAML | mit | rmg/magic_grid,rmg/magic_grid |
e971e1ea949b7844232ec58cf8807cf9066468d8 | .travis.yml | .travis.yml | language: go
go:
- '1.6'
- '1.7'
- '1.8'
- '1.9'
- '1.10'
script:
make test
sudo: false
| language: go
go:
- "1.6"
- "1.7"
- "1.8"
- "1.9"
- "1.10"
- "1.11"
script:
make test
sudo: false
| Add Go 1.11 to Travis test matrix | Add Go 1.11 to Travis test matrix
| YAML | mit | renstrom/fuzzysearch |
9237b4e700e11770d1479f2dcb8ac8a24bbba448 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
matrix:
allow_failures:
- rvm: jruby-head
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ree
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
matrix:
allow_failures:
- rvm: jruby-head
| Test against Ruby 2.0.0 preview | Test against Ruby 2.0.0 preview
| YAML | mit | bensie/sshkey |
f7893266b82697110b3036721fc6398f7b478068 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "0.8"
- "0.6"
- "iojs"
- "iojs-v1.0.4" | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "iojs" | Update nodejs versions for Travis | Update nodejs versions for Travis
| YAML | apache-2.0 | reecms/cocktail |
63e73faa2ff0d9badebc454783658b6b0d6dce55 | .travis.yml | .travis.yml | language: scala
scala:
- 2.12.1 | language: scala
scala:
- 2.12.1
script:
travis wait 30 sbt ++$TRAVIS_SCALA_VERSION test | Increase the build output timeout period, as two of the tests take a *long* time to complete. | Increase the build output timeout period, as two of the tests take a *long* time to complete. | YAML | mit | sageserpent-open/open-plutonium |
9568e21725cd76f1e8792f950cfe1a11cf48c310 | .travis.yml | .travis.yml | language: php
dist: trusty
sudo: false
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- "cp app/config/parameters.yml{.dist,}"
- "composer install --prefer-source"
- "composer require --dev phpunit/phpunit"
script: phpunit -c app
| language: php
dist: trusty
sudo: false
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- "cp app/config/parameters.yml{.dist,}"
- "composer install --prefer-source"
- "composer require --dev phpunit/phpunit --profile -vvv"
script: phpunit -c app
| Install phpunit with profiling enabled | [Travis] Install phpunit with profiling enabled
| YAML | agpl-3.0 | vierbergenlars/authserver,vierbergenlars/authserver,vierbergenlars/authserver,vierbergenlars/authserver |
6e2b65a6c2e343437b4a88b879ee693422e32319 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
cache:
directories:
- node_modules
notifications:
email: false
sudo: false
| dist: trusty
language: node_js
node_js:
- "0.10"
cache:
directories:
- node_modules
notifications:
email: false
sudo: false
| Use a Travis environment with PhantomJS 2. | Use a Travis environment with PhantomJS 2.
| YAML | mit | benpickles/peity,benpickles/peity,benpickles/peity |
416556023365a3fd679bc938a86b8785b66175a5 | build.yaml | build.yaml | java:
- oraclejdk8
os:
- ubuntu/trusty64/m3.large
cassandra:
- '2.1'
- '2.2'
- '3.0'
- '3.11'
build:
- script: |
git clone --depth 1 https://github.com/datastax/native-protocol.git
pushd native-protocol
mvn install -Dmaven.javadoc.skip=true -B -V
popd
rm -rf native-protocol
- type: maven
version: 3.2.5
goals: verify
properties: |
ccm.version=$CCM_CASSANDRA_VERSION
- xunit:
- "**/target/surefire-reports/TEST-*.xml"
- "**/target/failsafe-reports/TEST-*.xml"
- jacoco: true
disable_commit_status: true
| java:
- openjdk8
os:
- ubuntu/trusty64/m3.large
cassandra:
- '2.1'
- '2.2'
- '3.0'
- '3.11'
build:
- script: |
git clone --depth 1 https://github.com/datastax/native-protocol.git
pushd native-protocol
mvn install -Dmaven.javadoc.skip=true -B -V
popd
rm -rf native-protocol
- type: maven
version: 3.2.5
goals: verify
properties: |
ccm.version=$CCM_CASSANDRA_VERSION
- xunit:
- "**/target/surefire-reports/TEST-*.xml"
- "**/target/failsafe-reports/TEST-*.xml"
- jacoco: true
disable_commit_status: true
| Use openjdk8 instead of oraclejdk8 | Use openjdk8 instead of oraclejdk8
| YAML | apache-2.0 | datastax/java-driver,datastax/java-driver |
17039e58b73459d24f9ab402ecc81832bbb4e5d2 | .travis.yml | .travis.yml | language: php
services:
- mysql
php:
- 5.5
- 5.6
- 7.0
- 7.1
before_script:
- composer install
- echo "USE mysql;\nUPDATE user SET password=PASSWORD('battle218pw') WHERE user='root';\nFLUSH PRIVILEGES;\n" | mysql -u root
script:
- bin/bgawb validate
- vendor/bin/phpunit | language: php
services:
- mysql
php:
- 5.6
- 7.0
- 7.1
before_script:
- composer install
- echo "USE mysql;\nUPDATE user SET password=PASSWORD('battle218pw') WHERE user='root';\nFLUSH PRIVILEGES;\n" | mysql -u root
script:
- bin/bgawb validate
- vendor/bin/phpunit | Revert to PHP version 5.6 | Revert to PHP version 5.6
| YAML | mit | danielholmes/battle-for-hill-218,danielholmes/battle-for-hill-218,danielholmes/battle-for-hill-218 |
7c4755c2a561257f39d465e2b454fa7698fe4976 | .travis.yml | .travis.yml | dist: trusty
group: beta
language: node_js
node_js:
- node
addons:
firefox: '49.0.2'
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi"
before_script:
- npm install web-component-tester bower@1.7.9 polylint
- $(npm bin)/bower install
- $(npm bin)/polylint --no-recursion
script:
- xvfb-run $(npm bin)/wct
| dist: trusty
group: beta
language: node_js
node_js:
- node
addons:
firefox: latest-esr
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi"
before_script:
- npm install web-component-tester bower@1.7.9 polylint
- $(npm bin)/bower install
- $(npm bin)/polylint --no-recursion
script:
- xvfb-run $(npm bin)/wct
| Use the latest Firefox ESR for testing | Use the latest Firefox ESR for testing
| YAML | apache-2.0 | Collaborne/bing-static-map |
a3a0e0800976061b0c9dcb405da6a6d7339839b9 | .travis.yml | .travis.yml | language: python
python:
- "3.5"
- "3.6"
install:
- "pip install -r requirements.txt"
- "pip install -e ."
script: pytest tests/main_tests.py
notifications:
email: false | language: python
python:
- "3.5"
- "3.6"
- "3.7"
install:
- "pip install -r requirements.txt"
- "pip install -e ."
script: pytest tests/main_tests.py
notifications:
email: false | Add python 3.7 test target | Add python 3.7 test target
| YAML | lgpl-2.1 | katajakasa/aiohttp-spyne |
c9d2d384410c4b3105ddce55378808d5dec8c220 | .travis.yml | .travis.yml | language: node_js
os:
- "linux"
- "osx"
node_js:
- "0.12"
- "0.11"
- "0.10"
- "6.1"
- "5.11"
- "4.4"
services:
- elasticsearch
- rabbitmq
before_install:
- "export NODE_ENV=test"
- "npm config set strict-ssl false"
- "npm install -g chai istanbul jsdoc mocha babel-register"
before_script:
- "sleep 10"
install:
- ./.travis/install.sh
- npm install
- ./bin/microcrawler config init
| language: node_js
os:
- "linux"
- "osx"
node_js:
- "4.4"
- "5.11"
- "6.1"
services:
- elasticsearch
- rabbitmq
before_install:
- "export NODE_ENV=test"
- "npm config set strict-ssl false"
- "npm install -g chai istanbul jsdoc mocha babel-register"
before_script:
- "sleep 10"
install:
- ./.travis/install.sh
- npm install
- ./bin/microcrawler config init
| Use only modern nodejs versions | Use only modern nodejs versions
| YAML | mit | korczis/microcrawler,korczis/microcrawler |
7e4d12731d5fa35b7e239ea7d998283c148e5c5e | .travis.yml | .travis.yml | language: python
sudo: false
matrix:
include:
- python: "3.5"
env: TEST_TYPE=typecheck
- python: "2.7"
env: TEST_TYPE=test
- python: "2.7"
env: TEST_TYPE=check
install:
- pip install -e .
- travis_retry pip install -r requirements-dev.txt
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then pip install mypy-lang==0.4.5; fi
- pip install codecov==2.0.5
script:
- make $TEST_TYPE
after_success:
- codecov
| language: python
sudo: false
matrix:
include:
- python: "3.5"
env: TEST_TYPE=typecheck
- python: "2.7"
env: TEST_TYPE=coverage
- python: "2.7"
env: TEST_TYPE=check
install:
- pip install -e .
- travis_retry pip install -r requirements-dev.txt
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then pip install mypy-lang==0.4.5; fi
- pip install codecov==2.0.5
script:
- make $TEST_TYPE
after_success:
- codecov
| Switch test type to coverage | Switch test type to coverage
| YAML | apache-2.0 | awslabs/chalice,freaker2k7/chalice |
3ea82bf6003ea9a636d9c5b9074acfab87765d1e | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby
install:
- sudo apt-get install -qq graphviz
- bundle install
| language: ruby
python:
- 2.7
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby
install:
- pip install shaape
- sudo apt-get install -qq graphviz
- bundle install
| Make sure shaape is installed when running tests on Travis CI | Make sure shaape is installed when running tests on Travis CI
| YAML | mit | chanibal/asciidoctor-diagram,asciidoctor/asciidoctor-diagram |
054adceb39e8f216944ef57839236e1b5913d6cd | .travis.yml | .travis.yml | language: cpp
sudo: required
dist: trusty
before_install:
- sudo add-apt-repository --yes ppa:beineri/opt-qt58-trusty
- sudo apt-get update -qq
install:
- sudo apt-get -y install qt58[QTPACKAGE]
- sudo apt-get -y install qt58serialbus
- sudo git clone git://github.com/stephane/libmodbus.git
- cd libmodbus
- sudo git checkout f9358460ee1f62bcac716ad0444b3bbe7628b204
- sudo ./autogen.sh
- sudo ./configure && sudo make install
- cd ..
env:
- QMAKE_OPTIONS="CONFIG+=debug CONFIG+=qml_debug"
- QMAKE_OPTIONS=
script:
- source /opt/qt58/bin/qt58-env.sh
- mkdir build && cd build
- /opt/qt58/bin/qmake ../All.pro $QMAKE_OPTIONS
- make
| language: cpp
sudo: required
dist: trusty
compiler:
- clang
- gcc
env:
- QMAKE_OPTIONS="CONFIG+=debug CONFIG+=qml_debug"
- QMAKE_OPTIONS="CONFIG+=release"
before_install:
- sudo add-apt-repository --yes ppa:beineri/opt-qt58-trusty
- sudo apt-get update -qq
install:
- sudo apt-get -y install qt58[QTPACKAGE]
- sudo apt-get -y install qt58serialbus
- sudo git clone git://github.com/stephane/libmodbus.git
- cd libmodbus
- sudo git checkout f9358460ee1f62bcac716ad0444b3bbe7628b204
- sudo ./autogen.sh
- sudo ./configure && sudo make install
- cd ..
script:
- source /opt/qt58/bin/qt58-env.sh
- mkdir build && cd build
- /opt/qt58/bin/qmake ../All.pro $QMAKE_OPTIONS
- make
| Add clang to build matrix. | Add clang to build matrix.
| YAML | mit | michpolicht/CuteHMI,michpolicht/CuteHMI,michpolicht/CuteHMI,michpolicht/CuteHMI,michpolicht/CuteHMI |
b4e8cd5bca6e0e25d60d532e90b539476d305007 | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
sudo: false
services:
- mysql
env:
global:
- ARTISAN_DB_HOST=127.0.0.1
- ARTISAN_DB_PORT=3306
- ARTISAN_DB_USER=travis
- ARTISAN_DB_PASS=""
matrix:
- PHPUNIT_VERSION="^5.7"
- PHPUNIT_VERSION="^6.0"
cache:
directories:
- $HOME/.composer/cache
before_install:
- travis_retry composer self-update
- mysql -e 'CREATE DATABASE IF NOT EXISTS suitey_test_default;'
- mysql -e 'CREATE DATABASE IF NOT EXISTS suitey_test_foo;'
- mysql -e 'CREATE DATABASE IF NOT EXISTS suitey_test_bar;'
install:
- composer install --no-interaction --prefer-dist --no-suggest
- composer require phpunit/phpunit:${PHPUNIT_VERSION} --dev --update-with-dependencies --no-interaction --prefer-dist --no-suggest
script: vendor/bin/phpunit
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: php
php:
- 7.0
- 7.1
sudo: false
services:
- mysql
env:
global:
- ARTISAN_DB_HOST=127.0.0.1
- ARTISAN_DB_PORT=3306
- ARTISAN_DB_USER=travis
- ARTISAN_DB_PASS=""
matrix:
- PHPUNIT_VERSION="^5.7"
- PHPUNIT_VERSION="^6.0"
cache:
directories:
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini
- travis_retry composer self-update
- mysql -e 'CREATE DATABASE IF NOT EXISTS suitey_test_default;'
- mysql -e 'CREATE DATABASE IF NOT EXISTS suitey_test_foo;'
- mysql -e 'CREATE DATABASE IF NOT EXISTS suitey_test_bar;'
install:
- composer install --no-interaction --prefer-dist --no-suggest
- composer require phpunit/phpunit:${PHPUNIT_VERSION} --dev --update-with-dependencies --no-interaction --prefer-dist --no-suggest
script: vendor/bin/phpunit
after_success:
- bash <(curl -s https://codecov.io/bash)
| Disable Xdebug before running tests | Disable Xdebug before running tests
| YAML | mit | thecrypticace/suitey |
b58031f64bdaf3777dea0a47380dd7ee552748e7 | .travis.yml | .travis.yml | language: php
php:
- 5.5.9
- 5.6
- 7.0
- hhvm
sudo: false
matrix:
allow_failures:
- php: hhvm
install:
- if [[ ${TRAVIS_PHP_VERSION} == "5.5.9" ]];
then travis_retry composer require laravel/framework;
else travis_retry composer update --no-interaction --prefer-source;
fi
script: make test
| language: php
php:
- 5.5.9
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
- nightly
sudo: false
matrix:
allow_failures:
- php: hhvm
- php: nightly
install:
- if [[ ${TRAVIS_PHP_VERSION} == "5.5.9" ]];
then travis_retry composer require laravel/framework;
else travis_retry composer update --no-interaction --prefer-source;
fi
script: make test
| Update Travis CI with later PHP versions | Update Travis CI with later PHP versions
| YAML | apache-2.0 | aws/aws-sdk-php-laravel |
b3fe9a3e916234218fe74c8862064650f9d39a56 | .travis.yml | .travis.yml | sudo: false
language: d
os:
- linux
d:
- dmd-2.068.2
- dmd-2.067.1
- dmd-2.066.1
- ldc-0.15.1
- gdc-5.2.0
matrix:
allow_failures:
d: gdc-5.2.0
- env: ARCH=x86
d: gdc-5.2.0
addons:
apt:
packages:
- gcc-multilib
notifications:
email: false
env:
global:
- secure: "Xa3ZSmQPQytDFrMBMdhO0ObnrIb0GdvUsz0LEKxHerQN/+qSos5In5WI7ATddJyCxK1RvvzaxWdiMRurfQSSW5vAW0KCRpXnEIZ1q70+WGgXH7eOT5ZVt0bHo3L2Jo9kYXwCSWxEfiQsREliEj5RXyD4SCbGFbeP2a/4x9A1VuI="
matrix:
- ARCH=x86
- ARCH=x86_64
script:
dub test --arch=$ARCH;
after_success:
- ./push-ddoc.sh
| sudo: false
language: d
os:
- linux
d:
- dmd-2.068.2
- dmd-2.067.1
- dmd-2.066.1
- ldc-0.15.1
- gdc-5.2.0
matrix:
allow_failures:
d: gdc-5.2.0
- env: ARCH=x86
d: gdc-5.2.0
addons:
apt:
packages:
- gcc-multilib
notifications:
email: false
env:
global:
- secure: "Xa3ZSmQPQytDFrMBMdhO0ObnrIb0GdvUsz0LEKxHerQN/+qSos5In5WI7ATddJyCxK1RvvzaxWdiMRurfQSSW5vAW0KCRpXnEIZ1q70+WGgXH7eOT5ZVt0bHo3L2Jo9kYXwCSWxEfiQsREliEj5RXyD4SCbGFbeP2a/4x9A1VuI="
matrix:
- ARCH=x86
- ARCH=x86_64
script:
dub test --arch=$ARCH;
after_success:
- ./push-ddoc.sh
| Fix indentation in Travis config | Fix indentation in Travis config
| YAML | mit | JakobOvrum/Dirk |
540b3be4b869a054f52172c77d45a95e7ff2a34a | .travis.yml | .travis.yml | sudo: required
services:
- docker
language: node_js
env:
global:
- TEST_INTEGRATION_KONG_HOST="127.0.0.1:8001"
- KONG_VERSION=0.12
matrix:
- EXPERIMENTAL_USE_LOCAL_STATE=0
- EXPERIMENTAL_USE_LOCAL_STATE=1
node_js:
- stable
- "8"
- "6"
before_install:
- docker run -d --name kong-database -e "POSTGRES_USER=kong" -e "POSTGRES_DB=kong" postgres:9.4
- sleep 5
- docker run --rm --link kong-database:kong-database -e "KONG_DATABASE=postgres" -e "KONG_PG_HOST=kong-database" kong:$KONG_VERSION kong migrations up
- docker run -d --name kong --link kong-database:kong-database -e "KONG_DATABASE=postgres" -e "KONG_PG_HOST=kong-database" -e "KONG_ADMIN_LISTEN=0.0.0.0:8001" -p 127.0.0.1:8001:8001 -p 127.0.0.1:8000:8000 kong:$KONG_VERSION
- sleep 5
| sudo: required
services:
- docker
language: node_js
env:
global:
- TEST_INTEGRATION_KONG_HOST="127.0.0.1:8001"
- KONG_VERSION=0.12.1
matrix:
- EXPERIMENTAL_USE_LOCAL_STATE=0
- EXPERIMENTAL_USE_LOCAL_STATE=1
node_js:
- stable
- "8"
- "6"
before_install:
- docker run -d --name kong-database -e "POSTGRES_USER=kong" -e "POSTGRES_DB=kong" postgres:9.4
- sleep 5
- docker run --rm --link kong-database:kong-database -e "KONG_DATABASE=postgres" -e "KONG_PG_HOST=kong-database" kong:$KONG_VERSION kong migrations up
- docker run -d --name kong --link kong-database:kong-database -e "KONG_DATABASE=postgres" -e "KONG_PG_HOST=kong-database" -e "KONG_ADMIN_LISTEN=0.0.0.0:8001" -p 127.0.0.1:8001:8001 -p 127.0.0.1:8000:8000 kong:$KONG_VERSION
- sleep 5
| Change kong docker image version as newer ones are broken | Change kong docker image version as newer ones are broken
| YAML | mit | mybuilder/kongfig |
1d9efc427ab9f71d8ee8298b9010eb3e6ddc8676 | .travis.yml | .travis.yml | language: go
go:
- 1.6.3
- 1.7.1
script:
- go test -v -p 1 --race $(go list ./... | grep -v '/vendor/')
| language: go
go:
- 1.7.1
- 1.8
script:
- go test -v -p 1 --race $(go list ./... | grep -v '/vendor/')
| Move testing from go version 1.6 to 1.8 | Move testing from go version 1.6 to 1.8
| YAML | apache-2.0 | mailgun/vulcand,vulcand/vulcand,vulcand/vulcand,mailgun/vulcand |
5c1a433e2ae40b2c5275a6aca04bb8aba67d243d | .travis.yml | .travis.yml | git:
depth: 10
branches:
only:
- master
env:
global:
- ATOM_ACCESS_TOKEN=da809a6077bb1b0aa7c5623f7b2d5f1fec2faae4
osx_image: xcode7.3
compiler: clang
matrix:
include:
- os: linux
env: NODE_VERSION=4
- os: osx
env: ATOM_SPECS_TASK=core NODE_VERSION=4
- os: osx
env: ATOM_SPECS_TASK=packages NODE_VERSION=4
sudo: false
install:
- git clone https://github.com/creationix/nvm.git /tmp/.nvm
- source /tmp/.nvm/nvm.sh
- nvm install $NODE_VERSION
- nvm use --delete-prefix $NODE_VERSION
- npm install -g npm
script: script/cibuild
cache:
timeout: 1000
directories:
- build/node_modules
- apm/node_modules
notifications:
email:
on_success: never
on_failure: change
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- build-essential
- git
- libgnome-keyring-dev
- fakeroot
- gcc-multilib
| git:
depth: 10
branches:
only:
- master
env:
global:
- ATOM_ACCESS_TOKEN=da809a6077bb1b0aa7c5623f7b2d5f1fec2faae4
osx_image: xcode7.3
compiler: clang
matrix:
include:
- os: linux
env: NODE_VERSION=4
- os: osx
env: ATOM_SPECS_TASK=core NODE_VERSION=4
- os: osx
env: ATOM_SPECS_TASK=packages NODE_VERSION=4
sudo: false
install:
- git clone https://github.com/creationix/nvm.git /tmp/.nvm
- source /tmp/.nvm/nvm.sh
- nvm install $NODE_VERSION
- nvm use --delete-prefix $NODE_VERSION
script: script/cibuild
cache:
timeout: 1000
directories:
- node_modules
- build/node_modules
- apm/node_modules
notifications:
email:
on_success: never
on_failure: change
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- build-essential
- git
- libgnome-keyring-dev
- fakeroot
- gcc-multilib
| Put back node_modules in the cache | Put back node_modules in the cache
| YAML | mit | sotayamashita/atom,atom/atom,AlexxNica/atom,AdrianVovk/substance-ide,xream/atom,andrewleverette/atom,bsmr-x-script/atom,brettle/atom,FIT-CSE2410-A-Bombs/atom,bolinfest/atom,decaffeinate-examples/atom,FIT-CSE2410-A-Bombs/atom,decaffeinate-examples/atom,helber/atom,PKRoma/atom,xream/atom,ardeshirj/atom,brumm/atom,CraZySacX/atom,Ingramz/atom,t9md/atom,Mokolea/atom,AdrianVovk/substance-ide,t9md/atom,Mokolea/atom,bsmr-x-script/atom,andrewleverette/atom,PKRoma/atom,sotayamashita/atom,rlugojr/atom,gontadu/atom,bolinfest/atom,rlugojr/atom,andrewleverette/atom,brettle/atom,brettle/atom,kevinrenaers/atom,decaffeinate-examples/atom,brumm/atom,gontadu/atom,ardeshirj/atom,CraZySacX/atom,tjkr/atom,stinsonga/atom,AdrianVovk/substance-ide,decaffeinate-examples/atom,me-benni/atom,ardeshirj/atom,stinsonga/atom,FIT-CSE2410-A-Bombs/atom,sotayamashita/atom,t9md/atom,stinsonga/atom,brumm/atom,gontadu/atom,atom/atom,Arcanemagus/atom,Mokolea/atom,me-benni/atom,CraZySacX/atom,bolinfest/atom,liuderchi/atom,xream/atom,Arcanemagus/atom,stinsonga/atom,liuderchi/atom,tjkr/atom,helber/atom,liuderchi/atom,helber/atom,Ingramz/atom,bsmr-x-script/atom,rlugojr/atom,liuderchi/atom,me-benni/atom,AlexxNica/atom,tjkr/atom,PKRoma/atom,kevinrenaers/atom,kevinrenaers/atom,Ingramz/atom,Arcanemagus/atom,AlexxNica/atom,atom/atom |
c238af6c9712ade7d0de3314627ebe006b6869e4 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- sudo add-apt-repository -y ppa:donk/gstreamer
- sudo apt-get -qq update
- sudo apt-get install -qq python-numpy python-scipy python-matplotlib python-networkx
- sudo apt-get install -qq libhdf5-serial-dev python-h5py python-tables
- sudo apt-get install -qq python-gst0.10 gstreamer0.10-plugins-good gstreamer0.10-gnonlin gstreamer0.10-plugins-ugly gstreamer0.10-plugins-bad
# command to install dependencies
install:
# - "pip install -r requirements.txt --use-mirrors"
- python setup.py install
# command to run tests
before_script:
- pip install pkg-resources
- pip install coverage
script:
- coverage run --source=timeside --omit=timeside/analyzer/aubio/aubio_*.py,timeside/analyzer/yaafe.py,timeside/analyzer/limsi_sad.py,timeside/analyzer/vamp_plugin.py setup.py test
after_success:
- pip install coveralls
- coveralls | language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
setuptools: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- sudo add-apt-repository -y ppa:donk/gstreamer
- sudo apt-get -qq update
- sudo apt-get install -qq python-numpy python-scipy python-matplotlib python-networkx
- sudo apt-get install -qq libhdf5-serial-dev python-h5py python-tables
- sudo apt-get install -qq python-gst0.10 gstreamer0.10-plugins-good gstreamer0.10-gnonlin gstreamer0.10-plugins-ugly gstreamer0.10-plugins-bad
# command to install dependencies
install:
# - "pip install -r requirements.txt --use-mirrors"
- python setup.py install
# command to run tests
before_script:
- pip install coverage
script:
- coverage run --source=timeside --omit=timeside/analyzer/aubio/aubio_*.py,timeside/analyzer/yaafe.py,timeside/analyzer/limsi_sad.py,timeside/analyzer/vamp_plugin.py setup.py test
after_success:
- pip install coveralls
- coveralls | Delete pkg-ressource install and add option for setuptools in virtualenv | Travis: Delete pkg-ressource install and add option for setuptools in virtualenv
| YAML | agpl-3.0 | Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide |
4b00e0a3f4e959c8325589a617c0b9bbb0db9557 | .travis.yml | .travis.yml | # Project Language
language: node_js
# NodeJS versios
node_js:
- 10
- 9
- 8
- 7
| # Project Language
language: node_js
# NodeJS versios
node_js:
- 11
- 10
- 9
- 8
- 7
| Add support for nodejs 11 | Add support for nodejs 11
| YAML | mit | WyriHaximus/nodejs-persistent-autobahn |
bd8f3b2c0fae057db38ae04468e9b16348199e0f | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.1.1
env:
- DB=sqlite
- DB=pgsql
bundler_args: "--without development"
before_script:
- psql -c "CREATE USER katoy WITH PASSWORD 'katoy';" -U postgres
script:
- RAILS_ENV=test bundle exec rake db:create db:migrate
- RAILS_ENV=test bundle exec rake test
- RAILS_ENV=test bundle exec rake spec
| language: ruby
rvm:
- 1.9.3
- 2.1.1
env:
- DB=sqlite
- DB=pgsql
bundler_args: "--without development"
before_script:
- psql -c 'create database travis_ci_test;' -U postgres
- cp config/database.yml.travis config/database.yml
script:
- RAILS_ENV=test bundle exec rake db:create db:migrate
- RAILS_ENV=test bundle exec rake test
- RAILS_ENV=test bundle exec rake spec
| Add before_scrip for copy database.yml. | Add before_scrip for copy database.yml.
| YAML | mit | katoy/rails-canvas,katoy/rails-canvas,katoy/rails-canvas |
a8bd79cf7bda8bd6e46073d1f90bfd51ba2efbf8 | .travis.yml | .travis.yml | language: cpp
matrix:
include:
- os: osx
osx_image: xcode10
env: MATRIX_EVAL="brew install qt" BUILD_TYPE=Release
- os: linux
addons: { apt: {
packages: [ g++-6, libboost1.55-all-dev, qt5-default ],
sources: [ ubuntu-toolchain-r-test, boost-latest ] } }
env: MATRIX_EVAL="CC=gcc-6 && CXX=g++-6" BUILD_TYPE=Release
before_install:
- eval "${MATRIX_EVAL}"
script:
- ci/travis-script.sh
notifications:
email: false
| language: cpp
matrix:
include:
- os: osx
osx_image: xcode10
env: MATRIX_EVAL="brew install qt" BUILD_TYPE=Release
- os: linux
addons: { apt: {
packages: [ g++-6, libboost1.55-all-dev, qt5-default ],
sources: [ ubuntu-toolchain-r-test, boost-latest ] } }
env: MATRIX_EVAL="CC=gcc-6 && CXX=g++-6" BUILD_TYPE=Release
- os: linux
addons: { apt: {
packages: [ clang-6.0, libstdc++-6-dev, libboost1.55-all-dev, qt5-default ],
sources: [ llvm-toolchain-trusty-6.0, ubuntu-toolchain-r-test, boost-latest ] } }
env: MATRIX_EVAL="CC=clang-6.0 && CXX=clang++-6.0" BUILD_TYPE=Release
before_install:
- eval "${MATRIX_EVAL}"
script:
- ci/travis-script.sh
notifications:
email: false
| Add clang-6 build on linux | Add clang-6 build on linux
| YAML | mit | benvenutti/core8,benvenutti/core8 |
73058b3f56644ee3e983b96ac3cc7d3dd256ba29 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
addons:
apt:
packages:
- oracle-java8-installer
cache:
directories:
- $HOME/.m2/repository/io
- $HOME/.m2/repository/it
- $HOME/.m2/repository/org
- $HOME/.m2/repository/mysql
sudo: false
| language: java
jdk:
- oraclejdk8
addons:
apt:
packages:
- oracle-java8-installer
cache:
directories:
- $HOME/.m2/repository/io
- $HOME/.m2/repository/it
- $HOME/.m2/repository/org
- $HOME/.m2/repository/mysql
sudo: false
before_install:
- rm -f ~/.m2/settings.xml
| Remove Maven settings file on Travis | Remove Maven settings file on Travis
This file contains many obsolete repositories and is not needed.
| YAML | apache-2.0 | johngmyers/airlift,johngmyers/airlift,airlift/airlift,electrum/airlift,airlift/airlift,dain/airlift,dain/airlift,dain/airlift,electrum/airlift,electrum/airlift,johngmyers/airlift,airlift/airlift,airlift/airlift,johngmyers/airlift,electrum/airlift,dain/airlift |
f8a737b8faec8f201d3a61cecc7981b2ca61ef79 | .travis.yml | .travis.yml | cache:
pip: true
- $HOME/Library/Caches/Homebrew
matrix:
include:
- os: osx
osx_image: xcode8.3
language: generic
- os: osx
osx_image: xcode8.2
language: generic
- os: osx
osx_image: xcode8.1
language: generic
- os: osx
osx_image: xcode8
language: generic
- os: osx
osx_image: xcode7.3
language: generic
script:
- brew install Formula/ocrmypdf.rb
| matrix:
include:
- os: osx
osx_image: xcode8.3
language: generic
- os: osx
osx_image: xcode8.2
language: generic
- os: osx
osx_image: xcode8.1
language: generic
- os: osx
osx_image: xcode8
language: generic
- os: osx
osx_image: xcode7.3
language: generic
script:
- brew install Formula/ocrmypdf.rb
| Remove cache section for now | Remove cache section for now
| YAML | mit | jbarlow83/homebrew-ocrmypdf |
0239ba2581df322b1a5264dacef0280b73b3c909 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm: 2.1.0
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
| language: ruby
cache: bundler
rvm: 2.0.0
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
| Update Travis config to match Ruby version | Update Travis config to match Ruby version
| YAML | mit | wiserfirst/hound,makersacademy/hound,wadetandy/hound,timoschilling/hound,kolosek/hound,dobtco/hound,bronislav/hound,kirs/hound,enricogenauck/labhound,Rademade/reviewer,platanus/hound,yatish27/hound,viniciustorves/hound,rgp/hound,yatish27/hound,enricogenauck/labhound,Koronen/hound,JuanitoFatas/hound,Reprazent/hound,jeanmatheussouto/hound,q-centrix/hound,orangeiceberg/hound,houndci/hound,alexeyzab/hound,adriagalin/hound,jobseekerltd/hound,mynewsdesk/hound,jmcarp/hound,sharma1nitish/hound,peritpatrio/hound,bitjourney/hound,timoschilling/hound,rmswimkktt/houndci-staging,zlx/Gitlab-Hound,jeanmatheussouto/hound,timoschilling/hound,fukayatsu/hound,bitjourney/hound,e-sabelhaus/gitlab-doge,larrylv/hound-gitlab,mynewsdesk/hound,bronislav/hound,Koronen/hound,makersacademy/hound,timoschilling/hound,wyncode/hound,hashbangnz/hound,wadetandy/hound,jobseekerltd/hound,wiserfirst/hound,adriagalin/hound,tinfoil/hound,e-sabelhaus/gitlab-doge,e-sabelhaus/gitlab-doge,tinfoil/hound,platanus/hound,timchunght/hound,degica/hound,dobtco/hound,brgaulin/hound,houndci/hound,framgia/hound,asross/hound,kirs/hound,zeke/hound,enricogenauck/labhound,fukayatsu/hound,makersacademy/hound,brgaulin/hound,cbeer/hound,zlx/Gitlab-Hound,framgia/hound,daniel-beard/hound,eliperkins/hound,tinfoil/hound,adriagalin/hound,thoughtbot/hound,wyncode/hound,daniel-beard/hound,degica/hound,thoughtbot/hound,degica/hound,orangeiceberg/hound,sharma1nitish/hound,kirs/hound,brgaulin/hound,rmswimkktt/houndci-staging,daniel-beard/hound,viniciustorves/hound,jdrew1303/hound,platanus/hound,bitjourney/hound,bronislav/hound,teambox/hound,eliperkins/hound,rgp/hound,makersacademy/hound,fukayatsu/hound,dobtco/hound,timchunght/hound,hashbangnz/hound,sbalay/hound,dobtco/hound,timchunght/hound,Rademade/reviewer,sbalay/hound,malachaifrazier/hound,asross/hound,q-centrix/hound,cbeer/hound,Koronen/hound,viniciustorves/hound,sharma1nitish/hound,Rademade/reviewer,thoughtbot/hound,mynewsdesk/hound,hashbangnz/hound,zlx/Gitlab-Hound,Reprazent/hound,jmcarp/hound,yatish27/hound,daniel-beard/hound,zeke/hound,Rademade/reviewer,cbeer/hound,bronislav/hound,alexeyzab/hound,peritpatrio/hound,teambox/hound,tinfoil/hound,wadetandy/hound,q-centrix/hound,Koronen/hound,sbalay/hound,wyncode/hound,JuanitoFatas/hound,q-centrix/hound,larrylv/hound-gitlab,eliperkins/hound,larrylv/hound,eliperkins/hound,wadetandy/hound,Reprazent/hound,jdrew1303/hound,malachaifrazier/hound,enricogenauck/labhound,orangeiceberg/hound,fukayatsu/hound,rakibulislam/hound,mydummyaccount3737/hound,wyncode/hound,houndci/hound,jobseekerltd/hound,rgp/hound,teambox/hound,mynewsdesk/hound,platanus/hound,yatish27/hound,rmswimkktt/houndci-staging,orangeiceberg/hound,sbalay/hound,JuanitoFatas/hound,larrylv/hound,jeanmatheussouto/hound,cbeer/hound,viniciustorves/hound,Reprazent/hound,asross/hound,jdrew1303/hound,brgaulin/hound,alexeyzab/hound,adriagalin/hound,mydummyaccount3737/hound,timchunght/hound,wiserfirst/hound,larrylv/hound-gitlab,larrylv/hound,hashbangnz/hound,peritpatrio/hound,sharma1nitish/hound,alexeyzab/hound,teambox/hound,rakibulislam/hound,e-sabelhaus/gitlab-doge,rakibulislam/hound,peritpatrio/hound,kolosek/hound,kolosek/hound,jeanmatheussouto/hound,malachaifrazier/hound,thoughtbot/hound,framgia/hound,mydummyaccount3737/hound,JuanitoFatas/hound,mydummyaccount3737/hound,jmcarp/hound,jmcarp/hound,wiserfirst/hound,kolosek/hound,bitjourney/hound,houndci/hound,rgp/hound |
7088fe263302920c0547dee2b93782ee9239c4a9 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.6"
script: python setup.py test
| language: python
python:
- "2.7"
- "3.3"
- "3.6"
install: pip install . nose coverage codacy-coverage
script: nosetests --with-coverage --cover-package=canopen --cover-xml
after_script: python-codacy-coverage -r coverage.xml
| Add coverage stats to Codacy | Add coverage stats to Codacy
| YAML | mit | christiansandberg/canopen,christiansandberg/canopen |
7d59b1f03e8398de2295339e7eb3569149ee993a | .travis.yml | .travis.yml | language: node_js
node_js:
- '5.5'
- '5.2'
- '4.1'
- '4.0'
script: gulp
after_success:
- cat ./docs/code-coverage/lcov.info | node node_modules/coveralls/bin/coveralls.js
| language: node_js
node_js:
- '6.0'
- '5.5'
- '5.2'
- '4.1'
- '4.0'
script: gulp
after_success:
- cat ./docs/code-coverage/lcov.info | node node_modules/coveralls/bin/coveralls.js
deploy:
provider: npm
api_key: "$NPM_AUTH_KEY"
email: eventsauce@cobaltsoftware.net
skip_cleanup: true
on:
tags: true
node_js: 6.0 | Test on Node 6, and npm publish. | Test on Node 6, and npm publish.
| YAML | mit | steve-gray/somersault |
f72575e75fc92214e5a2fded32dae25a468f56a7 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.2.2
- 1.3.3
- 1.4
- tip
script:
- go get ./...
- go test -v ./...
| language: go
sudo: false
go:
- 1.3.3
- 1.4.2
- 1.5
script:
- go get ./...
- go test -v ./...
| Remove support for go 1.2 now that go 1.5 is out | Remove support for go 1.2 now that go 1.5 is out
| YAML | mit | klauspost/rclone,olihey/rclone,X1011/rclone,yonjah/rclone,B4dM4n/rclone,alexcouper/rclone,ncw/rclone,B4dM4n/rclone,greendayo7/rclone,klauspost/rclone,kynikos/rclone,jackschmidt/rclone,klauspost/rclone,simlelievre/rclone,arcimboldo/rclone,greendayo7/rclone,arcimboldo/rclone,B4dM4n/rclone,simlelievre/rclone,olihey/rclone,greendayo7/rclone,ncw/rclone,seuffert/rclone,Blackfin/rclone,yonjah/rclone,olihey/rclone,ncw/rclone,seuffert/rclone,arcimboldo/rclone,yonjah/rclone,X1011/rclone,alexcouper/rclone,kynikos/rclone,seuffert/rclone,jackschmidt/rclone,yonjah/rclone,jackschmidt/rclone,X1011/rclone,greendayo7/rclone,Blackfin/rclone,ncw/rclone,jackschmidt/rclone,simlelievre/rclone,seuffert/rclone,alexcouper/rclone,kynikos/rclone,arcimboldo/rclone,B4dM4n/rclone,olihey/rclone,kynikos/rclone,Blackfin/rclone |
e579cc65035515c347120d49329c0c7792a8cabd | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.5.7
- 2.6.5
- 2.7.0
script:
- bundle exec rake db:test:prepare
- bundle exec rake test
| language: ruby
rvm:
- 2.5.7
- 2.6.5
- 2.7.0
script:
- bundle update --bundler
- bundle exec rake db:test:prepare
- bundle exec rake test
| Update bundler version when running tests | Update bundler version when running tests
| YAML | mit | jasoncharnes/pay,jasoncharnes/pay,jasoncharnes/pay |
99800fad3036fcca6cd32b5218ff54513ff17e9a | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
| sudo: required
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.0
| Add ruby 2.3.0 to Travis CI Build | Add ruby 2.3.0 to Travis CI Build
| YAML | mit | openminds/pronto-foodcritic,mmozuras/pronto-foodcritic |
5947ca06a9fff4970cfa7218939daee490b554b3 | .travis.yml | .travis.yml | language: haskell
install:
- cabal install elm-get
- sudo ln -s ~/.cabal/bin/elm /usr/local/bin/elm
- sudo ln -s ~/.cabal/bin/elm-get /usr/local/bin/elm-get
- git clone git://github.com/maxsnew/IO
- cd IO
- git checkout tags/0.1.1
- cabal install
- sudo ln -s ~/.cabal/bin/elm-io /usr/local/bin/elm-io
- cd ..
- echo "y" | elm-get install evancz/automaton
- npm install jsdom
before_script: elm-io --default-ports Tests/Tests.elm tests.js
script: node tests.js
| language: haskell
install:
- cabal install language-ecmascript-0.15.4
- cabal install elm-get
- sudo ln -s ~/.cabal/bin/elm /usr/local/bin/elm
- sudo ln -s ~/.cabal/bin/elm-get /usr/local/bin/elm-get
- git clone git://github.com/maxsnew/IO
- cd IO
- git checkout tags/0.1.1
- cabal install
- sudo ln -s ~/.cabal/bin/elm-io /usr/local/bin/elm-io
- cd ..
- echo "y" | elm-get install evancz/automaton
- npm install jsdom
before_script: elm-io --default-ports Tests/Tests.elm tests.js
script: node tests.js
| Revert to earlier version of language-ecmascript | Revert to earlier version of language-ecmascript
Until this is fixed in Elm/master | YAML | bsd-3-clause | robertjlooby/elm-test,elm-community/elm-test |
40bddde24bfb308faf121e8995f05154b7d4fc97 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.1
script: ./build.sh ci
branches:
only:
- master
| language: objective-c
osx_image: xcode7.2
script: ./build.sh ci
branches:
only:
- master
| Enable Xcode 7.2 on Travis | Enable Xcode 7.2 on Travis
| YAML | mit | facebook/FBSimulatorControl,plu/FBSimulatorControl,StevenUpForever/FBSimulatorControl,plu/FBSimulatorControl,facebook/FBSimulatorControl,ichu501/FBSimulatorControl,plu/FBSimulatorControl,facebook/FBSimulatorControl,bootstraponline/FBSimulatorControl,bootstraponline/FBSimulatorControl,StevenUpForever/FBSimulatorControl,StevenUpForever/FBSimulatorControl,facebook/FBSimulatorControl,bootstraponline/FBSimulatorControl,StevenUpForever/FBSimulatorControl,bootstraponline/FBSimulatorControl,facebook/FBSimulatorControl,plu/FBSimulatorControl |
f42397e28a25faeeb92c8364c87dc98e308081da | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.3.0
- 2.4.0
- 2.5.0
- 2.6.0
script: bundle exec rake
| language: ruby
cache: bundler
sudo: false
rvm:
- 2.3.0
- 2.4.0
- 2.5.0
- 2.6.0
script: bundle exec rake
before_install:
- yes | gem update --system --force
- gem install bundler
| Fix an issue with Bundler 2.0 and Travis | Fix an issue with Bundler 2.0 and Travis
https://docs.travis-ci.com/user/languages/ruby/
| YAML | mit | hyperoslo/facebook-messenger,jgorset/facebook-messenger,jgorset/facebook-messenger,hyperoslo/facebook-messenger |
dbf0bb3e6c8e65c590814160aff2734214409a92 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
before_script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then composer install -n ; fi
- if [[ "$TRAVIS_PHP_VERSION" != '5.6' ]]; then composer install --no-dev -n ; fi
script:
- mkdir -p build/logs
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then phpunit --coverage-clover build/logs/clover.xml ; fi
- if [[ "$TRAVIS_PHP_VERSION" != '5.6' ]]; then phpunit ; fi
after_script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then php vendor/bin/coveralls -v ; fi
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
before_script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then composer install -n ; fi
- if [[ "$TRAVIS_PHP_VERSION" != '5.6' ]]; then composer install --no-dev -n ; fi
script:
- mkdir -p build/logs
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then phpunit --coverage-clover build/logs/clover.xml ; fi
- if [[ "$TRAVIS_PHP_VERSION" != '5.6' ]]; then phpunit ; fi
after_script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then php vendor/bin/coveralls -v ; fi
| Remove PHP 5.3 from Travis config | Remove PHP 5.3 from Travis config
| YAML | mit | MAXakaWIZARD/JsonCollectionParser |
0ad807d443b8ae5526016360d2f5faa13ba22ae7 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.2
script: bundle exec rspec
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.2
script: bundle exec rspec
| Add older Ruby versions to Travis config | Add older Ruby versions to Travis config
| YAML | mit | tomstuart/monads,marcinwyszynski/monads,sclinede/monads,nepalez/monads |
20d1f08aa2ca778761d24703d0256a63ea44c9e2 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
before_script:
- composer install
script: vendor/bin/phpunit
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: hhvm
before_script:
- composer install
script: vendor/bin/phpunit
| Add HHVM to Travis config file | Add HHVM to Travis config file
| YAML | mit | ravage84/SwissPaymentSlipPdf |
7fe3d264441204c64c0710c74a33f973a51e8569 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
- "0.11"
| language: node_js
node_js:
- "0.10"
- "0.11"
| Remove testing on Node.js v0.8 | Remove testing on Node.js v0.8
| YAML | mit | cha0s-repo/data2xml |
5282c2d71cafbbce7130a1a8b05e998694b9371d | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.7
- 0.6
- 0.4
before_install: "npm install -g bob"
script: "bob clean lint test coverage"
| language: node_js
node_js:
- 0.8
- 0.6
- 0.4
before_install: "npm install -g bob"
script: "bob clean lint test coverage"
| Replace node_js 0.7 with 0.8 . | Replace node_js 0.7 with 0.8 .
| YAML | mit | cliffano/bob |
b6862043e5297dd6f6a813846d49af9a3778ecda | .travis.yml | .travis.yml | language: ruby
jdk:
- oraclejdk8
sudo: false
rvm:
- 2.3.1
install:
- rvm use 2.3.1
- gem install bundler
- bundle install
script: buildr clean package
git:
depth: 10
| language: ruby
jdk:
- oraclejdk8
rvm:
- 2.3.1
install:
- rvm use 2.3.1
- gem install bundler
- bundle install
script: buildr clean package
git:
depth: 10
| Remove unrecognized sudo configuration section | Remove unrecognized sudo configuration section
| YAML | apache-2.0 | realityforge/ssrs-api,realityforge/ssrs-api |
d225d6ff411e6d81fbb9dfe491b137b73da62024 | .travis.yml | .travis.yml | language: python
python:
- "3.5"
- "3.6"
install:
- pip install flake8
script:
- flake8
- python setup.py test
| language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- pip install flake8
script:
- flake8
- python setup.py test
| Add testing for Python 3.7 and 3.8 | Add testing for Python 3.7 and 3.8
| YAML | mit | claudep/swiss-qr-bill |
820780739e16fa79053a1b6d775d7103251b68c2 | .travis.yml | .travis.yml | language: go
go:
- 1.10.x
- 1.11.x
sudo: false
script:
- godep go install github.com/streadway/amqp
- make jenkins
notifications:
email:
- bifer@alea-soluciones.com
| language: go
go:
- 1.10.x
- 1.11.x
sudo: false
script:
- go install github.com/streadway/amqp
- make jenkins
notifications:
email:
- bifer@alea-soluciones.com
| Use go tools instead godep tools | [INTERNAL][FOOLFIX] Use go tools instead godep tools
| YAML | mit | aleasoluciones/gosnmpquerier,aleasoluciones/gosnmpquerier |
2ee0f08a56f493fb5d4299c7bda9cd52c41a98a2 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g npm@~1.4.6'
matrix:
fast_finish: true
allow_failures:
- node_js: "0.11"
- node_js: "0.9"
- node_js: "0.6"
- node_js: "0.4"
| language: node_js
node_js:
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g npm@1.4.6'
matrix:
fast_finish: true
allow_failures:
- node_js: "0.11"
- node_js: "0.9"
- node_js: "0.6"
- node_js: "0.4"
| Fix npm upgrading on node 0.8 | Fix npm upgrading on node 0.8
| YAML | mit | ljharb/is-generator-function |
cb452c0602f0af259bc9a582fe6f98b650947fbc | .travis.yml | .travis.yml | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
env: SYMFONY_VERSION=2.3.*
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- composer self-update
- composer require --no-update symfony/framework-bundle:${SYMFONY_VERSION}
- if [[ "$SYMFONY_VERSION" = *dev* ]]; then sed -i "s/\"MIT\"/\"MIT\",\"minimum-stability\":\"dev\"/g" composer.json; fi
- composer install --prefer-source
script: bin/phpunit --coverage-clover clover.xml
after_script: bin/coveralls -v
matrix:
include:
- php: 5.6
env: SYMFONY_VERSION=2.4.*
- php: 5.6
env: SYMFONY_VERSION=2.5.*
- php: 5.6
env: SYMFONY_VERSION=2.6.*
- php: 5.6
env: SYMFONY_VERSION=2.7.*@dev
allow_failures:
- php: hhvm-nightly
- env: SYMFONY_VERSION=2.7.*@dev
notifications:
email: geloen.eric@gmail.com
| language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
env:
global:
- COMPOSER_PREFER_LOWEST=false
- SYMFONY_VERSION=2.3.*
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- composer self-update
- composer require --no-update symfony/framework-bundle:${SYMFONY_VERSION}
- if [[ "$SYMFONY_VERSION" = *dev* ]]; then sed -i "s/\"MIT\"/\"MIT\",\"minimum-stability\":\"dev\"/g" composer.json; fi
- composer update --prefer-source `if [[ $COMPOSER_PREFER_LOWEST = true ]]; then echo "--prefer-lowest --prefer-stable"; fi`
script: bin/phpunit --coverage-clover clover.xml
after_script: bin/coveralls -v
matrix:
include:
- php: 5.6
env: COMPOSER_PREFER_LOWEST=true
- php: 5.6
env: SYMFONY_VERSION=2.4.*
- php: 5.6
env: SYMFONY_VERSION=2.5.*
- php: 5.6
env: SYMFONY_VERSION=2.6.*
- php: 5.6
env: SYMFONY_VERSION=2.7.*@dev
allow_failures:
- php: hhvm-nightly
- env: SYMFONY_VERSION=2.7.*@dev
notifications:
email: geloen.eric@gmail.com
| Add composer prefer lowest build | [Travis] Add composer prefer lowest build
| YAML | mit | egeloen/IvoryOrderedFormBundle,egeloen/IvoryOrderedFormBundle |
ce5015fab13d1ac87fb6df78a1a1898e2f6b4747 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.5.3
- ruby-head
gemfile: "gems.rb"
before_install: gem install bundler --no-document # Fixes ruby 2.5.3 tests
before_script:
- "ruby lib/initial_setup.rb ../.travis_setup"
- "psql -c 'create database slice_test;' -U postgres"
- "rails db:migrate"
matrix:
allow_failures:
- rvm: ruby-head
| language: ruby
rvm:
- 2.5.3
- ruby-head
gemfile: "gems.rb"
before_install: gem install bundler --no-document # Fixes ruby 2.5.3 tests
before_script:
- "ruby lib/initial_setup.rb ../.travis_setup"
- "psql -c 'create database slice_test;' -U postgres"
- "rails db:migrate"
matrix:
allow_failures:
- rvm: ruby-head
| Remove deprecated `sudo: false` Travis-CI configuration | Remove deprecated `sudo: false` Travis-CI configuration
| YAML | mit | remomueller/slice,remomueller/slice,remomueller/slice |
5309317e3d0c7e388178c15472e25806dbdf5b5a | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-2
env:
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=4.1.0"
script: bundle exec rspec spec/models
before_script:
- psql -c "CREATE USER cti WITH ENCRYPTED PASSWORD 'cti';" -U postgres
- psql -c "CREATE DATABASE dbview_cti_test WITH OWNER cti;" -U postgres
- ruby ./migrate_up.rb
after_success_script:
- ruby ./migrate_down.rb
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
- 2.3.0
- jruby-19mode
- rbx-2
env:
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=4.1.0"
- "RAILS_VERSION=4.2.0"
script: bundle exec rspec spec/models
before_script:
- psql -c "CREATE USER cti WITH ENCRYPTED PASSWORD 'cti';" -U postgres
- psql -c "CREATE DATABASE dbview_cti_test WITH OWNER cti;" -U postgres
- ruby ./migrate_up.rb
after_success_script:
- ruby ./migrate_down.rb
| Add explicit testing for Rails 4.2 and extra ruby versions | Add explicit testing for Rails 4.2 and extra ruby versions
| YAML | mit | mvdamme/dbview_cti,mvdamme/dbview_cti,mvdamme/dbview_cti |
7dc7a317126f38dec8e2e84cee0214728ebda9a7 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "2.6"
- "3.3"
- "3.4"
env:
- DJANGO_VERSION=1.6
- DJANGO_VERSION=1.7
# Django 1.7 doesn't support python 2.6, so explicitly exclude that
matrix:
exclude:
- python: "2.6"
env: DJANGO_VERSION=1.7
# command to install dependencies,
install:
# Install the right version of Django first
- pip install 'Django<='"$DJANGO_VERSION"
# The south 1.0 release isn't properly python 3 compatible, so we grab the
# fixed version from upstream - see
# https://bitbucket.org/andrewgodwin/south/pull-request/162/fixed-a-python-3-incompatibility-by
# for the details
- if [ "$DJANGO_VERSION" = "1.6" ]; then pip install 'https://bitbucket.org/andrewgodwin/south/get/e2c9102ee033.zip#egg=South'; fi
- pip install -r requirements.txt -r requirements-dev.txt --use-mirrors
# command to run tests
script: NOSE_WITH_COVERAGE=1 python manage.py test
| language: python
python:
- "2.7"
- "2.6"
- "3.3"
- "3.4"
env:
- DJANGO_VERSION=1.6
- DJANGO_VERSION=1.7
- DJANGO_VERSION=1.8
# Django 1.7 and 1.8 don't support python 2.6, so explicitly exclude those
matrix:
exclude:
- python: "2.6"
env: DJANGO_VERSION=1.7
- python: "2.6"
env: DJANGO_VERSION=1.8
# command to install dependencies,
install:
# Install the right version of Django first
- pip install 'Django<='"$DJANGO_VERSION"
# The south 1.0 release isn't properly python 3 compatible, so we grab the
# fixed version from upstream - see
# https://bitbucket.org/andrewgodwin/south/pull-request/162/fixed-a-python-3-incompatibility-by
# for the details
- if [ "$DJANGO_VERSION" = "1.6" ]; then pip install 'https://bitbucket.org/andrewgodwin/south/get/e2c9102ee033.zip#egg=South'; fi
- pip install -r requirements.txt -r requirements-dev.txt --use-mirrors
# command to run tests
script: NOSE_WITH_COVERAGE=1 python manage.py test
| Add Django 1.8 to Travis. | Add Django 1.8 to Travis.
| YAML | isc | CTPUG/wafer,CarlFK/wafer,CarlFK/wafer,CTPUG/wafer,CTPUG/wafer,CarlFK/wafer,CarlFK/wafer,CTPUG/wafer |
f5faac12fa37cfac21a940cf97ccbccbdb235f33 | .travis.yml | .travis.yml | language: node_js
before_install:
- npm install -g jspm
- jspm config registries.github.auth $JSPM_GITHUB_AUTH_TOKEN
node_js:
- "5.1"
- "5.0"
- "4.2"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
| language: node_js
before_install:
- npm install -g jspm gulp ts-node tsd
- jspm config registries.github.auth $JSPM_GITHUB_AUTH_TOKEN
node_js:
- "5.1"
- "5.0"
- "4.2"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
| Add global modules for troubleshooting | Add global modules for troubleshooting
| YAML | mit | peterjuras/slush-react-express,peterjuras/slush-react-express,peterjuras/slush-react-express,peterjuras/slush-azure-node,peterjuras/slush-azure-node,peterjuras/slush-azure-node |
3018b22d173a74386b64a539880cee49849e6f49 | .travis.yml | .travis.yml | language: ruby
bundler_args: --path vendor/bundle
script: bundle exec rspec
cache: bundler
gemfile:
- gemfiles/Gemfile.travis
before_install:
- gem install bundler
- bundle config --local without local_development yard guard
# env:
# - "rack=1.3.4"
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- 1.9.2
- jruby
- rbx-2
matrix:
allow_failures:
- rvm: rbx-2
| language: ruby
bundler_args: --path vendor/bundle
script: bundle exec rspec
cache: bundler
gemfile:
- gemfiles/Gemfile.travis
before_install:
- gem install bundler
- bundle config --local without local_development yard guard
# env:
# - "rack=1.3.4"
rvm:
# 2.1, not 2.1.0 until fixed https://github.com/travis-ci/travis-ci/issues/2220
- 2.1
- 2.0.0
- 1.9.3
- 1.9.2
- jruby
- rbx-2
matrix:
allow_failures:
- rvm: rbx-2
- rvm: 2.1
| Allow TravisCI failures for ruby 2.1 | Allow TravisCI failures for ruby 2.1
Until https://github.com/travis-ci/travis-ci/issues/2220 is fixed
Also see https://github.com/Shopify/active_merchant/pull/1150
It appears rbx is similarly broken
https://github.com/travis-ci/travis-ci/issues/2230
| YAML | mit | metricfu/metric_fu,metricfu/metric_fu,metricfu/metric_fu |
52341a061b57cc7d5ce71ab94527901245d1d36e | .travis.yml | .travis.yml | language: ruby
cache:
- bundler
install:
- bundle install
rvm:
- 2.0
- 2.1
- 2.2
- 2.3.0
- 2.4.1
notifications:
email:
recipients:
- sensu-plugin@sensu-plugins.io
on_success: change
on_failure: always
script:
- bundle exec rake default
- gem build sensu-plugins-google-spreadsheet.gemspec
- gem install sensu-plugins-google-spreadsheet-*.gem
deploy:
provider: rubygems
api_key:
secure: HSDVCf84CU+ccQG6MfqsZxwmMgKzopQ9o8FQjxPJ/OqlB9GQBT6kwQKiku9U8+oEuiX57fyygAnktIIUJ14nLSVDg6vx3AWJVQTescdtCaE3G1dK9fGZYMZylzLZBiF7LQDA/sUZ3DoODYyW4+kemY5sc/jKnBhYogfDYwklo3M=
gem: sensu-plugins-google-spreadsheet
on:
tags: true
all_branches: true
rvm: 2.0
rvm: 2.1
rvm: 2.2
rvm: 2.3.0
rvm: 2.4.1
repo: sensu-plugins/sensu-plugins-google-spreadsheet
| language: ruby
cache:
- bundler
install:
- bundle install
rvm:
- 2.0
- 2.1
- 2.2
- 2.3.0
- 2.4.1
notifications:
email:
recipients:
- sensu-plugin@sensu-plugins.io
on_success: change
on_failure: always
script:
- bundle exec rake default
- gem build sensu-plugins-google-spreadsheet.gemspec
- gem install sensu-plugins-google-spreadsheets-*.gem
deploy:
provider: rubygems
api_key:
secure: HSDVCf84CU+ccQG6MfqsZxwmMgKzopQ9o8FQjxPJ/OqlB9GQBT6kwQKiku9U8+oEuiX57fyygAnktIIUJ14nLSVDg6vx3AWJVQTescdtCaE3G1dK9fGZYMZylzLZBiF7LQDA/sUZ3DoODYyW4+kemY5sc/jKnBhYogfDYwklo3M=
gem: sensu-plugins-google-spreadsheet
on:
tags: true
all_branches: true
rvm: 2.0
rvm: 2.1
rvm: 2.2
rvm: 2.3.0
rvm: 2.4.1
repo: sensu-plugins/sensu-plugins-google-spreadsheet
| Correct name of the gem that is built | Correct name of the gem that is built
| YAML | mit | sensu-plugins/sensu-plugins-google-spreadsheet |
1dde2530dce086b781ce7f2e56c36113199131c2 | .travis.yml | .travis.yml | language: python
python: 3.3
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=coverage
- TOXENV=lint
before_install:
- sudo apt-get -y install libcairo2-dev
install:
- pip install tox
script: "./.travis.sh"
| language: python
python: 3.3
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=coverage
- TOXENV=lint
before_install:
- sudo apt-get -y install libcairo2-dev
install:
- pip install tox
script: "./.travis.sh"
matrix:
allow_failures:
- env: TOXENV=coverage
| Mark coverage as an allow_failure build | Mark coverage as an allow_failure build
| YAML | apache-2.0 | DaveBlooman/graphite-api,cybem/graphite-api-iow,cybem/graphite-api-iow,brutasse/graphite-api,hubrick/graphite-api,bogus-py/graphite-api,raintank/graphite-api,hubrick/graphite-api,michaelrice/graphite-api,rackerlabs/graphite-api,brutasse/graphite-api,alphapigger/graphite-api,raintank/graphite-api,GeorgeJahad/graphite-api,winguru/graphite-api,winguru/graphite-api,Knewton/graphite-api,tpeng/graphite-api,Knewton/graphite-api,vladimir-smirnov-sociomantic/graphite-api,alphapigger/graphite-api,GeorgeJahad/graphite-api,rackerlabs/graphite-api,tpeng/graphite-api,absalon-james/graphite-api,absalon-james/graphite-api,DaveBlooman/graphite-api,bogus-py/graphite-api,raintank/graphite-api,michaelrice/graphite-api,vladimir-smirnov-sociomantic/graphite-api |
2a13b9db8b2110eee12679601b587d004683749f | .travis.yml | .travis.yml | language: groovy | language: groovy
env:
- BLDFILE=build.gradle
- BLDFILE=standalone.gradle
cache:
directories:
- $HOME/.gradle
script: ./gradlew -b $BLDFILE | Build war and standalone in matrix build | Build war and standalone in matrix build | YAML | apache-2.0 | Slugger/pseudosmtp,Slugger/pseudosmtp |
156b446edb2282bd8bf010577f575fdfc93a2d92 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.3.3
- 2.4.0
- ruby-head
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rspec spec
| language: ruby
sudo: false
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- ruby-head
| Test build against Ruby 2.2 and 2.5 | [CI] Test build against Ruby 2.2 and 2.5 | YAML | mit | gazay/gon |
66173ce4ac1a041e8e0109d4cdad3d6036858e2a | .travis.yml | .travis.yml | # Based on https://github.com/malept/rusty_blank/blob/master/.travis.yml
language: rust
rust:
- stable
- beta
- nightly
cache: cargo
matrix:
allow_failures:
- rust: nightly
before_install:
- |
rvm install "$BUILD_RUBY_VERSION"
rvm use "$BUILD_RUBY_VERSION"
ruby --version
ruby -e 'require "pp"; pp RbConfig::CONFIG'
before_script:
- |
pip install 'travis-cargo<0.2' --user &&
export PATH=$HOME/.local/bin:$PATH
script:
- |
travis-cargo build &&
travis-cargo test
env:
global:
- TRAVIS_CARGO_NIGHTLY_FEATURE=""
matrix:
- BUILD_RUBY_VERSION: 2.3.0
- BUILD_RUBY_VERSION: 2.3.1
- BUILD_RUBY_VERSION: 2.4.0
| # Based on https://github.com/malept/rusty_blank/blob/master/.travis.yml
language: rust
rust:
- stable
- beta
- nightly
cache: cargo
matrix:
allow_failures:
- rust: nightly
before_install:
- |
rvm install "$BUILD_RUBY_VERSION"
rvm use "$BUILD_RUBY_VERSION"
ruby --version
ruby -e 'require "pp"; pp RbConfig::CONFIG'
before_script:
- |
pip install 'travis-cargo<0.2' --user &&
export PATH=$HOME/.local/bin:$PATH &&
mkdir -p target/debug/deps
cp $(ruby -e 'puts File.join(RbConfig::CONFIG["libdir"], RbConfig::CONFIG["LIBRUBY_ALIASES"].split(" ").first)') target/debug/deps
script:
- |
travis-cargo build &&
travis-cargo test
env:
global:
- TRAVIS_CARGO_NIGHTLY_FEATURE=""
matrix:
- BUILD_RUBY_VERSION: 2.3.0
- BUILD_RUBY_VERSION: 2.3.1
- BUILD_RUBY_VERSION: 2.4.0
| Add Ruby library to deps dir | Add Ruby library to deps dir
| YAML | mit | d-unseductable/ruru |
7afd99ec95b7dc13c5b006b34c5c4a9c5b0be841 | .travis.yml | .travis.yml | os: "linux"
dist: "bionic"
language: "node_js"
node_js:
- "14"
- "12"
- "10"
| os: "linux"
dist: "bionic"
language: "node_js"
node_js:
- "16"
- "14"
- "12"
| Update Travis CI node versions | Test: Update Travis CI node versions
| YAML | unlicense | fvdm/nodejs-ns-api |
f52fa1227f71c5344fe0de3d9fefc852e408deaa | .travis.yml | .travis.yml | language: php
php:
- 7.0
- hhvm
sudo: false
cache:
directories:
- vendor
- $HOME/.composer/cache
matrix:
allow_failures:
- php: hhvm
services: mongodb
before_script:
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" && "$TRAVIS_PHP_VERSION" != "7.0" ]; then echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;'
- sh -c 'echo 'extension = "memcached.so"' >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini'
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source
script:
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then ./vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover; fi
- if [[ "$TRAVIS_PHP_VERSION" == "hhvm" ]]; then ./vendor/bin/phpunit; fi
after_script:
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
| language: php
php:
- 7.0
- 7.1
sudo: false
cache:
directories:
- vendor
- $HOME/.composer/cache
matrix:
allow_failures:
- php: hhvm
dist: trusty
include:
- php: hhvm
dist: trusty
services: mongodb
before_script:
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" && "$TRAVIS_PHP_VERSION" != "7.0" ]; then echo "extension = mongo.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;'
- sh -c 'echo 'extension = "memcached.so"' >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini'
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source
script:
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then ./vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover; fi
- if [[ "$TRAVIS_PHP_VERSION" == "hhvm" ]]; then ./vendor/bin/phpunit; fi
after_script:
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
| Test on PHP7.1 and fix HHVM | Test on PHP7.1 and fix HHVM
| YAML | mit | thephpleague/geotools |
03ed146266b4eab31f3d28c1430b9447318b58ed | .travis.yml | .travis.yml | sudo: false
language: python
python:
- '2.7'
before_install:
- wget https://storage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.67.zip -nv
- unzip -q google_appengine_1.9.67.zip
- openssl aes-256-cbc -K $encrypted_ad8499d072ee_key -iv $encrypted_ad8499d072ee_iv -in client_secret.json.enc -out client_secret.json -d
install:
- pip install Paste
- pip install -r requirements.txt -t lib
script:
- flake8 --exclude lib --ignore E402
- nosetests test
before_deploy:
- rm -rf google_appengine_1.9.67.zip google_appengine .git
deploy:
provider: gae
skip_cleanup: true
version: prod
keyfile: client_secret.json
project: dzzzr-bot
default: true
| sudo: false
language: python
python:
- '2.7'
before_install:
- wget https://storage.googleapis.com/appengine-sdks/featured/google_appengine_1.9.67.zip -nv
- unzip -q google_appengine_1.9.67.zip
- openssl aes-256-cbc -K $encrypted_ad8499d072ee_key -iv $encrypted_ad8499d072ee_iv -in client_secret.json.enc -out client_secret.json -d
install:
- pip install Paste
- pip install flake8
- pip install -r requirements.txt -t lib
script:
- flake8 --exclude lib --ignore E402
- nosetests test
before_deploy:
- rm -rf google_appengine_1.9.67.zip google_appengine .git
deploy:
provider: gae
skip_cleanup: true
version: prod
keyfile: client_secret.json
project: dzzzr-bot
default: true
| Add flake8 to test requirments | Add flake8 to test requirments | YAML | apache-2.0 | m-messiah/dzzzzr-bot,m-messiah/dzzzzr-bot |
f77f1350d17be4af4d44da770402f183c5512d6f | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.5
# - 2.2
# - jruby
# - rbx-2
env:
- PIVOTAL_TRACKER_API_TOKEN=dummy_api_token
- SECRET_TOKEN=s3kr1t
script: bundle exec rspec
| language: ruby
rvm:
- 2.1.5
# - 2.2
# - jruby
# - rbx-2
env:
- PIVOTAL_TRACKER_API_TOKEN=dummy_api_token SECRET_TOKEN=s3kr1t
script: bundle exec rspec
| Put environment variables in one set. | Put environment variables in one set. | YAML | mit | marnen/pivotal-tracker-pr-hook |
9c4f6d55273ceeb4a13b243455fe94a5873cd6c6 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "8"
- "10"
script:
- "npm run coverage"
- "npm run lint"
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| language: node_js
node_js:
- 10
- 12
- 14
- node
script:
- npm run coverage
- npm run lint
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| Drop support for node.js <10, add 12, 14 + latest (semver-major) | Drop support for node.js <10, add 12, 14 + latest (semver-major)
| YAML | bsd-3-clause | alexjeffburke/unexpected-mxhr,alexjeffburke/unexpected-mxhr |
0393c75474b058ab221c03883290436e249039ac | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
before_script: composer install --dev
notifications:
email: matthiasnoback@gmail.com | language: php
php:
- 5.3
- 5.4
- 5.5
env:
- DEPENDENCY_INJECTION_VERSION=2.2.* EXPRESSION_LANGUAGE_VERSION=2.4.*
- DEPENDENCY_INJECTION_VERSION=2.3.* EXPRESSION_LANGUAGE_VERSION=2.4.*
- DEPENDENCY_INJECTION_VERSION=2.4.* EXPRESSION_LANGUAGE_VERSION=2.4.*
- DEPENDENCY_INJECTION_VERSION=2.5.*@dev EXPRESSION_LANGUAGE_VERSION=2.5.*@dev
before_script:
- composer require symfony/dependency-injection:${DEPENDENCY_INJECTION_VERSION}
- composer require symfony/expression-language:${EXPRESSION_LANGUAGE_VERSION} --dev
notifications:
email: matthiasnoback@gmail.com | Configure Travis to test different versions | Configure Travis to test different versions
| YAML | mit | matthiasnoback/symfony-service-definition-validator |
6a7c51cf86fa63252e2f26aef7b358a710199217 | .travis.yml | .travis.yml | sudo: false
rvm:
- 2.4.0
- 2.3.0
- 2.2
- 2.1
- 2.0.0
- jruby-9.0.5.0
# whitelist
branches:
only:
- master
notifications:
email:
- cukes-devs@googlegroups.com
webhooks:
urls: # gitter
- https://webhooks.gitter.im/e/dc010332f9d40fcc21c4
| sudo: false
before_install:
- gem update simplecov
rvm:
- 2.4.0
- 2.3.0
- 2.2
- 2.1
- 2.0.0
- jruby-9.0.5.0
# whitelist
branches:
only:
- master
notifications:
email:
- cukes-devs@googlegroups.com
webhooks:
urls: # gitter
- https://webhooks.gitter.im/e/dc010332f9d40fcc21c4
| Update simplecov from 0.12.0 that is installed on Travis rvm 2.4.0 environment to latest version to prevent core dump. | Update simplecov from 0.12.0 that is installed on Travis rvm 2.4.0 environment
to latest version to prevent core dump.
| YAML | mit | cucumber/cucumber-ruby-core,kamenlitchev/cucumber-ruby-core |
12750a0bfb64a46c8bd5fce4d6dce3d406969dc9 | .travis.yml | .travis.yml | sudo: false
language: "python"
branches:
only:
- master
matrix:
include:
- python: 2.7.13
env: TOXENV=py27
- python: pypy2.7-5.8.0
env: TOXENV=pypy
install:
- pip install -U pip setuptools wheel
- pip install tox codecov
script:
- tox
after_success:
- codecov
notifications:
email: false
irc:
channels: "chat.freenode.net#divmod"
template:
- "%{repository}@%{branch} - %{author}: %{message} (%{build_url})"
use_notice: true
| sudo: false
language: python
dist: xenial
branches:
only:
- master
matrix:
include:
- python: 2.7.13
env: TOXENV=py27
- python: pypy2.7-6.0
env: TOXENV=pypy
install:
- pip install -U pip setuptools wheel
- pip install tox codecov
script:
- tox
after_success:
- codecov
notifications:
email: false
irc:
channels: "chat.freenode.net#divmod"
template:
- "%{repository}@%{branch} - %{author}: %{message} (%{build_url})"
use_notice: true
| Upgrade to pypy 6.0 and xenial | Upgrade to pypy 6.0 and xenial
| YAML | mit | twisted/epsilon |
06aaddc38e7760c6ad63532a5628130f7febc86c | packages/ei/either-list-functions.yaml | packages/ei/either-list-functions.yaml | homepage: https://github.com/chris-martin/either-list-functions
changelog-type: text
hash: 6eb6845ab4870f580eca09bc7f86759d670c9f48b2ed89242b045c156cf5e96f
test-bench-deps:
base: ==4.12.*
doctest: -any
either-list-functions: -any
maintainer: Chris Martin <ch.martin@gmail.com>
synopsis: Functions involving lists of Either
changelog: |
0.0.4.0
- Added:
- spanLeft'
- spanRight'
- leadLeft
- leadLeft'
- leadRight
- leadRight'
- branchLeft
- branchRight
- BranchComparison
0.0.2.0
- Supports base-4.12
- Added 'partition' function
basic-deps:
base: ==4.12.*
containers: <0.7
all-versions:
- 0.0.0.1
- 0.0.0.2
- 0.0.0.3
- 0.0.2.0
- 0.0.4.0
author: Chris Martin <ch.martin@gmail.com>
latest: 0.0.4.0
description-type: haddock
description: Functions involving lists of Either.
license-name: Apache-2.0
| homepage: https://github.com/chris-martin/either-list-functions
changelog-type: text
hash: d4d97edbdc018c1b3ee5b3cba63a29501407303d44e38f7de3afc142e46aa6f0
test-bench-deps:
base: ! '>=4.12 && <4.14'
doctest: -any
either-list-functions: -any
maintainer: Chris Martin <ch.martin@gmail.com>
synopsis: Functions involving lists of Either
changelog: |
0.0.4.2
- Supports base-4.13 and GHC 8.8
0.0.4.0
- Added:
- spanLeft'
- spanRight'
- leadLeft
- leadLeft'
- leadRight
- leadRight'
- branchLeft
- branchRight
- BranchComparison
0.0.2.0
- Supports base-4.12
- Added 'partition' function
basic-deps:
base: ! '>=4.12 && <4.14'
containers: <0.7
all-versions:
- 0.0.0.1
- 0.0.0.2
- 0.0.0.3
- 0.0.2.0
- 0.0.4.0
- 0.0.4.2
author: Chris Martin <ch.martin@gmail.com>
latest: 0.0.4.2
description-type: haddock
description: Functions involving lists of Either.
license-name: Apache-2.0
| Update from Hackage at 2020-03-02T21:03:08Z | Update from Hackage at 2020-03-02T21:03:08Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
ae2f9d4b7657b9f0ce2312fc4af6027ea463bf26 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
matrix:
allow_failures:
- node_js: "0.11"
notifications:
email: false
| language: node_js
node_js:
- "0.11"
- "0.10"
matrix:
allow_failures:
- node_js: "0.11"
install:
# Install graphicsmagick
- sudo apt-get install graphicsmagick -y
- gm -help
# Install node dependencies
- npm install
notifications:
email: false
| Move to common test dependencies | Move to common test dependencies
| YAML | unlicense | jedmao/gulp.spritesmith,webcaetano/gulp.spritesmith,twolfson/gulp.spritesmith,radist2s/gulp.spritesmith |
d2f5698d36606409192c6e2f06703f8293522f39 | .travis.yml | .travis.yml | language: python
python:
- "3.5"
script: nosetests -w tests
| language: python
python:
- '3.5'
script: nosetests -w tests
notifications:
slack:
secure: F+cjB3Bc+l8iK4vufNeF1hxJtDfDAYsJOcBmvnROjQaW49SqOTCBnTbLZnud5Zq6mi2fzo1proMuqJ1yhhvzUBXFsifZwU6CpHQMDkem3LteHNKqYTWArj1JFoVqca7drGSNHRnawnMtve1Ce7P97vRRsddmzt558lC3fEVm+EqbH/dw0yiw36NMxUCk57jkDPeODFp3jH2PModvsVS7RKYdHmlbSGmLdq0i4o9sukBau70tyPEUTrJ6+7bA0OSoR2xxHqTk+NmZEWUSBMLCemcp0VtG6SpOOz+wy8jSwoq1H0dxlUQI8NVy7d9k+cy6R16uMW3HtHUijNOQ9t7nfyzyfEx3CEw3gMS6kbC7vmd5X37z4nh2Zqx5J2qttSUpWzjA5RiN+Hge2tx0w9BjayxtqgYQJoHJI4v4yjPLzbgjeLVlfxuf9j8jlSBed4rjq1UKPr6JX1Ie0IcpKj97MwaEaP10UpDuM6alWBZykO+vv7e2uCiCoiHGmvLluOZmjvONe70NBRd80GLeELzL646186gWa/pEoW4t0lc5bEFqsYz8eG5u91bYPkkKQidVz3VEEy+rKiN3+Xu47ZUeedYKqbH6jdrUIofY0C51D+re76ZaPaXOjPF/qS2rBs4U1Vv6c2ixjcAlWT4FBnY7uMtXbF12vpLFMVkM9kGJ1rg=
| Add Travis to Slack integration. | Add Travis to Slack integration.
| YAML | mit | alunegov/AtmelStudioToNinja |
b35bb1b4a0acee503621f0a0de8b41c123799005 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
env:
- LIBMEMCACHED_VERSION='0.44'
- LIBMEMCACHED_VERSION='0.53'
- LIBMEMCACHED_VERSION='1.0.8'
before_install:
# Default travis-ci libmemcached is 0.44 (ubuntu precise). If we need a
# higher version, add in the appropriate ppa. The newer package will upgrade
# the desired revision when we do a `apt-get install libmemcached-dev`.
- sh -c "if [ $LIBMEMCACHED_VERSION = '1.0.8' ] ; then sudo add-apt-repository ppa:plewis-m/ppa-libmemcached -y; fi"
- sh -c "if [ $LIBMEMCACHED_VERSION = '0.53' ] ; then sudo add-apt-repository ppa:plewis-m/libmemcached0.5x -y; fi"
- sudo apt-get update -qq
- sudo apt-get install memcached
- sudo service memcached start
- echo "stats settings" | nc localhost 11211
- sudo apt-get install libmemcached-dev
install: python setup.py install
before_script:
- pip install nose
script: python bin/runtests.py
| language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
env:
- LIBMEMCACHED_VERSION='0.44'
- LIBMEMCACHED_VERSION='0.53'
- LIBMEMCACHED_VERSION='1.0.8'
notifications:
irc:
channels:
- "chat.freenode.net#sendapatch"
on_success: change
on_failure: change
before_install:
# Default travis-ci libmemcached is 0.44 (ubuntu precise). If we need a
# higher version, add in the appropriate ppa. The newer package will upgrade
# the desired revision when we do a `apt-get install libmemcached-dev`.
- sh -c "if [ $LIBMEMCACHED_VERSION = '1.0.8' ] ; then sudo add-apt-repository ppa:plewis-m/ppa-libmemcached -y; fi"
- sh -c "if [ $LIBMEMCACHED_VERSION = '0.53' ] ; then sudo add-apt-repository ppa:plewis-m/libmemcached0.5x -y; fi"
- sudo apt-get update -qq
- sudo apt-get install memcached
- sudo service memcached start
- echo "stats settings" | nc localhost 11211
- sudo apt-get install libmemcached-dev
install: python setup.py install
before_script:
- pip install nose
script: python bin/runtests.py
| Add IRC notifications to Travis CI | Add IRC notifications to Travis CI
| YAML | bsd-3-clause | lericson/pylibmc,lericson/pylibmc,lericson/pylibmc |
ff039697fc1a0713442af6fa97d4ff27fc2a341d | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.7
- 1.8
- 1.9
- "1.10"
# 1.x builds the latest in that series. Also try to add other versions here
# as they come up so that we're pretty sure that we're maintaining
# backwards compatibility.
- 1.x
notifications:
email: false
services:
- redis-server
install: make get-deps
script: make
| sudo: false
language: go
go:
- "1.9"
- "1.10"
- "1.11"
# 1.x builds the latest in that series. Also try to add other versions here
# as they come up so that we're pretty sure that we're maintaining
# backwards compatibility.
- 1.x
notifications:
email: false
services:
- redis-server
install: make get-deps
script: make
| Add 1.11 to build matrix and drop 1.7 and 1.8 | Add 1.11 to build matrix and drop 1.7 and 1.8
Adds 1.11 to build the matrix.
Only the last two versions of Go are technically supported according to
the official policy (so 1.11 and 1.10). We should make an effort to
support old versions for longer than that, but probably not *too* big of
an effort because upgrading Go versions tends to be quite easy.
Here we drop 1.7 and 1.8 because Golint no longer supports them and
they're failing in our build matrix. We could exempt them from Golint,
but given the above, I think it's okay to drop them in this case
instead.
| YAML | bsd-3-clause | throttled/throttled,throttled/throttled,PuerkitoBio/throttled |
b2161a49e6dd814c5179543e87cfc30990dcb0b9 | .travis.yml | .travis.yml | language: go
go_import_path: github.com/namsral/multipass
go:
- 1.7.1
- tip
os:
- linux
script:
- go test -v ./...
- go build github.com/namsral/multipass/cmd/multipass
| language: go
go_import_path: github.com/namsral/multipass
go:
- 1.7.1
os:
- linux
script:
- go test -v ./...
- go vet $(go list ./...)
- go build github.com/namsral/multipass/cmd/multipass
| Add go vet command to Travic CI | Add go vet command to Travic CI
| YAML | bsd-3-clause | namsral/multipass |
e2c3807e928acfa47cef870f53dd738d48b8f0a1 | packages/he/hero-club-five-tenets.yaml | packages/he/hero-club-five-tenets.yaml | homepage: http://github.com/i-amd3/hero-club-five-tenets
changelog-type: ''
hash: 36c889475fad484884b4de3ef5e4a2c9e7104bda1fc1b5b2092bb2a704d2695b
test-bench-deps: {}
maintainer: d.kupanhy@gmail.com
synopsis: Remember the five tenets of hero club
changelog: ''
basic-deps:
hero-club-five-tenets: -any
base: ! '>=4.7 && <5'
text: -any
random: -any
all-versions:
- '0.3.0.0'
- '0.3.0.1'
author: I am D.
latest: '0.3.0.1'
description-type: haddock
description: This package give you Hero Club Five Tenets, Yuki Yuna is a Hero.
license-name: BSD3
| homepage: https://github.com/i-amd3/hero-club-five-tenets
changelog-type: ''
hash: 0f112b9e41cf26eeb7c5d5218b9d01b41a0324ea76b700511092089f6cbdb9c4
test-bench-deps: {}
maintainer: d.kupanhy@gmail.com
synopsis: Think back of the five tenets of hero club
changelog: ''
basic-deps:
hero-club-five-tenets: -any
base: ! '>=4.7 && <5'
text: -any
random: -any
all-versions:
- '0.3.0.0'
- '0.3.0.1'
- '0.3.0.3'
author: I am D.
latest: '0.3.0.3'
description-type: haddock
description: This package gives you Hero Club Five Tenets, Yuki Yuna is a Hero.
license-name: BSD3
| Update from Hackage at 2016-01-24T16:21:28+0000 | Update from Hackage at 2016-01-24T16:21:28+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
14f6eae5de2fae4614ac717afb6625a5f069c247 | .travis.yml | .travis.yml | language: python
python:
- '2.6'
- '2.7'
before_install:
- sudo apt-get update && sudo apt-get install git swig supervisor rabbitmq-server ruby
- git fetch remote && git fetch --tags
- pip install http://dl.dropbox.com/u/174789/m2crypto-0.20.1.tar.gz
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2 ordereddict; fi"
install: pip install -r requirements.txt --use-mirrors
script: sudo -E python setup.py test --runtests-opts='--run-destructive --sysinfo -v'
notifications:
irc:
channels: "irc.freenode.org#salt-devel"
on_success: change
on_failure: change
| language: python
python:
- '2.6'
- '2.7'
before_install:
- sudo apt-get update && sudo apt-get install git swig supervisor rabbitmq-server ruby
- git describe | git remote add upstream git://github.com/saltstack/salt.git && git fetch --tags upstream
- pip install http://dl.dropbox.com/u/174789/m2crypto-0.20.1.tar.gz
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2 ordereddict; fi"
install: pip install -r requirements.txt --use-mirrors
script: sudo -E python setup.py test --runtests-opts='--run-destructive --sysinfo -v'
notifications:
irc:
channels: "irc.freenode.org#salt-devel"
on_success: change
on_failure: change
| Add `git://github.com/saltstack/salt.git` as a remote and fetch tags upstream for forks. | Add `git://github.com/saltstack/salt.git` as a remote and fetch tags upstream for forks.
| YAML | apache-2.0 | saltstack/salt,saltstack/salt,saltstack/salt,saltstack/salt,saltstack/salt |
75cb93f9df4c9ad30d4edf5ea115eebadc08e1a8 | .travis.yml | .travis.yml | language: go
go:
- 1.3
- 1.4
- tip
| language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- 1.8
- 1.9
- tip
| Test several versions of Go | Test several versions of Go
| YAML | bsd-3-clause | xyproto/simplebolt |
d2adef4d4467257c2eb00dc9ae170a4e96bf5c8a | .travis.yml | .travis.yml | ---
# Verify this with: http://lint.travis-ci.org/
language: ruby
# Delete dependency locks for matrix builds.
before_install: rm Gemfile.lock || true
script: bundle exec rake test
rvm:
- 1.9.3
env:
- PUPPET_VERSION="~> 3.8.0"
- PUPPET_VERSION="~> 5.3.0"
matrix:
allow_failures:
- env: PUPPET_VERSION="~> 5.3.0"
| ---
language: ruby
before_install: rm Gemfile.lock || true
script: bundle exec rake test
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_VERSION="~> 3.8.0"
- rvm: 2.4.0
env: PUPPET_VERSION="~> 5.3.0"
allow_failures:
- rvm: 2.4.0
env: PUPPET_VERSION="~> 5.3.0"
| Test Puppet 5 under modern ruby | Test Puppet 5 under modern ruby
But allow the newer ones to fail as we don't use that.
| YAML | mit | gds-operations/puppet-resolvconf,gds-operations/puppet-resolvconf |
1d573e705afc4db1ddc7138b74589b0f47aebcc5 | config/assets.yml | config/assets.yml | compress_assets: on
gzip_assets: off
javascripts:
foundation:
- javascripts/jquery.reveal.js
- javascripts/jquery.orbit-1.4.0.js
- javascripts/jquery.customforms.js
- javascripts/jquery.placeholder.min.js | compress_assets: on
gzip_assets: off
javascripts:
foundation:
- javascripts/jquery.reveal.js
- javascripts/jquery.orbit-1.4.0.js
- javascripts/jquery.customforms.js
- javascripts/jquery.placeholder.min.js
- javascripts/jquery.jquery.tooltips.js | Include tooltips js in packaged foundation.js | Include tooltips js in packaged foundation.js
| YAML | mit | labr1005/foundation,ysalmin/foundation,designerno1/foundation-sites,rxfork/foundation,r14r-work/fork_foundation_master,anbestephen/foundation,leo-guinan/foundation,signal/foundation,oller/foundation,hummingbird-me/foundation-sites-6,a-dg/foundation,labr1005/foundation,MarcGuay/foundation,Mango-information-systems/foundation,pwnall/foundation-sites,youprofit/foundation,mbencharrada/foundation,claytonrodgers/foundation,asommer70/foundation,r14r/fork_foundation_master,abdullahsalem/foundation-sites,marcosvicente/foundation,vita10gy/foundation,leo-guinan/foundation,themccallister/foundation,brettsmason/foundation-sites,zurb/foundation-sites,abdullahsalem/foundation-sites,wikieswan/foundation,vrkansagara/foundation,wikieswan/foundation,socketz/foundation-multilevel-offcanvas,glunco/foundation,yohio/foundation-sites-6,pdeffendol/foundation,ysalmin/foundation,joe-watkins/foundation,pdeffendol/foundation,gnepal7/foundation,zurb/foundation-sites,sashaegorov/foundation-sites,Iamronan/foundation,carey/foundation,jamesstoneco/foundation-sites,mbarlock/foundation,Klaudit/foundation,socketz/foundation-multilevel-offcanvas,IamManchanda/foundation-sites,birthdayalex/foundation,pauleds/foundation,dragthor/foundation-sites,r14r/fork_foundation_master,robottomw/foundation,claytonrodgers/foundation,MarcGuay/foundation,dimamedia/foundation-6-sites-simple-scss-and-js,anbestephen/foundation,zurb/foundation-sites,573/foundation,ibroadfo/foundation,BerndtGroup/TBG-foundation-sites,vita10gy/foundation,natewiebe13/foundation-sites,Larzans/foundation,DouglasAllen/css-foundation,tarikdavis/foundation,sitexa/foundation,Owlbertz/foundation,PassKitInc/foundation-sites,lizzwestman/foundation,dragthor/foundation-sites,Teino1978-Corp/Teino1978-Corp-foundation,barnyp/foundation,dmackerman/foundation,glizer/foundation,aoimedia/foundation,jxnblk/foundation,walbo/foundation,DaSchTour/foundation-sites,samuelmc/foundation-sites,asommer70/foundation,mbarlock/foundation,Mango-information-systems/foundation,Klaudit/foundation,ibroadfo/foundation,ibroadfo/foundation,ucla/foundation-sites,celsoyh/foundation,youprofit/foundation,djlotus/foundation,vrkansagara/foundation,JihemC/Foundation-Demo,colin-marshall/foundation-sites,DouglasAllen/css-foundation,r14r-work/fork_foundation_master,socketz/foundation-multilevel-offcanvas,ioanok/foundation,atmmarketing/foundation-sites,labr1005/foundation,jlegendary/foundation,advisorwebsites/foundation-sites-6,gnepal7/foundation,adstyles/foundation,mbencharrada/foundation,getoutfitted/reaction-foundation-theme,iwikmu/foundation,sitexa/foundation,yohio/foundation-sites-6,samuelmc/foundation-sites,colin-marshall/foundation-sites,claytonrodgers/foundation,a-dg/foundation,gnepal7/foundation,walbo/foundation,mbencharrada/foundation,Owlbertz/foundation,mbencharrada/foundation,NikhilKalige/foundation,DouglasAllen/css-foundation,andycochran/foundation-sites,RichardLee1978/foundation,asommer70/foundation,marcosvicente/foundation,anbestephen/foundation,iwikmu/foundation,PassKitInc/foundation-sites,ysalmin/foundation,getoutfitted/reaction-foundation-theme,ysalmin/foundation,IamManchanda/foundation-sites,RichardLee1978/foundation,JihemC/Foundation-Demo,vita10gy/foundation,youprofit/foundation,jeromelebleu/foundation-sites,elkingtonmcb/foundation,andycochran/foundation-sites,adstyles/foundation,NeonWilderness/foundation,kirstein/foundation,pwnall/foundation-sites,MarcGuay/foundation,djlotus/foundation,glunco/foundation,marcosvicente/foundation,boblmartens/yavin,barnyp/foundation,samuelmc/foundation-sites,sashaegorov/foundation-sites,Ilyes512/foundation,iwikmu/foundation,denisahac/foundation-sites,Larzans/foundation,vrkansagara/foundation,barnyp/foundation,laantorchaweb/foundation,hboers/foundation,BerndtGroup/TBG-foundation-sites,jamesstoneco/foundation-sites,oller/foundation,celsoyh/foundation,stanwmusic/foundation,lizzwestman/foundation,a-dg/foundation,glunco/foundation,0111001101111010/foundation,Larzans/foundation,jxnblk/foundation,blai/foundation,walbo/foundation,pauleds/foundation,jaylensoeur/foundation-sites-6,PassKitInc/foundation-sites,brettsmason/foundation-sites,glizer/foundation,themccallister/foundation,0111001101111010/foundation,marcosvicente/foundation,Teino1978-Corp/Teino1978-Corp-foundation,laantorchaweb/foundation,pdeffendol/foundation,dsandstrom/foundation,ibroadfo/foundation,brettsmason/foundation-sites,ucla/foundation-sites,sethkane/foundation-sites,natewiebe13/foundation-sites,rxfork/foundation,leo-guinan/foundation,boblmartens/yavin,glizer/foundation,r14r-work/fork_foundation_master,RichardLee1978/foundation,karland/foundation-sites,a-dg/foundation,oller/foundation,walbo/foundation,ioanok/foundation,jlegendary/foundation,Ilyes512/foundation,getoutfitted/reaction-foundation-theme,pwnall/foundation-sites,sashaegorov/foundation-sites,natewiebe13/foundation-sites,zurb/foundation-sites-6,aoimedia/foundation,r14r-work/fork_foundation_master,themccallister/foundation,jaylensoeur/foundation-sites-6,adstyles/foundation,vita10gy/foundation,atmmarketing/foundation-sites,dimamedia/foundation-6-sites-simple-scss-and-js,jamesstoneco/foundation-sites,JihemC/Foundation-Demo,barnyp/foundation,BerndtGroup/TBG-foundation-sites,jxnblk/foundation,Iamronan/foundation,djlotus/foundation,zurb/foundation,blai/foundation,IamManchanda/foundation-sites,birthdayalex/foundation,laantorchaweb/foundation,designerno1/foundation-sites,hboers/foundation,NeonWilderness/foundation,sethkane/foundation-sites,dragthor/foundation-sites,hummingbird-me/foundation-sites-6,DouglasAllen/css-foundation,elkingtonmcb/foundation,claytonrodgers/foundation,Klaudit/foundation,Owlbertz/foundation,celsoyh/foundation,denisahac/foundation-sites,carey/foundation,lizzwestman/foundation,karland/foundation-sites,anbestephen/foundation,Owlbertz/foundation,asommer70/foundation,mnmly/contacts-manager,glizer/foundation,NikhilKalige/foundation,JihemC/Foundation-Demo,birthdayalex/foundation,kirstein/foundation,joe-watkins/foundation,robottomw/foundation,boblmartens/yavin,adstyles/foundation,gnepal7/foundation,jeromelebleu/foundation-sites,sitexa/foundation,2fd/foundation-stylus,leo-guinan/foundation,jlegendary/foundation,jaylensoeur/foundation-sites-6,signal/foundation,r14r/fork_foundation_master,Iamronan/foundation,wikieswan/foundation,carey/foundation,atmmarketing/foundation-sites,robottomw/foundation,pauleds/foundation,sethkane/foundation-sites,karland/foundation-sites,joe-watkins/foundation,jxnblk/foundation,Mango-information-systems/foundation,ucla/foundation-sites,NeonWilderness/foundation,abdullahsalem/foundation-sites,joe-watkins/foundation,glunco/foundation,djlotus/foundation,wikieswan/foundation,advisorwebsites/foundation-sites-6,Larzans/foundation,mnmly/contacts-manager,Klaudit/foundation,elkingtonmcb/foundation,mbarlock/foundation,DaSchTour/foundation-sites,573/foundation,youprofit/foundation,Ilyes512/foundation,mnmly/contacts-manager,celsoyh/foundation,stanwmusic/foundation,robottomw/foundation,mnmly/contacts-manager,ioanok/foundation,jlegendary/foundation,MarcGuay/foundation,jeromelebleu/foundation-sites,Teino1978-Corp/Teino1978-Corp-foundation,RichardLee1978/foundation,stanwmusic/foundation,mbarlock/foundation,NeonWilderness/foundation,lizzwestman/foundation,birthdayalex/foundation,zurb/foundation-sites-6,dsandstrom/foundation,iwikmu/foundation,vrkansagara/foundation,andycochran/foundation-sites,laantorchaweb/foundation,signal/foundation,designerno1/foundation-sites,colin-marshall/foundation-sites,Teino1978-Corp/Teino1978-Corp-foundation,zurb/foundation,zurb/foundation,aoimedia/foundation,pdeffendol/foundation,r14r/fork_foundation_master,NikhilKalige/foundation,denisahac/foundation-sites,0111001101111010/foundation,pauleds/foundation,sitexa/foundation,carey/foundation,labr1005/foundation,stanwmusic/foundation,elkingtonmcb/foundation,signal/foundation |
058c13c507825c3a4b5713571d36de17ee439b56 | buildsys-tags/cloud8s-openstack-wallaby-candidate.yml | buildsys-tags/cloud8s-openstack-wallaby-candidate.yml | packages:
- project: python-amqp
buildsys-tags:
cloud8s-openstack-wallaby-candidate: python-amqp-5.0.5-1.el8
- project: python-memcached
buildsys-tags:
cloud8s-openstack-wallaby-candidate: python-memcached-1.59-1.el8
| packages:
- project: python-amqp
buildsys-tags:
cloud8s-openstack-wallaby-candidate: python-amqp-5.0.5-1.el8
- project: python-memcached
buildsys-tags:
cloud8s-openstack-wallaby-candidate: python-memcached-1.59-1.el8
- project: python-pymemcache
buildsys-tags:
cloud8s-openstack-wallaby-candidate: python-pymemcache-3.4.0-1.el8
| Rebuild packages from Fedora to match u-c | Rebuild packages from Fedora to match u-c
python-pymemcache-3.4.0-1.el8
Change-Id: I985b4eac94d37a4317474008fca81c8b8a9b12cf
| YAML | apache-2.0 | redhat-openstack/rdoinfo |
bad3b5187f4e5783cdca0a924b8e57bc996d3b02 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode9
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- WORKSPACE=Embassy.xcworkspace
- IOS_FRAMEWORK_SCHEME="Embassy-iOS"
- IOS_SDK=iphonesimulator11.0
- MACOS_FRAMEWORK_SCHEME="Embassy-macOS"
- MACOS_SDK=macosx10.12
matrix:
- DESTINATION="OS=11.0,name=iPhone 6S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK"
- DESTINATION="arch=x86_64" SCHEME="$MACOS_FRAMEWORK_SCHEME" SDK="$MACOS_SDK"
script:
- >
set -o pipefail &&
xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK"
-destination "$DESTINATION" -configuration Debug
ONLY_ACTIVE_ARCH=NO test | xcpretty -c;
| language: objective-c
osx_image: xcode9
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- WORKSPACE=Embassy.xcworkspace
- IOS_FRAMEWORK_SCHEME="Embassy-iOS"
- IOS_SDK=iphonesimulator11.0
- MACOS_FRAMEWORK_SCHEME="Embassy-macOS"
- MACOS_SDK=macosx10.13
matrix:
- DESTINATION="OS=11.0,name=iPhone 6S" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK"
- DESTINATION="arch=x86_64" SCHEME="$MACOS_FRAMEWORK_SCHEME" SDK="$MACOS_SDK"
script:
- >
set -o pipefail &&
xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK"
-destination "$DESTINATION" -configuration Debug
ONLY_ACTIVE_ARCH=NO test | xcpretty -c;
| Fix wrong macos SDK version | Fix wrong macos SDK version
| YAML | mit | envoy/Embassy,envoy/Embassy,envoy/Embassy |
fc5274159d15d61c08ebf4cdfb1200b2f438b772 | .travis.yml | .travis.yml | sudo: required
services:
- docker
env:
- DOCKER_COMPOSE_VERSION=1.11.2
language: python
python:
- '3.6'
before_install:
# See https://github.com/travis-ci/travis-ci/issues/7940
- sudo rm -f /etc/boto.cfg
install:
- sudo docker --version
- sudo docker-compose --version
jobs:
include:
- stage: test
- script: ./helper ci test_suite
- script: ./helper ci test_backwards
if: type = pull_request
- script: ./helper ci style
notifications:
email: false
slack:
rooms: deptfunstuff:abJKvzApk5SKtcEyAgtswXAv
on_success: change
on_failure: change
stages:
- name: test
- name: develop deploy
if: branch = develop
- name: production deploy
if: branch = master
| sudo: required
services:
- docker
language: python
python:
- '3.6'
before_install:
# See https://github.com/travis-ci/travis-ci/issues/7940
- sudo rm -f /etc/boto.cfg
install:
- sudo docker --version
- sudo docker-compose --version
jobs:
include:
- stage: test
- script: ./helper ci test_suite
- script: ./helper ci test_backwards
if: type = pull_request
- script: ./helper ci style
notifications:
email: false
slack:
rooms: deptfunstuff:abJKvzApk5SKtcEyAgtswXAv
on_success: change
on_failure: change
stages:
- name: test
| Remove unused lines in Travis CI config file | Remove unused lines in Travis CI config file
| YAML | mit | uccser/cs4teachers,uccser/cs4teachers,uccser/cs4teachers,uccser/cs4teachers |
f1011d651331fd31c1d0a7c279a3032a75c566aa | .travis.yml | .travis.yml | before_script:
- bundle exec rake test_app
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
env:
- DB=mysql
- DB=postgres
language: ruby
rvm:
- 2.1.5
sudo: false
| before_script:
- bundle exec rake test_app
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
env:
- DB=mysql
- DB=postgres
language: ruby
rvm:
- 2.2.4
sudo: false
| Test against 2.2.4 on Travis | Test against 2.2.4 on Travis
| YAML | bsd-3-clause | MenuSlate/spree_auth_devise,spree/spree_auth_devise,DarkoP/spree_auth_devise,DarkoP/spree_auth_devise,MenuSlate/spree_auth_devise,spree/spree_auth_devise |
dcf7d8e8169981424f779151010fd1f84cff7eec | .travis.yml | .travis.yml | language: java
jdk: oraclejdk7
install: true
script: ./gradle/buildViaTravis.sh
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
before_install:
- test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_fd546f631468_key -iv $encrypted_fd546f631468_iv
-in gradle.properties.enc -out gradle.properties -d || true
after_success:
- "./gradlew jacocoTestReport coveralls"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/32e7cdf345fb9c05a8d1
on_success: change
on_failure: always
on_start: never
| language: java
jdk: openjdk7
install: true
script: ./gradle/buildViaTravis.sh
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
before_install:
- test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_fd546f631468_key -iv $encrypted_fd546f631468_iv
-in gradle.properties.enc -out gradle.properties -d || true
after_success:
- "./gradlew jacocoTestReport coveralls"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/32e7cdf345fb9c05a8d1
on_success: change
on_failure: always
on_start: never
| Switch to OpenJDK 7 for compatiblity with the new Trusty build infrastructure on Travis | Switch to OpenJDK 7 for compatiblity with the new Trusty build infrastructure on Travis
| YAML | mit | nebula-plugins/nebula-grails-plugin |
73926889e057b5d351a6d70602b4ea1a3c7e7d7b | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.1
- 2.2.5
- 2.1.9
gemfile:
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
addons:
postgresql: "9.2"
before_script:
- cp spec/database.yml.travis spec/database.yml
- bundle exec rake db:setup
| language: ruby
rvm:
- 2.3.1
- 2.2.5
gemfile:
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
addons:
postgresql: "9.2"
before_script:
- cp spec/database.yml.travis spec/database.yml
- bundle exec rake db:setup
| Remove Ruby 2.1.9 from Travis as Rails 5 does not support | Remove Ruby 2.1.9 from Travis as Rails 5 does not support
| YAML | mit | jackc/edge |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.