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 |
|---|---|---|---|---|---|---|---|---|---|
1666e0a2c7f5c1bff2bf1eb14c3eb2f853d5d3d5 | .travis.yml | .travis.yml | language: cpp
compiler:
- clang
- gcc
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
before_install:
- sudo apt-get install libgsl0ldbl
- curl -OL http://ftp.gnu.org/gnu/automake/automake-1.14.1.tar.gz
- tar -xzf automake-1.14.1.tar.gz
- cd automake-1.14.1
- ./configure
- make
- sudo make install
- cd ..
- git clone https://github.com/kartikkumar/sgp4deorbit sgp4
- cd sgp4
- automake --add-missing
- ./configure
- make
- cd ..
- git clone https://www.github.com/kartikkumar/sml
- cd sml
- git submodule init
- git submodule update
- cmake -HSML -Bbuild
- cd build
- make
- cd ..
- cd ..
- git clone https://www.github.com/kartikkumar/sam
- cd sam
- git submodule init
- git submodule update
- cmake -HSAM -Bbuild
- cd build
- make
- cd ..
- cd ..
install:
- cmake -HAtom -Bbuild -DCMAKE_BUILD_TYPE=$BUILD_TYPE
- cd build
- make
- cd ..
script:
- cd build
- ctest -V | language: cpp
compiler:
- clang
- gcc
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
before_install:
- curl -OL http://mirror2.mirror.garr.it/mirrors/gnuftp/gnu/gsl/gsl-1.16.tar.gz
- tar -xzf gsl-1.16.tar.gz
- cd gsl-1.16
- ./configure
- make
- sudo make install
- cd ..
- curl -OL http://ftp.gnu.org/gnu/automake/automake-1.14.1.tar.gz
- tar -xzf automake-1.14.1.tar.gz
- cd automake-1.14.1
- ./configure
- make
- sudo make install
- cd ..
- git clone https://github.com/kartikkumar/sgp4deorbit sgp4
- cd sgp4
- automake --add-missing
- ./configure
- make
- cd ..
- git clone https://www.github.com/kartikkumar/sml
- cd sml
- git submodule init
- git submodule update
- cmake -HSML -Bbuild
- cd build
- make
- cd ..
- cd ..
- git clone https://www.github.com/kartikkumar/sam
- cd sam
- git submodule init
- git submodule update
- cmake -HSAM -Bbuild
- cd build
- make
- cd ..
- cd ..
install:
- cmake -HAtom -Bbuild -DCMAKE_BUILD_TYPE=$BUILD_TYPE
- cd build
- make
- cd ..
script:
- cd build
- ctest -V | Add instructions to manually install GSL in Travis CI script. | Add instructions to manually install GSL in Travis CI script.
| YAML | mit | openastro/atom,openastro/atom |
508a5207987d3bba0c006424659dcda8e1b9889a | .travis.yml | .travis.yml | language: java
jdk:
- openjdk8
sudo: false
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
install: /bin/true
script:
- ./gradlew build test | language: java
jdk:
- openjdk11
sudo: false
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
install: /bin/true
script:
- ./gradlew build test | Use jdk 11 for build | Use jdk 11 for build
| YAML | apache-2.0 | stupacki/MultiFunctions |
b31ee45b9d0ffc108db869da083fd1511a486869 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk9
install: true
script:
- mvn clean verify
- bash <(curl -s https://codecov.io/bash) -f com.io7m.jnull.core/target/site/jacoco/jacoco.xml
notifications:
irc: "chat.freenode.net#io7m"
| language: java
jdk:
- oraclejdk9
install: true
script:
- mvn --errors clean verify
- bash <(curl -s https://codecov.io/bash) -f com.io7m.jnull.core/target/site/jacoco/jacoco.xml
notifications:
irc: "chat.freenode.net#io7m"
| Add --errors option to Travis CI execution | Add --errors option to Travis CI execution
| YAML | isc | io7m/jnull |
60175974dc46a2d30714e973c30f74943abfc793 | .travis.yml | .travis.yml | # Nodejs software
language: node_js
node_js:
- 6.9.2
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
code_climate:
repo_token: 67f8f00d5cf9e5c46b7644aebee5ac9df9d6ee267014a6f61a7a7b1048357a1c
sudo: false
dist: precise
# Unit Tests (+code coverage)
script: npm run-script test-travis
after_success:
# Send coverage data to Coveralls
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
- rm -Rf ./coverage
deploy:
- provider: npm
email: cem.moreau@gmail.com
skip_cleanup: true
api_key:
secure: gZV7yLxDwwxD4oQXl1hwugmtnWXqP8vojuVGtAGwtMlwJE0n270w6O5xZHDd7DSmOZLftk6/wue/RdhLDsD6J1z3Uxu+VoUWy7aG/sFcGRaBwct+bGqFGkyd+I1mCXFnAZMDwbtgdkQlOCS9PM1BfMEYq49XXqaLaDnwouR+2bI=
on:
tags: true
repo: duniter/duniter
| # Nodejs software
language: node_js
node_js:
- 6.11.1
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
code_climate:
repo_token: 67f8f00d5cf9e5c46b7644aebee5ac9df9d6ee267014a6f61a7a7b1048357a1c
sudo: false
dist: precise
# Unit Tests (+code coverage)
script: npm run-script test-travis
after_success:
# Send coverage data to Coveralls
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
- rm -Rf ./coverage
deploy:
- provider: npm
email: cem.moreau@gmail.com
skip_cleanup: true
api_key:
secure: gZV7yLxDwwxD4oQXl1hwugmtnWXqP8vojuVGtAGwtMlwJE0n270w6O5xZHDd7DSmOZLftk6/wue/RdhLDsD6J1z3Uxu+VoUWy7aG/sFcGRaBwct+bGqFGkyd+I1mCXFnAZMDwbtgdkQlOCS9PM1BfMEYq49XXqaLaDnwouR+2bI=
on:
tags: true
repo: duniter/duniter
| Make tests pass using NodeJS 6.11.1 | [fix] Make tests pass using NodeJS 6.11.1
| YAML | agpl-3.0 | duniter/duniter,duniter/duniter,duniter/duniter,duniter/duniter,duniter/duniter,duniter/duniter |
d98e24fe12509adc51315b4a38bc2120090495ad | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: php
php:
- 5.4
before_install:
- sudo apt-get -y install git zip php5-cli php5-curl
before_script:
- php -r "printf('PHP %s', phpversion());"
- composer self-update
- composer install --no-interaction
script: cd tests/suites/ && php all.php | sudo: false
dist: trusty
language: php
php:
- 5.4
- 7.0
- 7.1
before_script:
- php -r "printf('PHP %s', phpversion());"
- composer self-update
- composer install --no-interaction
script: cd tests/suites/ && php all.php
| Add PHP 7 and 7.1, test with sudo false | Add PHP 7 and 7.1, test with sudo false
| YAML | mit | Mangopay/mangopay2-php-sdk,Mangopay/mangopay2-php-sdk |
23c762649d76bdd1d1e585d0689c9cf07a9c257e | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
- 2.1.0
script: "bundle exec rake appraisal:install test"
| language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1
gemfile:
- gemfiles/rails31.gemfile
- gemfiles/rails32.gemfile
- gemfiles/rails40.gemfile
| Switch to recommended Travis CI integration for appraisal | Switch to recommended Travis CI integration for appraisal
See https://github.com/thoughtbot/appraisal#travis-ci-integration
| YAML | mit | glebtv/compass-rails,Compass/compass-rails,amiuhle/compass-rails,chrise86/compass-rails,twalpole/compass-rails,ipmobiletech/compass-rails,electronicbites/compass-rails |
4944aa549b2557d99a9d9f84bc1cd80d45bb7f71 | .travis.yml | .travis.yml | before_install:
- yes | sudo add-apt-repository ppa:hansjorg/rust
- yes | sudo add-apt-repository ppa:yak1ex/llvm
- yes | sudo add-apt-repository ppa:sven-eckelmann/ppa-wxwidgets2.9
- sudo apt-get update
install:
- sudo apt-get install rust-nightly
- sudo apt-get install clang-3.3
- sudo apt-get install libwxgtk2.9-dev
script:
- ./build.sh
| before_install:
- yes | sudo add-apt-repository ppa:hansjorg/rust
- yes | sudo add-apt-repository ppa:yak1ex/llvm
- yes | sudo add-apt-repository ppa:sven-eckelmann/ppa-wxwidgets2.9
- sudo apt-get update
install:
- sudo apt-get install rust-nightly
- sudo apt-get install libclang-3.3-dev
- sudo apt-get install libwxgtk2.9-dev
script:
- ./build.sh
| Install libclang-3.3-dev into the Travis CI environment. | Install libclang-3.3-dev into the Travis CI environment.
| YAML | lgpl-2.1 | tempbottle/wxRust,tempbottle/wxRust |
be08e35512b5f0bac4ec5634e4cdc99bc77949a6 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
gemfile:
- gemfiles/rails2.gemfile
- gemfiles/rails3.gemfile
matrix:
exclude:
- rvm: 1.9.3
gemfile: gemfiles/rails2.gemfile
- rvm: 2.0.0
gemfile: gemfiles/rails2.gemfile
script: "bundle exec rake coverage"
notifications:
email:
- support@travellink.com.au
flowdock: e69dcafad1fea15c6b8c76e9ced965af
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
gemfile:
- gemfiles/rails2.gemfile
- gemfiles/rails3.gemfile
matrix:
exclude:
- rvm: 1.9.3
gemfile: gemfiles/rails2.gemfile
- rvm: 2.0.0
gemfile: gemfiles/rails2.gemfile
- rvm: 2.1.0
gemfile: gemfiles/rails2.gemfile
script: "bundle exec rake coverage"
notifications:
email:
- support@travellink.com.au
flowdock: e69dcafad1fea15c6b8c76e9ced965af
| Add ruby 2.1.0 to tests | Add ruby 2.1.0 to tests
| YAML | mit | sealink/money_extensions |
ef28d9783ef8e45093c37d9eac29249fcef6a89c | .travis.yml | .travis.yml | # Don't spam me please, I'll check Travis manually.
notifications:
email: false
sudo: false
language: rust
addons:
apt:
packages:
- libasound2-dev
rust:
# Test on every other Rust version since the minimum supported version, to not
# waste too many resources.
- 1.4.0
- 1.6.0
- 1.8.0
- 1.10.0
- 1.12.0
- 1.14.0
- 1.16.0
- 1.18.0
- beta
- nightly
# Apart from the above Rust versions on Linux, also test on stable Rust on OS X.
matrix:
include:
- os: osx
rust: stable
| # Don't spam me please, I'll check Travis manually.
notifications:
email: false
sudo: false
language: rust
addons:
apt:
packages:
- libasound2-dev
rust:
# Test on every fourth Rust version since the minimum supported version, to not
# waste too many resources.
- 1.4.0
- 1.8.0
- 1.12.0
- 1.16.0
- 1.20.0
- beta
- nightly
# Apart from the above Rust versions on Linux, also test on stable Rust on OS X.
matrix:
include:
- os: osx
rust: stable
| Test on Rust 1.20 stable | Test on Rust 1.20 stable
| YAML | apache-2.0 | ruud-v-a/hound,ruuda/hound |
f28806f8613720923e3b7c9e8920ee1f39796bb3 | .travis.yml | .travis.yml | language: cpp
compiler:
- clang
- gcc
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
before_install:
- sudo apt-get install libeigen3-dev
install:
- cmake -HSML -Bbuild -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DBUILD_TESTS=on -DBUILD_WITH_EIGEN=on
- cd build
- make
- cd ..
script:
- cd build
- ctest -V | language: cpp
compiler:
- clang
- gcc
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
before_install:
- sudo apt-get install libeigen3-dev
install:
- cmake -Bbuild -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DBUILD_TESTS=on -DBUILD_WITH_EIGEN=on .
- cd build
- make
- cd ..
script:
- cd build
- ctest -V | Fix error in cmake command in Travis CI config file. | Fix error in cmake command in Travis CI config file.
| YAML | mit | ennehekma/sml,ennehekma/sml,Stardust2013/sml,astropnp/sml,Stardust2013/sml,astropnp/sml,openastro/sml,kartikkumar/sml |
4c1e9c2cd26d2645c000797486581603c2832292 | .travis.yml | .travis.yml | ---
language: node_js
node_js:
# we recommend testing addons with the same minimum supported node version as Ember CLI
# so that your addon works for all apps
- "4"
sudo: false
dist: trusty
addons:
chrome: stable
firefox: latest
cache:
directories:
- $HOME/.cache # includes bower's cache
- $HOME/.npm
env:
- SCENARIO_GROUP=default
- SCENARIO_GROUP=channels
- SCENARIO_GROUP=releases
- SCENARIO_GROUP=allowed-failures
matrix:
fast_finish: true
allow_failures:
- env: SCENARIO_GROUP=allowed-failures
before_install:
- npm config set spin false
- npm install -g npm@4
- npm --version
- npm install -g bower
install:
- npm install
- bower install
script:
# Usually, it's ok to finish the test scenario without reverting
# to the addon's original dependency state, skipping "cleanup".
- if [ "$SCENARIO_GROUP" = "default" ]; then
node_modules/.bin/ember try:each --config-path=config/ember-try.js ;
elif [ "$SCENARIO_GROUP" = "channels" ]; then
node_modules/.bin/ember try:each --config-path=config/ember-try/channels.js ;
elif [ "$SCENARIO_GROUP" = "releases" ]; then
node_modules/.bin/ember try:each --config-path=config/ember-try/releases.js ;
elif [ "$SCENARIO_GROUP" = "allowed-failures" ]; then
node_modules/.bin/ember try:each --config-path=config/ember-try/allowed-failures.js ;
fi
| ---
language: node_js
node_js:
# we recommend testing addons with the same minimum supported node version as Ember CLI
# so that your addon works for all apps
- "4"
sudo: false
dist: trusty
addons:
chrome: stable
firefox: latest
cache:
directories:
- $HOME/.cache # includes bower's cache
- $HOME/.npm
env:
- SCENARIO_GROUP_CONFIG_PATH=config/ember-try.js
- SCENARIO_GROUP_CONFIG_PATH=config/ember-try/channels.js
- SCENARIO_GROUP_CONFIG_PATH=config/ember-try/releases.js
- SCENARIO_GROUP_CONFIG_PATH=config/ember-try/allowed-failures.js
matrix:
fast_finish: true
allow_failures:
- env: SCENARIO_GROUP_CONFIG_PATH=config/ember-try/allowed-failures.js
before_install:
- npm config set spin false
- npm install -g npm@4
- npm --version
- npm install -g bower
install:
- npm install
- bower install
script:
# Usually, it's ok to finish the test scenario without reverting
# to the addon's original dependency state, skipping "cleanup".
node_modules/.bin/ember try:each --config-path=$SCENARIO_GROUP_CONFIG_PATH
| Use SCENARIO_GROUP_CONFIG_PATH instead of SCENARIO_GROUP | CI: Use SCENARIO_GROUP_CONFIG_PATH instead of SCENARIO_GROUP
| YAML | mit | arenoir/ember-collection,arenoir/ember-collection,emberjs/ember-collection,emberjs/ember-collection |
7c4d1ee8715993063432876fd249ca9df2f340b8 | .travis.yml | .travis.yml | language: ruby
before_install: gem install bundler --version '~> 1.5.2'
bundler_args: --without=development
rvm:
- 2.0.0
env:
- VAGRANT_VERSION=v1.5.4
matrix:
include:
- env: VAGRANT_VERSION=v1.4.3
- env: VAGRANT_VERSION=v1.3.5
rvm: 1.9.3
- env: VAGRANT_VERSION=v1.2.7
rvm: 1.9.3
- env: VAGRANT_VERSION=master
allow_failures:
- env: VAGRANT_VERSION=master
| language: ruby
before_install:
- gem uninstall bundler --all
- gem install bundler --version '~> 1.5.2'
bundler_args: --without=development
rvm:
- 2.0.0
env:
- VAGRANT_VERSION=v1.5.4
matrix:
include:
- env: VAGRANT_VERSION=v1.4.3
- env: VAGRANT_VERSION=v1.3.5
rvm: 1.9.3
- env: VAGRANT_VERSION=v1.2.7
rvm: 1.9.3
- env: VAGRANT_VERSION=master
allow_failures:
- env: VAGRANT_VERSION=master
| Uninstall too new bundler version in Travis | Uninstall too new bundler version in Travis
| YAML | mit | otahi/vagrant-proxyconf,mrsheepuk/vagrant-proxyconf,tmatilai/vagrant-proxyconf,tmatilai/vagrant-proxyconf |
fb3420d8124430dbd1f1ed79ae4faf15cbd4d422 | .travis.yml | .travis.yml | bundler_args: --without guard
before_install:
- gem install bundler --pre
rvm:
- 1.9.3
- 2.0.0
- jruby
- rbx
matrix:
allow_failures:
- rvm: rbx
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby
- rbx
script: "rake"
bundler_args: --without guard
matrix:
allow_failures:
- rvm: rbx
| Make Travis invoke Rake without "bundle exec" | Make Travis invoke Rake without "bundle exec"
I don't want to add rake to the dependencies. Why? Because it's not a
dependency of this project. Rake is also included with all versions of
Ruby since 1.9 started to come out.
| YAML | mit | carsonreinke/roadie,Mange/roadie |
00d77cd4a50fb6c68b7086fbf9ccf83b65be1ef4 | .travis.yml | .travis.yml | language: clojure
jdk:
- openjdk8
- openjdk11
env:
global:
- POSTGRESQL_DB_HOST=localhost
- POSTGRESQL_DB_PORT=5433
- POSTGRESQL_DB_USERNAME=postgres
- POSTGRESQL_DB_PASSWORD=
- PGPORT=5433
services:
- postgresql
addons:
postgresql: "12"
apt:
packages:
- postgresql-12
- postgresql-client-12
before_install:
# Hack needed to have working authententication with the postgres user
- sudo sed -i -e '/local.*peer/s/postgres/all/' -e 's/peer\|md5/trust/g' /etc/postgresql/12/main/pg_hba.conf
- sudo systemctl restart postgresql@12-main.service
before_script:
- psql -U postgres -c 'CREATE DATABASE env_logger_test;'
- psql -U postgres env_logger_test < db-def.sql
- cp resources/config.edn_sample resources/config.edn
script:
- lein test
| language: clojure
dist: focal
jdk:
- openjdk11
env:
global:
- POSTGRESQL_DB_HOST=localhost
- POSTGRESQL_DB_PORT=5432
- POSTGRESQL_DB_USERNAME=postgres
- POSTGRESQL_DB_PASSWORD=
addons:
postgresql: "12"
apt:
packages:
- postgresql-12
before_install:
# Hack needed to have working authententication with the postgres user
- sudo sed -i -e '/local.*peer/s/postgres/all/' -e 's/peer\|md5/trust/g' /etc/postgresql/12/main/pg_hba.conf
- sudo systemctl restart postgresql@12-main.service
before_script:
- psql -U postgres -c 'CREATE DATABASE env_logger_test;'
- psql -U postgres env_logger_test < db-def.sql
- cp resources/config.edn_sample resources/config.edn
script:
- lein test
| Use newer base distribution in CI | Use newer base distribution in CI
Use latest Ubuntu LTS 20.04.
Also drop JDK 8 as there is some error with its installation.
| YAML | mit | terop/env-logger,terop/env-logger,terop/env-logger,terop/env-logger,terop/env-logger,terop/env-logger,terop/env-logger |
78529d9c9eb8090ead63512ffd62e0f23ed96bfe | .travis.yml | .travis.yml | language: ruby
rvm:
- "2.1.0"
addons:
code_climate:
repo_token: 510a8209ff27b92ad168bf46d7329ca867d83bcff19a621bcdc153ef13022e0a
| language: ruby
rvm:
- "2.1.0"
script: rspec
addons:
code_climate:
repo_token: 510a8209ff27b92ad168bf46d7329ca867d83bcff19a621bcdc153ef13022e0a
| Call rspec instead of rake | Call rspec instead of rake | YAML | mit | Factlink/web-proxy,Factlink/web-proxy |
2278c34873c842163fd70ddd84b632487f36203f | .travis.yml | .travis.yml | language: python
services:
- redis-server
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
install:
# this fixes SemLock issues on travis
- "sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm"
- "sudo apt-add-repository -y ppa:chris-lea/zeromq"
- "sudo apt-get update"
- "sudo apt-get install -y libzmq3-dev"
- "pip install cython redis"
- "easy_install pyzmq"
- "make test_setup"
- "python setup.py develop"
env:
- COMMAND="make test"
- COMMAND="make cybuild test"
script: "$COMMAND"
matrix:
exclude:
- python: "pypy"
env: COMMAND="make cybuild test"
notifications:
email:
recipients:
- vmalloc@gmail.com
irc:
channels:
- "chat.freenode.net#pocoo"
on_success: change
on_failure: always
use_notice: true
skip_join: true
| language: python
services:
- redis-server
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
install:
# this fixes SemLock issues on travis
- "sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm"
- "sudo apt-add-repository -y ppa:chris-lea/zeromq"
- "sudo apt-get update"
- "sudo apt-get install -y libzmq3-dev"
- "pip install cython redis"
- "easy_install pyzmq"
- "make test_setup"
- "python setup.py develop"
env:
- COMMAND="make test"
- COMMAND="make cybuild test"
script: "$COMMAND"
matrix:
exclude:
- python: "pypy"
env: COMMAND="make cybuild test"
- python: "pypy3"
env: COMMAND="make cybuild test"
notifications:
email:
recipients:
- vmalloc@gmail.com
irc:
channels:
- "chat.freenode.net#pocoo"
on_success: change
on_failure: always
use_notice: true
skip_join: true
| Add PyPy3 to the build. | Add PyPy3 to the build. | YAML | bsd-3-clause | pombredanne/logbook,mitsuhiko/logbook,RazerM/logbook,FintanH/logbook,dommert/logbook |
65e4ca602fc9bdf9e6a8fa88f22ebd7564ccb3e0 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: python
git:
depth: 10
quiet: true
python:
- "3.6"
env:
matrix:
- PROJECT="avae"
# - PROJECT="cs_gan" # TODO(b/184845450): Fix and re-enable
- PROJECT="iodine"
- PROJECT="kfac_ferminet_alpha"
- PROJECT="learning_to_simulate"
# - PROJECT="polygen" # TODO(b/184847339): Fix and re-enable
- PROJECT="transporter"
- PROJECT="tvt"
before_script:
- sudo apt-get update -qq
- pip install --upgrade pip
- pip install --upgrade virtualenv
- pip install --upgrade wheel
script:
- ./$PROJECT/run.sh
| sudo: required
dist: trusty
language: python
git:
depth: 10
quiet: true
python:
- "3.6"
env:
matrix:
- PROJECT="avae"
# - PROJECT="cs_gan" # TODO(b/184845450): Fix and re-enable
- PROJECT="iodine"
- PROJECT="kfac_ferminet_alpha"
- PROJECT="learning_to_simulate"
- PROJECT="noise_covariance"
# - PROJECT="polygen" # TODO(b/184847339): Fix and re-enable
- PROJECT="transporter"
- PROJECT="tvt"
before_script:
- sudo apt-get update -qq
- pip install --upgrade pip
- pip install --upgrade virtualenv
- pip install --upgrade wheel
script:
- ./$PROJECT/run.sh
| Enable Travis tests for `noise_covariance` | Enable Travis tests for `noise_covariance`
PiperOrigin-RevId: 368226367
| YAML | apache-2.0 | deepmind/deepmind-research,deepmind/deepmind-research,deepmind/deepmind-research,deepmind/deepmind-research |
6292512492286ee50c49ff70c955675a81ef6e03 | .travis.yml | .travis.yml | language: cpp
branches:
only:
- master
os:
- linux
- osx
env:
- CONFIG=Release
- CONFIG=Debug
language: c++
compiler:
- clang
before_install:
- CMAKE_VERSION_MM=3.2
- CMAKE_VERSION_FULL=$CMAKE_VERSION_MM.1
- QT_VERSION_MM=55
- QT_VERSION_FULL=541
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
sudo apt-add-repository --yes ppa:beineri/opt-qt$QT_VERSION_FULL
&& sudo apt-get update -qq
&& sudo apt-get install -qq qt${QT_VERSION_MM}base qt${QT_VERSION_MM}script qt${QT_VERSION_MM}tools
&& export CMAKE_PREFIX_PATH=/opt/qt${QT_VERSION_MM}
&& wget http://www.cmake.org/files/v${CMAKE_VERSION_MM}/cmake-${CMAKE_VERSION_FULL}-Linux-x86_64.sh
&& sudo sh cmake-${CMAKE_VERSION_FULL}-Linux-x86_64.sh --prefix=/usr/local --exclude-subdir;
fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install cmake qt5; fi
before_script:
- mkdir build
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=$CONFIG -DDISABLE_MAINTAINER_CFLAGS=off
script:
- cmake --build . --config $CONFIG
- ctest --output-on-failure
notifications:
email: false
| language: cpp
branches:
only:
- master
os:
- linux
- osx
env:
- CONFIG=Release
- CONFIG=Debug
language: c++
compiler:
- clang
before_install:
- CMAKE_VERSION_MM=3.2
- CMAKE_VERSION_FULL=$CMAKE_VERSION_MM.1
- QT_VERSION_MM=55
- QT_VERSION_FULL=55
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
sudo apt-add-repository --yes ppa:beineri/opt-qt$QT_VERSION_FULL
&& sudo apt-get update -qq
&& sudo apt-get install -qq qt${QT_VERSION_MM}base qt${QT_VERSION_MM}script qt${QT_VERSION_MM}tools
&& export CMAKE_PREFIX_PATH=/opt/qt${QT_VERSION_MM}
&& wget http://www.cmake.org/files/v${CMAKE_VERSION_MM}/cmake-${CMAKE_VERSION_FULL}-Linux-x86_64.sh
&& sudo sh cmake-${CMAKE_VERSION_FULL}-Linux-x86_64.sh --prefix=/usr/local --exclude-subdir;
fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install cmake qt5; fi
before_script:
- mkdir build
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=$CONFIG -DDISABLE_MAINTAINER_CFLAGS=off
script:
- cmake --build . --config $CONFIG
- ctest --output-on-failure
notifications:
email: true
| Fix Qt5.5 name for Travis | Fix Qt5.5 name for Travis
| YAML | bsd-3-clause | cutelyst/cutelyst,cutelyst/cutelyst,buschmann23/cutelyst,cutelyst/cutelyst,buschmann23/cutelyst,buschmann23/cutelyst,simonaw/cutelyst,simonaw/cutelyst |
840a575a6a0fa5da12c603b133d4fbf178d8d5fd | .travis.yml | .travis.yml | language: node_js
node_js:
- '4.0'
- '6.0'
- '7.2'
sudo: false
script: npm test
notifications:
email: false
slack:
secure: jI3gt+t9s6NRCuMnEfQKqNziWpTVxKMAv2sXIukDzNgBzTl70oZcn4gGOoD+JWfPBDZV/3UFrKh3kEBKfIcfMbFaudfxPZLxeXwTtzvOxq1AfdH8mAZwqwSCtDu+1g6KfHtbyEHfJvJZGWKuGDgJUKq5rrkeU8v5rCALFZQbDKo=
branches:
only:
- master
- develop
| language: node_js
node_js:
- '4.0'
- '6.0'
- '7.2'
sudo: false
script: npm run ci
notifications:
email: false
slack:
secure: jI3gt+t9s6NRCuMnEfQKqNziWpTVxKMAv2sXIukDzNgBzTl70oZcn4gGOoD+JWfPBDZV/3UFrKh3kEBKfIcfMbFaudfxPZLxeXwTtzvOxq1AfdH8mAZwqwSCtDu+1g6KfHtbyEHfJvJZGWKuGDgJUKq5rrkeU8v5rCALFZQbDKo=
branches:
only:
- master
- develop
| Make Travis submit code coverage results | Make Travis submit code coverage results
| YAML | mit | BrandonZacharie/node-redis-server |
b35c3dc755ae0f7a1d8b924d7e691893e8d22930 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.6
- 2.2.3
- 2.3.0
before_install: gem install bundler -v 1.10.6
| language: ruby
rvm:
- 2.1.10
- 2.2.5
- 2.3.1
before_install: gem install bundler -v 1.10.6
| Support latest Ruby's past three major versions | Support latest Ruby's past three major versions
| YAML | mit | zeisler/reverse_parameters,zeisler/reverse_parameters |
2a8d27c7375350b783e33c5b7b500f4f31871ba8 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
- composer install --no-interaction --no-dev
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]] && [[ "$TRAVIS_PHP_VERSION" != "7.0" ]]; then curl -LSs https://box-project.github.io/box2/installer.php | php; fi
script:
- phpunit
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]] && [[ "$TRAVIS_PHP_VERSION" != "7.0" ]]; then php box.phar build; rm -r vendor; php spress.phar --version; fi
matrix:
allow_failures:
- php: hhvm
fast_finish: true
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/0957171278778ab21da9
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
| language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
- composer install --no-interaction --no-dev
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]] && [[ "$TRAVIS_PHP_VERSION" != "7.0" ]]; then curl -LSs https://box-project.github.io/box2/installer.php | php; fi
script:
- phpunit
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]] && [[ "$TRAVIS_PHP_VERSION" != "7.0" ]]; then php box.phar build; rm -rf vendor; php spress.phar --version; fi
matrix:
allow_failures:
- php: hhvm
fast_finish: true
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/0957171278778ab21da9
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
| Delete vendor folder to test Phar file generated | Delete vendor folder to test Phar file generated
| YAML | mit | spress/Spress,spress/Spress |
33622c5fa68e6fbe309886d037c8e5d44c2ca516 | .github/workflows/build.yml | .github/workflows/build.yml | name: build images
on:
pull_request:
branches:
- master
push:
branches:
- master
tags:
- 'v*'
jobs:
buildx:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: crazy-max/ghaction-docker-buildx@v1
with:
buildx-version: latest
qemu-version: latest
- uses: azure/docker-login@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Run Buildx
run: |
echo $
docker buildx create --use --name build --node build --driver-opt network=host
docker buildx build \
--platform linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 \
--output "type=image,push=true" \
-t osminogin/tor-simple \
.
| name: build images
on:
pull_request:
branches:
- master
push:
branches:
- master
tags:
- 'v*'
jobs:
buildx:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: crazy-max/ghaction-docker-buildx@v1
with:
buildx-version: latest
qemu-version: latest
- uses: azure/docker-login@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Run Buildx
run: |
echo $
docker buildx create --use --name build --node build --driver-opt network=host
docker buildx build \
--platform linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 \
--output "type=image,push=true" \
--tag osminogin/tor-simple \
--build-arg VERSION=$(head -1 VERSION) \
--build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \
--build-arg VCS_REF=${GITHUB_SHA::8} \
.
| Build args added again for Github action | Build args added again for Github action
| YAML | mit | osminogin/docker-tor-simple |
da63de72fc7be4db8951aba35abdf52424f0e171 | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
- 1.20.0
matrix:
allow_failures:
- rust: nightly
sudo: required
addons:
apt:
packages:
- postfix
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- binutils-dev
- libiberty-dev
- npm
before_script:
- smtp-sink 2525 1000&
- sudo chgrp -R postdrop /var/spool/postfix/maildrop
- sudo npm set strict-ssl false && sudo npm install -g gitbook-cli
script:
- cargo test --verbose --all
after_success:
- ./.build-scripts/codecov.sh
- '[ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && ./.build-scripts/site-upload.sh'
| language: rust
rust:
- stable
- beta
- nightly
- 1.20.0
matrix:
allow_failures:
- rust: nightly
sudo: required
addons:
apt:
packages:
- postfix
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- binutils-dev
- libiberty-dev
- npm
before_script:
- smtp-sink 2525 1000&
- sudo chgrp -R postdrop /var/spool/postfix/maildrop
- sudo npm set strict-ssl false && sudo npm install -g gitbook-cli
script:
- cargo test --verbose --all
after_success:
- ./.build-scripts/codecov.sh
- '[ "$TRAVIS_BRANCH" = "v0.8.x" ] && [ $TRAVIS_PULL_REQUEST = false ] && ./.build-scripts/site-upload.sh'
| Build doc from v0.8.x branch | Build doc from v0.8.x branch
| YAML | mit | amousset/lettre,amousset/lettre,lettre/lettre,amousset/rust-smtp |
183fc65019118644e45f4c6670c9a4606052c645 | .github/workflows/build.yml | .github/workflows/build.yml | name: build
on: [push]
jobs:
build:
runs-on: windows-latest
env:
COMPILER: MSVC
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- uses: BSFishy/pip-action@v1
with:
packages: conan
- run: ./.github/workflows/scripts/install/windows.sh
- run: |
mkdir build
cd build
cmake .. $CMAKE_OPTIONS -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release -j 6
ctest . -C Release
| name: build
on: [push]
jobs:
build:
runs-on: windows-latest
env:
COMPILER: MSVC
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- uses: BSFishy/pip-action@v1
with:
packages: conan
- run: ./.github/workflows/scripts/install/windows.sh
- run: mkdir build
- run: cd build
- run: cmake .. $CMAKE_OPTIONS -DCMAKE_BUILD_TYPE=Release
- run: cmake --build . --config Release -j 6
- run: ctest . -C Release
| Split command into separate run in order to make them fail | Split command into separate run in order to make them fail
| YAML | mit | antaljanosbenjamin/miscellaneous,antaljanosbenjamin/miscellaneous |
7c78c384f13520b47c442cd5abf44fb457ae9e34 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.2
- 2.1
- 2.0
- rbx-2
- jruby-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-19mode
- rvm: rbx-2
git:
submodules: false
env:
- CONCURRENCY=celluloid-io
- CONCURRENCY=faye-websocket
| language: ruby
cache: bundler
rvm:
- 2.3.0
- 2.2
- 2.1
- 2.0
- rbx-2
- jruby-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-19mode
- rvm: rbx-2
git:
submodules: false
env:
- CONCURRENCY=celluloid-io
- CONCURRENCY=faye-websocket
| Add Ruby 2.3.0 to Travis | Add Ruby 2.3.0 to Travis | YAML | mit | slack-ruby/slack-ruby-client,rkadyb/slack-ruby-client,dblock/slack-ruby-client,dblock/slack-ruby-client,rkadyb/slack-ruby-client,slack-ruby/slack-ruby-client |
61f8d5892326ff27d884866b8b02b60370f01c5c | .travis.yml | .travis.yml | # See http://about.travis-ci.org/docs/user/build-configuration/
sudo: false
before_script:
- export MAVEN_SKIP_RC=true
cache:
directories:
- $HOME/.m2
jdk:
- oraclejdk8
script:
- export MAVEN_OPTS="-Xmx1g -Djava.net.preferIPv4Stack=true"
- ./.travisbuild.sh
| # See http://about.travis-ci.org/docs/user/build-configuration/
sudo: false
before_script:
- export MAVEN_SKIP_RC=true
cache:
directories:
- $HOME/.m2
jdk:
- oraclejdk8
script:
- export MAVEN_OPTS="-Xmx1g -Djava.net.preferIPv4Stack=true"
- ./.travisbuild.sh
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/073f83aefca36a4e0118
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always
| Set gitter.im webhook for Travis builds | Set gitter.im webhook for Travis builds
Notify Gitter.im on Travis builds. | YAML | apache-2.0 | tkunicki/geomesa,elahrvivaz/geomesa,aheyne/geomesa,ccri/geomesa,mdzimmerman/geomesa,spandanagrawal/geomesa,elahrvivaz/geomesa,tkunicki/geomesa,jahhulbert-ccri/geomesa,elahrvivaz/geomesa,jrs53/geomesa,nagavallia/geomesa,locationtech/geomesa,tkunicki/geomesa,aheyne/geomesa,elahrvivaz/geomesa,jahhulbert-ccri/geomesa,jrs53/geomesa,ccri/geomesa,MutahirKazmi/geomesa,mdzimmerman/geomesa,aheyne/geomesa,boundlessgeo/geomesa,jahhulbert-ccri/geomesa,elahrvivaz/geomesa,tkunicki/geomesa,boundlessgeo/geomesa,elahrvivaz/geomesa,tkunicki/geomesa,locationtech/geomesa,nagavallia/geomesa,jrs53/geomesa,aheyne/geomesa,jrs53/geomesa,ddseapy/geomesa,ccri/geomesa,nagavallia/geomesa,ddseapy/geomesa,jahhulbert-ccri/geomesa,ccri/geomesa,ccri/geomesa,spandanagrawal/geomesa,ddseapy/geomesa,MutahirKazmi/geomesa,spandanagrawal/geomesa,ddseapy/geomesa,aheyne/geomesa,locationtech/geomesa,aheyne/geomesa,nagavallia/geomesa,ronq/geomesa,jahhulbert-ccri/geomesa,ddseapy/geomesa,mdzimmerman/geomesa,ronq/geomesa,jrs53/geomesa,boundlessgeo/geomesa,ronq/geomesa,locationtech/geomesa,MutahirKazmi/geomesa,locationtech/geomesa,nagavallia/geomesa,mdzimmerman/geomesa,spandanagrawal/geomesa,spandanagrawal/geomesa,ddseapy/geomesa,jahhulbert-ccri/geomesa,MutahirKazmi/geomesa,jrs53/geomesa,ccri/geomesa,boundlessgeo/geomesa,boundlessgeo/geomesa,MutahirKazmi/geomesa,locationtech/geomesa |
f8dc33e384f714cd54ae4eb9258fe4a927b1f26d | .travis.yml | .travis.yml | language: python
python:
- 2.7
branches:
only:
- master
- dev
notifications:
email:
- authors@psiturk.org
on_success: change
on_failure: always
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- python setup.py install
- psiturk-setup-example
- coverage run --source=psiturk setup.py test
after_success:
coveralls
| language: python
python:
- 2.7
branches:
only:
- master
- dev
notifications:
email:
- authors@psiturk.org
on_success: change
on_failure: always
install:
- pip install -r requirements.txt --use-mirrors
- pip install coverage coveralls --use-mirrors
script:
- python setup.py install
- psiturk-setup-example
- coverage run --source=psiturk setup.py test
- coverage report -m
after_success:
coveralls --verbose
| Install Coverage library during build. | Install Coverage library during build.
| YAML | mit | mshvartsman/psiTurk,johnmcdonnell/psiTurk,suchow/psiTurk,NYUCCL/psiTurk,rbtrace/psiTurk,andyh616/psiTurk,pfeyz/psiTurk,michaelpacer/psiTurk,berkeley-cocosci/psiTurk,mshvartsman/psiTurk,berkeley-cocosci/psiTurk,pfeyz/psiTurk,michaelpacer/psiTurk,rbtrace/psiTurk,michaelpacer/psiTurk,berkeley-cocosci/psiTurk,pfeyz/psiTurk,suchow/psiTurk,johnmcdonnell/psiTurk,suchow/psiTurk,andyh616/psiTurk,NYUCCL/psiTurk,kachergis/psiTurk,andyh616/psiTurk,kachergis/psiTurk,kachergis/psiTurk,johnmcdonnell/psiTurk,rbtrace/psiTurk,mshvartsman/psiTurk,NYUCCL/psiTurk |
6e44b46df076cac7f61c66af91f93c6cf5b21908 | .github/workflows/maven.yml | .github/workflows/maven.yml | name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 17 ]
steps:
- uses: actions/checkout@v3
- name: Setup java
uses: actions/setup-java@v3.0.0
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B package --file pom.xml
| name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 17 ]
steps:
- uses: actions/checkout@v3
- name: Setup java
uses: actions/setup-java@v3.1.1
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B package --file pom.xml
| Update actions/setup-java action to v3.1.1 | Update actions/setup-java action to v3.1.1
| YAML | mit | dvare/dynamic-loader |
ff3b80c0ebe3321ba09af0b5e9b21a732dfa8dc9 | .travis.yml | .travis.yml | language: ruby
env: GOVUK_APP_DOMAIN=test
bundler_args: --without development
before_script:
- mysql -e 'CREATE DATABASE tariff_test;'
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq wbritish
- cp config/database.travis.yml config/database.yml
services:
- elasticsearch
script:
- RAILS_ENV=test bundle exec rake db:create
- RAILS_ENV=test bundle exec rake db:migrate
- RAILS_ENV=test bundle exec rake spec
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
matrix:
allow_failures:
- rvm: 2.0.0
branches:
only:
- master
notifications:
email: false
| language: ruby
env: GOVUK_APP_DOMAIN=test
bundler_args: --without development
before_script:
- mysql -e 'CREATE DATABASE tariff_test;'
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq wbritish
- cp config/database.travis.yml config/database.yml
services:
- elasticsearch
script:
- RAILS_ENV=test bundle exec rake db:create
- RAILS_ENV=test bundle exec rake db:migrate
- RAILS_ENV=test bundle exec rake spec
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
matrix:
allow_failures:
- rvm: 2.0.0
branches:
except:
- release
notifications:
email: false
| Test all branches on Travis except for release branch | Test all branches on Travis except for release branch
When I develop functionality I'd like Travis to continuously test my
branch before I raise a pull request so that I know when it works or
doesn't. This used to be a problem when we received emails for spec
failures from all branches, but email notifications are now disabled so
it should be desired behaviour.
| YAML | mit | leftees/trade-tariff-backend,alphagov/trade-tariff-backend,bitzesty/trade-tariff-backend,bitzesty/trade-tariff-backend,bitzesty/trade-tariff-backend,alphagov/trade-tariff-backend,leftees/trade-tariff-backend,alphagov/trade-tariff-backend,leftees/trade-tariff-backend |
1bed1f0fcbb0f57b6b7bb217a9e7ede1c8515d4e | .github/workflows/maven.yml | .github/workflows/maven.yml | name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 17 ]
steps:
- uses: actions/checkout@v3
- name: Setup java
uses: actions/setup-java@v3.3.0
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B package --file pom.xml
| name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 17 ]
steps:
- uses: actions/checkout@v3
- name: Setup java
uses: actions/setup-java@v3.4.0
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B package --file pom.xml
| Update actions/setup-java action to v3.4.0 | Update actions/setup-java action to v3.4.0 | YAML | mit | dvare/dynamic-loader |
15596ddf21410936b1dceda9e19e006044b3a7d4 | .travis.yml | .travis.yml | language: java
services:
- redis
- mysql
- docker
jdk:
- openjdk8
os:
- linux
before_script:
- "sh -e ./ci/scripts/start-services.sh"
script:
- CF_ENDPOINT='api.run.pivotal.io'
- CF_ORGANIZATION='pivotal-cla'
- CF_SPACE='production'
- ./gradlew check
after_success:
- |
if [[ "${TRAVIS_PULL_REQUEST}" = "false" && $TRAVIS_BRANCH == 'master' && $TRAVIS_SECURE_ENV_VARS == 'true' ]] ; then
./ci/scripts/install-cf.sh
export PATH=$PATH:$PWD
cf login -a $CF_ENDPOINT -o $CF_ORGANIZATION -s $CF_SPACE -u $CF_USERNAME -p $CF_PASSWORD
./ci/scripts/cf-push.sh pivotal-cla-production $CLIENT_ID $CLIENT_SECRET $TOKEN_SECRET $TRAVIS_BUILD_NUMBER-$TRAVIS_COMMIT
fi
after_failure: cat $PWD/build/reports/tests/*/classes/*.html
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| language: java
services:
- docker
jdk:
- openjdk8
os:
- linux
before_script:
- "sh -e ./ci/scripts/start-services.sh"
script:
- CF_ENDPOINT='api.run.pivotal.io'
- CF_ORGANIZATION='pivotal-cla'
- CF_SPACE='production'
- ./gradlew check
after_success:
- |
if [[ "${TRAVIS_PULL_REQUEST}" = "false" && $TRAVIS_BRANCH == 'master' && $TRAVIS_SECURE_ENV_VARS == 'true' ]] ; then
./ci/scripts/install-cf.sh
export PATH=$PATH:$PWD
cf login -a $CF_ENDPOINT -o $CF_ORGANIZATION -s $CF_SPACE -u $CF_USERNAME -p $CF_PASSWORD
./ci/scripts/cf-push.sh pivotal-cla-production $CLIENT_ID $CLIENT_SECRET $TOKEN_SECRET $TRAVIS_BUILD_NUMBER-$TRAVIS_COMMIT
fi
after_failure: cat $PWD/build/reports/tests/*/classes/*.html
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| Remove redis and mysql from Travis since use docker | Remove redis and mysql from Travis since use docker
| YAML | apache-2.0 | pivotalsoftware/pivotal-cla,pivotalsoftware/pivotal-cla,pivotalsoftware/pivotal-cla,pivotalsoftware/pivotal-cla |
66948f232b88343926132efe5451ddf11255f5a0 | .github/workflows/tests.yml | .github/workflows/tests.yml | name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-16.04
services:
mariadb:
image: mariadb:10.0
env:
MYSQL_USER: opendominion
MYSQL_PASSWORD: secret
MYSQL_DATABASE: opendominion
ports:
- 3306
# options: --health-cmd="mysqladmin ping --silent" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- uses: actions/checkout@v1
- name: Install PHP dependencies
run: composer install --no-interaction --prefer-dist
- name: Setup .env file
run: |
cp .env.ci .env
sed -i 's/DB_PORT=/DB_PORT=${{ job.services.mariadb.ports['3306'] }}/' .env
php artisan key:generate
- name: Run database migrations
run: php artisan migrate
- name: Seed database
run: php artisan db:seed
- name: Sync game data
run: php artisan game:data:sync
- name: Run tests
run: vendor/bin/phpunit
| name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-16.04
services:
mariadb:
image: mariadb:10.0
env:
MYSQL_USER: opendominion
MYSQL_PASSWORD: secret
MYSQL_DATABASE: opendominion
ports:
- 3306
options: --health-cmd="mysqladmin ping --silent" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- uses: actions/checkout@v1
- name: Install PHP dependencies
run: composer install --no-interaction --prefer-dist
- name: Setup .env file
run: |
cp .env.ci .env
sed -i 's/DB_PORT=/DB_PORT=${{ job.services.mariadb.ports['3306'] }}/' .env
php artisan key:generate
- name: Run database migrations
run: php artisan migrate
- name: Seed database
run: php artisan db:seed
- name: Sync game data
run: php artisan game:data:sync
- name: Run tests
run: vendor/bin/phpunit
| Add back mariadb service health checks | Add back mariadb service health checks
| YAML | agpl-3.0 | WaveHack/OpenDominion,WaveHack/OpenDominion,WaveHack/OpenDominion |
42dc02525cb75a1c69057aa87e8c18bf07c05790 | .github/workflows/tests.yml | .github/workflows/tests.yml | name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- name: NPM install
run: npm ci
- name: Lerna bootstrap
run: npm run bootstrap
- name: Build
run: npm run build
- name: Test
run: npm run test
| name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- uses: microsoft/playwright-github-action@v1
- name: NPM install
run: npm ci
- name: Lerna bootstrap
run: npm run bootstrap
- name: Build
run: npm run build
- name: Test
run: npm run test
| Add playwright-github-action to test workflow | Add playwright-github-action to test workflow
| YAML | bsd-3-clause | lit/lit,lit/lit,lit/lit,Polymer/lit-html,Polymer/lit-html,Polymer/lit-html,Polymer/lit-html,lit/lit |
f9b980192269d8903ab5d8192d14fb3fec0ac699 | .travis.yml | .travis.yml | language: objective-c
matrix:
include:
- env: MACOS=10.11
os: osx
osx_image: xcode7.3
rvm: system
- env: MACOS=10.10
os: osx
osx_image: xcode7.1
rvm: system
- env: MACOS=10.9
os: osx
osx_image: beta-xcode6.2
rvm: system
before_install:
- brew update || brew update
install:
- mkdir -p $(brew --repo)/Library/Taps/jamieconnolly
- ln -s $PWD $(brew --repo)/Library/Taps/jamieconnolly/homebrew-formulae
- cd $(brew --repo)/Library/Taps/jamieconnolly/homebrew-formulae
- export TRAVIS_BUILD_DIR="$(brew --repo)/Library/Taps/jamieconnolly/homebrew-formulae"
script:
- brew test-bot --no-bottle --skip-homebrew --tap=jamieconnolly/formulae
| language: objective-c
matrix:
include:
- env: MACOS=10.11
os: osx
osx_image: xcode7.3
rvm: system
- env: MACOS=10.10
os: osx
osx_image: xcode7.1
rvm: system
- env: MACOS=10.9
os: osx
osx_image: beta-xcode6.2
rvm: system
before_install:
- if [ -f ".git/shallow" ]; then travis_retry git fetch --unshallow; fi
- sudo chown -R $USER $(brew --repo)
- git -C $(brew --repo) reset --hard origin/master
- git -C $(brew --repo) clean -qxdff
- brew update || brew update
install:
- mkdir -p $(brew --repo)/Library/Taps/jamieconnolly
- ln -s $PWD $(brew --repo)/Library/Taps/jamieconnolly/homebrew-formulae
- cd $(brew --repo)/Library/Taps/jamieconnolly/homebrew-formulae
- export TRAVIS_BUILD_DIR="$(brew --repo)/Library/Taps/jamieconnolly/homebrew-formulae"
- export HOMEBREW_DEVELOPER="1"
- ulimit -n 4096
script:
- brew test-bot --no-bottle --skip-homebrew --tap=jamieconnolly/formulae
| Add environment variable to re-enable Travis CI | Add environment variable to re-enable Travis CI
| YAML | mit | jamieconnolly/homebrew-formulae |
20e66ad9311040e7332a60d0a7f2255e0e4e9bcb | .travis.yml | .travis.yml | language: c
sudo: false
os:
- linux
- osx
notifications:
email: false
env:
global:
- SETUP_XVFB=True
- CONDA_CHANNELS="glueviz"
- CONDA_DEPENDENCIES="glue-core pytest mock requests pydicom gdcm"
matrix:
- PYTHON_VERSION=2.7
- PYTHON_VERSION=3.5
- PYTHON_VERSION=2.7 CONDA_CHANNELS="glueviz glueviz/label/dev"
- PYTHON_VERSION=3.5 CONDA_CHANNELS="glueviz glueviz/label/dev"
install:
- git clone git://github.com/astropy/ci-helpers.git
- source ci-helpers/travis/setup_conda.sh
script:
- py.test glue_medical
| language: c
sudo: false
os:
- linux
- osx
notifications:
email: false
env:
global:
- SETUP_XVFB=True
- CONDA_CHANNELS="glueviz"
- CONDA_DEPENDENCIES="glue-core pytest mock requests pydicom gdcm nomkl"
matrix:
- PYTHON_VERSION=2.7
- PYTHON_VERSION=3.5
- PYTHON_VERSION=2.7 CONDA_CHANNELS="glueviz glueviz/label/dev"
- PYTHON_VERSION=3.5 CONDA_CHANNELS="glueviz glueviz/label/dev"
install:
- git clone git://github.com/astropy/ci-helpers.git
- source ci-helpers/travis/setup_conda.sh
script:
- py.test glue_medical
| Include nomkl in conda dependencies | Include nomkl in conda dependencies | YAML | bsd-3-clause | glue-viz/glue-medical |
a9ad591c167af98d8f970cfacad93286742038b7 | .travis.yml | .travis.yml | sudo: false
addons:
apt:
packages:
- graphviz
language: c
compiler:
- gcc
- clang
install:
- ./get-deps.sh
- ./build-deps.sh
script:
- make -e all
- make -e check
notifications:
email: false | sudo: false
addons:
apt:
packages:
- graphviz
language: c
compiler:
- gcc
- clang
install:
- ./get-deps.sh
- ./get-extra-deps.sh
- ./build-deps.sh
script:
- make -e all
- make -e check
notifications:
email: false | Include extras on Travis CI | TEST: Include extras on Travis CI
Currently, the only extra tool that is fetched and built during
`./get-extra-deps.sh && ./build-deps.sh` is Spin.
| YAML | bsd-3-clause | slivingston/gr1c,slivingston/gr1c,slivingston/gr1c |
358a764b8de9b5fba4a77b74a6a4f89137f3c8bf | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 2.1
- 2.2.2
- 2.3.1
- rbx
- jruby-9.1.5.0
jdk:
- openjdk7
script: bundle exec rake test
env:
matrix:
- DEVISE_ORM=active_record
- DEVISE_ORM=mongoid
gemfile:
- Gemfile
- gemfiles/Gemfile.devise-4.0
- gemfiles/Gemfile.devise-4.1
- gemfiles/Gemfile.rails-4.2
install: "travis_retry bundle install"
services:
- mongodb
matrix:
exclude:
- rvm: 2.1
gemfile: Gemfile
include:
- rvm: 2.3.1
gemfile: gemfiles/Gemfile.rails-master
env: DEVISE_ORM=active_record
- rvm: 2.3.1
gemfile: gemfiles/Gemfile.rails-master
env: DEVISE_ORM=mongoid
allow_failures:
- rvm: rbx
- rvm: jruby-9.1.5.0
gemfile: Gemfile
- gemfile: gemfiles/Gemfile.rails-master
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
- rbx
- jruby-9.1.16.0
jdk:
- openjdk7
script: bundle exec rake test
env:
matrix:
- DEVISE_ORM=active_record
- DEVISE_ORM=mongoid
gemfile:
- Gemfile
- gemfiles/Gemfile.devise-4.0
- gemfiles/Gemfile.devise-4.1
- gemfiles/Gemfile.rails-4.2
install: "travis_retry bundle install"
services:
- mongodb
matrix:
exclude:
- rvm: 2.1.10
gemfile: Gemfile
- rvm: 2.4.3
gemfile: gemfiles/Gemfile.devise-4.0
- rvm: 2.4.3
gemfile: gemfiles/Gemfile.devise-4.1
- rvm: 2.5.0
gemfile: gemfiles/Gemfile.devise-4.0
- rvm: 2.5.0
gemfile: gemfiles/Gemfile.devise-4.1
include:
- rvm: 2.5.0
gemfile: gemfiles/Gemfile.rails-master
env: DEVISE_ORM=active_record
- rvm: 2.5.0
gemfile: gemfiles/Gemfile.rails-master
env: DEVISE_ORM=mongoid
allow_failures:
- rvm: rbx
- rvm: jruby-9.1.16.0
gemfile: Gemfile
- gemfile: gemfiles/Gemfile.rails-master
| Test against Ruby 2.4 and 2.5 | [CI] Test against Ruby 2.4 and 2.5
| YAML | mit | scambra/devise_invitable,scambra/devise_invitable |
567cd16cbec2353fa70b7790b7821b7d45051295 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
# - "3.5" To Do - Add support to it !
# - "pypy" To Do - Check about it later
# command to install dependencies
install:
- "pip install -r requirements.txt"
- pip install pep8
- pip install pylint
- pip install coveralls
# command to run tests
script:
- nosetests --with-coverage --cover-package=JenkinsStatistics
after_success:
coveralls
nosafter_script:
- pep8 .
- pylint JenkinsStatistics
| language: python
python:
- "2.7"
# - "3.5" To Do - Add support to it !
# - "pypy" To Do - Check about it later
# command to install dependencies
install:
- "pip install -r requirements.txt"
- pip install pep8
- pip install pylint
- pip install coveralls
# command to run tests
script:
- nosetests --with-coverage --cover-package=JenkinsStatistics
after_success:
coveralls
after_script:
- pep8 .
- pylint JenkinsStatistics
| Correct incorrect CI build config param | Correct incorrect CI build config param
| YAML | mit | BrunoCaimar/JenkinsStatistics |
4b4133bfae48b8bd1d342069bb35f9bd1679251c | .travis.yml | .travis.yml | language: node_js
node_js: 0.10
before_install: npm install -g grunt-cli
install: npm install
before_script: grunt build
after_script: cat ./build/coverage/**/lcov.info | ./node_modules/coveralls/bin/coveralls.js | language: node_js
node_js: 0.10
before_install: npm install -g grunt-cli
install: npm install
before_script: grunt build
after_script: cat ./build/coverage/**/lcov.info | ./node_modules/coveralls/bin/coveralls.js
sudo: false
| Use the new container infrastructure of Travis | Use the new container infrastructure of Travis | YAML | mit | waynegan/angular-spring-data-rest,guylabs/angular-spring-data-rest,tliero/angular-spring-data-rest |
50b36098977087a0a3ec532539ae2dc9b05b5466 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- stable
addons:
firefox: latest
before_script:
- npm install web-component-tester
- npm install bower
- bower install
script: xvfb-run wct
| language: node_js
sudo: false
node_js:
- stable
addons:
firefox: '42.0'
before_script:
- npm install web-component-tester
- npm install bower
- bower install
script: xvfb-run wct
| Fix Firefox version because Travis doesn't find any longer 'latest' | Fix Firefox version because Travis doesn't find any longer 'latest' | YAML | apache-2.0 | Collaborne/paper-date-picker-item,joeyroosing/paper-date-picker-item |
f8b8f9407bf101e0b963cf29437ead456691f61e | .travis.yml | .travis.yml | sudo: required
services:
- docker
language: bash
script:
# prepare qemu
- docker run --rm --privileged multiarch/qemu-user-static:register --reset
# build image
- docker build -t fdubuisson/knxd-build-rpi .
# test image
- docker run fdubuisson/knxd-build-rpi ls /packages
# push image
- >
if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
docker login -u="$DOCKER_USER" -p="$DOCKER_PASS"
docker push fdubuisson/knxd-build-rpi
fi
| sudo: required
services:
- docker
language: bash
script:
# prepare qemu
- docker run --rm --privileged multiarch/qemu-user-static:register --reset
# build image
- docker build -t fdubuisson/knxd-build-rpi .
# test image
- docker run fdubuisson/knxd-build-rpi knxd --version
# push image
- >
if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
docker login -u="$DOCKER_USER" -p="$DOCKER_PASS"
docker push fdubuisson/knxd-build-rpi
fi
| Check knxd version in Travis | Check knxd version in Travis
| YAML | mit | f-dubuisson/knxd-docker-rpi |
ec8fd8f7f87cc523cf0d3a3554ed29342bed39b8 | .travis.yml | .travis.yml | language: java
matrix:
include:
- os: linux
dist: precise
jdk: oraclejdk7
- os: linux
jdk: oraclejdk8
- os: linux
jdk: openjdk8
- os: linux
jdk: oraclejdk9
- os: linux
jdk: oraclejdk10
- os: linux
jdk: openjdk10
| language: java
matrix:
include:
- os: linux
dist: precise
jdk: oraclejdk7
- os: linux
jdk: oraclejdk8
- os: linux
jdk: openjdk8
- os: linux
jdk: oraclejdk9
- os: linux
jdk: oraclejdk10
- os: linux
jdk: openjdk10
- os: linux
jdk: openjdk11
| Build and test with OpenJDK 11 | Build and test with OpenJDK 11
| YAML | bsd-3-clause | bwaldvogel/liblinear-java,bwaldvogel/liblinear-java |
31fc67bde99ff4122379b083c55da9e19a1ef2bd | .travis.yml | .travis.yml | language: python
python:
- "3.5"
- "3.5-dev" # 3.5 development branch
- "3.6"
- "3.6-dev" # 3.6 development branch
os:
- linux
- osx
# command to install dependencies
install: "pip install -r requirements-build.txt"
# command to run tests
script:
- make test-all
- make build
| language: python
python:
- "3.5"
- "3.5-dev" # 3.5 development branch
- "3.6"
- "3.6-dev" # 3.6 development branch
sudo: false
os:
- linux
- osx
# command to install dependencies
install: "pip install -r requirements-build.txt"
# command to run tests
script:
- make test-all
- make build
| Set sudo to false for Travis build | Set sudo to false for Travis build
| YAML | bsd-3-clause | zstuartp/AstroReduce,zstuartp/AstroReduce |
8a85795029eeff700e079dec40737afc9cb7a73c | .travis.yml | .travis.yml | before_script:
- npm i -g eslint
- eslint .
language: node_js
node_js:
- 6.2.0
- 7.0.0
| before_script:
- npm i -g eslint
- eslint .
language: node_js
node_js:
- 4
- 6
- 7
| Test Node v4, 6, and 7 | Test Node v4, 6, and 7
| YAML | apache-2.0 | mediocre/whosit |
8519fff1763f58fb8a80415996050fadcdab44d5 | .travis.yml | .travis.yml | language: python
sudo: false
install:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no --set show_channel_urls yes
- conda config --add channels conda-forge
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda create -q -n test-environment python=3.5 pip mpmath matplotlib pytest pyflakes numpy scipy pyne gcc jinja2 gmpy2 cython
- source activate test-environment
# Change to git+git://github.com/sympy/sympy.git when
# https://github.com/sympy/sympy/pull/12088 is merged.
- pip install git+git://github.com/asmeurer/sympy.git@Float-prec-fix
- python -m transmutagen.gensolve --py-solve
- cd py_solve
- python setup.py build_ext --inplace
- cd ..
script:
- pyflakes transmutagen py_solve setup.py
- PYTHONPATH=py_solve py.test transmutagen
# See if it installs
- python setup.py sdist
- pip install dist/*
| language: python
sudo: false
install:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no --set show_channel_urls yes
- conda config --add channels conda-forge
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda create -q -n test-environment python=3.5 pip mpmath matplotlib pytest pyflakes numpy scipy pyne gcc jinja2 gmpy2 cython
- source activate test-environment
# Change to git+git://github.com/sympy/sympy.git when
# https://github.com/sympy/sympy/pull/12088 is merged.
- pip install git+git://github.com/asmeurer/sympy.git@Float-prec-fix
- python -m transmutagen.gensolve --py-solve
- cd py_solve
- python setup.py build_ext --inplace
- cd ..
script:
- pyflakes transmutagen py_solve setup.py
- PYTHONPATH=py_solve py.test transmutagen
# See if it installs
- python setup.py sdist
- pip install dist/*
- cd /
- python -m 'import transmutagen'
| Test that it actually installed | Test that it actually installed
| YAML | bsd-3-clause | ergs/transmutagen,ergs/transmutagen |
1913701ab41c6b8135e075fd0c7077c5aecf619d | .travis.yml | .travis.yml | language: rust
dist: trusty
sudo: false
custom:
test: &test
stage: test
cache:
cargo: true
directories:
- /home/travis/.local/share/cargo-web/emscripten
addons:
chrome: stable
script:
- nvm install 9
- ./ci/install_cargo_web.sh
- ./ci/run_tests.sh
jobs:
include:
- <<: *test
os: linux
rust: nightly
- <<: *test
os: linux
rust: stable
- <<: *test
os: linux
rust: beta
- <<: *test
os: linux
rust: 1.33.0
env: SKIP_RUNTIME_COMPATIBILITY_CHECK=1
| language: rust
dist: trusty
sudo: false
custom:
test: &test
stage: test
cache:
cargo: true
directories:
- /home/travis/.local/share/cargo-web/emscripten
addons:
chrome: stable
script:
- nvm install 9
- ./ci/install_cargo_web.sh
- ./ci/install_wasm_bindgen.sh
- ./ci/install_wasm_pack.sh
- ./ci/run_tests.sh
jobs:
include:
- <<: *test
os: linux
rust: nightly
- <<: *test
os: linux
rust: stable
- <<: *test
os: linux
rust: beta
- <<: *test
os: linux
rust: 1.33.0
env: SKIP_RUNTIME_COMPATIBILITY_CHECK=1
| Install `wasm-bindgen` and `wasm-pack` on Travis | Install `wasm-bindgen` and `wasm-pack` on Travis
| YAML | apache-2.0 | koute/stdweb,koute/stdweb,koute/stdweb |
952b803bad0b5864848ca8aefc3a65e75b848a73 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '12'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc proof
script:
- nyc npm test
| sudo: false
language: node_js
node_js:
- '12'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
| Install Proof Runner at Travis CI, not Scaffold. | Install Proof Runner at Travis CI, not Scaffold.
See #436.
| YAML | mit | bigeasy/paxos,bigeasy/paxos |
595971ce547beb8c2a601bce4c74bf1a8a1467f7 | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
- 15
- 14
# Node 14 added fs/promises.
script:
- npm test && npm run coveralls
| language: node_js
node_js:
- "node"
- 15
- 14
# Node 14 added fs/promises.
script:
- npm test && npm run coverage
| Call the right coverage script | Call the right coverage script
| YAML | mit | thejohnfreeman/node-find |
69b364f6e99a46d5abd030e62bb28105987f23e5 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
addons:
apt:
packages:
- git
install:
# clone then run tests
- git clone --depth=1 https://github.com/gem/oq-hazardlib.git
- git clone --depth=1 https://github.com/gem/oq-engine.git
- pip install -r $(pwd)/oq-engine/requirements-py27-linux64.txt
- PYTHONPATH=$(pwd)/oq-hazardlib:$(pwd)/oq-engine:. nosetests -vx tests
| sudo: false
language: python
python:
- "2.7"
addons:
apt:
packages:
- sed
- git
install:
- git clone --depth=1 https://github.com/gem/oq-hazardlib.git
- git clone --depth=1 https://github.com/gem/oq-engine.git
- sed -i "s/cp27mu/cp27m/g" oq-engine/requirements-py27-linux64.txt
- pip install -r oq-engine/requirements-py27-linux64.txt
script:
- PYTHONPATH=$(pwd)/oq-hazardlib:$(pwd)/oq-engine:. nosetests -vx tests
| Use cp27m wheels instead of cp27mu | Use cp27m wheels instead of cp27mu
| YAML | agpl-3.0 | gem/oq-hazardlib,gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-hazardlib,gem/oq-hazardlib |
971bfa49ec73e942b396f97a151951f71aa9ec38 | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2
matrix:
include:
- rvm: 1.9.3
gemfile: gemfiles/rails4.1.gemfile
- rvm: 2.0
gemfile: gemfiles/rails4.1.gemfile
- rvm: jruby-19mode
gemfile: gemfiles/rails4.1.gemfile
gemfile:
- gemfiles/rails3.2.gemfile
- gemfiles/rails4.0.gemfile
- gemfiles/rails4.1.gemfile
- gemfiles/rails4.2.gemfile
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
| language: ruby
cache: bundler
sudo: false
rvm:
- 2
matrix:
include:
- rvm: 2.0
gemfile: gemfiles/rails4.1.gemfile
gemfile:
- gemfiles/rails3.2.gemfile
- gemfiles/rails4.0.gemfile
- gemfiles/rails4.1.gemfile
- gemfiles/rails4.2.gemfile
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
| Remove Ruby 1.9 references in Travis | Remove Ruby 1.9 references in Travis
| YAML | mit | Design-Collective/mailboxer,mailboxer/mailboxer,t27duck/mailboxer,Design-Collective/mailboxer,t27duck/mailboxer,mailboxer/mailboxer |
92641a57e74e64a5fc120d4f4130e9ae6f384197 | .travis.yml | .travis.yml | language: python
python:
# - "2.6"
- "2.7"
# - "3.3"
# - "3.4"
install:
- pip install -e .[testing]
- start_cms_project.py testing testing/ --with-people --with-faqs --with-jobs --skip-frontend
script: coverage run --source=cms --omit='*migrations*' testing/manage.py test
notifications:
slack: onespacemedia:NufeDxb1m4D0UkuQh1O0m9qt
email: false
after_success:
- coveralls
| language: python
python:
# - "2.6"
- "2.7"
# - "3.3"
# - "3.4"
env:
- DJANGO=1.7.7
- DJANGO=1.8c1
install:
- pip install -q Django==$DJANGO
- pip install -e .[testing]
- start_cms_project.py testing testing/ --with-people --with-faqs --with-jobs --skip-frontend
script: coverage run --source=cms --omit='*migrations*' testing/manage.py test
notifications:
slack: onespacemedia:NufeDxb1m4D0UkuQh1O0m9qt
email: false
after_success:
- coveralls
| Test against multiple versions of Django. | Test against multiple versions of Django.
| YAML | bsd-3-clause | jamesfoley/cms,dan-gamble/cms,danielsamuels/cms,lewiscollard/cms,danielsamuels/cms,jamesfoley/cms,jamesfoley/cms,dan-gamble/cms,danielsamuels/cms,lewiscollard/cms,jamesfoley/cms,lewiscollard/cms,dan-gamble/cms |
ce96cb96448e380660a8cf269b7da77a22fd00e3 | .travis.yml | .travis.yml | language: node_js
node_js:
- 12
## Cache NPM folder and Cypress binary
## to avoid downloading Cypress again and again
cache:
directories:
- ~/.npm
- ~/.cache
install:
# use the new "ci" command for fastest installs on CI
- npm ci
before_script:
## runs the 'start' script which
## boots our local app server on port 8888
## which cypress expects to be running
## -----------------------------------
## the '-- --silent' passes arguments
## to http-server which silences its output
## else our travis logs would be cluttered
## with output from HTTP requests
## https://docs.npmjs.com/cli/start
## https://github.com/indexzero/http-server
## ---------------------------------------
## we use the '&' ampersand which tells
## travis to run this process in the background
## else it would block execution and hang travis
#- npm start -- --silent &
script:
## now run cypress headlessly
## and record all of the tests.
## Cypress will search for a
## CYPRESS_RECORD_KEY environment
## variable by default and apply
## this to the run.
- npm run cypress_ci
## alternatively we could specify
## a specific record key to use
## like this without having to
## configure environment variables
## - cypress run --record --key <your_record_key>
| language: node_js
node_js:
- 12
## Cache NPM folder and Cypress binary
## to avoid downloading Cypress again and again
cache:
directories:
- ~/.npm
- ~/.cache
install:
# use the new "ci" command for fastest installs on CI
- npm ci
before_script:
## runs the 'start' script which
## boots our local app server on port 8888
## which cypress expects to be running
## -----------------------------------
## the '-- --silent' passes arguments
## to http-server which silences its output
## else our travis logs would be cluttered
## with output from HTTP requests
## https://docs.npmjs.com/cli/start
## https://github.com/indexzero/http-server
## ---------------------------------------
## we use the '&' ampersand which tells
## travis to run this process in the background
## else it would block execution and hang travis
#- npm start -- --silent &
script:
## now run cypress headlessly
## and record all of the tests.
## Cypress will search for a
## CYPRESS_RECORD_KEY environment
## variable by default and apply
## this to the run.
- npm run cypress_ci
## alternatively we could specify
## a specific record key to use
## like this without having to
## configure environment variables
## - cypress run --record --key <your_record_key>
addons:
apt:
packages:
- libgconf-2-4 | Install libgconf-2-4 in CI environment | Install libgconf-2-4 in CI environment
| YAML | apache-2.0 | bertrandg/angular-split,bertrandg/angular-split,bertrandg/angular-split |
f7e6cd00d70909998d68bb997b648be229c292b3 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
| Remove rbx-18mode and jruby-19mode because of ActiveSupport 4.0.0 | Remove rbx-18mode and jruby-19mode because of ActiveSupport 4.0.0
| YAML | mit | tigerlily/solid,tigerlily/solid |
e68448e0252c8080bc4e2eccfa288f644a084b51 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.3
| rvm:
- 1.8.7
- 1.9.3
- jruby
- rbx-19mode
matrix:
allow_failures:
- rvm: jruby
- rvm: rbx-19mode
| Test JRuby and RBX but don't fail the build on them | Test JRuby and RBX but don't fail the build on them | YAML | mit | fakefs/fakefs,zimbatm/fakefs,defunkt/fakefs,dekz/fakefs,marxarelli/fakefs,bquorning/fakefs,anthonyryan1/fakefs,pivotal-cf-experimental/fakefs,bf4/fakefs,1234-/fakefs,eventualbuddha/fakefs,openSUSE/fakefs,onehub/fakefs,deployable/fakefs,vhl/fakefs |
42b80fc76ed49766d5b3f7d8dfc7e5d1f96604ae | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
script:
- rspec spec/
| language: ruby
rvm:
- 2.0.0
script:
- rspec spec/
| Drop support of ruby 1.9.3 | Drop support of ruby 1.9.3
| YAML | mit | ck3g/battle |
5394cca920c4d6cf8ef140f21992419081c37e6e | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository -y ppa:kalakris/cmake
- sudo apt-get update -qq
install:
# See issue travis-ci/travis-ci#1379
- 'if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; export CXX="g++-4.8" CC="gcc-4.8"; else export CC=clang CXX=clang++; fi'
# CMake
- sudo apt-get install -qq cmake
# Google Protobuf
- sudo apt-get install -qq protobuf-compiler libprotobuf-dev
# GLFW
- git clone https://github.com/glfw/glfw.git
- sudo apt-get install -qq xorg-dev libgl1-mesa-dev libglu1-mesa-dev
- cd glfw && git checkout 3.1 && cmake . && make && sudo make install && cd ..
script:
- mkdir build && cd build && cmake .. -G "Unix Makefiles" && make -j8
| language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository -y ppa:kalakris/cmake
- sudo apt-get update -qq
install:
# See issue travis-ci/travis-ci#1379
- 'if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; export CXX="g++-4.8" CC="gcc-4.8"; else export CC=clang CXX=clang++; fi'
# CMake
- sudo apt-get install -qq cmake
# Google Protobuf
- sudo apt-get install -qq protobuf-compiler libprotobuf-dev
# GLFW
- sudo apt-get install -qq xorg-dev libgl1-mesa-dev libglu1-mesa-dev
- wget https://github.com/glfw/glfw/archive/3.1.tar.gz
- tar xzf 3.1.tar.gz
- cd glfw-3.1 && cmake . && make && sudo make install && cd ..
# Bullet
- wget https://bullet.googlecode.com/files/bullet-2.82-r2704.tgz
- tar xzf bullet-2.82-r2704.tgz
- cd bullet-2.82-r2704 && mkdir build && cd build && cmake .. && make -j8 && sudo make install
script:
- mkdir build && cd build && cmake .. -G "Unix Makefiles" && make -j8
| Fix build script again 2. | Fix build script again 2.
| YAML | mpl-2.0 | roboime/ssl-sim,gustavokcouto/ssl-sim,roboime/ssl-sim,roboime/ssl-sim,gustavokcouto/ssl-sim,gustavokcouto/ssl-sim |
b9822982f05cbf99eb701dbfd8a61ef5ceff611d | .travis.yml | .travis.yml | language: ruby
sudo: false
bundler_args: --without development
rvm:
- 2.2.2
- 2.3.1
- jruby-9.1.2.0
gemfile:
- Gemfile
env:
global:
- CI="travis"
- JRUBY_OPTS="--server -J-Xms512m -J-Xmx1024m"
matrix:
- MONGODB=2.4.14
- MONGODB=2.6.12
- MONGODB=3.0.12
- MONGODB=3.2.7
before_script:
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-${MONGODB}.tgz -O /tmp/mongodb.tgz
- tar -xvf /tmp/mongodb.tgz
- mkdir /tmp/data
- ${PWD}/mongodb-linux-x86_64-${MONGODB}/bin/mongod --dbpath /tmp/data --bind_ip 127.0.0.1 --auth &> /dev/null &
notifications:
email: false
irc:
on_success: change
on_failure: always
channels:
- "irc.freenode.org#mongoid"
| language: ruby
sudo: false
bundler_args: --without development
rvm:
- 2.2.2
- 2.3.1
- jruby-9.1.2.0
gemfile:
- Gemfile
env:
global:
- CI="travis"
- JRUBY_OPTS="--server -J-Xms512m -J-Xmx2G"
matrix:
- MONGODB=2.4.14
- MONGODB=2.6.12
- MONGODB=3.0.12
- MONGODB=3.2.7
before_script:
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-${MONGODB}.tgz -O /tmp/mongodb.tgz
- tar -xvf /tmp/mongodb.tgz
- mkdir /tmp/data
- ${PWD}/mongodb-linux-x86_64-${MONGODB}/bin/mongod --dbpath /tmp/data --bind_ip 127.0.0.1 --auth &> /dev/null &
notifications:
email: false
irc:
on_success: change
on_failure: always
channels:
- "irc.freenode.org#mongoid"
| Increase jRuby max heap size | Increase jRuby max heap size
| YAML | mit | Sharevari-Inc/mongoid,kay-kim/mongoid,mongodb/mongoid,herimedia/mongoid,estolfo/mongoid,Zhomart/mongoid,kay-kim/mongoid,Welovroi/mongoid,mongodb/mongoid,Sharevari-Inc/mongoid,jonhyman/mongoid,herimedia/mongoid,Welovroi/mongoid,nicolasblanco/mongoid,nviennot/mongoid,estolfo/mongoid,mongodb/mongoid,nviennot/mongoid,jonhyman/mongoid,Zhomart/mongoid |
cf60dae03c51ced79a215723acaacbba9df1f1b1 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
install:
- npm install
- gulp dist
- npm install babel-generator babylon cheerio @angular/core stylus less postcss
| language: node_js
node_js:
- "6"
install:
- npm install
- gulp dist
- npm install babel-generator babylon cheerio @angular/core stylus less postcss node-sass
| Add sass to peer dep | Add sass to peer dep
| YAML | mit | rs3d/fuse-box,rs3d/fuse-box,fuse-box/fuse-box,rs3d/fuse-box,pnml/fuse-box,pnml/fuse-box,fuse-box/fuse-box,fuse-box/fuse-box,fuse-box/fuse-box,pnml/fuse-box |
392eff7dc641388ffd03c4d58d647e721d0e297c | .travis.yml | .travis.yml | language: php
dist: trusty
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
matrix:
fast_finish: true
include:
- php: 5.3
dist: precise
env: COMPOSER_FLAGS="--prefer-lowest"
before_script:
- composer update --no-interaction --no-progress --no-suggest ${COMPOSER_FLAGS}
script:
- vendor/bin/phpunit -v
| language: php
dist: trusty
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
cache:
directories:
- ${HOME}/.composer/cache/files
matrix:
fast_finish: true
include:
- php: 5.3
dist: precise
env: COMPOSER_FLAGS="--prefer-lowest"
before_script:
- composer update --no-interaction --no-progress --no-suggest ${COMPOSER_FLAGS}
script:
- vendor/bin/phpunit -v
| Add Composer directories to Travis CI cache | Add Composer directories to Travis CI cache
| YAML | mit | jmikola/WildcardEventDispatcher |
1de25e41cbefaa6b5a9bc08a3644778ea01b472f | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "stable"
script:
- gulp lint
- gulp less
env:
global:
- NPM_CONFIG_PROGRESS="false"
| sudo: false
language: node_js
node_js:
- "stable"
script:
- gulp lint
- gulp less
cache:
directories:
- node_modules
env:
global:
- NPM_CONFIG_PROGRESS="false"
| Add TravisCI caching for node_modules directory | Add TravisCI caching for node_modules directory
| YAML | mit | wolfy1339/m8tro-bootstrap,wolfy1339/m8tro-bootstrap,wolfy1339/m8tro-bootstrap |
0f8f93000312f4343ce906d68de37c1299ed810f | .travis.yml | .travis.yml | language: python
python:
- 2.7
services:
- docker
before_install:
- tar xvfz sandbox.tar.gz > /dev/null
- source sandbox/bin/activate
- sandbox/bin/pip install -r requirements.txt --exists-action w --upgrade
script:
- VERSION=leap42sp1 make -s build_image
- VERSION=leap42sp1 make -s custom_integration
| language: python
python:
- 2.7
services:
- docker
before_install:
- tar xvfz sandbox.tar.gz > /dev/null
- source sandbox/bin/activate
- sandbox/bin/pip install -r requirements.txt --exists-action w --upgrade
script:
- BUILD_OPTS:=--nopull VERSION=leap42sp1 make -s build_image
- VERSION=leap42sp1 make -s custom_integration
| Build leap42.1 docker image without pull | Build leap42.1 docker image without pull
| YAML | mit | dincamihai/salt-toaster,dincamihai/salt-toaster |
b8ffa6b281aa51e5e75b87f2babb6ad35e3a8cc8 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- jruby-19mode
env:
- ES_VERSION=0.18.7
- ES_VERSION=0.19.1
before_script: "bin/install_elasticsearch"
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-19mode
env:
- ES_VERSION=0.18.7
- ES_VERSION=0.19.1
before_script: "bin/install_elasticsearch"
| Add ruby-1.8.7 to build matrix | Add ruby-1.8.7 to build matrix
| YAML | mit | Asquera/elasticsearch-node |
8bfab574b1c9305ca30d7ec98fc4976af8c6d15b | .travis.yml | .travis.yml | language: android
env:
global:
- ADB_INSTALL_TIMEOUT=8 # 8 minutes (2 minutes by default)
android:
components:
- tools
- build-tools-23.0.2
- android-23
- extra-android-support
- extra-google-m2repository
- extra-android-m2repository
- sys-img-armeabi-v7a-android-19
before_script:
- echo no | android create avd --force -n test -t android-19 --abi armeabi-v7a
- emulator -avd test -no-audio -no-window &
- android-wait-for-emulator
- adb shell settings put global window_animation_scale 0 &
- adb shell settings put global transition_animation_scale 0 &
- adb shell settings put global animator_duration_scale 0 &
- adb shell input keyevent 82 &
script:
- ./gradlew checkstyle build connectedCheck | language: android
env:
global:
- ADB_INSTALL_TIMEOUT=8 # 8 minutes (2 minutes by default)
android:
components:
- tools
- build-tools-23.0.2
- android-23
- extra-android-support
- extra-google-m2repository
- extra-android-m2repository
- sys-img-armeabi-v7a-android-18
before_script:
- echo no | android create avd --force -n test -t android-18 --abi armeabi-v7a
- emulator -avd test -no-audio -no-window &
- android-wait-for-emulator
- adb shell settings put global window_animation_scale 0 &
- adb shell settings put global transition_animation_scale 0 &
- adb shell settings put global animator_duration_scale 0 &
- adb shell input keyevent 82 &
script:
- ./gradlew checkstyle build connectedCheck | Change to use emulator api 18 | Change to use emulator api 18
| YAML | apache-2.0 | Karumi/KataSuperHeroesAndroid |
6adc97166bdc3f0b8682d016f2b0fca9ad65424c | .travis.yml | .travis.yml | language: rust
sudo: false
cache: cargo
rust:
- stable
- beta
- nightly
env:
- COMPILE_ARGS=("--no-default-features")
- COMPILE_ARGS=()
os:
- linux
- osx
before_script:
- export PATH="$PATH:$HOME/.cargo/bin"
- |
# cargo install rustfmt
if [[ $TRAVIS_RUST_VERSION = nightly ]]; then
echo "formatting enabled"
if which rustfmt > /dev/null && [[ $(rustup run nightly rustfmt --version) != "0.2.1-nightly (16920fb"* ]]; then
echo "uninstalling old rustfmt"
cargo uninstall rustfmt;
fi
if ! which rustfmt > /dev/null; then
echo "installing rustfmt"
cargo install rustfmt-nightly --git https://github.com/rust-lang-nursery/rustfmt.git --rev 16920fb -j 1
cargo install rustfmt-nightly --vers 0.2.1 -j 1
fi
fi
- |
# rustfmt --version
if [[ $TRAVIS_RUST_VERSION = nightly ]]; then
rustup run nightly rustfmt --version
fi
script:
- cargo build --verbose "${COMPILE_ARGS[@]}"
- |
# cargo fmt
if [[ $TRAVIS_RUST_VERSION = nightly ]]; then
cargo fmt --verbose -- --write-mode=diff
fi
- cargo test --verbose "${COMPILE_ARGS[@]}" -- --skip auth
| language: rust
sudo: false
cache: cargo
rust:
- stable
- beta
- nightly
env:
- COMPILE_ARGS=("--no-default-features")
- COMPILE_ARGS=()
os:
- linux
- osx
script:
- cargo build --verbose "${COMPILE_ARGS[@]}"
- cargo test --verbose "${COMPILE_ARGS[@]}" -- --skip auth
| Remove formatting testing until rustfmt works on stable rust again. | Remove formatting testing until rustfmt works on stable rust again.
| YAML | mit | daboross/rust-screeps-api |
11f756a8eb975df93d923853c959e166c1beff56 | .travis.yml | .travis.yml | language: ruby
rvm: $RUBY_VERSION
env:
- PUPPET_VERSION="~> 4.3.0" STRICT_VARIABLES=yes RUBY_VERSION="2.1.0"
- PUPPET_VERSION="~> 4.9.0" RUBY_VERSION="2.1.0"
- PUPPET_VERSION="~> 5.5.0" RUBY_VERSION="2.4.0"
- PUPPET_VERSION="~> 6.13.0" RUBY_VERSION="2.6.0"
script: "rake test"
sudo: false
| language: ruby
rvm: $RUBY_VERSION
env:
- PUPPET_VERSION="~> 4.3.0" STRICT_VARIABLES=yes RUBY_VERSION="2.6.6"
- PUPPET_VERSION="~> 4.9.0" RUBY_VERSION="2.6.6"
- PUPPET_VERSION="~> 5.5.0" RUBY_VERSION="2.6.6"
- PUPPET_VERSION="~> 6.13.0" RUBY_VERSION="2.6.6"
script: "rake test"
sudo: false
| Update ruby versions in build matrix | Update ruby versions in build matrix
| YAML | mit | willdurand/puppet-composer |
7fdb767cbd4b03ccdba6e30ca4a6a39b438d5822 | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
install:
- npm install -g uglifyjs jshint jsonlint
- npm install
script:
- make
- make lint
- make test
after_script:
- node_modules/istanbul/lib/cli.js cover node_modules/jasmine/bin/jasmine.js --captureExceptions && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
| language: node_js
node_js:
- "node"
install:
- npm install -g uglifyjs jshint jsonlint
- npm install
script:
- make
- make lint
- make test
after_script:
- node_modules/istanbul/lib/cli.js cover node_modules/jasmine/bin/jasmine.js --captureExceptions && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js -v
| Add -v option for coveralls | Add -v option for coveralls
| YAML | mit | jcubic/jquery.terminal,jcubic/jquery.terminal,jcubic/jquery.terminal,jcubic/jquery.terminal |
5b712d60548a3899b99431b5343599cb84da8e0f | .travis.yml | .travis.yml | language: php
php:
- '5.6'
- '7.0'
- '7.1'
before_script:
- nvm install 4
- nvm use 4
- npm i -g npm@4
- npm i -g gulp
- npm i
- touch tests.db
- chmod a+w tests.db
script:
- ./src/api/vendor/phpunit/phpunit/phpunit -c test/api/phpunit.xml
- gulp test-app && gulp coverage
after_success:
- echo -e "<?php\n print phpversion();" > version.php
- curl "https://raw.githubusercontent.com/andreafabrizi/Dropbox-Uploader/master/dropbox_uploader.sh" -o dropbox_uploader.sh
- chmod +x dropbox_uploader.sh
- ./dropbox_uploader.sh -f /dev/null upload coverage/api coverage-$(php version.php)/
- ./dropbox_uploader.sh -f /dev/null upload coverage/app coverage-$(php version.php)/
| language: php
php:
- '5.6'
- '7.0'
- '7.1'
before_script:
- nvm install 7
- nvm use 7
- npm i -g npm@5
- npm i -g gulp
- npm i
- touch tests.db
- chmod a+w tests.db
script:
- ./src/api/vendor/phpunit/phpunit/phpunit -c test/api/phpunit.xml
- gulp test-app && gulp coverage
after_success:
- echo -e "<?php\n print phpversion();" > version.php
- curl "https://raw.githubusercontent.com/andreafabrizi/Dropbox-Uploader/master/dropbox_uploader.sh" -o dropbox_uploader.sh
- chmod +x dropbox_uploader.sh
- ./dropbox_uploader.sh -f /dev/null upload coverage/api coverage-$(php version.php)/
- ./dropbox_uploader.sh -f /dev/null upload coverage/app coverage-$(php version.php)/
| Update Node and npm versions in CI builds | Update Node and npm versions in CI builds
| YAML | mit | kiswa/TaskBoard,kiswa/TaskBoard,kiswa/TaskBoard,kiswa/TaskBoard,kiswa/TaskBoard |
7322e3faaa9ce158aa4f095a6250f2a389694aab | .travis.yml | .travis.yml | language: node_js
dist: trusty
node_js:
- 8
- 10
addons:
chrome: stable
install:
- npm ci
before_install:
- npm i -g npm@latest
script:
# xvfb-run is needed for headless testing with real browsers
- xvfb-run karma start --single-run
- if [[ "$TRAVIS_EVENT_TYPE" = "push" ]]; then
karma start --single-run --sauce;
fi;
notifications:
email:
on_success: never
| language: node_js
dist: trusty
node_js: lts/*
addons:
chrome: stable
install:
- npm ci
before_install:
- npm i -g npm@latest
script:
# xvfb-run is needed for headless testing with real browsers
- xvfb-run karma start --single-run
- if [[ "$TRAVIS_EVENT_TYPE" = "push" ]]; then
karma start --single-run --sauce;
fi;
notifications:
email:
on_success: never
| Test only against node LTS | Test only against node LTS
| YAML | mit | kenwheeler/cash,kenwheeler/cash,kenwheeler/cash |
419b38c0972cbaa84ba6100963524bd135fbc848 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.6
- 1.7
- 1.8
- tip
before_install:
- export PATH=$HOME/gopath/bin:$PATH
- go get github.com/mattn/goveralls
script:
- go test -race ./...
- go test -cover ./...
- goveralls -service=travis-ci -ignore=examples/*,examples/plugins/*/*
matrix:
allow_failures:
- go: tip
git:
depth: 10
| language: go
sudo: false
go:
- "1.6"
- "1.7"
- "1.8"
- "1.9"
- "1.10"
- "tip"
before_install:
- export PATH=$HOME/gopath/bin:$PATH
- go get github.com/mattn/goveralls
script:
- go test -race ./...
- go test -cover ./...
- goveralls -service=travis-ci -ignore=examples/*,examples/plugins/*/*
matrix:
allow_failures:
- go: tip
git:
depth: 10
| Add golang 1.10 to test target | Add golang 1.10 to test target
| YAML | mit | oklahomer/go-sarah |
c327b88ef528267f795a62d44bc9597253dd51a7 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- rbx-2.1.1
| Change Travis CI Rubinius version | Change Travis CI Rubinius version
| YAML | mit | mmozuras/pronto-rails_best_practices |
ee89da618f492b56369123c514a212e8e3969f35 | .travis.yml | .travis.yml | language: go
go:
- 1.0
- 1.1
- 1.2
- 1.3
- 1.4
script:
make test
sudo: false
| language: go
go:
- 1.2
- 1.3
- 1.4
script:
make test
sudo: false
| Remove Go 1.0 and 1.1 from Travis CI. | Remove Go 1.0 and 1.1 from Travis CI.
| YAML | mit | postfix/fuzzysearch,wangshijin/fuzzysearch,speedata/fuzzysearch,ZombieHippie/fuzzysearch,jeanmatheussouto/fuzzysearch,renstrom/fuzzysearch |
4db65f97ded39d02e9f8a8fb686f1b3a9ff282f1 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
env:
matrix:
- DJANGO=1.2
- DJANGO=1.3
- DJANGO=1.4
- DJANGO=1.5
- DJANGO=1.6
- DJANGO=1.7
matrix:
exclude:
- python: 3.3
env: DJANGO=1.3
- python: 3.3
env: DJANGO=1.4
- python: 3.4
env: DJANGO=1.3
- python: 3.4
env: DJANGO=1.4
include:
- python: 2.7
env: DJANGO=1.6 COVERAGE=true
allow_failures:
- env: COVERAGE=true
install:
- pip install --quiet --use-mirrors "Django>="$DJANGO",<"$DJANGO".99" flake8
- make install
script:
- make flake8 test
after_script:
- if [ $COVERAGE == "true" ]; then
pip install --quiet --use-mirrors python-coveralls
make coverage;
coverage report;
coveralls;
fi
| language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
env:
matrix:
- DJANGO=1.2
- DJANGO=1.3
- DJANGO=1.4
- DJANGO=1.5
- DJANGO=1.6
- DJANGO=1.7
matrix:
exclude:
- python: 3.3
env: DJANGO=1.2
- python: 3.3
env: DJANGO=1.3
- python: 3.3
env: DJANGO=1.4
- python: 3.4
env: DJANGO=1.2
- python: 3.4
env: DJANGO=1.3
- python: 3.4
env: DJANGO=1.4
include:
- python: 2.7
env: DJANGO=1.6 COVERAGE=true
allow_failures:
- env: COVERAGE=true
install:
- pip install --quiet --use-mirrors "Django>="$DJANGO",<"$DJANGO".99" flake8
- make install
script:
- make flake8 test
after_script:
- if [ $COVERAGE == "true" ]; then
pip install --quiet --use-mirrors python-coveralls
make coverage;
coverage report;
coveralls;
fi
| Exclude Django 1.2 on Python 3.x | Exclude Django 1.2 on Python 3.x | YAML | mit | 5monkeys/django-viewlet,5monkeys/django-viewlet |
a374d9384611e0249653a524a1da7bc30083826d | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- oraclejdk8
- oraclejdk9
- oraclejdk10
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| language: java
sudo: false
jdk:
- oraclejdk8
- openjdk11
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| Add Java 11 to Travis CI builds | Add Java 11 to Travis CI builds
Change .travis.yml to run the build with Java 11, also, remove Java 9
and 10 as they will be soon superseded by Java 11.
| YAML | apache-2.0 | zaproxy/zap-api-java |
187f8c338a7024fd107ee1bf2d170bb219e2c3a2 | .travis.yml | .travis.yml | language: csharp
mono: none
dotnet: 2.2.108
branches:
only:
- master
install:
- git fetch --unshallow
script:
- dotnet build -c Release
- dotnet pack -c Release
deploy:
skip_cleanup: true
provider: script
script: dotnet nuget push **/Heroes.ReplayParser.*.nupkg --no-symbols true --api-key $NuGetApiKey --source https://api.nuget.org/v3/index.json
on:
branch: master | language: csharp
mono: none
dotnet: 6.0.100
branches:
only:
- master
install:
- git fetch --unshallow
script:
- dotnet build -c Release
- dotnet pack -c Release
deploy:
skip_cleanup: true
provider: script
script: dotnet nuget push **/Heroes.ReplayParser.*.nupkg --no-symbols true --api-key $NuGetApiKey --source https://api.nuget.org/v3/index.json
on:
branch: master | Update demo console project to use .NET 6 - LTS support | Update demo console project to use .NET 6 - LTS support
The parsing library still uses .NET Standard 2.0
| YAML | mit | barrett777/Heroes.ReplayParser |
374ec7639e923f8cf3c30125f0829f48a1e06920 | .travis.yml | .travis.yml | language: Java
jdk:
- oraclejdk7
- openjdk7
script: mvn verify -P-community.parent
| language: Java
jdk:
- oraclejdk7
- openjdk7
script: "mvn verify -P-community.parent"
| Add quotes to Travis script | Add quotes to Travis script
| YAML | apache-2.0 | kaazing/community |
064e9c7b096eb7ed5f6bd6a6d0365591e412543d | .travis.yml | .travis.yml | language: node_js
node_js:
- 'iojs-v2.4.0'
sudo: true
addons:
apt:
packages:
- build-essential
- libzmq-dev
before_install:
- cd app
install:
- npm install
notifications:
slack:
secure: gcPvQOCwtvw4nUm9PaR5ztgGsXOdNB0MGNshhLkgX/TXAJUWj+6BgrrWi5NkptaOMrvM+2MrDDHW1XqSx2WOpS334EIYIW1gG82QByY9lR5hC9Id4Gqd3BT9Dl9eo3ev5nA1ffMXvgXGgP/VMd7Xjn/OC1iYNCud8dGPSDdzG5s=
| language: node_js
node_js:
- 'iojs-v2.4.0'
sudo: true
addons:
apt:
packages:
- build-essential
- libzmq-dev
before_install:
- cd dawn
install:
- npm install
notifications:
slack:
secure: gcPvQOCwtvw4nUm9PaR5ztgGsXOdNB0MGNshhLkgX/TXAJUWj+6BgrrWi5NkptaOMrvM+2MrDDHW1XqSx2WOpS334EIYIW1gG82QByY9lR5hC9Id4Gqd3BT9Dl9eo3ev5nA1ffMXvgXGgP/VMd7Xjn/OC1iYNCud8dGPSDdzG5s=
| Stop erroring due to old folder configuration | Stop erroring due to old folder configuration
| YAML | apache-2.0 | pioneers/PieCentral,pioneers/PieCentral,pioneers/PieCentral,pioneers/PieCentral,pioneers/PieCentral,pioneers/PieCentral,pioneers/PieCentral |
29732624bd574a4865654a581e5053ca5443c11c | .travis.yml | .travis.yml | # Lock down dist to ensure that builds run on a distribution that supports oraclejdk8
dist: trusty
language: ruby
rvm:
- 2.3.1
jdk:
- oraclejdk8
git:
depth: 10
| # Lock down dist to ensure that builds run on a distribution that supports oraclejdk8
dist: trusty
language: ruby
rvm:
- 2.6.6
jdk:
- oraclejdk8
git:
depth: 10
| Update the version of ruby used to build project in TravisCI. | Update the version of ruby used to build project in TravisCI.
| YAML | apache-2.0 | realityforge/redfish |
28fb057f7086c6cfd614e85e1e2891004ee0a1f6 | .travis.yml | .travis.yml | # reference: http://www.objc.io/issue-6/travis-ci.html
language: objective-c
xcode_project: SwiftColorsExamples.xcodeproj
xcode_scheme: SwiftColorsExamplesTests
| # reference: http://www.objc.io/issue-6/travis-ci.html
language: objective-c
script:
- xctool -project SwiftColorsExamples.xcodeproj -scheme SwiftColorsExamples -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
| Revert "Update Travis CI build script" | Revert "Update Travis CI build script"
This reverts commit 1d18ff7edf6cf8dd09ab3eeb06c951201858bf3a.
| YAML | mit | thii/SwiftHEXColors,thii/SwiftColors,thii/SwiftHEXColors,thii/SwiftColors |
80f0e98cde20b566a6172e403a2d64063acb9f54 | .travis.yml | .travis.yml | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode8
language: objective-c
env:
- DESTINATION="OS=10.0,name=iPhone 6s" SCHEME="TinyPlayerDemo" SDK=iphonesimulator10.0
podfile: Examples/Podfile
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- gem install xcpretty -N --no-ri --no-rdoc
- pod install --project-directory=Examples
- xcrun simctl list # list devices
script:
- set -o pipefail
- xcodebuild version
- xcodebuild clean test -workspace Examples/TinyPlayerDemo+Benchmark.xcworkspace -scheme "$SCHEME" -destination "$DESTINATION" ONLY_ACTIVE_ARCH=NO -enableCodeCoverage YES | xcpretty -c
- pod lib lint
# Some test configurations:
# cache: cocoapods
# xcode_sdk: iphonesimulator10.2
# xcodebuild clean build -workspace Examples/TinyPlayerDemo+Benchmark.xcworkspace -scheme TinyPlayerDemo -destination "platform=iOS Simulator,name=iPhone 7" ONLY_ACTIVE_ARCH=NO | xcpretty -c || ture
| # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode8.2
language: objective-c
env:
- DESTINATION="OS=10.2,name=iPhone 6s" SCHEME="TinyPlayerDemo" SDK=iphonesimulator10.2
podfile: Examples/Podfile
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- gem install xcpretty -N --no-ri --no-rdoc
- pod install --project-directory=Examples
- xcrun simctl list # list devices
script:
- set -o pipefail
- xcodebuild version
- xcodebuild clean test -workspace Examples/TinyPlayerDemo+Benchmark.xcworkspace -scheme "$SCHEME" -destination "$DESTINATION" ONLY_ACTIVE_ARCH=NO -enableCodeCoverage YES | xcpretty -c
- pod lib lint
# Some test configurations:
# cache: cocoapods
# xcode_sdk: iphonesimulator10.2
# xcodebuild clean build -workspace Examples/TinyPlayerDemo+Benchmark.xcworkspace -scheme TinyPlayerDemo -destination "platform=iOS Simulator,name=iPhone 7" ONLY_ACTIVE_ARCH=NO | xcpretty -c || ture
| Switch osx image for Travis. | Switch osx image for Travis.
| YAML | mit | QuazerTV/TinyPlayer,QuazerTV/TinyPlayer,xiaohu557/TinyPlayer,xiaohu557/TinyPlayer |
5e9b468d25c1fc6dfff89b23ff1f96c761ffa17c | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
- "iojs"
- "0.12"
- "0.10"
| language: node_js
node_js:
- "node"
- "4"
| Update Travis CI config to only test with latest & v4 node | Update Travis CI config to only test with latest & v4 node
| YAML | mit | eemeli/messageformat.js,SlexAxton/messageformat.js,SlexAxton/messageformat.js,messageformat/messageformat.js,eemeli/messageformat.js,messageformat/messageformat.js,messageformat/parser |
4c95b95f5599566e68456b714841df2246617935 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
# command to install dependencies
install:
- "pip install ."
- "pip install -r requirements.txt"
# command to run tests
script: nosetests
deploy:
- provider: pypi
distributions: sdist
server: https://testpypi.python.org/pypi
user: "Dan.Riti"
password:
secure: "H8LajeriIeKVtFVLZ89UfPEUEAYiI0k/sXVG2VT6zGx2V4KTOLZwWQTAgTUhX+Wx6zacOZh6jRbT9IX5kYYzCpr/Z/K2OZgoycR+dVAulmQrmlqBUQr63Wxd7Perjn24rkdcqRuWYqOTnNWourtiCCOOfEJFK4tYGD//w9TcrZk="
on:
branch: master
condition: "$TRAVIS_PYTHON_VERSION == 2.7"
| language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
# command to install dependencies
install:
- "pip install ."
- "pip install -r requirements.txt"
# command to run tests
script: nosetests
deploy:
- provider: pypi
distributions: sdist
server: https://testpypi.python.org/pypi
user: "Dan.Riti"
password:
secure: "H8LajeriIeKVtFVLZ89UfPEUEAYiI0k/sXVG2VT6zGx2V4KTOLZwWQTAgTUhX+Wx6zacOZh6jRbT9IX5kYYzCpr/Z/K2OZgoycR+dVAulmQrmlqBUQr63Wxd7Perjn24rkdcqRuWYqOTnNWourtiCCOOfEJFK4tYGD//w9TcrZk="
on:
branch: master
condition: $TRAVIS_PYTHON_VERSION = "2.7"
| Update Travis deploy condition value. | Update Travis deploy condition value.
| YAML | mit | danriti/python-traceview |
05694d972f6d450abced5b813f2820382521a44e | .travis.yml | .travis.yml | sudo: false
language: cpp
compiler:
- gcc-4.8
- clang
cache:
apt: true
directories:
- _build
install:
- if [ "$CC" == "gcc" ]; then export CXX=g++-4.8 CC=gcc-4.8; fi
addons:
apt:
packages:
- cmake
- python
- python-nose
- zlib1g-dev
- libbz2-dev
- libboost-dev
- python-jinja2
- python-pip
- gcc-4.8
- g++-4.8
- clang
before_script:
- export PATH=$HOME/.local/bin:$PATH
- pip install -r manual/requirements.txt --user `whoami`
script:
./util/travis/linux-cibuild.sh
| sudo: false
language: cpp
compiler:
- gcc-4.8
- clang
cache:
apt: true
directories:
- _build
install:
- if [ "$CC" == "gcc" ]; then export CXX=g++-4.8 CC=gcc-4.8; fi
addons:
sources:
- ubuntu-toolchain-r-test
apt:
packages:
- cmake
- gcc-4.8
- g++-4.8
- clang
- zlib1g-dev
- libbz2-dev
- libboost-dev
- python
- python-nose
- python-jinja2
- python-pip
before_script:
- export PATH=$HOME/.local/bin:$PATH
- pip install -r manual/requirements.txt --user `whoami`
script:
./util/travis/linux-cibuild.sh
| Build System: select sources for TravisCI | [FIX] Build System: select sources for TravisCI
| YAML | bsd-3-clause | xenigmax/seqan,xenigmax/seqan,ktrappe/seqan,ktrappe/seqan,ktrappe/seqan,xenigmax/seqan,hannespetur/SeqAnHTS,xenigmax/seqan,bestrauc/seqan,xenigmax/seqan,ktrappe/seqan,hannespetur/SeqAnHTS,bestrauc/seqan,hannespetur/SeqAnHTS,bestrauc/seqan,xenigmax/seqan,ktrappe/seqan,hannespetur/SeqAnHTS,ktrappe/seqan,hannespetur/SeqAnHTS,ktrappe/seqan,bestrauc/seqan,hannespetur/SeqAnHTS,bestrauc/seqan,hannespetur/SeqAnHTS,bestrauc/seqan,hannespetur/SeqAnHTS,ktrappe/seqan,ktrappe/seqan,xenigmax/seqan,bestrauc/seqan,bestrauc/seqan,hannespetur/SeqAnHTS,xenigmax/seqan |
58de3f74f872e0526abde3cf6d47ba54f0b260bf | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: python
python: 3.6
cache:
directories:
- /usr/local/var/pyenv/versions/
before_install:
- sudo apt-get install -y make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev xz-utils tk-dev libffi-dev liblzma-dev
- git clone https://github.com/yyuu/pyenv.git ~/.pyenv
- PYENV_ROOT="$HOME/.pyenv"
- PATH="$PYENV_ROOT/bin:$PATH"
- eval "$(pyenv init -)"
- pyenv install 3.6.5
- pyenv install 3.5.6
- pyenv install 3.4.9
- pyenv install 2.7.15
- pyenv local 3.6.5 3.5.6 3.4.9 2.7.15
install:
- pip install black coveralls tox
- pyenv rehash
- coverage erase
script:
- tox
- black . --check
afeter_success:
- coverage combine
- coverage report
- coveralls
| sudo: required
dist: xenial
language: generic
before_install:
- sudo apt-get install -y make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev xz-utils tk-dev libffi-dev liblzma-dev
- git clone https://github.com/yyuu/pyenv.git ~/.pyenv
- PYENV_ROOT="$HOME/.pyenv"
- PATH="$PYENV_ROOT/bin:$PATH"
- eval "$(pyenv init -)"
- pyenv install 2.7.16
- pyenv install 3.4.9
- pyenv install 3.5.7
- pyenv install 3.6.8
- pyenv install 3.7.3
- pyenv local 3.7.3 3.6.8 3.5.7 3.4.9 2.7.16
install:
- pip install black coveralls tox
- pyenv rehash
- coverage erase
script:
- tox
- black . --check
afeter_success:
- coverage combine
- coverage report
- coveralls
| Update Python versions in the CI | Update Python versions in the CI
| YAML | mit | cuducos/getgist |
96d8f5151e060e48d6d89f11875c199b2d71ab57 | .travis.yml | .travis.yml | language: cpp
script: make
compiler:
- clang
- gcc
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
env: COMPILER=g++-5
- compiler: clang
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.7
packages:
- clang-3.7
env: COMPILER=clang++-3.7
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.7
packages:
- gcc-5
- g++-5
- clang-3.7
| language: cpp
script: make
compiler:
- clang-3.7
- gcc-5
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
env: COMPILER=g++-5
- compiler: clang
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.7
packages:
- clang-3.7
env: COMPILER=clang++-3.7
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.7
packages:
- gcc-5
- g++-5
- clang-3.7
| Set compiler version explicitly in Travis CI configuration | Set compiler version explicitly in Travis CI configuration
| YAML | mit | rv8-io/rv8,rv8-io/rv8,rv8-io/rv8 |
0b3b4ce408eef1a1c2e1a36cb9c25aa1cda524e1 | .travis.yml | .travis.yml | language: d
d:
- dmd-2.069.0
- dmd-2.068.2
- dmd-2.067.1
- dmd-2.066.1
- ldc-0.15.1
- gdc-4.9.2
addons:
apt:
packages:
- libev-dev
env:
- VIBED_DRIVER=libevent BUILD_EXAMPLE=1 RUN_TEST=1
- VIBED_DRIVER=libev BUILD_EXAMPLE=0 RUN_TEST=0
- VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
matrix:
exclude:
- d: ldc-0.15.1
env: VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
- d: gdc-4.9.2
env: VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
script: ./travis-ci.sh
services:
- mongodb
- redis-server
sudo: false
| language: d
d:
- dmd-2.069.0
- dmd-2.068.2
- dmd-2.067.1
- dmd-2.066.1
- ldc-0.16.1
- ldc-0.15.1
- gdc-5.2.0
- gdc-4.9.2
addons:
apt:
packages:
- libev-dev
env:
- VIBED_DRIVER=libevent BUILD_EXAMPLE=1 RUN_TEST=1
- VIBED_DRIVER=libev BUILD_EXAMPLE=0 RUN_TEST=0
- VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
matrix:
exclude:
- d: ldc-0.16.1
env: VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
- d: ldc-0.15.1
env: VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
- d: gdc-5.2.0
env: VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
- d: gdc-4.9.2
env: VIBED_DRIVER=libasync BUILD_EXAMPLE=0 RUN_TEST=0
script: ./travis-ci.sh
services:
- mongodb
- redis-server
sudo: false
| Test LDC 0.16.1 and GDC 5.2.0. | Test LDC 0.16.1 and GDC 5.2.0.
| YAML | mit | gedaiu/vibe.d,Geod24/vibe.d,AndreyMZ/vibe.d,chalucha/vibe.d,etcimon/vibe.d,etcimon/vibe.d,schuetzm/vibe.d,rejectedsoftware/vibe.d,Mihail-K/vibe.d,DBankov/vibe.d,machindertechnologies/vibe.d |
06b4ba06ce454e6d0a8fef9d0ab501db0c424cca | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
| language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
before_install:
- npm install -g npm@1.4.28
| Upgrade npm on Travis to support ^ syntax. | Upgrade npm on Travis to support ^ syntax.
| YAML | mit | liviuignat/regenerator,juliocanares/regenerator,Jericho25/regenerator,facebook/regenerator,kittens/regenerator,sebmck/regenerator,facebook/regenerator,RReverser/js-goto-transpiler,sebmck/regenerator,rafaelstz/regenerator,kittens/regenerator,liviuignat/regenerator,juliocanares/regenerator,RReverser/js-goto-transpiler,Jericho25/regenerator,facebook/regenerator,rafaelstz/regenerator |
9dfaf353534e83ead9601f6e44a1fa93458d1401 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2
install: "mvn install -s .maven_settings.xml -DskipTests=true -Dmaven.javadoc.skip=true -B"
script: "mvn test -s .maven_settings.xml -Dmaven.javadoc.skip=true -B"
after_success: "mvn deploy -s .maven_settings.xml -DskipTests=true -B"
| language: java
jdk:
- openjdk6
cache:
directories:
- $HOME/.m2
install: "mvn install -s .maven_settings.xml -DskipTests=true -Dmaven.javadoc.skip=true -B"
script: "mvn test -s .maven_settings.xml -Dmaven.javadoc.skip=true -B"
after_success: "mvn deploy -s .maven_settings.xml -DskipTests=true -B"
| Build with OpenJDK 6 on Travis-CI | Build with OpenJDK 6 on Travis-CI
| YAML | apache-2.0 | hprange/woinject |
e7a2d1e058aaf4456b13da0c3a85c4a308359efc | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.3
before_install: gem install bundler -v 1.11.0
cache: bundler
sudo: false
| language: ruby
rvm:
- 2.2.4
before_install: gem install bundler -v 1.11.0
cache: bundler
sudo: false
| Update tested ruby to 2.2.4 | Update tested ruby to 2.2.4 | YAML | mit | librariesio/required_files,librariesio/required_files |
8839f05485544a1ee200d31e54e251c027c9c423 | .travis.yml | .travis.yml | before_install:
- sudo apt-get update
- sudo apt-get install php-pear
- sudo pear upgrade PEAR
- sudo pear channel-discover pear.phpunit.de
- sudo pear channel-discover pear.symfony-project.com
- sudo pear install --alldeps phpunit/PHPUnit
- sudo apt-get install perl
- echo "" | sudo cpan
- sudo cpan install JSON::XS
- sudo cpan install JSON
- sudo cpan install List::MoreUtils
script: "make test"
| before_install:
- sudo apt-get update
- sudo apt-get install php-pear
- sudo pear upgrade PEAR
- sudo pear channel-discover pear.phpunit.de
- sudo pear channel-discover pear.symfony-project.com
- sudo pear install --alldeps phpunit/PHPUnit
- sudo apt-get install cpanminus
- sudo cpanm JSON::XS
- sudo cpanm JSON
- sudo cpanm List::MoreUtils
script: "make test"
| Use cpanm instean of cpan | Use cpanm instean of cpan
| YAML | mit | Sannis/wikimapia-api-clients,Sannis/wikimapia-api-clients,Sannis/wikimapia-api-clients,Sannis/wikimapia-api-clients,Sannis/wikimapia-api-clients |
18ef94264596673a335336bf81297cea8eafd5d0 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6.10.2"
| language: node_js
node_js:
- "6"
- "7"
script:
yarn test
yarn build
| Add build for Travis CI | Add build for Travis CI
| YAML | mit | xcv58/CubeTimer |
cf2e61e913c97c370270fb433257816cd75474b2 | .travis.yml | .travis.yml | language: go
go:
- 1.6
before_install:
- go get github.com/Masterminds/glide
- glide install
script:
- go install
- go test -v
| language: go
go:
- 1.8.3
before_install:
- go get github.com/Masterminds/glide
- glide install
script:
- go install
- go test -v
| Update Travis-CI to Go 1.8.3 | Update Travis-CI to Go 1.8.3
This patch updates the Travis-CI build to 1.8.3.
| YAML | apache-2.0 | akutz/goof |
a17d4b1fcab5e9ae1d59e9a60376a06ba418370a | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
script: "npm test"
before_script:
- "./test/hosts.sh"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq graphicsmagick
| language: node_js
node_js:
- "0.10"
- "0.12"
script: "npm test"
before_script:
- "./test/hosts.sh"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq graphicsmagick
notifications:
irc: "chat.freenode.net#pump.io"
| Send Travis notifications to IRC | Send Travis notifications to IRC
| YAML | apache-2.0 | e14n/pump.io,stephensekula/pump.io,e14n/pump.io,stephensekula/pump.io,pump-io/pump.io,stephensekula/pump.io,e14n/pump.io,pump-io/pump.io,pump-io/pump.io |
513e7b56e3619d3d0d45f1bfc0579646b87ea3ee | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- lts/*
before_script:
- npm install -g grunt-cli
| Update node version to lts | Update node version to lts
| YAML | mit | alexsantos/country-lang |
11465d6de8be97796b24ed7703ed01d1d3b37be6 | .travis.yml | .travis.yml | language: objective-c # lol
osx_image: xcode9.2
xcode_project: DVR.xcodeproj
script: xcodebuild -scheme "$TRAVIS_XCODE_SCHEME" -sdk "$TRAVIS_XCODE_SDK" -destination "$DESTINATION" test
matrix:
include:
- xcode_scheme: DVR-iOS
xcode_sdk: iphonesimulator
env:
- DESTINATION="OS=10.1,name=iPhone 7 Plus"
- xcode_scheme: DVR-OSX
xcode_sdk: macosx
env:
- DESTINATION="arch=x86_64"
| language: objective-c # lol
osx_image: xcode9.2
xcode_project: DVR.xcodeproj
script: xcodebuild -scheme "$TRAVIS_XCODE_SCHEME" -sdk "$TRAVIS_XCODE_SDK" -destination "$DESTINATION" test
matrix:
include:
- xcode_scheme: DVR-iOS
xcode_sdk: iphonesimulator
env:
- DESTINATION="OS=10.1,name=iPhone 7 Plus"
- xcode_scheme: DVR-macOS
xcode_sdk: macosx
env:
- DESTINATION="arch=x86_64"
| Update Travis macOS target name | Update Travis macOS target name
| YAML | mit | venmo/DVR,venmo/DVR,venmo/DVR |
1eae48b625f5636b046ec1b22b4fbbe63d0cdff6 | .travis.yml | .travis.yml | dist: trusty
language: node_js
node_js:
- "6"
- "4"
env:
# We set our own flag to tell our test code that it is running in a continuous
# integration environment. (Travis sets CI and TRAVIS but the former is too
# liable to collision (some other tool may use CI) and the latter is too
# specific (we could use something else than Travis).)
- CONTINUOUS_INTEGRATION=1
before_install:
# On Node v4 the version of npm is too old.
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
- sudo apt-get update -qq
- sudo apt-get install -y xsltproc jing
script: gulp test
branches:
except:
# A change to master has an identical corresponding change on develop
# so if develop is tested (and it is), then it is redundant to *also*
# test master. Let's be nice and minimize our use of Travis' resources.
- master
| dist: trusty
language: node_js
node_js:
- "8"
- "6"
- "4"
env:
# We set our own flag to tell our test code that it is running in a continuous
# integration environment. (Travis sets CI and TRAVIS but the former is too
# liable to collision (some other tool may use CI) and the latter is too
# specific (we could use something else than Travis).)
- CONTINUOUS_INTEGRATION=1
before_install:
# On Node v4 the version of npm is too old.
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
- sudo apt-get update -qq
- sudo apt-get install -y xsltproc jing
script: gulp test
branches:
except:
# A change to master has an identical corresponding change on develop
# so if develop is tested (and it is), then it is redundant to *also*
# test master. Let's be nice and minimize our use of Travis' resources.
- master
| Test also on Node 8. | Test also on Node 8.
| YAML | mpl-2.0 | lddubeau/salve,mangalam-research/salve,mangalam-research/salve,lddubeau/salve,lddubeau/salve,mangalam-research/salve |
073868949fee00ddcbcf3bb3b03a5fb6d420f325 | .travis.yml | .travis.yml | language: objective-c
xcode_project: libPhoneNumber.xcodeproj # path to your xcodeproj folder
xcode_scheme: libPhoneNumber
script: xctool test -project libPhoneNumber.xcodeproj -target libPhoneNumberTests -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
| language: objective-c
xcode_project: libPhoneNumber.xcodeproj # path to your xcodeproj folder
xcode_scheme: libPhoneNumber
script: xcodebuild -project libPhoneNumber.xcodeproj -target libPhoneNumberTests -sdk iphonesimulator ONLY_ACTIVE_ARCH=N
| Add configure for Travis-CI 5 | Add configure for Travis-CI 5
| YAML | apache-2.0 | jam891/libPhoneNumber-iOS,DeskConnect/libPhoneNumber-iOS,opentable/libPhoneNumber-iOS,dmaclach/libPhoneNumber-iOS,sahin/libPhoneNumber-iOS,tipbit/libPhoneNumber-iOS,wheniwork/libPhoneNumber-iOS,marmelroy/libPhoneNumber-iOS,opentable/libPhoneNumber-iOS,Urucas/libPhoneNumber-iOS,kylejm/libPhoneNumber-iOS,sahin/libPhoneNumber-iOS,iziz/libPhoneNumber-iOS,ManagerOrganization/libPhoneNumber-iOS,dmaclach/libPhoneNumber-iOS,UltravisualApp/libPhoneNumber-iOS,wheniwork/libPhoneNumber-iOS,kylejm/libPhoneNumber-iOS,ManagerOrganization/libPhoneNumber-iOS,wheniwork/libPhoneNumber-iOS,dmaclach/libPhoneNumber-iOS,iziz/libPhoneNumber-iOS,dmaclach/libPhoneNumber-iOS,tipbit/libPhoneNumber-iOS,azinman/libPhoneNumber-iOS,azinman/libPhoneNumber-iOS,wheniwork/libPhoneNumber-iOS,DeskConnect/libPhoneNumber-iOS,yarneo/libPhoneNumber-iOS,UltravisualApp/libPhoneNumber-iOS,iziz/libPhoneNumber-iOS,marmelroy/libPhoneNumber-iOS,UltravisualApp/libPhoneNumber-iOS,iziz/libPhoneNumber-iOS,opentable/libPhoneNumber-iOS,iziz/libPhoneNumber-iOS,Urucas/libPhoneNumber-iOS,yarneo/libPhoneNumber-iOS,jam891/libPhoneNumber-iOS,wheniwork/libPhoneNumber-iOS,dmaclach/libPhoneNumber-iOS |
c69a7d39231fde60598c0e4f023d3845c4e1e9a5 | .travis.yml | .travis.yml | language: ruby
rvm:
# - 1.9.3
- 2.0.0
- 2.1.1
- 2.1.2
- 2.1.3
- rbx-2
before_install:
- curl -# https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.2.1.tar.gz | tar xz -C /tmp
before_script:
- TEST_CLUSTER_COMMAND="/tmp/elasticsearch-1.2.1/bin/elasticsearch" bundle exec rake elasticsearch:start
| language: ruby
rvm:
# - 1.9.3
- 2.0.0
- 2.1.1
- 2.1.2
- 2.1.3
- rbx-2.2
before_install:
- curl -# https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.2.1.tar.gz | tar xz -C /tmp
before_script:
- TEST_CLUSTER_COMMAND="/tmp/elasticsearch-1.2.1/bin/elasticsearch" bundle exec rake elasticsearch:start
| Change rbx version to 2.2 | Change rbx version to 2.2 | YAML | mit | undr/rubberry |
3c5f89759433a424d23b4af70e5f9b5c000d28a5 | .travis.yml | .travis.yml | language: kotlin
jdk:
- oraclejdk8
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y xsltproc xmlstarlet
script:
- make ci JAVA=java JAR=jar
| language: java
jdk:
- oraclejdk8
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y xsltproc xmlstarlet
- rm -rf ~/.sdkman
- curl -s get.sdkman.io > ~/install_sdkman.sh
- chmod 775 ~/install_sdkman.sh
- "~/install_sdkman.sh"
- echo "sdkman_auto_answer=true" > ~/.sdkman/etc/config
- source ~/.sdkman/bin/sdkman-init.sh
- sdk install kotlin
script:
- make ci JAVA=java JAR=jar
| Use sdkman to get the kotlin tools | Use sdkman to get the kotlin tools
| YAML | apache-2.0 | npryce/snodge,npryce/snodge,npryce/snodge |
fea1f3f33fa72bc1170c0f01b23e42770ce5716f | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- sudo apt-get install -qq rpm
- bash .travis/install_packagebuilder.sh
- bash .travis/install_rpmdevtools.sh
- export PATH=$PATH:$PWD/rpmdevtools-6.8/
- ls $PWD
- ls $HOME
before_script:
- sudo mkdir -p /etc/rpm
- sudo cp config/macros.cmake /etc/rpm
script:
- build_rpm hydrotrend
| language: python
python:
- "2.7"
install:
- sudo apt-get install -qq rpm
- bash .travis/install_packagebuilder.sh
- bash .travis/install_rpmdevtools.sh
- export PATH=$PATH:$PWD/rpmdevtools-6.8/
before_script:
- sudo mkdir -p /etc/rpm
- sudo cp config/macros.cmake /etc/rpm
script:
- build_rpm hydrotrend --local $PWD/hydrotrend
| Use --local flag in call to build_rpm | Use --local flag in call to build_rpm
| YAML | mit | csdms/rpm_models |
33e87ce6f73c4943b2234d0fa33f47fbad39f3d5 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ruby-head
- ree
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- jruby-18mode
- jruby-head
- rbx-18mode
- rbx-19mode
| Remove ruby-head and jruby-19mode from Travis | Remove ruby-head and jruby-19mode from Travis
| YAML | mit | mailman/mailman,sr-education/mailman |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.