commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
d61a664133eea3954dfa76a4b7d83462ab91bd02 | .travis.yml | .travis.yml | language: java
sudo: required
env:
- jdk_target=oraclejdk8
- jdk_target=openjdk8
before_install:
- if [["$jdk_target" == "openjdk8"]]; then sudo add-apt-repository ppa:openjdk-r/ppa -y; fi
- if [["$jdk_target" == "oraclejdk8"]]; then sudo add-apt-repository ppa:webupd8team/java -y; fi
- sudo apt-get update... | language: java
os: linux
sudo: required
matrix:
include:
- jdk: oraclejdk7
env: jdk=oraclejdk7 custom_jdk=false
- jdk: openjdk7
env: jdk=openjdk7 custom_jdk=false
- env: jdk=oraclejdk8 custom_jdk=true
- env: jdk=openjdk8 custom_... | Improve and refine Travis-CI configuration | Improve and refine Travis-CI configuration
Instead of using the env key as an improper stand-in for the built in
matrix feature, replace the env key values with an equivalent matrix
declaration. Modify the execution of the jdkswitcher program to only
occur if the custom_jdk variable is true. Controlling the execution ... | YAML | mit | emabrey/emabrey-parent,emabrey/emabrey-parent |
cd16f6074da64e8e08e09df4f34a5d79b56bbda6 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk8
- openjdk11
- oraclejdk8
install: /bin/true
script: mvn install
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: java
jdk:
- openjdk8
- openjdk11
- oraclejdk8
install: /bin/true
script: mvn install --quiet
after_success:
# https://docs.codecov.io/docs/about-the-codecov-bash-uploader
- bash <(curl -s https://codecov.io/bash)
| Add back --quiet and a comment about codecov uploader | Add back --quiet and a comment about codecov uploader
--quiet makes maven less noisy about dependency retrieval, so that people can
actually look at the test results. The comment is for more information about why
we execute bash scripts from a url.
| YAML | apache-2.0 | awslabs/aws-dynamodb-encryption-java |
c4b60383ee6689f9db4cde98e32a4984a2339be4 | packages/no/non-empty-containers.yaml | packages/no/non-empty-containers.yaml | homepage: https://github.com/andrewthad/non-empty-containers#readme
changelog-type: ''
hash: 9c2e0c5af093f9d88994ec426c5c0554579ffaea6640d5c562441dd4c1128de2
test-bench-deps: {}
maintainer: andrew.thaddeus@gmail.com
synopsis: ''
changelog: ''
basic-deps:
base: ! '>=4.11 && <5'
containers: ! '>=0.5.10 && <0.7'
all-v... | homepage: https://github.com/andrewthad/non-empty-containers#readme
changelog-type: ''
hash: 8e12edba9288f8c5e53c8ad4003dace546fcc5a7e9828a88b614c3049924a13a
test-bench-deps: {}
maintainer: andrew.thaddeus@gmail.com
synopsis: ''
changelog: ''
basic-deps:
semigroupoids: ! '>=5.2.0 && <6.0'
base: ! '>=4.11 && <5'
c... | Update from Hackage at 2018-08-27T12:11:46Z | Update from Hackage at 2018-08-27T12:11:46Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
4381ec0f8a7daa15ef669309840ea2b7999eb41e | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
- 4
services:
- redis
| sudo: false
language: node_js
node_js:
- 4.0
- 4
- 5
services:
- redis
| Drop support of node@0.10 and cover node@5 | Drop support of node@0.10 and cover node@5
From https://github.com/hapijs/catbox/commit/f0eeaac7adce4135669f2446c6e41ce725069c7a
| YAML | bsd-3-clause | lloydbenson/catbox-redis |
58a01286439f620bfabb2eb8fa952ca53856dc9b | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.8.7
bundler_args: --without development
before_script:
- "mysql -e 'create database one_click_test;' > /dev/null"
- "bundle exec rake oco:generate_config db:migrate"
- "bundle exec rake oco:install_wkhtmltopdf"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
scrip... | language: ruby
rvm:
- 1.9.2
- 1.8.7
bundler_args: --without development
before_script:
- "mysql -e 'create database one_click_test;' > /dev/null"
- "bundle exec rake oco:generate_config db:migrate"
- "bundle exec rake oco:install_wkhtmltopdf"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
scrip... | Revert "Travis: Restrict tests for debugging." | Revert "Travis: Restrict tests for debugging."
This reverts commit afeba9c93421edaa51e020b3b70d2a443ef1b0ae.
| YAML | agpl-3.0 | oneclickorgs/one-click-orgs,oneclickorgs/one-click-orgs,oneclickorgs/one-click-orgs,oneclickorgs/one-click-orgs |
5f31bfd08bd71ca7f656a94d3ca5e9237911dc3e | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
cache:
directories:
- $HOME/.composer/cache/files
before_install:
- composer self-update
install:
- composer install
| language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
cache:
directories:
- $HOME/.composer/cache/files
before_install:
- composer self-update
install:
- composer install
script:
- ./vendor/bin/phpunit
| Swap over to project phpunit rather than relying on Travis' global version | Swap over to project phpunit rather than relying on Travis' global version
| YAML | mit | jall/AopMonologBundle |
5b2760efa42d85336a93b76e5bc93ed92fbcccd6 | .travis.yml | .travis.yml | os: linux
dist: xenial
language: python
jobs:
include:
- name: 3.6 Metrics
python: 3.6
env: TOXENV=py36-metrics
- name: 3.6 Metrics API
python: 3.6
env: TOXENV=py36-metrics_api
- name: 3.7 Metrics
python: 3.7
env: TOXENV=py37-metrics
- name: 3.7 Metrics API
... | os: linux
dist: xenial
language: python
jobs:
include:
- name: 3.6 Metrics
python: 3.6
env: TOXENV=py36-metrics
- name: 3.6 Metrics API
python: 3.6
env: TOXENV=py36-metrics_api
- name: 3.7 Metrics
python: 3.7
env: TOXENV=py37-metrics
- name: 3.7 Metrics API
... | Update Travis CI build command | Update Travis CI build command
Signed-off-by: Carter Landis <84a516841ba77a5b4648de2cd0dfcb30ea46dbb4@carterlandis.com>
| YAML | mit | OSSHealth/ghdata,OSSHealth/ghdata,OSSHealth/ghdata |
2b821c4ae97f1b84a678cb7bd7d6a158d4c76712 | .travis.yml | .travis.yml | language: c
compiler: gcc
script:
- scons mode=debug
- scons -c; scons mode=release
- ./tesstest
- scons -c; scons mode=release32
- ./tesstest
- cd cookbook; make all
| language: c
compiler: gcc
install:
- sudo apt-get install matplotlib numpy
# For cross-compiling 32bit binaries (mode=release32)
- sudo apt-get install libc6-dev-i386
script:
- scons mode=debug
- scons -c; scons mode=release
- ./tesstest
- scons -c; scons mode=release32
- ./tesstest
- cd cookbook; mak... | Install missing libs in Travis config | Install missing libs in Travis config
Forgot to install numpy and matplotlib and the required 32bit libraries
for cross-compiling.
| YAML | bsd-3-clause | leouieda/tesseroids,leouieda/tesseroids,leouieda/tesseroids |
ffdc2d519ab7f30e7d16490b37fe2fa08be00c3d | .travis.yml | .travis.yml | language: c
compiler:
- gcc
before_install: sudo apt-get install check doxygen splint
script: ./autogen.sh && ./configure && make check
notifications:
email:
recipients:
- quarterback-devel@lists.fedorahosted.org
| language: c
compiler:
- gcc
before_install: sudo apt-get install check doxygen splint
install:
# Deal with issue on Travis builders
# https://github.com/travis-ci/travis-cookbooks/issues/155
- "sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm"
script: ./autogen.sh && ./configure && make check
notifications:
... | Deal with /dev/shm issue on Travis builders | Deal with /dev/shm issue on Travis builders
https://github.com/travis-ci/travis-cookbooks/issues/155
Signed-off-by: Angus Salkeld <86b65304d27d8de73dd7d624c33df7e088f8d94b@redhat.com>
| YAML | lgpl-2.1 | gao-yan/libqb,gao-yan/libqb,davidvossel/libqb,rubenk/libqb,kgaillot/libqb,kgaillot/libqb,kgaillot/libqb,davidvossel/libqb,ClusterLabs/libqb,ClusterLabs/libqb,rubenk/libqb,ClusterLabs/libqb |
3391af8a8ddd4b3e5eaf8f7a817bbb30cc47e9fc | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.4.0
- 2.2
- 2.0
env:
global:
- ETCD_VERSION=v3.1.6
install:
- bundle install
- wget https://github.com/coreos/etcd/releases/download/$ETCD_VERSION/etcd-$ETCD_VERSION-linux-amd64.tar.gz -O etcd.tar.gz --no-check-certificate
- tar zxvf etcd.tar.gz
- export PATH=$PATH:... | language: ruby
rvm:
- 2.4.0
- 2.2
- 2.0
env:
global:
- ETCD_VERSION=v3.2.0
install:
- bundle install
- wget https://github.com/coreos/etcd/releases/download/$ETCD_VERSION/etcd-$ETCD_VERSION-linux-amd64.tar.gz -O etcd.tar.gz --no-check-certificate
- tar zxvf etcd.tar.gz
- export PATH=$PATH:... | Build etcdv3 with version 3.2 | Build etcdv3 with version 3.2
| YAML | mit | davissp14/etcdv3-ruby |
ef2646d440ff115fbda20d8e9504b65af9e2db29 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
virtualenv:
system_site_packages: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- sudo apt-get -qq update
- sudo apt-get install -qq libhdf5-serial-dev python-h5py
- sudo apt-get install -qq libatlas-dev libatlas-base-de... | language: python
python:
- "2.6"
- "2.7"
virtualenv:
system_site_packages: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- sudo apt-get -qq update
- sudo apt-get install -qq libhdf5-serial-dev python-h5py
- sudo apt-get install -qq libatlas-dev libatlas-base-de... | Add matplotlib dependency in Travis | Add matplotlib dependency in Travis
| YAML | agpl-3.0 | Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide |
71d195f17f2cbfd81f4883f61ae0c522783384fa | .travis.yml | .travis.yml | # http://about.travis-ci.org/docs/user/build-configuration/
before_script: "git submodule update --init"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- rbx-19mode
matrix:
allow_failures:
- rvm: 1.8.7
notifications:
recipients:
- nesquena@gmail.com | # http://about.travis-ci.org/docs/user/build-configuration/
before_script: "git submodule update --init"
rvm:
- 2.0.0
- 2.1.6
- 2.2.2
notifications:
recipients:
- nesquena@gmail.com | Update Travis CI Ruby versions | Update Travis CI Ruby versions
Only test against actively maintained Ruby versions.
| YAML | mit | nesquena/sheet_mapper |
01cc5cf0f04516ecede8df680c3c2f66ff78ba1a | .travis.yml | .travis.yml | language: cpp
sudo: false
compiler:
- clang
- gcc
addons:
apt:
sources:
- boost-latest
- ubuntu-toolchain-r-test
packages:
- cmake
- libboost-all-dev
- g++-4.8
env:
- CXX=g++-4.8
before_install:
- mkdir ~/cmake_tmp
- cd ~/cmake_tmp
- wget --no-check-certificate http://www.... | language: cpp
sudo: false
matrix:
include:
- compiler: clang
- compiler: gcc
env:
- CC='gcc-4.8' CXX='g++4.8'
addons:
apt:
sources:
- boost-latest
- ubuntu-toolchain-r-test
packages:
- cmake
- libboost-all-dev
- g++-4.8
before_install:
- mkdir ~/cmake_tmp
- ... | Define env vars only for compiler = gcc | Define env vars only for compiler = gcc | YAML | bsd-3-clause | Superlokkus/pagefault_measure,Superlokkus/pagefault_measure |
8f44001418e5a7d7f373f03ce78bf174664ed75d | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- node
- iojs
- 6
- 5
- 4
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
matrix:
fast_finish: true
| language: node_js
sudo: false
node_js:
- node
- 6
- 5
- 4
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
matrix:
fast_finish: true
| Remove io.js support as it has merged back into node.js | Remove io.js support as it has merged back into node.js
| YAML | mit | Moovie/Moovie |
57469dafc0b1524119cbcdb4ae706a762686dafc | .travis.yml | .travis.yml | language: scala
scala:
- 2.12.8
jdk:
- oraclejdk11
- openjdk8
- openjdk11
script:
- sbt ++$TRAVIS_SCALA_VERSION clean compile test
# Tricks to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
branches:
only:
- m... | language: scala
scala:
- 2.12.8
jdk:
- oraclejdk11
- openjdk8
- openjdk11
script:
- sbt ++$TRAVIS_SCALA_VERSION clean compile test
# Tricks to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm -f
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm -f
branches:
only:
... | Update command to avoid failure when no files are found | Travis: Update command to avoid failure when no files are found
| YAML | mit | flowcommerce/lib-apidoc-json-validation |
812c039f285e1376ce6e7a4a9ab55a0f673c31aa | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
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"
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
script: "npm test"
before_script:
- "./test/hosts.sh"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq graphicsmagick
notificati... | Install a C++-11-compatible compiler in CI | Install a C++-11-compatible compiler in CI
| YAML | apache-2.0 | pump-io/pump.io,pump-io/pump.io,pump-io/pump.io,stephensekula/pump.io,stephensekula/pump.io,e14n/pump.io,e14n/pump.io,stephensekula/pump.io,e14n/pump.io |
8523adb654df96c685ede07654024184fbc2cc25 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8.2
env:
- TOOLCHAINS=swift
script:
- swift package fetch
- swift test
#xcode_project: TypedOperation.xcodeproj
# xcode_scheme: "SwiftParse"
# xcode_sdk: iphonesimulator10.0
# script: xcodebuild test -scheme "SwiftParse" -sdk iphonesimulator -destination "name=iPhone SE"
| language: objective-c
osx_image: xcode11.2
env:
- TOOLCHAINS=swift
script:
- swift package fetch
- swift test
#xcode_project: TypedOperation.xcodeproj
# xcode_scheme: "SwiftParse"
# xcode_sdk: iphonesimulator10.0
# script: xcodebuild test -scheme "SwiftParse" -sdk iphonesimulator -destination "name=iPhone SE"
| Use Xcode 11.2 image on Travis CI | Use Xcode 11.2 image on Travis CI
| YAML | mit | mgadda/swift-parse |
631739d533d34e74a52ca14977ea03a158161d03 | .travis.yml | .travis.yml | rvm:
- 2.1.0
- 2.0.0
- 1.9.3
services: mongodb
script:
- bundle exec rubocop
- bundle exec rake
| rvm:
- 2.1
- 2.0.0
- 1.9.3
services: mongodb
script:
- bundle exec rubocop
- bundle exec rake
| Test against latest Ruby 2.1 version | Test against latest Ruby 2.1 version
| YAML | mit | gocardless/statesman,div/statesman,pacso/statesman,eljojo/statesman,gocardless/statesman,timothyp/statesman,timothyp/statesman,pacso/statesman,mkcode/statesmin,div/statesman,mmontalvo/statesman,mmontalvo/statesman,eljojo/statesman,image-tester/statesman,image-tester/statesman |
1dec383f548f10acfc78ba5ea79768599b50a18c | .travis.yml | .travis.yml | language: cpp
matrix:
include:
- compiler: gcc4
sudo: required
env:
- COMPILER=g++
- STD=c++11
- compiler: clang34
sudo: required
env:
- COMPILER=clang++
- STD=c++11
- compiler: gcc5
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
... | language: cpp
matrix:
include:
- compiler: gcc4
dist: trusty
sudo: false
env:
- COMPILER=g++
- STD=c++11
- compiler: clang34
dist: trusty
sudo: false
env:
- COMPILER=clang++
- STD=c++11
- compiler: gcc5
addons:
apt:
sources:
- ubuntu-toolchain-r-... | Build on dist: trusty for GCC 4.8 and Clang 3.4 | Build on dist: trusty for GCC 4.8 and Clang 3.4 | YAML | mit | clechasseur/optional,clechasseur/optional |
5f5e572ed38e76ab75b6097ce00e1d2fd50065f7 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
after_success:
- npm run coverage
- npm i codecov
- codecov -f coverage/coverage.json
notifications:
email:
on_success: never
| language: node_js
sudo: false
node_js:
- "4"
- "6"
after_success:
- npm run coverage
- npm i codecov
- codecov -f coverage/coverage.json
notifications:
email:
on_success: never
| Remove Node 0.10 and 0.12 support | Remove Node 0.10 and 0.12 support | YAML | mit | jstransformers/jstransformer-pug,jstransformers/jstransformer-pug |
cfdde5cb176d84d2f2c72cbd3a223f62d290577c | .travis.yml | .travis.yml | language: python
python:
- "2.7"
before_install:
- sudo add-apt-repository ppa:kristinn-l/plaso-dev -y
- sudo apt-get update -q
- sudo apt-get install binplist, libbde-python, libesedb-python, libevt-python, libevtx-python, libewf-python, libfwsi-python, liblnk-python, libmsiecf-python, libolecf-python, libqcow... | language: python
python:
- "2.7"
before_install:
- sudo add-apt-repository ppa:kristinn-l/plaso-dev -y
- sudo apt-get update -q
- sudo apt-get install binplist libbde-python libesedb-python libevt-python libevtx-python libewf-python libfwsi-python liblnk-python libmsiecf-python libolecf-python libqcow-python li... | Fix for Travis CI test configuration. | Fix for Travis CI test configuration.
| YAML | apache-2.0 | dc3-plaso/plaso,dc3-plaso/plaso |
71b1f0b629f068a285ff1a2276a0ecb2c49b9d26 | .travis.yml | .travis.yml | dist: xenial
language: java
install: true
script:
- sudo apt-get update
- sudo apt-get install graphviz
- java -version
- ./gradlew buildCI --scan
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/... | dist: xenial
language: java
install: true
script:
- sudo apt-get update
- sudo apt-get install graphviz
- java -version
- ./gradlew buildCI --scan
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/... | Remove oraclejdk8 from Travis CI build | Remove oraclejdk8 from Travis CI build
(It is no longer supported on Ubuntu Xenial)
| YAML | apache-2.0 | msgilligan/bitcoinj-addons,msgilligan/bitcoinj-addons,msgilligan/bitcoinj-addons,msgilligan/bitcoinj-addons |
7931c4d1bde257f1a19ff4355dbe4a16bb6e3289 | .travis.yml | .travis.yml | language: erlang
notifications:
email: erlang.docsh@gmail.com
sudo: required
services:
- docker
otp_release:
- 21.1
- 20.3
- 19.3
script:
- ./rebar3 ct
| language: erlang
notifications:
email: erlang.docsh@gmail.com
sudo: required
services:
- docker
otp_release:
- 22.1
- 21.1
- 20.3
script:
- ./rebar3 ct
| Test on 22.1, drop 19.3 | Test on 22.1, drop 19.3
| YAML | bsd-3-clause | lavrin/docsh |
b2b6c6528ed890d1cd2b1452e8371dfa744323ae | .travis.yml | .travis.yml | ---
language: ruby
cache: bundler
bundler_args: --without development
script:
- "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
rvm:
- 1.9.3
- 2.0.0
env:
- PUPPET_GEM_VERSION="~> 3.5.1"
- PUPPET_GEM_VERSION="~> 3.8.4"
- PUPPET_GEM_VERSION="~... | ---
language: ruby
cache: bundler
bundler_args: --without development
script:
- "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
rvm:
- 1.9.3
- 2.0.0
env:
- PUPPET_GEM_VERSION="~> 3.5.1"
- PUPPET_GEM_VERSION="~> 3.8.6"
- PUPPET_GEM_VERSION="~... | Test against the latest versions of puppet | Test against the latest versions of puppet
| YAML | apache-2.0 | pcfens/puppet-filebeat,pcfens/puppet-filebeat,digitalmediacenter/puppet-filebeat,MiamiOH/puppet-filebeat,MiamiOH/puppet-filebeat,digitalmediacenter/puppet-filebeat |
efa73577306e46402c976e000097a3f4985dda4c | .github/workflows/ci-windows.yml | .github/workflows/ci-windows.yml | name: Idris 2 CI
on:
push:
branches:
- '*'
tags:
- '*'
pull_request:
branches:
- master
env:
MSYS2_PATH_TYPE: inherit
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install MSYS2
uses: eine/setup-m... | name: Windows CI
on:
push:
branches:
- '*'
tags:
- '*'
pull_request:
branches:
- master
env:
MSYS2_PATH_TYPE: inherit
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install MSYS2
uses: eine/setup-m... | Improve the name of the job | Improve the name of the job
| YAML | bsd-3-clause | mmhelloworld/idris-jvm,mmhelloworld/idris-jvm,mmhelloworld/idris-jvm,mmhelloworld/idris-jvm,mmhelloworld/idris-jvm,mmhelloworld/idris-jvm |
53261805b9c4bda0169a138651c44cd253543080 | .github/workflows/end-to-end.yml | .github/workflows/end-to-end.yml | name: End-to-end tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
end-to-end:
runs-on: ubuntu-16.04
name: Cypress run
env:
CI: 1
steps:
- uses: actions/checkout@v1
- uses: cypress-io/github-action@v1
with:
start: npm start
... | name: End-to-end tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
end-to-end:
runs-on: ubuntu-16.04
name: Cypress run
env:
CI: 1
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run end-to-end tests
uses: cypress-io... | Update Cypress CI action to v2 | Update Cypress CI action to v2
| YAML | mpl-2.0 | mattiasw/ExifReader |
754881b30ef15934564b78e592defd6b674b92a3 | packages/ti/time-locale-compat.yaml | packages/ti/time-locale-compat.yaml | homepage: http://twitter.com/khibino/
changelog-type: ''
hash: 57da137994dc235beb6f33d99595855842be998c629217ec379bbb12a313ba3c
test-bench-deps: {}
maintainer: ex8k.hibino@gmail.com
synopsis: Compatibility of TimeLocale between old-locale and time-1.5
changelog: ''
basic-deps:
base: <5
time: <1.5
old-locale: -any... | homepage: http://twitter.com/khibino/
changelog-type: ''
hash: cc93a8abb3062c24f3b4b0da545593bed01bb4b2eb651516542ab16467f21db5
test-bench-deps: {}
maintainer: ex8k.hibino@gmail.com
synopsis: Compatibility of TimeLocale between old-locale and time-1.5
changelog: ''
basic-deps:
base: <5
time: <1.5
old-locale: -any... | Update from Hackage at 2015-06-23T00:39:56+0000 | Update from Hackage at 2015-06-23T00:39:56+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
bb6565e28eba006887b68bd2135e926bb6c14e17 | tom-work.yml | tom-work.yml | ---
- name: Setup Polka
hosts:
- tom-work
connection: local
gather_facts: false
roles:
- package
- bash
- tmux
- git
- go
- ack
- vim
- ruby
- python
- ansible
- nvim
| ---
- name: Setup Polka
hosts:
- tom-work
connection: local
gather_facts: false
roles:
- bash
- git
- go
- ack
- vim
- ruby
- python
- ansible
- nvim
# - tmux
# - package
| Use fae instead of polka for tmux and package | Use fae instead of polka for tmux and package
| YAML | mit | tmiller/polka |
57c1dc9e312a96b71589f43497ab8b18368d1a33 | .github/workflows/go_test.yml | .github/workflows/go_test.yml | name: go_test
on: [push, pull_request]
jobs:
go_test:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.17
uses: actions/setup-go@v2
with:
go-version: 1.17
id: go
- name: Check out code
uses: actions/checkout@v3
- name: Get dependencies
run: |
... | name: go_test
on: [push, pull_request]
jobs:
go_test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- name: Set up Go 1.17
uses: actions/setup-go@v2
with:
go-version: 1.17
id: go
- name: Check out cod... | Support for testing on multiple operating systems | Support for testing on multiple operating systems | YAML | apache-2.0 | google/medical_claims_tools |
3a6a4be1d28ab06a128d8f3f2fbf78b7f9dfceda | .cirrus.yml | .cirrus.yml | bundle_cache: &bundle_cache
bundle_cache:
folder: /usr/local/bundle
fingerprint_script:
- echo $CIRRUS_OS
- ruby -v
- cat Gemfile
- cat *.gemspec
install_script: bundle update
test_task:
container:
matrix:
image: ruby:2.4
image: ruby:2.5
<<: *bundle_cache
envir... | bundle_cache: &bundle_cache
bundle_cache:
folder: /usr/local/bundle
fingerprint_script:
- echo $CIRRUS_OS
- ruby -v
- cat Gemfile
- cat *.gemspec
install_script: bundle update
test_task:
container:
matrix:
image: ruby:2.4
image: ruby:2.5
image: ruby:2.6
... | Add Ruby 2.6 and 2.7 for CI | Add Ruby 2.6 and 2.7 for CI
| YAML | mit | AlexWayfer/flame-r18n |
acfc651349d1f537b8066cb95285e0a45a4173b4 | .github/workflows/oq-role.yml | .github/workflows/oq-role.yml | ---
name: oq-role
'on':
schedule:
- cron: "0 4 * * *"
jobs:
molecule:
name: Molecule
runs-on: ubuntu-18.04
strategy:
matrix:
distro:
- centos8
- centos7
- ubuntu1804
- ubuntu2004
env:
working-directory: ./ansible/oqengine
steps:
... | ---
name: oq-role
'on':
schedule:
- cron: "0 4 * * *"
jobs:
molecule:
name: Molecule
runs-on: ubuntu-18.04
strategy:
matrix:
distro:
- centos8
- centos7
- ubuntu1804
- ubuntu2004
- debian10
env:
working-directory: ./ansible/... | Add debian10 for oq ansible role | Add debian10 for oq ansible role | YAML | agpl-3.0 | gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine |
92290affeb38271565cbaa01b847cd4929dc2970 | .cirrus.yml | .cirrus.yml | freebsd_instance:
image: freebsd-11-2-release-amd64
# Test FreeBSD in a full VM on cirrus-ci.com. Test the i686 target too, in the
# same VM. The binary will be built in 32-bit mode, but will execute on a
# 64-bit kernel and in a 64-bit environment. Our tests don't execute any of
# the system's binaries, so the e... | freebsd_instance:
image: freebsd-11-2-release-amd64
# Test FreeBSD in a full VM on cirrus-ci.com. Test the i686 target too, in the
# same VM. The binary will be built in 32-bit mode, but will execute on a
# 64-bit kernel and in a 64-bit environment. Our tests don't execute any of
# the system's binaries, so the e... | Use fetch instead of curl during CI on FreeBSD | Use fetch instead of curl during CI on FreeBSD
| YAML | mit | geofft/nix-rust,carllerche/nix-rust,asomers/nix,carllerche/nix-rust,nix-rust/nix,asomers/nix,geofft/nix-rust,carllerche/nix-rust,geofft/nix-rust,nix-rust/nix |
89c99230504335af24f7da36c556ab9e4ebe2a80 | .travis.yml | .travis.yml | ---
language: ruby
sudo: false
dist: trusty
bundler_args: --without development
cache: bundler
before_install:
- PATH=$(npm bin):$PATH # needed to install phantomjs via npm
- if [ $(phantomjs --version) != '2.1.1' ]; then npm install phantomjs-prebuilt@2.1; fi
- gem update --system # use the very latest Rub... | ---
language: ruby
sudo: false
dist: trusty
bundler_args: --without development
cache: bundler
before_install:
- PATH=$(npm bin):$PATH # needed to install phantomjs via npm
- if [ $(phantomjs --version) != '2.1.1' ]; then npm install phantomjs-prebuilt@2.1; fi
- gem update --system # use the very latest Rub... | Move all jruby builds to allow_failures | Move all jruby builds to allow_failures
| YAML | mit | varyonic/activeadmin,varyonic/activeadmin,varyonic/activeadmin |
6e2298c7272385a07386b7e10e572b6b149ea4be | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
bundler_args: --without kitchen_common kitchen_vagrant
rvm:
- 1.9.3
- 2.0.0
script:
- bundle exec rake travis
| language: ruby
sudo: false
cache: bundler
bundler_args: --without kitchen_common kitchen_vagrant
rvm:
- 2.0
- 2.1
- 2.2
script:
- bundle exec rake travis
| Test on modern ruby releases | Test on modern ruby releases
| YAML | apache-2.0 | osuosl-cookbooks/ceph-cookbook,tas50/ceph-cookbook,sandoracs/ceph-cookbook,nareiber/ceph-cookbook,nareiber/ceph-cookbook,osuosl-cookbooks/ceph-cookbook,ncerny/ceph-cookbook,tas50/ceph-cookbook,ncerny/ceph-cookbook,ceph/ceph-cookbook,klamontagne/ceph-cookbook,sandoracs/ceph-cookbook,nareiber/ceph-cookbook,klamontagne/ce... |
0aed723b5e1518463410cf2f40b17fcaf7bd1936 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.5"
# command to install dependencies
before_install: ./configure
install: make
# command to run tests
script:
make test
addons:
apt:
packages:
- nginx | language: python
python:
- "3.5"
# - "2.7"
# command to install dependencies
before_install: ./configure
install: make
# command to run tests
script:
make test
addons:
apt:
packages:
- nginx | Comment out python 2.7 in this repo. | Travis: Comment out python 2.7 in this repo.
| YAML | mit | tchalvak/fractalish,tchalvak/fractalish,tchalvak/fractalish |
a60e7847ac7558f93e6fd0cdea10f529a7ebe487 | .travis.yml | .travis.yml | language: go
go: 1.4
env:
- PATH=$HOME/gopath/bin:$PATH
install:
# Install SDL2.
# Travis CI uses Ubuntu 12.04 which doesn't have libsdl2.
# We use SDL2-2.0.1, the minimum version with SDL_WINDOW_ALLOW_HIGHDPI.
- wget https://www.libsdl.org/release/SDL2-2.0.1.tar.gz
- tar -xzf SDL2-2.0.1.tar.... | language: go
go: 1.4
notifications:
email: false
env:
- PATH=$HOME/gopath/bin:$PATH
install:
# Install SDL2.
# Travis CI uses Ubuntu 12.04 which doesn't have libsdl2.
# We use SDL2-2.0.1, the minimum version with SDL_WINDOW_ALLOW_HIGHDPI.
- wget https://www.libsdl.org/release/SDL2-2.0.1.tar.... | Disable Travis CI email notifications. | Disable Travis CI email notifications.
I often push --force to update my branches.
Travis often errors out when I do this
and emails me a bogus error.
So, I basically ignore Travis emails.
Let's just turn them off.
| YAML | isc | skiesel/T,leGoof/T,skiesel/T,leGoof/T |
870ea477c66c45717a359f72cb08ca598b9e4efb | _config.yml | _config.yml | # Dependencies
markdown: redcarpet
pygments: true
# Permalinks
permalink: pretty
# Setup
title: Donald McKendrick
tagline: 'Developer and Entrepreneur'
description: 'Developer at <a href="http://floatapp.com" target="_blank">Float</a> and aspiring entrepreneur.'
url: ... | # Dependencies
markdown: redcarpet
pygments: true
# Permalinks
permalink: pretty
# Setup
title: Donald McKendrick
tagline: 'CTO and Entrepreneur'
description: 'CTO at <a href="http://www.storeluv.com" target="_blank">StoreLuv</a> and aspiring entrepreneur.'
url: ... | Update employment history in config | Update employment history in config | YAML | mit | ddmck/ddmck.github.io,ddmck/ddmck.github.io |
9f31fa8ec96f7a1cad3d2dfcf3f9ef524a98bcb1 | .travis.yml | .travis.yml | sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then composer require satooshi/php-coveralls:1.* squizlabs/php_codesniffer:2.* -n ; fi
- if [[ "$TRAVIS_PHP_VERSION" != '5.6' ]]; then composer install -n ; fi
script:
- if [[ "$TRAVIS_PHP... | sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- php: 7.1
before_script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then composer require satooshi/php-coveralls:1.* squizlabs/php_codesniffer:2.* -n ; fi
- if [[ "$TRAVIS_PHP_VERSION" != '5.6' ]]; then compos... | Test with PHP 7.1 but allow failures | Test with PHP 7.1 but allow failures
| YAML | mit | iinux/Slim,akrabat/Slim,Sam-Burns/Slim,iinux/Slim,slimphp/Slim,RealSelf/Slim,iinux/Slim,foxyantho/Slim,dopesong/Slim,juliangut/Slim |
1370f313b3408b49f8a9aad548c460d2b9d52da9 | .travis.yml | .travis.yml | language: objective-c
osx_image: beta-xcode6.3
before_install:
- brew install gawk
- bash linter.sh
- sudo gem install cocoaseeds
install:
- seed install
script:
- xctool -project Allkdic.xcodeproj -scheme Allkdic CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO build test -parallelize
| language: objective-c
osx_image: xcode7
before_install:
- brew install gawk
- bash linter.sh
- sudo gem install cocoaseeds
install:
- seed install
script:
- xctool -project Allkdic.xcodeproj -scheme Allkdic CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO build test -parallelize
| Use Xcode 7 in Travis | Use Xcode 7 in Travis
| YAML | mit | devxoul/allkdic,devxoul/allkdic,devxoul/allkdic |
6fd355cca7ef7874b92a18c3e998e16473f941a1 | .travis.yml | .travis.yml | language: python
python: "2.7"
services:
- redis-server
- mysql
- postgresql
env:
- TOXENV=py27
install:
- pip install tox coveralls
before_script:
- mysql -e 'create database test;'
script: tox
after_success:
if [ "$TOXENV" == "py27" ]; then coveralls; fi
| language: python
python: "2.7"
services:
- redis-server
- mysql
- postgresql
env:
- TOXENV=py27
install:
- pip install tox coveralls
before_script:
- mysql -e 'create database test;'
- sudo rm -f /etc/boto.cfg
script: tox
after_success:
if [ "$TOXENV" == "py27" ]; then coveralls; fi
| Add a hack to fix Travis | Add a hack to fix Travis
| YAML | mit | stevearc/pypicloud,rubikloud/pypicloud,mathcamp/pypicloud,mathcamp/pypicloud,mathcamp/pypicloud,rubikloud/pypicloud,mathcamp/pypicloud,rubikloud/pypicloud,stevearc/pypicloud,stevearc/pypicloud,rubikloud/pypicloud,stevearc/pypicloud |
f06abc7601e382bdefc514abde8527b788795ce4 | .travis.yml | .travis.yml | rvm:
- 2.2.2
cache: bundler
addons:
code_climate:
repo_token: 1f9743a554140a590819de5967c4411398a22e31f2d5d439127cdbf33c72a6ab
| rvm:
- 2.2.2
cache: bundler
before_script:
- if [ "${$TRAVIS_OS_NAME}" = "linux" ]; then
wget https://github.com/mozilla/geckodriver/releases/geckodriver-v0.11.1-linux64.tar.gz -O /tmp/geckodriver.tar.gz;
fi
- if [ "${$TRAVIS_OS_NAME}" = "osx" ]; then
wget https://github.com/mozilla/geck... | Add geckodriver to Travis yml. Nathan Pannell | Add geckodriver to Travis yml. Nathan Pannell | YAML | mit | CommunityGrows/communitygrows,CommunityGrows/communitygrows,hsp1324/communitygrows,CommunityGrows/communitygrows,hsp1324/communitygrows,hsp1324/communitygrows |
619cde01fe2fa4c3eb36bb255205d43d2aa2a729 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
addons:
firefox: latest
cache:
directories:
- $HOME/.m2
- node
- node_modules
before_install:
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x24 +extensio... | language: java
jdk:
- oraclejdk8
addons:
firefox: latest
cache:
directories:
- $HOME/.m2
- node
- node_modules
before_install:
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x24 +extensio... | Update Selenium and Firefox to fix IT | Update Selenium and Firefox to fix IT
| YAML | apache-2.0 | pvorb/platon,pvorb/platon,pvorb/platon |
af665094441bb84efc6136312951e14d22beeccf | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.1
- 3.2
env:
- TIMEZONE=UTC
install:
- pip install nose
- pip install .
script: make test
| language: python
python:
- 2.6
- 2.7
- 3.1
- 3.2
install:
- pip install nose
- pip install .
script: make test
| Remove TIMEZONE environment setting from Travis CI test | Remove TIMEZONE environment setting from Travis CI test
This change was made possible by #1.
| YAML | bsd-3-clause | dirn/When.py |
7dc431a74a7aa36d48327fc7882a2aa8672272a2 | .travis.yml | .travis.yml | language: ruby
os:
- linux
- osx
rvm:
- 2.0.0-p598
- 2.1.5
- 2.2.2
- ruby-head
install:
- git clone https://github.com/ruby/mspec.git ../mspec
script:
- ../mspec/bin/mspec
matrix:
exclude:
- os: osx
rvm: ruby-head
branches:
only:
- master
| language: ruby
rvm:
- 2.0.0-p598
- 2.1.5
- 2.2.2
- ruby-head
install:
- git clone https://github.com/ruby/mspec.git ../mspec
script:
- ../mspec/bin/mspec
branches:
only:
- master
| Disable OS X on Travis as it slows the build considerably | Disable OS X on Travis as it slows the build considerably
* ~10min for OS X build VS ~2min for Linux build
* RubyCI provides a good platform coverage
| YAML | mit | kidaa/rubyspec,iliabylich/rubyspec,BanzaiMan/rubyspec,sgarciac/spec,nobu/rubyspec,kidaa/rubyspec,nobu/rubyspec,eregon/rubyspec,eregon/rubyspec,ruby/rubyspec,BanzaiMan/rubyspec,ruby/spec,nobu/rubyspec,ruby/spec,iliabylich/rubyspec,wied03/rubyspec,wied03/rubyspec,wied03/rubyspec,kachick/rubyspec,kachick/rubyspec,ruby/rub... |
9a48657e78da4b4661b714aac5a690c90b193cd3 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
before_script:
- composer validate
- composer update
| language: php
php:
- 5.6
- 7.0
before_script:
- composer validate
- composer update
script:
- vendor/bin/phpunit --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --repository="g/ntd/silverstripe-autotoc" --format=php-cl... | Add coverage support to TravisCI | Add coverage support to TravisCI
| YAML | bsd-2-clause | ntd/silverstripe-autotoc |
f017505cb4187ec87d4f95f259c5f8846864df8f | .travis.yml | .travis.yml | language: node_js
node_js:
- 10
- 11
- 12
after_success:
- bash <(curl -s https://codecov.io/bash)
| matrix:
include:
- language: python
python:
- "2.7"
- language: node_js
node_js:
- 10
after_success:
- bash <(curl -s https://codecov.io/bash)
| Test using multiple languages in Travis CI | Test using multiple languages in Travis CI
| YAML | mit | thinkulum/generator-python-cmd,thinkulum/generator-python-cmd |
c8d317f2a1b63758c2150d8086f97ea2dfd92c24 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
sudo: false
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
- if [ -f vendor/bin/coverall... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
sudo: false
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
- if [ -f vendor/bin/coverall... | Fix the statement to correctly link coveralls to php-coveralls | Fix the statement to correctly link coveralls to php-coveralls
| YAML | mit | ramsey/uuid-doctrine |
afb603a1068291d37318f2db4bb98ef250f756ea | .travis.yml | .travis.yml | language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
before_install:
- "sudo apt-get update -qq"
- "sudo apt-get install -qq python-numpy python-scipy python-nose python-matplotlib ipython libasound2 libasound2-plugins libasound-dev alsa-base"
- "sudo ldconfig"
- "pip install ... | language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
before_install:
- "sudo apt-get update -qq"
- "sudo apt-get install -qq python-numpy python-scipy python-nose python-matplotlib ipython libasound2 libasound2-plugins libasound-dev alsa-base portaudio"
- "sudo ldconfig"
- "pi... | Install portaudio but install pyaudio from pip | Install portaudio but install pyaudio from pip
| YAML | mit | nils-werner/dspy,antiface/dspy |
a12bf263f14cbfdc235170e34f6194bfb146ea6a | .travis.yml | .travis.yml | language: rust
sudo: false
os:
- linux
- osx
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
env:
global:
- RUSTFLAGS="-C link-dead-code"
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- bin... | language: rust
sudo: false
os:
- linux
- osx
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
env:
global:
- RUSTFLAGS="-C link-dead-code"
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- bin... | Replace exmaple package name for codecov. | Replace exmaple package name for codecov.
| YAML | mit | ShaunKarran/gruff |
c78c7c7971681e6bcdd2da701a814f21a4ff86fd | .travis.yml | .travis.yml | language: go
sudo: false
go:
- tip
- 1.8.x
- 1.7.x
- 1.6.x
install:
- go get -t ./...
before_script:
- $(exit $(go fmt ./... | wc -l))
- go vet ./...
script:
- go test -v -i -race ./...
| language: go
sudo: false
go:
- tip
- 1.9.x
- 1.8.x
- 1.7.x
install:
- go get -t ./...
before_script:
- $(exit $(go fmt ./... | wc -l))
script:
- go test -v -race ./...
| Remove go vet from Travis for now | Remove go vet from Travis for now
Signed-off-by: Byron Ruth <e9d71f5ee7c92d6dc9e92ffdad17b8bd49418f98@devel.io>
| YAML | mit | chop-dbhi/eda |
506b28f65c5a40c9c931394bbb4b90f8afa0a36a | .travis.yml | .travis.yml | language: node_js
node_js:
- '9'
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
cache:
directories:
- node_modules
before_install:
- npm prune
- npm install -g npm
# # encrypted environment variables are not available for pull requests from forks
# bef... | language: node_js
node_js:
- '9'
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
cache:
directories:
- node_modules
before_install:
- npm prune
- npm install -g npm
- npm install
# # encrypted environment variables are not available for pull requests fr... | Install latest npm and modules in Travis | Install latest npm and modules in Travis
| YAML | apache-2.0 | yxeri/roleOOC,yxeri/roleTerminal,yxeri/roleTerminal,yxeri/roleOOC,yxeri/roleTerminal,yxeri/roleOOC |
a8aa9783a352ea575b614ac929cdfcdb591cf3e7 | _config.yml | _config.yml | # Site Configs
name: Ionic Framework
description: The official Ionic Framework blog
url: http://ionicframework.com/blog
markdown: redcarpet
pygments: true
permalink: /blog/:title
paginate: 5
paginate_path: "blog/page:num"
# Default news if the page didnt enter news
news: Check out our <a href="/docs/guide/">Guide</a>,... | # Site Configs
name: Ionic Framework
description: The official Ionic Framework blog
url: http://ionicframework.com/blog
markdown: redcarpet
pygments: true
permalink: /blog/:title
paginate: 5
paginate_path: "blog/page:num"
# Default news if the page didnt enter news
news: Check out our <a href="/docs/guide/">Guide</a>,... | Exclude node_modules and scss from jekyll build | Exclude node_modules and scss from jekyll build
| YAML | apache-2.0 | arrking/arrking.github.io,ionic-team/ionic-site,driftyco/ionic-site,arrking/arrking.github.io,ionic-team/ionic-site,matheusrocha89/ionic-site,johnli388/ionic-site,sachinvettithanam/ionic-site,thiagofelix/ionic-site,philmerrell/ionic-site,martinjbaker/ionic-site,thiagofelix/ionic-site,martinjbaker/ionic-site,ionic-team/... |
810e3a962b24bbdb3d0816afb0cb6c39ab41057b | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
before_script:
- "echo $JAVA_OPTS"
- "echo $MAVEN_OPTS"
- "export JAVA_OPTS=-Xmx2g"
- "export MAVEN_OPTS=-Xmx2g"
install: mvn -q install -DskipTests=true
| language: java
jdk:
- oraclejdk7
before_script:
- "echo $JAVA_OPTS"
- "echo $MAVEN_OPTS"
install: mvn install -DskipTests=true
| Update to experiment with heap sizes | Update to experiment with heap sizes
| YAML | apache-2.0 | ikawaha/kuromoji,atilika/kuromoji,makigumo/kuromoji,yodasantu/kuromoji,gerryhocks/kuromoji,cmoen/kuromoji,sevenno7/kuromoji |
1c9bf3f9830c026290353e4a7029dff35c4feb5d | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.2"
before_script:
- npm install -g grunt-cli
script: grunt test | language: node_js
node_js:
- "4.2"
before_script:
- npm install -g grunt-cli
- nom install -g bower
script: grunt test | Install bower before running test script | Install bower before running test script
| YAML | mit | comerge/grunt-bower-freeze |
49183f9386ca5a0e2b9bd6c4c0e2c50a7c346e00 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- iojs
- "0.12"
- "0.11"
- "0.10"
before_script:
- npm install -g grunt-cli
| Add support for iojs and node 0.12 | Add support for iojs and node 0.12
| YAML | mit | Rowno/sitemap-urls |
cc02f2bd143041344d36d08994311b783deba82a | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.2
install:
- pip install jsonschema
script:
- python setup.py test
| language: python
python:
- "pypy"
- 2.6
- 2.7
- 3.3
- 3.4
env:
- JSONSCHEMA="jsonschema"
matrix:
include:
- python: "3.2"
env: JSONSCHEMA="jsonschema==2.3.0"
install:
- pip install $JSONSCHEMA
script:
- python setup.py test
| Test more Python versions with Travis. | Test more Python versions with Travis.
| YAML | mit | avian2/jsonmerge |
1960abd76480a28fd922b0e05d51e8cbb7b64392 | _config.yml | _config.yml | # Jekyll configuration precedence:
# 1. Gruntfile task
# 2. config.build.yml
# 3. config.yml
name: "Richard Westenra | Web designer & front-end developer"
description: "I make websites, data-visualisations, and interactive webapps."
author:
name: Richard Westenra
email: rjwestenra@gmail.com
# Grunt handles im... | # Jekyll configuration precedence:
# 1. Gruntfile task
# 2. config.build.yml
# 3. config.yml
name: "Richard Westenra | Web designer & front-end developer"
description: "London-based web developer with a passion for making beautiful websites, interactive webapps & data-vis. This is my portfolio & blog."
aut... | Update default homepage meta description | Update default homepage meta description
| YAML | mit | richardwestenra/richardwestenra-dev,richardwestenra/richardwestenra-dev,richardwestenra/richardwestenra-dev |
1faa5de0b9705ed6b64b2c9a096dc884ff054a00 | .travis.yml | .travis.yml | language: php
dist: trusty
php:
- '7.2'
- '7.3'
- '7.4'
- 'nightly'
matrix:
include:
- php: '7.2'
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction
... | language: php
dist: trusty
php:
- '7.2'
- '7.3'
- '7.4'
matrix:
include:
- php: '7.2'
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction
- travis_ret... | Revert nightly until we can update PHPUnit | Revert nightly until we can update PHPUnit
| YAML | mit | thephpleague/tactician |
95a6b2c0a3e94b3f0abc4222f126a2176c1f46c7 | _config.yml | _config.yml | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For te... | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For te... | Set different permalink style for blog posts. | Set different permalink style for blog posts.
We don't like the pretty permalink setting for blog posts, so change it to something better. | YAML | apache-2.0 | redbuttegarden/redbuttegarden.github.io,redbuttegarden/redbuttegarden.github.io,redbuttegarden/redbuttegarden.github.io,redbuttegarden/redbuttegarden.github.io |
ede46e233989f2a911028aa5fb86ce6ddb47cc98 | _config.yml | _config.yml | safe: true
markdown: kramdown
pygments: true
permalink: /:title.html
default_theme: yandex
default_width: 792
default_lang: ru
default_body_class: list
author:
name: Yours Truly
# url: http://example.com/
company:
name: Яндекс
url: http://yandex.ru/
progress: true
| safe: true
markdown: kramdown
highlighter: true
permalink: /:title.html
default_theme: yandex
default_width: 792
default_lang: ru
default_body_class: list
author:
name: Yours Truly
# url: http://example.com/
company:
name: Яндекс
url: http://yandex.ru/
progress: true
| Rename jekyll option, since now we have to | Rename jekyll option, since now we have to
| YAML | mit | zubchick/python-party-2015,GreLI/yasubbotnik-moscow-17-oct,zubchick/python-party-2015 |
cb47fd9e16e3d87c80aeaa083cba7fd648a1ffa1 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
env:
# - DJANGO_VERSION="Django==1.2"
- DJANGO_VERSION="Django==1.3"
- DJANGO_VERSION="git+git://github.com/django/django.git@master#egg=django==1.4c1"
# command to install dependencies
install: pip install mock==0.7.2 $DJANGO --use-mirrors
# command to run tests
scr... | language: python
python:
- "2.6"
- "2.7"
env:
# - DJANGO="Django==1.2"
- DJANGO="Django==1.3"
- DJANGO="git+git://github.com/django/django.git@master#egg=django==1.4c1"
# command to install dependencies
install: pip install mock==0.7.2 $DJANGO --use-mirrors
# command to run tests
script: python runtests.py
| Correct the environment variable name of Django | Correct the environment variable name of Django
| YAML | bsd-3-clause | mjumbewu/django-jstemplate,mjumbewu/django-jstemplate,mjumbewu/django-jstemplate,bopo/django-jstemplate,bopo/django-jstemplate,bopo/django-jstemplate |
959be3825a9c54c9e8d43c2a6b48b52ee0d127e0 | _config.yml | _config.yml | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# ... | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# ... | Add social and email to config | Add social and email to config | YAML | mit | RiiConnect24/Site,RiiConnect24/Site,RiiConnect24/Site |
1b6ec3d4c0dba85ffbf2a5c9ce69979ca6528184 | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- '0.10'
- '0.11'
- '0.12'
- node
- iojs
sudo: false
script:
- npm test
- npm run lint
| ---
language: node_js
node_js:
- '0.10'
- '0.11'
- '0.12'
- '4'
- '5'
- '6'
sudo: false
script:
- npm test
- npm run lint
| Configure Travis CI to test on newer Node.js | Configure Travis CI to test on newer Node.js
| YAML | mit | kemitchell/spdx-expression-validate.js |
3e6bd21642d1dce340264d3020e77998c86d2f5b | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
- "4.0"
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
- "4.0"
notifications:
email: false
| Disable the notification of TravisCI. | Disable the notification of TravisCI.
| YAML | mit | saneyuki/option-t.js,saneyuki/option-t.js |
bf9df322c93751c9d543bafcc791c8084af69e43 | _config.yml | _config.yml | title: Dinosaurs Are Forever
description: code, music, creation
meta_description: "The Personal Blog of Chris J Arges"
baseurl: ""
url: "http://chrisarges.net"
github_username: arges
# Build settings
markdown: kramdown
theme: jekyll-theme-minimal
gems:
- jekyll-feed
- jekyll-paginate
exclude:
- Gemfile
- Gem... | title: Dinosaurs Are Forever
description: code, music, creation
meta_description: "The Personal Blog of Chris J Arges"
baseurl: ""
url: "https://chrisarges.net"
github_username: arges
# Build settings
markdown: kramdown
theme: minima
gems:
- jekyll-feed
- jekyll-paginate
exclude:
- Gemfile
- Gemfile.lock
di... | Switch to original theme, use https. | Switch to original theme, use https.
| YAML | mit | arges/arges.github.io,arges/arges.github.io |
8572016bef42525c24ea01b34ac2cd19781a4f05 | .travis.yml | .travis.yml | dist: trusty
sudo: required
matrix:
fast_finish: true
include:
- python: "3.5"
env: TOXENV=lint
- python: "2.7"
env: TOXENV=py27
- python: "3.5"
env: TOXENV=py35
# - python: "3.6"
# env: TOXENV=py36
cache:
directories:
- $HOME/.cache/pip
before_install:
- sudo apt-get... | dist: trusty
sudo: required
matrix:
fast_finish: true
include:
- python: "3.5"
env: TOXENV=lint
- python: "2.7"
env: TOXENV=py27
- python: "3.5"
env: TOXENV=py35
# - python: "3.6"
# env: TOXENV=py36
cache:
directories:
- $HOME/.cache/pip
before_install:
- sudo apt-get... | Change snowboy make for py3 | Change snowboy make for py3
| YAML | apache-2.0 | opsdroid/opsdroid-audio,opsdroid/opsdroid-audio |
4469b03103fbf4111fdc4a5e649e26c484a3b027 | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
dist: precise
branches:
only: master
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
before_install: ruby -e "File.write('Gemfile.lock', File.read('Gemfile.lock').split('BUNDLED WITH').first)"
| language: ruby
cache: bundler
dist: precise
branches:
only: master
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
before_install: ruby -e "File.write('Gemfile.lock', File.read('Gemfile.lock').split('BUNDLED WITH').first)"
| Remove deprecated Travis CI option | Remove deprecated Travis CI option | YAML | mit | grosser/parallel |
307ceff4d8feff16d07eb54f60c371cda44ac3c5 | _config.yml | _config.yml | # Site settings
title: Markus Kauppila
email: markus.kauppila@gmail.com
description: > # this means to ignore newlines until "baseurl:"
About software craftmanship and creating software for iOS.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://yourdomain.com" # the base hostname & protocol for your si... | # Site settings
title: Markus Kauppila
email: markus.kauppila@gmail.com
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://yourdomain.com" # the base hostname & protocol for your site
twitter_username: markuskauppila
github_username: mkauppila
paginate: 10
sass:
sass_dir: _sass # make sure @import ... | Delete description from the config | Delete description from the config
| YAML | mit | mkauppila/mkauppila.github.io |
0450a5474ac09de4a68276482d643ad434d6e914 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: cpp
script:
- mkdir build
- cd build
- cmake -DCMAKE_CXX_COMPILER=$COMPILER ..
- cmake --build .
- ctest --versbose
matrix:
include:
- os: linux
compiler: g++
env: COMPILER=g++-6 BUILD=Debug ARCH=64
addons:
apt:
sources:
- ubuntu-toolch... | sudo: required
dist: trusty
group: edge
language: cpp
script:
- mkdir build
- cd build
- cmake -DCMAKE_CXX_COMPILER=$COMPILER ..
- cmake --build .
- ctest --versbose
matrix:
include:
- os: linux
compiler: g++
env: COMPILER=g++-6 BUILD=Debug ARCH=64
addons:
apt:
sources:
- u... | Use the latest Trusty image | Use the latest Trusty image
More info: http://mailchi.mp/travis-ci/we-are-updating-all-our-ubuntu-trusty-1404-images-this-wednesday | YAML | mit | JayBazuzi/Okra,JayBazuzi/Okra |
12bf1c6d05e0ec89b1235078c6b5af3094422e0f | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm
install:
- composer selfupdate
- composer install
before_script:
- mysql -e 'create database `test`;'
- mysql --default-character-set=utf8 test < test/test.sql
| language: php
php:
- 7
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: 7
- php: hhvm-nightly
install:
- composer selfupdate
- composer install
before_script:
- mysql -e 'create database `test`;'
- mysql --default-character-set=utf8 test < test/test.sql
| Test on PHP and HHVM nightly builds | Test on PHP and HHVM nightly builds | YAML | mit | onesimus-systems/seed-catalog,erusev/base |
53d05817d39c6756762873466216318957082435 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Test with latest Node.js 5 on Travis CI. | Test with latest Node.js 5 on Travis CI.
| YAML | mit | bigeasy/advance,bigeasy/advance |
7442949a428c27a94c2812552e6a712822d5d4fb | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.12'
after_success:
- npm run coveralls
| sudo: false
language: node_js
cache:
directories:
- node_modules
node_js:
- '0.10'
- '0.12'
- '4.0'
- '4.1'
before_script:
- npm prune
after_success:
- npm run codecov
| Update node_js versions and coverage services | chore(ci): Update node_js versions and coverage services
| YAML | mit | moqada/aws-sdk-config-loader |
d00e7708d78250241dd6c7645202467d136a016d | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failure:
- rust: nightly | language: rust
rust:
- stable
- beta
- nightly
os:
- linux
- osx
matrix:
allow_failure:
- rust: nightly
| Test on OSX and Linux | Test on OSX and Linux
| YAML | mit | darayus/XKCDPass |
8a7559653522d3d3e40cf2ab9008dcc3dac2dd45 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.1
- 2.0.0
script:
- 'echo "Checking code style" && ./bin/phare'
- 'echo "Running specs" && bundle exec rake spec'
notifications:
hipchat:
rooms:
secure: "OjYHtwmsG6bDC8mewX85yulCKxsVpvGiic32e6lDRq2TYmMtot/atOQaZ16YlMMN0CQqiJ8jfpil3HWCSK1iPZxSLHzCEu//bL6uoDJdPc/oXNV2BPAj0... | language: ruby
rvm:
- 2.3.1
- 2.2
- 2.1
- 2.0
script:
- 'echo "Checking code style" && ./bin/phare'
- 'echo "Running specs" && bundle exec rake spec'
notifications:
hipchat:
rooms:
secure: "OjYHtwmsG6bDC8mewX85yulCKxsVpvGiic32e6lDRq2TYmMtot/atOQaZ16YlMMN0CQqiJ8jfpil3HWCSK1iPZxSLHzCEu//bL6uoDJ... | Update Ruby version with the latests for Travis check | Update Ruby version with the latests for Travis check
| YAML | bsd-3-clause | mirego/phare |
bbf7ef7dede97aa7f5ee2a673941a47f3acfbaef | .travis.yml | .travis.yml | language: node_js
node_js:
- 6
cache:
directories:
- node_modules
script:
- npm test
- npm run coverage
- npm run build
after_success: 'npm run coveralls' | language: node_js
node_js:
- lts/*
cache:
directories:
- node_modules
script:
- npm test
- npm run coverage
- npm run build
after_success: 'npm run coveralls' | Use latest LTS Node.js release | Use latest LTS Node.js release
| YAML | mit | joelgeorgev/react-checkbox-tree,joelgeorgev/react-checkbox-tree |
7a44e9bad20be3200a89730f2c5179dc453d7e88 | .travis.yml | .travis.yml | language: ruby
rvm:
- ruby-head
- jruby-head
- 2.1.1
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-19mode
- jruby-18mode
- rbx-2.1.1
- rbx-2.0.0
- 1.8.7
matrix:
allow_failures:
- rvm: 1.8.7
- rvm: jruby-18mode
| language: ruby
rvm:
- ruby-head
- jruby-head
- 2.1.1
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-19mode
- jruby-18mode
- rbx-2.1.1
- rbx-2.0.0
- 1.8.7
matrix:
allow_failures:
- rvm: rbx-2.0.0
- rvm: 1.8.7
- rvm: jruby-18mode
| Add rbx-2.0.0 to allowed failures | Add rbx-2.0.0 to allowed failures
| YAML | mit | seanredmond/kakutani |
edede36dd45c0ce1de629ff48b568d7c86bac631 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
branches:
only:
- master
- develop
install: ./gradlew assemble -P -PsonatypeUsername=argius -PsonatypePassword=
script: ./gradlew test -P -PsonatypeUsername=argius -PsonatypePassword=
| language: java
jdk:
- oraclejdk8
branches:
only:
- master
- develop
install: ./gradlew assemble -P -PsonatypeUsername=argius -PsonatypePassword=""
script: ./gradlew test -P -PsonatypeUsername=argius -PsonatypePassword=""
| Update Travis-CI to correct an error | Update Travis-CI to correct an error
| YAML | apache-2.0 | argius/minestra |
fe823c20777a5c29a8874a6cb9d7181c7e29137e | .travis.yml | .travis.yml | ---
language: ruby
sudo: false
cache: bundler
before_install: "gem install bundler -v '< 2.0'"
bundler_args: --without yard benchmarks
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
- ruby-head
- jruby-9.1.5.0
- jruby-head
- truffleruby
matrix:
allow... | ---
language: ruby
sudo: false
before_install: "gem install bundler -v '< 2.0'"
bundler_args: --without yard benchmarks
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
- ruby-head
- jruby-9.1.5.0
- jruby-head
- truffleruby
matrix:
allow_failures:
... | Change to stop caching bundler | Change to stop caching bundler
| YAML | mit | peter-murach/tty-table |
88acaa7fecbca76f3794cacfcdbbd06ca319ae28 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source
- travis_retry composer require satooshi/php-coveralls --dev
script:
- mkdir -p build/logs
- ./vendor/bin/parallel-lint src test
... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source
- travis_retry composer require satooshi/php-coveralls --dev
script:
- mkdir -p build/logs
- ./vendor/bin/phpunit --coverage-clover... | Stop doing lint with Travis | Stop doing lint with Travis
| YAML | mit | thephpleague/oauth2-google,osufpp/oauth2-ifsta,tplaner/oauth2-google |
84c7f4faa8a47b673c3340c6aef2f016c6e0dd0d | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- "1.9"
- "2.0"
- "2.1"
- "2.2"
- jruby-19mode
- rbx-2
install:
- bundle install --retry=3
env:
- ACTIVE_RECORD_BRANCH="master"
- ACTIVE_RECORD_VERSION="~> 4.2.0"
- ACTIVE_RECORD_VERSION="~> 4.1.0"
- ACTIVE_RECORD_VERSION="~> 4.0.0"
- ACTIVE_RECORD_VERSION="~> ... | language: ruby
sudo: false
rvm:
- "1.9"
- "2.0"
- "2.1"
- "2.2"
- jruby-19mode
- rbx-2
install:
- bundle install --retry=3
env:
- ACTIVE_RECORD_BRANCH="master"
- ACTIVE_RECORD_VERSION="~> 5.0.0"
- ACTIVE_RECORD_VERSION="~> 4.2.0"
- ACTIVE_RECORD_VERSION="~> 4.1.0"
- ACTIVE_RECORD_VERSION="~> ... | Add Active Record 5 to Travis CI | Add Active Record 5 to Travis CI
| YAML | mit | Casecommons/with_model |
0c31ffbd0bfc63fb037e27623455a661962117dc | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.1
- 2.1.0
- 2.0.0
| language: ruby
rvm:
- 2.1.1
- 2.0.0
| Remove 2.1.0 from Travis CI list | Remove 2.1.0 from Travis CI list
| YAML | mit | gevans/expedition |
2918e374593f2bd560c74edfc0848187f6e641dd | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
notifications:
irc:
channels:
- chat.freenode.net#hawkular
on_success: change
before_install:
- 'npm install -g bower gulp typescript'
script:
- 'npm install'
- 'bower install'
- 'gulp' | sudo: false
language: node_js
node_js:
- '0.10'
notifications:
irc:
channels:
- chat.freenode.net#hawkular
on_success: change
before_install:
- 'npm install -g bower gulp typescript'
script:
- 'npm install'
- 'bower install'
- 'gulp'
| Enable container-based infrastructure for Travis builds. | Enable container-based infrastructure for Travis builds.
| YAML | apache-2.0 | mtho11/hawkular-ui-components,ammendonca/hawkular-ui-components,ammendonca/hawkular-ui-components,hawkular/hawkular-ui-components,hawkular/hawkular-ui-components,mtho11/hawkular-ui-components,mtho11/hawkular-ui-components,ammendonca/hawkular-ui-components,mtho11/hawkular-ui-components,hawkular/hawkular-ui-components,ha... |
253ff7380f501e15bd4d4ee175b30d821e12293f | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.3
branches:
only:
- master
- /^deploy-.*$/
install:
- tar -xzf lame-3.99.5.tar.gz
script:
- cd lame-3.99.5 && ../build_ios.sh
| language: objective-c
osx_image: xcode7.3
install: tar -xzf lame-3.99.5.tar.gz
script: cd lame-3.99.5 && ../build_ios.sh
deploy:
provider: releases
file: build/libmp3lame.a
skip_cleanup: true
on:
tags: true
api-key:
secure: A3q+C1rrw2yXX/CzV/Utxcg2dKzPCQKDgg/MEWZ8K6/s6C8kRsbgv3YsM+iZpcUlw+ekUjIRUsQ... | Add deploy on tag from Travis to github release | Add deploy on tag from Travis to github release
| YAML | mit | Superbil/build-lame-for-iOS |
7b03b123a704ad2df0801f318d30804a62e06019 | .travis.yml | .travis.yml | language: node_js
node_js:
- "5"
before_install:
- rvm install 2.3.1
install:
- bundle install
- npm install -g lodash marked varstream node-gyp
- npm install -g gulp-cli
- npm install
script: bundle exec middleman build --clean
after_success: npm run stage | language: node_js
node_js:
- "5"
python:
- "3.5"
cache: pip
install:
# Install any dependencies required for building your site here.
# `awscli` is required for invalidation of CloudFront distributions.
- pip install awscli
before_install:
- rvm install 2.3.1
install:
- bundle install
- npm ins... | Deploy to S3 with Travis | Feat: Deploy to S3 with Travis
| YAML | mit | simplebitdesign/simplebitdesign.com,simplebitdesign/simplebitdesign.com,simplebitdesign/simplebitdesign.com,simplebitdesign/simplebitdesign.com |
f8a1e0252514c1187615e18de0b26ef427e7c87c | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
env:
matrix:
- BROWSER=chrome BVER=stable
- BROWSER=chrome BVER=beta
- BROWSER=chrome BVER=unstable
# - BROWSER=firefox BVER=stable
# - BROWSER=firefox BVER=beta
# - BROWSER=firefox BVER=aurora
before_install:
- mkdir -p .travis
- curl -s https://codeloa... | language: node_js
node_js:
- 0.10
notifications:
email:
- damon.oehlman@nicta.com.au
irc: irc.freenode.org#rtc.io
env:
global:
- secure: Xo5DDUYF9ieE9uzku88im0W/iQrDM/XMxdr4SsXQwVy+v6Y7gMQwPnIlBicgitq7B1ZoVnSrPO0XkNSsj2RYgPUDKLJzQPozp5LiiDOydBC2CpCr6DFlinovwQdm8U64zvvh8m8DIH8Ow1BZmfqHo616DBV1LRToXpMl/fj9+0w=
... | Move to using saucelabs again for testing | Move to using saucelabs again for testing
| YAML | apache-2.0 | rtc-io/rtc-tools |
ad39d6e282044b46f94630719b76732ab7170507 | .travis.yml | .travis.yml | before_install:
- sudo add-apt-repository --yes ppa:kubuntu-ppa/backports
- sudo apt-get update -qq
- sudo apt-get install cmake
sudo: true
language: rust
rust: nightly
| before_install:
- sudo add-apt-repository --yes ppa:kubuntu-ppa/backports
- sudo apt-get update -qq
- sudo apt-get install cmake
sudo: true
language: rust
rust:
- nightly
- beta
- stable
| Test on nightly, beta and stable | Test on nightly, beta and stable
| YAML | mit | kbknapp/exa,ogham/exa,ogham/exa,kbknapp/exa |
16524e7cb1afa0ec379b124a251ace042b86d6ab | .travis.yml | .travis.yml | os:
- linux
- osx
language: generic
sudo: required
dist: trusty
osx_image: xcode8.2
script:
- eval "$(curl -sL https://swift.vapor.sh/ci)"
- eval "$(curl -sL https://swift.vapor.sh/codecov)"
| os:
- linux
- osx
language: generic
sudo: required
dist: trusty
osx_image: xcode9.1
script:
- eval "$(curl -sL https://swift.vapor.sh/ci)"
- eval "$(curl -sL https://swift.vapor.sh/codecov)"
| Use Xcode 9.1 image for tests | Use Xcode 9.1 image for tests | YAML | mit | florianreinhart/Geodesy,florianreinhart/Geodesy |
85becbe4b81c2e0fe25e4f7180fa45f782a83883 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
| sudo: false
language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
| Test on `stable` instead of `iojs` | Test on `stable` instead of `iojs`
| YAML | mit | kevva/imgur-uploader-cli |
ea9abd3bbaee23e0cba94f365be856d070a8cc64 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
| language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
script: mvn install
| Make Travis build javadoc and source packages | Make Travis build javadoc and source packages
| YAML | mit | CurrencyCloud/currencycloud-java,CurrencyCloud/currencycloud-java |
68728577c9a53fb1b6f6b64f7e4beb8f0b7dcff3 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.6
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
- JEKYLL_ENV=production
before_install:
- gem update --system
- gem install bundler
# install:
# - bundle install
# script:
# - rake
cache:
bundler: true
directories:
- $TRAVIS_BUILD_DIR/.jekyll-cache
branches:
... | language: ruby
rvm:
- 2.6
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
- JEKYLL_ENV=production
before_install:
- gem update --system
- gem install bundler
# install:
# - bundle install
# script:
# - rake
addons:
apt:
packages:
- libcurl4-openssl-dev
cache:
bundler: true
dire... | Add apt package to Travis CI environment | Add apt package to Travis CI environment
This is required to avoid SSL errors. | YAML | mit | jmlntw/jmln.tw,jmlntw/jmln.tw |
42d89f14f7eef4fed060e610514b7104157b178c | .travis.yml | .travis.yml | sudo: false
language: java
jdk: openjdk7
script:
- mvn clean deploy
- cd java-sdk/
- mvn site site:deploy
| sudo: false
language: java
jdk: openjdk7
script:
- mvn clean deploy
- cd java-sdk/
- mvn site site:deploy
branches:
only:
- develop
| Build only develop branch in Travis | Build only develop branch in Travis
| YAML | apache-2.0 | Sage-Bionetworks/BridgeJavaSDK,alxdarksage/BridgeJavaSDK,Sage-Bionetworks/BridgeJavaSDK,DwayneJengSage/BridgeJavaSDK,alxdarksage/BridgeJavaSDK,DwayneJengSage/BridgeJavaSDK |
f1e7bf871980f2e882d70511ba8a7a62bd14504e | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.3.1
before_install: gem install bundler -v 1.12.5
| sudo: false
language: ruby
rvm:
- 2.3.1
before_install: gem install bundler -v 1.12.5
notifications:
email:
on_success: never
on_failure: change
| Update Travis CI notification settings. | Update Travis CI notification settings.
| YAML | mit | ryanfields/carry_out,ryanfields/carry_out |
72bd247c427376217b3df7b1c65188fca95ef941 | .travis.yml | .travis.yml | language: objective-c
xcode_project: Project/NSData+GZIP.xcodeproj
matrix:
include:
- xcode_scheme: Tests OS X
xcode_sdk: macosx
- xcode_scheme: Tests iOS
xcode_sdk: iphonesimulator
osx_image: xcode7
sudo: false
cache: bundler
| language: objective-c
xcode_project: Project/NSData+GZIP.xcodeproj
matrix:
include:
- xcode_scheme: Tests OS X
xcode_sdk: macosx
- xcode_scheme: Tests iOS
xcode_sdk: iphonesimulator
osx_image: xcode8
sudo: false
cache: bundler
| Update Travis CI image to Xcode8 | Update Travis CI image to Xcode8
| YAML | mit | 1024jp/GzipSwift,1024jp/NSData-GZIP,1024jp/NSData-GZIP,1024jp/GzipSwift,1024jp/GzipSwift |
55c789527630ad400f1b2d18eddc150fcd9bafbc | .travis.yml | .travis.yml | language: php
env:
global:
- COMPOSER_ROOT_VERSION="4.2.x-dev"
matrix:
include:
- php: 5.6
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
- php: 7.0
env: DB=PGSQL PHPUNIT_TEST=1
- php: 7.1
env: DB=MYSQL PHPUNIT_TEST=1
- php: 7.2
env: DB=MYSQL PHPUNIT_TEST=1
before_script:
... | language: php
env:
global:
- COMPOSER_ROOT_VERSION="4.x-dev"
matrix:
include:
- php: 5.6
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
- php: 7.0
env: DB=PGSQL PHPUNIT_TEST=1
- php: 7.1
env: DB=MYSQL PHPUNIT_TEST=1
- php: 7.2
env: DB=MYSQL PHPUNIT_TEST=1
before_script:
-... | Update branch alias in Travis configuration | Update branch alias in Travis configuration
| YAML | bsd-3-clause | nyeholt/silverstripe-queuedjobs,andrewandante/silverstripe-queuedjobs,andrewandante/silverstripe-queuedjobs,nyeholt/silverstripe-queuedjobs,silverstripe-australia/silverstripe-queuedjobs,silverstripe-australia/silverstripe-queuedjobs |
f8beee9000466138e30560e841087b2a52b47b2a | .travis.yml | .travis.yml | before_script:
- "sh -e /etc/init.d/xvfb start"
- "bundle exec rake db:create db:migrate"
script: "DISPLAY=:99.0 bundle exec rspec ./**/spec"
notifications:
email:
- parndt@gmail.com
- ugis.ozolss@gmail.com
irc:
- "irc.freenode.org#refinerycms"
env:
- DB=postgres
- DB=mysql
rvm:
- 1.8.7
- 1.... | before_script:
- "ruby --version"
- "sh -e /etc/init.d/xvfb start"
- "bundle exec rake db:create db:migrate"
script: "DISPLAY=:99.0 bundle exec rspec ./**/spec"
notifications:
email:
- parndt@gmail.com
- ugis.ozolss@gmail.com
irc:
- "irc.freenode.org#refinerycms"
env:
- DB=postgres
- DB=mysql
... | Print out the ruby version we're using. | Print out the ruby version we're using.
| YAML | mit | simi/refinerycms,mkaplan9/refinerycms,trevornez/refinerycms,refinery/refinerycms,Retimont/refinerycms,refinery/refinerycms,kappiah/refinerycms,gwagener/refinerycms,gwagener/refinerycms,bricesanchez/refinerycms,LytayTOUCH/refinerycms,chrise86/refinerycms,mobilityhouse/refinerycms,louim/refinerycms,pcantrell/refinerycms,... |
3350839d2e7ae0c30714b1b2e1f6481bdae23fbf | .travis.yml | .travis.yml | script: "bundle exec rake db:migrate test"
rvm:
- 1.8.7
- 1.9.2
- jruby
- rbx
- ree
env: "RAILS_ENV=test"
| script: "bundle exec rake db:schema:load test"
rvm:
- 1.8.7
- 1.9.2
- jruby
- rbx
- ree
env: "RAILS_ENV=test"
| Use db:schema:load task instead of db:migrate | Use db:schema:load task instead of db:migrate
Migrations can break over time but schemas are forever.
| YAML | bsd-3-clause | openshift-quickstart/adopt-a-hydrant-openshift-quickstart,OpenTwinCities/adopt-a-tree,codeforamerica/adopt-a-siren,voyera/adopt-a-hydrant,friendlycode/adopt-a-hydrant,mapmeld/Adopt-a-Siren-Macon,friendlycode/adopt-a-hydrant,codeforboston/adopt-a-hydrant,billyfung/van-racks,eebbesen/adopt-a-tree,codeforamerica/adopt-a-h... |
f3284beab9cfd4cf4fbaaa0a848564885c7302a8 | .travis.yml | .travis.yml | language: python
dist: xenial
sudo: true
python:
- 3.6
- 3.7
install:
- pip install pipenv black
- pipenv install --dev
script:
- flake8 --version
- flake8 graphql tests
- black --version
- black graphql tests --check
- mypy --version
- mypy graphql
- pytest --version
... | language: python
dist: xenial
sudo: true
python:
- 3.6
- 3.7
install:
- pip install poetry
- poetry install
script:
- flake8 --version
- flake8 graphql tests
- black --version
- black graphql tests --check
- mypy --version
- mypy graphql
- pytest --version
- pytest --... | Replace pipenv with poetry in Travis config as well | Replace pipenv with poetry in Travis config as well
| YAML | mit | graphql-python/graphql-core |
ff348fccd9026db66124686be604476df1664ad2 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.8"
- "0.6"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] && npm conf set strict-ssl false || true'
| language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] && npm conf set strict-ssl false || true'
| Test in node 0.11 too | Test in node 0.11 too
| YAML | mit | ljharb/node-json-file,reggi/node-json-file,ljharb/json-file-plus |
90fda8789d402f05647c18f8cdf8e5c3d01692dd | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.4.4
- 2.5.1
- jruby-9.2.0.0
- ruby-head
- jruby-head
before_install:
- gem update --system
env:
global:
- JRUBY_OPTS=--dev
script:
- bundle exec rake ${TEST_SUITE:-test}
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: j... | language: ruby
rvm:
- 2.5.3
- 2.6.1
- jruby-9.2.0.0
- ruby-head
- jruby-head
before_install:
- gem update --system
env:
global:
- JRUBY_OPTS=--dev
script:
- bundle exec rake ${TEST_SUITE:-test}
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: j... | Drop Ruby 2.4 support for Rails 6 | Drop Ruby 2.4 support for Rails 6
| YAML | mit | gsamokovarov/web-console,rails/web-console,gsamokovarov/web-console,rails/web-console,rails/web-console,rails/web-console,gsamokovarov/web-console,gsamokovarov/web-console |
3bac5e11573eba4be10ad096b64e017e654ac5fd | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
env:
- DJANGO=Django==1.4.20
- DJANGO=Django==1.5.12
- DJANGO=Django==1.6.11
- DJANGO=Django==1.7.7
- DJANGO=Django==1.8
matrix:
exclude:
- python: 3.2
env: DJANGO=Django==1.4.20
- python: 3.3
env: DJANGO=Django==1.4.20
- py... | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
env:
- DJANGO=Django==1.4.20
- DJANGO=Django==1.5.12
- DJANGO=Django==1.6.11
- DJANGO=Django==1.7.8
- DJANGO=Django==1.8.1
matrix:
exclude:
- python: 3.2
env: DJANGO=Django==1.4.20
- python: 3.3
env: DJANGO=Django==1.4.2... | Test against Python 3.4 and latest Django releases | Test against Python 3.4 and latest Django releases
| YAML | bsd-3-clause | furious-luke/django-registration,matejkloska/django-registration,erinspace/django-registration,Geffersonvivan/django-registration,wda-hb/test,imgmix/django-registration,allo-/django-registration,stillmatic/django-registration,sergafts/django-registration,PSU-OIT-ARC/django-registration,alawnchen/django-registration,ser... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.