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
|
---|---|---|---|---|---|---|---|---|---|
982ad791f84c9081b6ef1e1fa0c89dce7378b671
|
.travis.yml
|
.travis.yml
|
---
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- rbx-2
matrix:
allow_failures:
- rvm: rbx-2
exclude:
- rvm: 1.9.3
env: DB=database.yml.postgresql
- rvm: 2.0.0
env: DB=database.yml.postgresql
- rvm: 2.1.8
env: DB=database.yml.postgresql
- rvm: 2.2.4
env: DB=database.yml.postgresql
- rvm: rbx-2
env: DB=database.yml.postgresql
- rvm: 1.9.3
env: DB=database.yml.mysql
- rvm: 2.0.0
env: DB=database.yml.mysql
- rvm: 2.1.8
env: DB=database.yml.mysql
- rvm: 2.2.4
env: DB=database.yml.mysql
- rvm: rbx-2
env: DB=database.yml.mysql
env:
global:
- DISPLAY=:99.0
matrix:
- DB=database.yml.mysql
- DB=database.yml.postgresql
- DB=database.yml.sqlite
before_install:
- sh -e /etc/init.d/xvfb start
- ./ci/add_mysql_gem.sh
before_script:
- cp config/$DB config/database.yml
- bundle exec rake db:create db:migrate
sudo: false
addons:
postgresql: "9.4"
|
---
language: ruby
rvm:
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- rbx-2
matrix:
allow_failures:
- rvm: rbx-2
exclude:
- rvm: 2.0.0
env: DB=database.yml.postgresql
- rvm: 2.1.8
env: DB=database.yml.postgresql
- rvm: 2.2.4
env: DB=database.yml.postgresql
- rvm: rbx-2
env: DB=database.yml.postgresql
- rvm: 2.0.0
env: DB=database.yml.mysql
- rvm: 2.1.8
env: DB=database.yml.mysql
- rvm: 2.2.4
env: DB=database.yml.mysql
- rvm: rbx-2
env: DB=database.yml.mysql
env:
global:
- DISPLAY=:99.0
matrix:
- DB=database.yml.mysql
- DB=database.yml.postgresql
- DB=database.yml.sqlite
before_install:
- sh -e /etc/init.d/xvfb start
- ./ci/add_mysql_gem.sh
before_script:
- cp config/$DB config/database.yml
- bundle exec rake db:create db:migrate
sudo: false
addons:
postgresql: "9.4"
|
Remove ruby 1.9.3 from Travis
|
Remove ruby 1.9.3 from Travis
rack attack requires >= 2.0.0
|
YAML
|
mit
|
mmb/meme_captain_web,mmb/meme_captain_web,mmb/meme_captain_web,mmb/meme_captain_web
|
d1651799cf37bb91fe1eac39712dcbe353343fc0
|
.travis.yml
|
.travis.yml
|
language: ruby
cache: bundler
rvm:
- 2.2.4
before_install:
- sh .travis/install_riakcs.sh
- gem install bundler
before_script:
- cp config.yml.example config.yml
script: bundle exec rake test
branches:
only:
- master
- stable
notifications:
email: false
webhooks:
urls:
- http://hook-juggler.herokuapp.com/hooks/travis
on_success: always
on_failure: always
services:
- riak
|
language: ruby
cache: bundler
rvm:
- 2.2.4
before_install:
- sh .travis/install_riakcs.sh
- gem install bundler
before_script:
- cp config.yml.example config.yml
script: bundle exec rake test
branches:
only:
- master
- stable
notifications:
email: false
webhooks:
urls:
- http://hook-juggler.herokuapp.com/hooks/travis
on_success: always
on_failure: always
|
Revert "Add riak service to Travis CI"
|
Revert "Add riak service to Travis CI"
This reverts commit d0dd4af3d942df347067cfaf0661beaadb402324.
|
YAML
|
mit
|
5apps/liquor-cabinet
|
dc0686059ae3b133026927a4a28008048667dede
|
.travis.yml
|
.travis.yml
|
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
matrix:
include:
- jdk: openjdk8
- jdk: openjdk11
- jdk: openjdk15
- jdk: openjdk-ea
allow_failures:
- jdk: openjdk-ea
script:
- mvn
after_success:
- mvn -B -V clean test jacoco:report coveralls:report -Ptravis-jacoco --no-transfer-progress
|
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
matrix:
include:
- jdk: openjdk8
- jdk: openjdk11
- jdk: openjdk16
- jdk: openjdk-ea
allow_failures:
- jdk: openjdk-ea
script:
- mvn
after_success:
- mvn -B -V clean test jacoco:report coveralls:report -Ptravis-jacoco --no-transfer-progress
|
Replace Java 15 with Java 16 in Travis CI.
|
Replace Java 15 with Java 16 in Travis CI.
|
YAML
|
apache-2.0
|
mirasrael/commons-csv,apache/commons-csv,apache/commons-csv,mirasrael/commons-csv
|
3afe492816beb35662448f364ed807d319e042c4
|
.travis.yml
|
.travis.yml
|
language: ruby
cache: bundler
sudo: false
rvm:
- 2.3
notifications:
email: false
hipchat:
rooms:
secure: KbZjr/brG9QE4jeqOXHXlDDmnLRy/yE8flTtv9xsKn5jUxJXMXp8NO37Yl/K2L957J2xbI/U1p6kABM5oi0W5MGtlu5yLrzNoA97YecUs7z/ynRVHf3FcFM5VhcmVTQI89cZ2Z+/oj0DBuodc+dEo4Qs61LTwEKZCOijAxzQDQo=
template:
- "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}"
notify: true
deploy:
provider: rubygems
api_key:
secure: ct0p0GoB7SUlhddoxaKaifPPtP/B0cIwaiGRnN9SHMzJH5rRNr8WRDA0/RyrpiGatrTlLolUWZpuz437oXpwUbOFoLJGvHSg6S/DA8VPqXmo0G41XwGw7TbN1APcM3zybJSymvnQ99T8wAb3AQYYnwt15VrI8lVj5/3Mdk4aDLA=
gem: cb-api
on:
branch: master
repo: careerbuilder/ruby-cb-api
|
language: ruby
cache: bundler
sudo: false
rvm:
- 2.3
- 2.4
- 2.5
notifications:
email: false
hipchat:
rooms:
secure: KbZjr/brG9QE4jeqOXHXlDDmnLRy/yE8flTtv9xsKn5jUxJXMXp8NO37Yl/K2L957J2xbI/U1p6kABM5oi0W5MGtlu5yLrzNoA97YecUs7z/ynRVHf3FcFM5VhcmVTQI89cZ2Z+/oj0DBuodc+dEo4Qs61LTwEKZCOijAxzQDQo=
template:
- "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}"
notify: true
deploy:
provider: rubygems
api_key:
secure: ct0p0GoB7SUlhddoxaKaifPPtP/B0cIwaiGRnN9SHMzJH5rRNr8WRDA0/RyrpiGatrTlLolUWZpuz437oXpwUbOFoLJGvHSg6S/DA8VPqXmo0G41XwGw7TbN1APcM3zybJSymvnQ99T8wAb3AQYYnwt15VrI8lVj5/3Mdk4aDLA=
gem: cb-api
on:
branch: master
repo: careerbuilder/ruby-cb-api
|
Test against Ruby 2.4 and 2.5
|
[CI] Test against Ruby 2.4 and 2.5
|
YAML
|
apache-2.0
|
careerbuilder/ruby-cb-api,cbdr/ruby-cb-api
|
f3c04ad6905fbc2116d2a7b1df4732dc1a8620e9
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '12'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
|
sudo: false
language: node_js
node_js:
- '14'
- '12'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
|
Build with Node.js 14 on Travis CI.
|
Build with Node.js 14 on Travis CI.
Closes #301.
|
YAML
|
mit
|
bigeasy/arguable
|
c8cfc1c8a66727fae3623ac6f676ab446ab7d75c
|
.travis.yml
|
.travis.yml
|
sudo: false
env:
- CXX=g++-4.8
language: node_js
node_js:
- 0.8
- 0.10
- 0 #Latest 0.x.x build.
- 3 #Latest io.js build.
- 4.2.4 #LTS
- stable
matrix:
allow_failures:
- node_js: 0.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libx11-dev
- zlib1g-dev
- libpng12-dev
- libxtst-dev
- g++-4.8
- gcc-4.8
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
|
sudo: false
env:
- CXX=g++-4.8
language: node_js
node_js:
- 0.8
- 0.10
- 0 #Latest 0.x.x build.
- 3 #Latest io.js build.
- 4.2.4 #LTS
- stable
matrix:
allow_failures:
- node_js: 0.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libx11-dev
- zlib1g-dev
- libpng12-dev
- libxtst-dev
- g++-4.8
- gcc-4.8
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/e737dd5170be50cdba95
on_success: change
on_failure: always
on_start: never
|
Add notifications to TravisCI builds.
|
Add notifications to TravisCI builds.
|
YAML
|
mit
|
BHamrick1/robotjs,BHamrick1/robotjs,octalmage/robotjs,octalmage/robotjs,hristoterezov/robotjs,BHamrick1/robotjs,octalmage/robotjs,hristoterezov/robotjs,hristoterezov/robotjs,hristoterezov/robotjs,octalmage/robotjs,BHamrick1/robotjs
|
5f4da504d51e6a0d2eca61bc1b9750152a23573f
|
.travis.yml
|
.travis.yml
|
language: php
php:
- '5.6'
- '7.0'
script: phpunit --bootstrap ./vendor/autoload.php ./src/Trident/tests/
|
language: php
php:
- '5.6'
- '7.0'
before_install:
- composer self-update
- composer install
script: phpunit --bootstrap ./vendor/autoload.php ./src/Trident/tests/
|
Make Travis update composer and install dependencies.
|
Make Travis update composer and install dependencies.
|
YAML
|
bsd-3-clause
|
AndrewMontagne/Trident,AndrewMontagne/Trident
|
6f63f3199f4eaf388968492a5d9cee63d403d693
|
.travis.yml
|
.travis.yml
|
language: cpp
sudo: required
os:
- osx
- linux
addons:
apt:
packages:
- build-essential
- python-dev-
- libxml2-dev
- libxslt1-dev
install:
- sudo pip install --upgrade pip wheel
script:
- python -V
- gcc -v
- ls -al
- mkdir wheels
- pip wheel pyahocorasick intbitset bitarray --wheel-dir=wheels
- pip wheel lxml==3.6.0 --wheel-dir=wheels
- ls -al
- ls -al wheels
deploy:
provider: bintray
file: bintray_travis.json
user: pombreda
key:
secure: l8uNfriu2L+rHRRBsR8R6pGHFt+r1Rymfk+1pOKdJTR8NjgBAYEAxPU6IPr+drH1WheXGVFoWttWTcplvo8Xmc+skUMXKUnjNCgrRE0rYKqjdHmEBMKUAjAfZ3hq48ayjRm3FvAjPwcWbTD0siBjK1qm4SD7TBEEC28XuJhT1oE=
|
language: cpp
sudo: required
os:
- osx
- linux
addons:
apt:
packages:
- build-essential
- python-dev-
- libxml2-dev
- libxslt1-dev
install:
- sudo pip install --upgrade pip wheel
script:
- python -V
- gcc -v
- ls -al
- mkdir wheels
- pip wheel pyahocorasick --wheel-dir=wheels
- pip wheel intbitset --wheel-dir=wheels
- pip wheel bitarray --wheel-dir=wheels
- pip wheel lxml==3.6.0 --wheel-dir=wheels
- ls -al
- ls -al wheels
deploy:
provider: bintray
file: bintray_travis.json
user: pombreda
key:
secure: l8uNfriu2L+rHRRBsR8R6pGHFt+r1Rymfk+1pOKdJTR8NjgBAYEAxPU6IPr+drH1WheXGVFoWttWTcplvo8Xmc+skUMXKUnjNCgrRE0rYKqjdHmEBMKUAjAfZ3hq48ayjRm3FvAjPwcWbTD0siBjK1qm4SD7TBEEC28XuJhT1oE=
|
Build one wheel at a time
|
Build one wheel at a time
|
YAML
|
cc0-1.0
|
pombreda/thirdparty
|
65b4de7f5f526b48d2b003022f27ce96ede2fb9e
|
kubernetes/quota-mem-cpu-dev.yaml
|
kubernetes/quota-mem-cpu-dev.yaml
|
apiVersion: v1
kind: ResourceQuota
metadata:
name: mem-cpu-dev
spec:
hard:
requests.cpu: "1"
requests.memory: 4Gi
limits.cpu: "4"
limits.memory: 16Gi
|
apiVersion: v1
kind: ResourceQuota
metadata:
name: mem-cpu-dev
spec:
hard:
requests.cpu: "2"
requests.memory: 4Gi
limits.cpu: "4"
limits.memory: 16Gi
|
Update quota to avoid error
|
Update quota to avoid error
|
YAML
|
apache-2.0
|
RNAcentral/rnacentral-webcode,RNAcentral/rnacentral-webcode,RNAcentral/rnacentral-webcode,RNAcentral/rnacentral-webcode
|
7a0e0e124e9583da3ee79e8afd173bce9f283a27
|
.travis.yml
|
.travis.yml
|
language: java
script: ./mvnw verify
after_success:
- ./mvnw clean verify jacoco:report coveralls:report
jdk:
- oraclejdk8
branches:
only:
- master
|
language: java
script: ./mvnw verify
after_success:
- ./mvnw clean verify jacoco:report coveralls:report
jdk:
- openjdk8
branches:
only:
- master
|
Replace Oracle JDK with OpenJDK in Travis builds
|
Replace Oracle JDK with OpenJDK in Travis builds
|
YAML
|
apache-2.0
|
Intera/urlaubsverwaltung,Intera/urlaubsverwaltung,Intera/urlaubsverwaltung
|
423921313270ae58b7856398b0193fac18d04e90
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 0.8
- 0.9
- 0.10
|
language: node_js
node_js:
- 0.6
- 0.7
- 0.8
- 0.9
- 0.10
|
Test on Node 0.6 and 0.7 as newlines are no longer part of the output
|
Test on Node 0.6 and 0.7 as newlines are no longer part of the output
|
YAML
|
mit
|
buschtoens/gulp-emblem,lazd/gulp-handlebars,fuseelements/gulp-ember-handlebars
|
d050015e0871119be31ef078cec9ce35091e6726
|
.travis.yml
|
.travis.yml
|
language: cpp
sudo: required
dist: trusty
before_script:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update
- sudo apt-get install g++-5 cmake libboost-all-dev llvm-3.6-dev llvm-3.6-doc llvm-3.6-runtime llvm-3.6 llvm-3.6-tools -y
- sudo pip install --user git+git://github.com/eddyxu/cpp-coveralls.git
script:
- cmake . -DCMAKE_CXX_FLAGS="-fprofile-arcs -ftest-coverage" -DCMAKE_CXX_COMPILER=g++-5
- make
- make test
- coveralls
env: COMPILER=g++-4.9
|
language: cpp
sudo: required
dist: trusty
before_script:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update
- sudo apt-get install g++-5 cmake libboost-all-dev llvm-3.5-dev llvm-3.5-doc llvm-3.5-runtime llvm-3.5 llvm-3.5-tools -y
- sudo pip install --user git+git://github.com/eddyxu/cpp-coveralls.git
script:
- cmake . -DCMAKE_CXX_FLAGS="-fprofile-arcs -ftest-coverage" -DCMAKE_CXX_COMPILER=g++-5
- make
- make test
- coveralls
env: COMPILER=g++-4.9
|
Revert to llvm 3.5 because hopfully those ubuntu packages aren't broken
|
Revert to llvm 3.5 because hopfully those ubuntu packages aren't broken
|
YAML
|
apache-2.0
|
GuapoTaco/chigraph,chigraph/chigraph,russelltg/chigraph,chigraph/chigraph,russelltg/chigraph,GuapoTaco/chigraph,chigraph/chigraph
|
00768787511b0e1c4d0da264fdaafc30d820563f
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.2.2
- 2.3
- 2.4
- 2.5
- 2.6
before_install: gem install bundler -v 1.11.2
addons:
code_climate:
repo_token: 0b8e41ecbc26637a7db4e6e9d4581c445441674f689016ab45fb5c51242b59bf
after_success:
- bundle exec codeclimate-test-reporter
|
language: ruby
rvm:
- 2.4
- 2.5
- 2.6
before_install: gem install bundler -v 1.11.2
addons:
code_climate:
repo_token: 0b8e41ecbc26637a7db4e6e9d4581c445441674f689016ab45fb5c51242b59bf
after_success:
- bundle exec codeclimate-test-reporter
|
Support ruby 2.4 and up
|
Support ruby 2.4 and up
|
YAML
|
mit
|
maartenvanvliet/moneybird,maartenvanvliet/moneybird
|
db94b05d04eb9b0df6afae343a64025528625bcd
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-2.1.1
- ruby-head
matrix:
allow_failures:
- rvm: 1.9.2
- rvm: ruby-head
- rvm: rbx-19mode
notifications:
irc: "irc.freenode.org#adhearsion"
|
language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-2.1.1
- ruby-head
matrix:
allow_failures:
- rvm: 1.9.2
- rvm: ruby-head
- rvm: rbx-2.1.1
notifications:
irc: "irc.freenode.org#adhearsion"
|
Allow rbx to fail on CI
|
[CS] Allow rbx to fail on CI
|
YAML
|
mit
|
system123/punchblock,adhearsion/punchblock
|
a074169de5ea596f19a0b694030a4502b443fba5
|
.travis.yml
|
.travis.yml
|
language: php
git:
depth: 5
php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
matrix:
include:
- php: hhvm-3.18
dist: trusty
sudo: required
before_script:
- if [[ $TRAVIS_PHP_VERSION =~ ^hhvm ]]; then echo "hhvm.enable_short_tags = On" >> /etc/hhvm/php.ini; fi
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- vendor/bin/phpunit --verbose --coverage-text --coverage-clover=coverage.xml
after_script:
- ./cc-test-reporter after-build --exit-code $EXIT_CODE
after_success:
- bash <(curl -s https://codecov.io/bash)
addons:
code_climate:
repo_token: d16eac66156a1f7a995de17964d4ffdd152821ab52e8470b5dbd5d3406406836
|
language: php
git:
depth: 5
php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
matrix:
include:
- php: hhvm-3.18
dist: trusty
sudo: required
before_script:
- if [[ $TRAVIS_PHP_VERSION =~ ^hhvm ]]; then echo "hhvm.enable_short_tags = On" >> /etc/hhvm/php.ini; fi
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- vendor/bin/phpunit --verbose --coverage-text --coverage-clover=coverage.xml
after_script:
- ./cc-test-reporter after-build --exit-code $?
after_success:
- bash <(curl -s https://codecov.io/bash)
addons:
code_climate:
repo_token: d16eac66156a1f7a995de17964d4ffdd152821ab52e8470b5dbd5d3406406836
|
Set the EXIT_CODE for CodeClimate reporter
|
Set the EXIT_CODE for CodeClimate reporter
|
YAML
|
mit
|
pug-php/pug,kylekatarnls/jade-php,kylekatarnls/jade-php,pug-php/pug,kylekatarnls/jade-php,pug-php/pug
|
be76c3f668d50017e634d0132187c73cb84dc484
|
.travis.yml
|
.travis.yml
|
language: cpp
compiler:
- gcc
- clang
# Change this to your needs
script: mkdir build && cd build && cmake .. && make && make packege
|
language: cpp
compiler:
- gcc
- clang
# Change this to your needs
script: mkdir build && cd build && cmake .. && make && make package
|
Correct a typo in the Travis CI setup script
|
Correct a typo in the Travis CI setup script
|
YAML
|
agpl-3.0
|
kleag/qshowpos
|
b5dbdc47bf7541eaa4d4b2cbd1525e13ebbc9eab
|
.travis.yml
|
.travis.yml
|
language: node_js
dist: trusty
sudo: required
node_js: stable
env:
- PATH=$HOME/purescript:$PATH
install:
- TAG=$(wget -q -O - https://github.com/purescript/purescript/releases/latest --server-response --max-redirect 0 2>&1 | sed -n -e 's/.*Location:.*tag\///p')
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
- chmod a+x $HOME/purescript
- npm install -g bower
- npm install
- bower install --production
script:
- npm run -s build
- bower install
- npm run -s test
after_success:
- >-
test $TRAVIS_TAG &&
echo $GITHUB_TOKEN | pulp login &&
echo y | pulp publish --no-push
|
language: node_js
dist: trusty
sudo: required
node_js: stable
env:
- PATH=$HOME/purescript:$PATH
install:
- TAG=$(basename $(curl --location --silent --output /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest))
- curl --location --output $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
- chmod a+x $HOME/purescript
- npm install -g bower
- npm install
- bower install --production
script:
- npm run -s build
- bower install
- npm run -s test
after_success:
- >-
test $TRAVIS_TAG &&
echo $GITHUB_TOKEN | pulp login &&
echo y | pulp publish --no-push
|
Fix the retrieval of the latest compiler version tag
|
Fix the retrieval of the latest compiler version tag
See https://discourse.purescript.org/t/new-404-ci-failures-in-core-libraries/1225.
|
YAML
|
bsd-3-clause
|
purescript/purescript-st
|
e0fe2abf33db28d642fd7643a4429d79ffe4523f
|
.travis.yml
|
.travis.yml
|
language: php
php:
- '7.0'
# Setup anaconda
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda2/bin:$PATH
- conda update --yes conda
install:
- conda install --yes numpy scipy
- pip install biom-format h5py --user
- composer install
- npm install
- node_modules/bower/bin/bower install
services:
- postgresql
addons:
postgresql: "9.4"
before_script:
- cp test/php/.travis.config.php test/php/config.php
script:
- phpunit
- npm test
|
language: php
php:
- '7.0'
# Setup anaconda
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda2/bin:$PATH
- conda update --yes conda
install:
- conda install --yes numpy scipy
- pip install biom-format --user
- pip install biom-format h5py --upgrade --user
- composer install
- npm install
- node_modules/bower/bin/bower install
services:
- postgresql
addons:
apt:
packages:
- python-h5py
postgresql: "9.4"
before_script:
- cp test/php/.travis.config.php test/php/config.php
script:
- phpunit
- npm test
|
Install h5py via apt and upgrade via pip
|
Install h5py via apt and upgrade via pip
|
YAML
|
mit
|
molbiodiv/fennec,molbiodiv/fennec,molbiodiv/fennec,molbiodiv/fennec,molbiodiv/fennec
|
2f97baf64e6f1489d6eed1bbeaaa5ab0e7327b62
|
.travis.yml
|
.travis.yml
|
language: c
os:
- linux
- osx
compiler:
- clang
- gcc
matrix:
allow_failures:
- compiler: gcc
sudo: false
script:
- python minipkg.py
- source ~/.bash_profile
- python build.py < supported-packages.txt
- pkg_info
after_failure:
- cat *-log.txt
|
language: c
os:
- linux
- osx
compiler:
- clang
- gcc
matrix:
allow_failures:
- compiler: gcc
sudo: false
script:
- python minipkg.py
- source ~/.bash_profile
after_success:
- python build.py < supported-packages.txt
- pkg_info
after_failure:
- cat *-log.txt
|
Test building supported packages if successful.
|
Test building supported packages if successful.
|
YAML
|
isc
|
eliteraspberries/minipkg,eliteraspberries/minipkg
|
b99ccc8a03c2129654f123a981cec87d3a4ee9a4
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
before_install:
# - sudo apt-get update -qq
- sudo apt-get install -qq libssl-dev
install:
- |
git clone git://github.com/bitcoin/secp256k1.git libsecp256k1 \
&& cd libsecp256k1 \
&& ./autogen.sh && ./configure && make && sudo make install \
&& cd ..
- |
cd secp256k1 \
&& phpize && ./configure && make && sudo make install \
&& cd ..
- composer update
before_script:
- php-config || true
- phpenv rehash
- phpenv version-name
script:
- |
cd libsecp256k1 \
&& ./tests \
&& cd ..
- php -dextension=secp256k1.so vendor/phpunit/phpunit/phpunit --debug tests/
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/b3be9256c50203ac55c1
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.3
- 5.4
- 5.5
- 5.6
before_install:
# - sudo apt-get update -qq
- sudo apt-get install -qq libssl-dev
install:
- |
wget https://github.com/bitcoin/secp256k1/archive/4c63780710351ffcc52341497e3ca0e518fbad79.zip \
&& unzip 4c63780710351ffcc52341497e3ca0e518fbad79.zip \
&& cd libsecp256k1 \
&& ./autogen.sh && ./configure && make && sudo make install \
&& cd ..
- |
cd secp256k1 \
&& phpize && ./configure && make && sudo make install \
&& cd ..
- composer update
before_script:
- php-config || true
- phpenv rehash
- phpenv version-name
script:
- |
cd libsecp256k1 \
&& ./tests \
&& cd ..
- php -dextension=secp256k1.so vendor/phpunit/phpunit/phpunit --debug tests/
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/b3be9256c50203ac55c1
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
|
Use version of libsecp256k1 before introduction of public key / signature types
|
Use version of libsecp256k1 before introduction of public key / signature types
|
YAML
|
unlicense
|
afk11/secp256k1-php,afk11/secp256k1-php,Bit-Wasp/secp256k1-php,Bit-Wasp/secp256k1-php,afk11/secp256k1-php,afk11/secp256k1-php,Bit-Wasp/secp256k1-php,afk11/secp256k1-php,Bit-Wasp/secp256k1-php,Bit-Wasp/secp256k1-php
|
8c491330c61b01baedacf73fb35c2eaba93b8d11
|
.travis.yml
|
.travis.yml
|
language: haxe
cache:
directories:
- $HOME/.m2
addons:
apt:
packages:
- protobuf-compiler
before_install:
- wget http://download.macromedia.com/pub/flex/sdk/flex_sdk_3.6.zip
- unzip -d flex_sdk flex_sdk_3.6.zip
install:
- haxelib install haxelib-run
- git clone --branch v2.4.1 --depth 1 https://github.com/google/protobuf.git
- |
echo '
PROTOBUF_VERSION=2.4.1
PROTOBUF_DIR=protobuf
PROTOC=protoc
ifeq ($(OS), Windows_NT)
BAT=.bat
EXE=.exe
PATH_SEPARATOR=;
else
PATH_SEPARATOR=:
endif
COMPC=flex_sdk/bin/compc$(BAT)
MXMLC=flex_sdk/bin/mxmlc$(BAT)
ASDOC=flex_sdk/bin/asdoc$(BAT)
FDB=flex_sdk/bin/fdb$(BAT)
MVN=mvn
JAVAC=javac
JAR=jar
HAXE=haxe
' > config.mk
script:
- make
|
language: haxe
cache:
directories:
- $HOME/.m2
addons:
apt:
packages:
- protobuf-compiler
before_install:
- wget http://download.macromedia.com/pub/flex/sdk/flex_sdk_3.6.zip
- unzip -d flex_sdk flex_sdk_3.6.zip
install:
- haxelib install haxelib-run
- git clone --branch v2.4.1 --depth 1 https://github.com/google/protobuf.git
- |
echo '
PROTOBUF_VERSION=2.4.1
PROTOBUF_DIR=protobuf
ifeq ($(OS), Windows_NT)
BAT=.bat
EXE=.exe
PATH_SEPARATOR=;
else
PATH_SEPARATOR=:
endif
COMPC=flex_sdk/bin/compc$(BAT)
MXMLC=flex_sdk/bin/mxmlc$(BAT)
ASDOC=flex_sdk/bin/asdoc$(BAT)
FDB=flex_sdk/bin/fdb$(BAT)
MVN=mvn
JAVAC=javac
JAR=jar
HAXE=haxe
' > config.mk
- make protobuf/src/protoc
script:
- make
|
Revert "Use the protoc executable from Ubuntu"
|
Revert "Use the protoc executable from Ubuntu"
|
YAML
|
bsd-2-clause
|
Atry/protoc-gen-as3
|
0e87e345d40badda9cd17f9e007f11789796b3c6
|
.travis.yml
|
.travis.yml
|
sudo: required
language:
- python
- node_js
python:
- "2.7"
- "3.3"
node_js:
- "node"
cache:
directories:
# cache pylint stat files:
- $HOME/.pylint.d
install:
# install dev/test dependencies:
- bash scripts/install.sh
script:
# run tests:
- bash scripts/run_tests.sh
notifications:
# disable all email build notifications:
email: false
|
dist: trusty
sudo: required
addons:
sonarcloud:
organization: "jonlabelle-github"
token:
secure: "EfB1NODLgc/Sp8JGzckrrxLPWB3x/mmfujMAMNBpLSbMDTn6tWdG7PKrOS5VNBlv/UtkSJgJ3VJkDA7A0IS8IxAdy1fxRBK/XB1Ws/OAh8m25/3Unm05PBGLOtyZlgup3jUzWm7pLtz+TLGLcvp+Z+RD80BM9Ck6dDZZrDBeImw9vwINebHGbbwrAUK07vqwl0BCrTmAWwILyPXLO4vlXtJyZeiUIVP2xaBXXG0rjpmy8Re4VIs/BClkGVAa5R0hKZAq5lsFavMXROLeUQyJd4axqsXY9/btCBGxvFFZW39OZPtZvAKTsvtbmyWwg8YgkhUx8bbEu6IkEgJKFZfrZEdPqWmQGH97fMVR2N8vl0ln0n0HHGtjGuXxtK3pWgp20Texa7BR+pMJRZkd/hVdXdKbQ/5og4ZwGZUwP//Ct9Mhq9gJ5dzYNsYx9vIsT6O++71jQM6zlETHpRjzBByt4BDOl6eHSDw1yqWqBJL++Wci64jE9HQFvflgVywCzQU4O0b0fLZcn/A2/d+b6dYF8yxpS26ZQ0yUotCBhbRMzHTqENemMAyyyuJgtdkEcH0l2j6ZmFAWWDgfus/H6cYM52mLUcu6lFgKzl6IRIrBUq4E4jEiU7J/DYRpFvY2/5xoWeJ11E6oOPCr+M3khHLArV221KLqFWwI/qTuy1hA1VY="
# jdk required by sonar-scanner:
jdk:
- oraclejdk8
language:
- python
- node_js
python:
- "2.7"
- "3.3"
node_js:
- "node"
cache:
directories:
- $HOME/.pylint.d
- $HOME/.sonar/cache
install:
- bash scripts/install.sh
script:
- bash scripts/run_tests.sh
- sonar-scanner
notifications:
email: false
|
Add sonar scan task to Travis build
|
Add sonar scan task to Travis build
|
YAML
|
mit
|
jonlabelle/SublimeJsPrettier,jonlabelle/SublimeJsPrettier
|
b8814f2577482974876b992a3f46e01eca096623
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.3
- tip
script:
- go test -v ./...
|
language: go
go:
- 1.3
- tip
script:
- go test -v ./...
notifications:
slack:
secure: YyKza3/7/PKJ5b+zIffDS0WNCdW03zBWg1A/ABqIXcR+sqkYJcaKVOg/PpfmliV3DMTg5Hkbegx4DI+O/zjGMP4v0dPjxK7jS4fkHRdlh4nocJWoxWJvLMWnGy1HnxIBhEWBwWlsgyTMb4ujujzbCk+4M25xKP+WHP+cAQtfTxQF9beZOjTzWENaIoW5SweV0RrtKrLkDROol4XWoRZF2vtMfemu/ovEEZ+u9o793SNceYtYjjM2X2MtBWpb0xoktBo0yy12zbjKaPjId34zF6PoED4sxhqSsl7jTEP4H1WAEFBzbGGqR0ewpJ4dhzbL1g2SF8RKtAlpv7NjZ1504e2R+rnis7fLaSyy5ZlMYIyeEpnYYcw6bUtBlApsBuwjl51FGBpygKzznWRERl/poDJ27kluQmVBmoS6OHXRpQs6PV0YXrv9nC8iz3tG5zfPNJQ0PvVQi3j6poET5/fal1inq+/cFWnyDpByCKhcq3V0r9atYDzvn2pz7Ebxt3Xrlzf4c5cz6iQ7KP7CJ4UHs0F37Y31FBuxLx73eye7iHAiYJms/mjAM80ykOqk4aKY7/AHrDOzsHPP/A2VZP8KGOiK6PJ0MUM/KSzHovaS7dLEq/Z73c4SuXdQiST9AYLZF3anbmpu+5Aw4CRq6zE6g3xUS55drgja5YF4nI/ujWI=
|
Add slack notifications to the ableton channel for builds
|
Add slack notifications to the ableton channel for builds
|
YAML
|
bsd-3-clause
|
AbletonAG/go-travis,Ableton/go-travis
|
a7c242bb8a53c81a89ce8fb60f4639692d079b58
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- rbx
- ree
|
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
|
Test in both 1.8 and 1.9 mode on JRuby and Rubinius
|
Test in both 1.8 and 1.9 mode on JRuby and Rubinius
|
YAML
|
mit
|
seuros/gems,rubygems/gems
|
a3b353ce541b376e8f70a675abf2327606cdd4b6
|
.travis.yml
|
.travis.yml
|
sudo: false
language: java
env:
global:
- LDFLAGS=-L/tmp/proto3-a2/lib
- CXXFLAGS=-I/tmp/proto3-a2/include
- LD_LIBRARY_PATH=/tmp/proto3-a2/lib
- PATH=/tmp/proto3-a2/bin:$PATH
before_install:
- buildscripts/make_dependencies.sh # build protoc into /tmp/proto3-a2
- mkdir -p $HOME/.gradle
- echo "checkstyle.ignoreFailures=false" >> $HOME/.gradle/gradle.properties
- echo "org.gradle.parallel=true" >> $HOME/.gradle/gradle.properties
jdk:
- oraclejdk8
os:
- linux
branches:
only:
- master
notifications:
email: false
cache:
directories:
- /tmp/proto3-a2
- $HOME/.m2
|
sudo: false
language: java
env:
global:
- LDFLAGS=-L/tmp/proto3-a2/lib
- CXXFLAGS=-I/tmp/proto3-a2/include
- LD_LIBRARY_PATH=/tmp/proto3-a2/lib
- PATH=/tmp/proto3-a2/bin:$PATH
before_install:
- buildscripts/make_dependencies.sh # build protoc into /tmp/proto3-a2
- mkdir -p $HOME/.gradle
- echo "checkstyle.ignoreFailures=false" >> $HOME/.gradle/gradle.properties
jdk:
- oraclejdk8
os:
- linux
branches:
only:
- master
notifications:
email: false
cache:
directories:
- /tmp/proto3-a2
- $HOME/.m2
|
Disable Travis parallel building to reduce memory usage
|
Disable Travis parallel building to reduce memory usage
We were seeing errors on Travis like:
> Process 'Gradle Test Executor 2' finished with non-zero exit value 137
That doesn't make much sense, other than maybe the OOM killer killing
our processes. Turning off parallel execution seemed to fix the problem,
so we'll just assume memory was the actual problem and doing fewer
things in parallel reduces our maximum memory usage.
Travis documentation seems to agree with that being a likely cause:
http://docs.travis-ci.com/user/common-build-problems/#My-build-script-is-killed-without-any-error
|
YAML
|
apache-2.0
|
simonhorlick/grpc-java,ejona86/grpc-java,madongfly/grpc-java,grpc/grpc-java,ejona86/grpc-java,pieterjanpintens/grpc-java,eonezhang/grpc-java,elandau/grpc-java,simonhorlick/grpc-java,winstar/grpc-java,madongfly/grpc-java,conchlee/grpc-java,aglne/grpc-java,LuminateWireless/grpc-java,conchlee/grpc-java,joshuabezaleel/grpc-java,wrwg/grpc-java,eamonnmcmanus/grpc-java,dapengzhang0/grpc-java,madongfly/grpc-java,wyxacc/grpc-java,nmittler/grpc-java,aglne/grpc-java,huangsihuan/grpc-java,zhangkun83/grpc-java,LuminateWireless/grpc-java,moujian/grpc-java,zpencer/grpc-java,zhangkun83/grpc-java,moujian/grpc-java,wyxacc/grpc-java,nmittler/grpc-java,zhangkun83/grpc-java,eamonnmcmanus/grpc-java,grpc/grpc-java,rmichela/grpc-java,eonezhang/grpc-java,carl-mastrangelo/grpc-java,jcanizales/grpc-java,nickethier/grpc-java,wrwg/grpc-java,conchlee/grpc-java,carl-mastrangelo/grpc-java,jcanizales/grpc-java,vampiregod1996/grpc-java,huangsihuan/grpc-java,nickethier/grpc-java,winstar/grpc-java,dapengzhang0/grpc-java,mingfly/grpc-java,eamonnmcmanus/grpc-java,yangjae/grpc-java,ejona86/grpc-java,LuminateWireless/grpc-java,ejona86/grpc-java,rmichela/grpc-java,pieterjanpintens/grpc-java,dapengzhang0/grpc-java,stanley-cheung/grpc-java,ybv/grpc-java,vampiregod1996/grpc-java,rmichela/grpc-java,elandau/grpc-java,simonhorlick/grpc-java,fengshao0907/grpc-java,louiscryan/grpc-java,anuraaga/grpc-java,zhangkun83/grpc-java,mingfly/grpc-java,pieterjanpintens/grpc-java,fengshao0907/grpc-java,zpencer/grpc-java,stanley-cheung/grpc-java,carl-mastrangelo/grpc-java,simonhorlick/grpc-java,moujian/grpc-java,joshuabezaleel/grpc-java,mingfly/grpc-java,anuraaga/grpc-java,carl-mastrangelo/grpc-java,grpc/grpc-java,elandau/grpc-java,eonezhang/grpc-java,zpencer/grpc-java,grpc/grpc-java,zpencer/grpc-java,huangsihuan/grpc-java,pieterjanpintens/grpc-java,jcanizales/grpc-java,yangjae/grpc-java,ybv/grpc-java,winstar/grpc-java,wrwg/grpc-java,rmichela/grpc-java,louiscryan/grpc-java,stanley-cheung/grpc-java,joshuabezaleel/grpc-java,wyxacc/grpc-java,anuraaga/grpc-java,yangjae/grpc-java,vampiregod1996/grpc-java,stanley-cheung/grpc-java,dapengzhang0/grpc-java,fengshao0907/grpc-java,elandau/grpc-java,aglne/grpc-java,ybv/grpc-java,nmittler/grpc-java,louiscryan/grpc-java,nickethier/grpc-java
|
111d756896d4505cbfe92aac4f981e72e6e70531
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.1
- 7.2
- 7.3
before_install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && (cd && source ~/.nvm/nvm.sh) && nvm install
- nvm use
- npm install -g [email protected]
install:
- php composer.phar install
- nvm use
- npm install
- gulp --production
script:
- vendor/bin/phpunit
|
language: php
php:
- 7.1
- 7.2
- 7.3
before_install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && (cd && source ~/.nvm/nvm.sh) && nvm install
install:
- php composer.phar install
- nvm use
- npm install
- npm run prod
script:
- vendor/bin/phpunit
|
Update Travis CI config for Laravel Mix
|
Update Travis CI config for Laravel Mix
Instead of running Gulp, use the Mix NPM script.
|
YAML
|
mit
|
aag/fillmysuitcase,aag/fillmysuitcase,aag/fillmysuitcase
|
2fcee18a5638ec29efb8082c4a93e1d3ef86bf59
|
.travis.yml
|
.travis.yml
|
language: c
sudo: required
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh
script:
- bash -ex .travis-ci.sh
env:
- OCAML_VERSION=4.02 PACKAGE=bulletml
|
language: c
sudo: required
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh
script:
- bash -ex .travis-ci.sh
env:
- OCAML_VERSION=4.02 PACKAGE=bulletml
- OCAML_VERSION=4.03 PACKAGE=bulletml
- OCAML_VERSION=latest PACKAGE=bulletml
|
Add more versions to env matrix
|
Add more versions to env matrix
|
YAML
|
bsd-2-clause
|
emillon/bulletml,emillon/bulletml
|
73c82714db4ad06daee402a7e5791bb5c251aadf
|
.travis.yml
|
.travis.yml
|
# .travis.yml file based on:
# https://gist.github.com/dan-blanchard/7045057
language: python
python:
- "3.5"
- "3.6"
install:
# Setup anaconda. See http://conda.pydata.org/docs/travis.html
- 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
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
# Create conda environment with dependencies
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib h5py pandas networkx cffi
- source activate test-environment
- pip install git+https://github.com/BBN-Q/Adapt.git
- pip install tqdm pyvisa coveralls
- export PYTHONPATH=$PYTHONPATH:$PWD/src
script:
- coverage run -m unittest discover -v test
after_script:
- coveralls
# necessary to run on new container-based infrastructure
sudo: false
cache:
directories:
- $HOME/download
- $HOME/.cache/pip
|
# .travis.yml file based on:
# https://gist.github.com/dan-blanchard/7045057
language: python
python:
- "3.5"
- "3.6"
install:
# Setup anaconda. See http://conda.pydata.org/docs/travis.html
- 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
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
# Create conda environment with dependencies
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib h5py pandas networkx cffi scikit-learn
- source activate test-environment
- pip install git+https://github.com/BBN-Q/Adapt.git
- pip install tqdm pyvisa coveralls
- export PYTHONPATH=$PYTHONPATH:$PWD/src
script:
- coverage run -m unittest discover -v test
after_script:
- coveralls
# necessary to run on new container-based infrastructure
sudo: false
cache:
directories:
- $HOME/download
- $HOME/.cache/pip
|
Add scikit-learn to Travis config.
|
Add scikit-learn to Travis config.
|
YAML
|
apache-2.0
|
BBN-Q/Auspex,BBN-Q/Auspex,BBN-Q/Auspex,BBN-Q/Auspex
|
4f3ea71b2820f9079d11ccd26aca0e44f48cbce6
|
.travis.yml
|
.travis.yml
|
language: java
notifications:
irc: "chat.freenode.net#jsense"
email: false
env:
- TERM=dumb
before_install:
- echo 'yes' | sudo add-apt-repository ppa:chris-lea/protobuf
- sudo apt-get update
- sudo apt-get install protobuf-compiler libprotobuf-dev
install:
- ./gradlew assemble -s
script:
- ./gradlew check -s
|
language: java
notifications:
irc: "chat.freenode.net#jsense"
email: false
env:
- TERM=dumb
before_install:
- echo 'yes' | sudo add-apt-repository ppa:chris-lea/protobuf
- sudo apt-get update
- sudo apt-get install protobuf-compiler libprotobuf-dev
|
Remove custom install and script.
|
Remove custom install and script.
|
YAML
|
mit
|
markuswustenberg/jsense
|
198c6da96b625023e70dfd9ff0f8df70ddbdff91
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer self-update
- composer install
script:
- ./vendor/bin/phpunit --coverage-text
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
matrix:
allow_failures:
- php: 7
before_script:
- composer self-update
- composer install
script:
- ./vendor/bin/phpunit --coverage-text
|
Add PHP 7 to Travis CI builds.
|
Add PHP 7 to Travis CI builds.
|
YAML
|
bsd-2-clause
|
Renegade334/phergie-irc-plugin-react-nickserv,phergie/phergie-irc-plugin-react-nickserv
|
5b5f274a9d2a7dd2b35609975017a23839b58bd6
|
.travis.yml
|
.travis.yml
|
language: ruby
script: "bundle exec rake test"
rvm:
- 1.9.3
- 1.9.2
notifications:
email:
on_success: always
on_failure: always
|
language: ruby
script: "bundle exec rake test"
rvm:
- 1.9.3
- 1.9.2
- jruby
- rbx
- ree
notifications:
email:
on_success: always
on_failure: always
|
Add support for jruby, rbx and ree.
|
Add support for jruby, rbx and ree.
|
YAML
|
mit
|
javierjulio/salesforce_bulk
|
f0921f7c153ed0c0bbffbf5f2e2c3d1a2d18adbb
|
.travis.yml
|
.travis.yml
|
sudo: required
services:
- docker
language: node_js
node_js:
- node
script:
- npm run lint
- npm run generate-coverage
- npm run check-coverage
- npm run upload-coverage-coveralls
- npm run upload-coverage-codacy
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- chmod +x ./scripts/*
- ./scripts/docker_ci.sh
|
sudo: required
services:
- docker
language: node_js
node_js:
- node
script:
- npm run lint
- npm run generate-coverage
- npm run check-coverage
- npm run upload-coverage-coveralls
- npm run upload-coverage-codacy
deploy:
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- chmod +x scripts/*
- ./scripts/docker_ci.sh
|
Move the docker build/push to the deploy step
|
Move the docker build/push to the deploy step
We don't want the push to occur if tests fail
|
YAML
|
mit
|
nhsuk/connecting-to-services,nhsuk/connecting-to-services
|
96bde3ff5007bcc12849cc90f230ec4d8921f70d
|
.travis.yml
|
.travis.yml
|
sudo: false
language: python
cache: pip
dist: xenial
python:
- "3.7"
- "3.6"
- "3.5"
before_install:
- pip install -r requirements-tests-py3.txt
install:
- pip install .
script: ./tests/mypy_test.py
|
dist: xenial
sudo: false
language: python
python: 3.7
cache: pip
before_install:
- pip install -r requirements-tests-py3.txt
install:
- pip install .
script: ./tests/mypy_test.py
|
Test only with a single Python version
|
Test only with a single Python version
|
YAML
|
apache-2.0
|
zero323/pyspark-stubs
|
b0055863bea7b9102ef33e1af1ab6a8214940b10
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
env:
- PUPPET_VERSION="~> 2.7.0"
- PUPPET_VERSION="~> 3.1.0"
- PUPPET_VERSION="~> 3.2.0"
matrix:
exclude:
- rvm: 2.0.0
env: PUPPET_VERSION="~> 2.7.0"
- rvm: 2.0.0
env: PUPPET_VERSION="~> 3.1.0"
|
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
env:
- PUPPET_VERSION="~> 2.7.0"
- PUPPET_VERSION="~> 3.1.0"
- PUPPET_VERSION="~> 3.2.0"
- PUPPET_VERSION="~> 3.3.0"
matrix:
exclude:
- rvm: 2.0.0
env: PUPPET_VERSION="~> 2.7.0"
- rvm: 2.0.0
env: PUPPET_VERSION="~> 3.1.0"
|
Add Puppet 3.3.x to Travis CI build matrix
|
Add Puppet 3.3.x to Travis CI build matrix
|
YAML
|
apache-2.0
|
gini/puppet-rundeck,gini/puppet-rundeck
|
9f82c8fbef8ef4241ddb74eed8e42454768fb443
|
.travis.yml
|
.travis.yml
|
language: ruby
before_install: gem install bundler --version '1.8'
install: bundle install
rvm:
- 2.0
- 2.1
- 2.2
- ruby-head
|
language: ruby
before_install: gem install bundler --version '1.8'
install: bundle install
rvm:
- 2.0
- 2.1
- 2.2
- ruby-head
- rbx-2
- jruby-head
|
Test with Rubinius and JRuby
|
Test with Rubinius and JRuby
|
YAML
|
mit
|
openfoodfacts/openfoodfacts-ruby
|
c88fa2963bf93fbbb74e521916f06c8b34514678
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
|
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs-v1.0.0"
- "iojs"
|
Test on io.js 1.0.0 as well as 2.x
|
Test on io.js 1.0.0 as well as 2.x
|
YAML
|
mit
|
ember-cli/broccoli,broccolijs/broccoli,osxi/broccoli,broccolijs/broccoli,ember-cli/broccoli,gabesoft/broccoli,broccolijs/broccoli,gabesoft/broccoli,ember-cli/broccoli,gabesoft/broccoli,osxi/broccoli,osxi/broccoli,broccolijs/broccoli
|
68726a9d63565e14614345a1f4658dff3097ec4d
|
.travis.yml
|
.travis.yml
|
language: python
python: 3.5
sudo: false
env:
- TOX_ENV=py27-django17
- TOX_ENV=py33-django17
- TOX_ENV=py34-django17
- TOX_ENV=py27-django18
- TOX_ENV=py33-django18
- TOX_ENV=py34-django18
- TOX_ENV=py35-django18
- TOX_ENV=py27-django19
- TOX_ENV=py34-django19
- TOX_ENV=py35-django19
install:
- pip install tox
before_script:
- psql -c 'create database netfields;' -U postgres
script:
- tox -e $TOX_ENV
|
language: python
python: 3.5
sudo: false
env:
- TOX_ENV=py27-django18
- TOX_ENV=py33-django18
- TOX_ENV=py34-django18
- TOX_ENV=py35-django18
- TOX_ENV=py27-django19
- TOX_ENV=py34-django19
- TOX_ENV=py35-django19
install:
- pip install tox
before_script:
- psql -c 'create database netfields;' -U postgres
script:
- tox -e $TOX_ENV
|
Remove Django 1.7 from Travis
|
Remove Django 1.7 from Travis
|
YAML
|
bsd-3-clause
|
jmacul2/django-postgresql-netfields
|
d2e87962ee48aca62446c619b92f537e49381234
|
.travis.yml
|
.travis.yml
|
language: php
php:
- "5.4"
- "5.5"
- "5.6"
- "nightly"
- "hhvm"
before_script:
- composer install --no-interaction
- cp config/app_travis.php config/app.php
- cp config/oauth_example.php config/oauth.php
- mysql -e 'create database pmaerr;'
- wget https://scrutinizer-ci.com/ocular.phar
script:
- bin/cake migrations migrate
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml -c phpunit.xml.dist
after_script:
- php vendor/bin/coveralls -v
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
matrix:
allow_failures:
- php: "hhvm"
- php: "nightly"
|
language: php
php:
- "5.4"
- "5.5"
- "5.6"
- "nightly"
- "hhvm"
sudo: false
before_script:
- composer install --no-interaction
- cp config/app_travis.php config/app.php
- cp config/oauth_example.php config/oauth.php
- mysql -e 'create database pmaerr;'
- wget https://scrutinizer-ci.com/ocular.phar
script:
- bin/cake migrations migrate
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml -c phpunit.xml.dist
after_script:
- php vendor/bin/coveralls -v
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
matrix:
allow_failures:
- php: "hhvm"
- php: "nightly"
|
Use container based builds on Travis
|
Use container based builds on Travis
Signed-off-by: Michal Čihař <[email protected]>
|
YAML
|
mit
|
madhuracj/error-reporting-server,devenbansod/error-reporting-server,madhuracj/error-reporting-server,madhuracj/error-reporting-server,devenbansod/error-reporting-server,phpmyadmin/error-reporting-server,devenbansod/error-reporting-server,phpmyadmin/error-reporting-server,ujjwalwahi/error-reporting-server,phpmyadmin/error-reporting-server,ujjwalwahi/error-reporting-server,ujjwalwahi/error-reporting-server
|
92c37755c77cdf0b957eeaf66bb42b81d9b059be
|
.travis.yml
|
.travis.yml
|
language: groovy
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
before_install:
- chmod +x gradlew
script: travis_wait 10 ./gradlew -Dfile.encoding=UTF-8 test jacocoTestReport
after_success:
- ./gradlew coveralls
|
language: groovy
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
before_install:
- chmod +x gradlew
before_script:
- ./gradlew --version
script: travis_wait 10 ./gradlew -Dfile.encoding=UTF-8 test jacocoTestReport
after_success:
- ./gradlew coveralls
|
Print the version of gradle
|
Print the version of gradle
|
YAML
|
apache-2.0
|
danielsun1106/groovy-parser,danielsun1106/groovy-parser
|
50f02e6b83be04d650b2b55a42cea6c55b78432e
|
.travis.yml
|
.travis.yml
|
sudo: false
language: python
cache: pip
python:
- "3.5"
- "3.6"
- "nightly"
- "pypy3.5-5.8.0"
env:
- TYPING_VERSION="<3.5.3"
- TYPING_VERSION=">=3.5.3"
matrix:
allow_failures:
- python: "nightly"
include:
- { python: "3.7", dist: xenial, sudo: true }
install:
- pip install --upgrade coveralls pytest "typing$TYPING_VERSION" "pytest-cov>=2.5.1" dataclasses
# mypy can't be installed on pypy
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* ]] ; then pip install mypy ; fi
# Black is Python 3.6+-only
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* && "${TRAVIS_PYTHON_VERSION}" != "3.5"* ]] ; then pip install black ; fi
script:
- py.test -vv --cov=injector --cov-branch --cov-report html --cov-report term
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* ]] ; then mypy injector ; fi
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* && "${TRAVIS_PYTHON_VERSION}" != "3.5"* ]] ; then black --check . ; fi
after_success:
- coveralls
|
sudo: false
language: python
cache: pip
python:
- "3.5"
- "3.6"
- "nightly"
- "pypy3.5-5.8.0"
matrix:
allow_failures:
- python: "nightly"
include:
- { python: "3.7", dist: xenial, sudo: true }
install:
- pip install --upgrade coveralls pytest "pytest-cov>=2.5.1" dataclasses
# mypy can't be installed on pypy
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* ]] ; then pip install mypy ; fi
# Black is Python 3.6+-only
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* && "${TRAVIS_PYTHON_VERSION}" != "3.5"* ]] ; then pip install black ; fi
script:
- py.test -vv --cov=injector --cov-branch --cov-report html --cov-report term
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* ]] ; then mypy injector ; fi
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* && "${TRAVIS_PYTHON_VERSION}" != "3.5"* ]] ; then black --check . ; fi
after_success:
- coveralls
|
Reduce the number of CI jobs
|
Reduce the number of CI jobs
Since we only support Python 3.5+ anyway there's no need to install
typing and installing it doesn't matter anyway since it's built-in.
|
YAML
|
bsd-3-clause
|
alecthomas/injector
|
a9123f40d1547172eedc99b20b3226884c30a902
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.7
- 3.3
before_install:
# Use miniconda and conda packages to speed up dependency setup (principally
# borrowed from https://gist.github.com/dan-blanchard/7045057
# and https://github.com/Jorge-C/ordination/blob/master/.travis.yml
- sudo apt-get update -qq
- sudo apt-get install -qq libatlas-dev libatlas-base-dev liblapack-dev gfortran
- wget http://repo.continuum.io/miniconda/Miniconda-2.2.2-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/anaconda/bin:$PATH
# Update conda itself
- conda update --yes conda
# matplotlib needs a DISPLAY
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
- conda create --yes -n env_name python=$TRAVIS_PYTHON_VERSION nose pip numpy matplotlib pandas coverage
- source activate env_name
- python setup.py install
script:
- nosetests --with-coverage --cover-package=pyblock --cover-min-percentage=87 pyblock
|
language: python
python:
- 2.7
- 3.3
before_install:
# Use miniconda and conda packages to speed up dependency setup (principally
# borrowed from https://gist.github.com/dan-blanchard/7045057
# and https://github.com/Jorge-C/ordination/blob/master/.travis.yml
- sudo apt-get update -qq
- sudo apt-get install -qq libatlas-dev libatlas-base-dev liblapack-dev gfortran
- wget http://repo.continuum.io/miniconda/Miniconda-2.2.2-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/anaconda/bin:$PATH
# Update conda itself
- conda update --yes conda
# matplotlib needs a DISPLAY
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
- conda create --yes -n env_name python=$TRAVIS_PYTHON_VERSION nose pip numpy matplotlib pandas coverage
- source activate env_name
- python setup.py install
script:
- nosetests --with-coverage --cover-package=pyblock --cover-min-percentage=85 pyblock
|
Tweak coverage percentage as we're (still) not testing plot output.
|
Tweak coverage percentage as we're (still) not testing plot output.
|
YAML
|
lgpl-2.1
|
hande-qmc/hande,hande-qmc/hande,ruthfranklin/hande,hande-qmc/hande,hande-qmc/hande,hande-qmc/hande
|
7a22c6301dc5bb41bae4fcb4e1031204db5156ef
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.11'
script:
- npm test -- --single-run
- npm run lint
cache:
directories:
- node_modules
|
sudo: false
language: node_js
node_js:
- '0.11'
script:
- npm test -- --single-run
- npm run lint
cache:
directories:
- node_modules
|
Upgrade to new Travis CI infrastructure
|
Upgrade to new Travis CI infrastructure
|
YAML
|
mit
|
js-fns/date-fns,date-fns/date-fns,date-fns/date-fns,js-fns/date-fns,date-fns/date-fns
|
927c0920bca287f24626aeb59ee808e79c270f42
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
- "0.12"
- iojs
script: "npm run-script test-cover"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls"
|
language: node_js
node_js:
- "0.10"
- "0.12"
- iojs
script: "npm run-script test-cover"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls"
sudo: false
|
Convert to Travis CI's container-based infrastructure.
|
Convert to Travis CI's container-based infrastructure.
|
YAML
|
mit
|
DavidAnson/grunt-check-pages,DavidAnson/grunt-check-pages
|
92a89d5b3ad3bebd4159503d2700f4135435c90a
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "nightly"
matrix:
allow_failures:
- python: 'nightly'
install:
- pip install -e.
- pip install pytest
script: pytest
sudo: false
|
language: python
dist: xenial # required for Python >= 3.7
python:
- "3.5"
- "3.6"
- "3.7"
- "nightly"
matrix:
allow_failures:
- python: 'nightly'
install:
- pip install -e.
- pip install pytest
script: pytest
sudo: false
|
Add Travis CI config for Python 3.7
|
Add Travis CI config for Python 3.7
|
YAML
|
mit
|
pyvec/pyvodb
|
2a8e025dcb580dce3e036eb1b396eb8d61247ce0
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
## Cache composer
sudo: false
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer install --prefer-dist --no-interaction
script: vendor/bin/phpspec run
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
## Cache composer
sudo: false
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer install --prefer-dist --no-interaction
script: vendor/bin/phpspec run
|
Remove support for PHP 5.3
|
Remove support for PHP 5.3
|
YAML
|
mit
|
antonioribeiro/google2fa,antonioribeiro/google2fa
|
a1abfc4717722e9f141cc661efe4591bbd2c3f2f
|
.travis.yml
|
.travis.yml
|
language: ruby
bundler_args: --without development
rvm:
- 1.9.3
- 2.0.0
before_script:
- cp config/database.travis.yml config/database.yml
- psql -c 'CREATE DATABASE brimir_test;' -U postgres
|
language: ruby
bundler_args: --without development
rvm:
- 1.9.3
- 2.0.0
before_script:
- psql -c 'CREATE DATABASE brimir_test;' -U postgres
- cp config/database.travis.yml config/database.yml
- bundle exec rake db:test:prepare
|
Prepare Travis DB before running tests.
|
Prepare Travis DB before running tests.
|
YAML
|
agpl-3.0
|
Gitlab11/brimir,vartana/brimir,mbchandar/brimir,himeshp/brimir,hadifarnoud/brimir,fiedl/brimir,himeshp/brimir,mbchandar/brimir,git-jls/brimir,johnsmithpoten/brimir,fiedl/brimir,ask4prasath/madGeeksAimWeb,git-jls/brimir,paradime/brimir,ask4prasath/brimir_clone,git-jls/brimir,himeshp/brimir,fiedl/brimir,Gitlab11/brimir,ivaldi/brimir,hadifarnoud/brimir,viddypiddy/brimir,johnsmithpoten/brimir,paradime/brimir,ask4prasath/brimir_clone,paradime/brimir,hadifarnoud/brimir,viddypiddy/brimir,mbchandar/brimir,ivaldi/brimir,ivaldi/brimir,ask4prasath/madGeeksAimWeb,mbchandar/brimir,ask4prasath/brimir_clone,ask4prasath/brimirclone,viddypiddy/brimir,Gitlab11/brimir,ivaldi/brimir,johnsmithpoten/brimir,vartana/brimir,ask4prasath/madGeeksAimWeb,vartana/brimir,ask4prasath/brimirclone,ask4prasath/brimirclone,paradime/brimir,himeshp/brimir,vartana/brimir,git-jls/brimir,viddypiddy/brimir,hadifarnoud/brimir,fiedl/brimir,Gitlab11/brimir
|
6f00490eed10aa1c0d428728839e41fc253ce9f2
|
.travis.yml
|
.travis.yml
|
language: ruby
script: bundle exec rake travis
matrix:
fast_finish: true
include:
- rvm: 1.8.7
gemfile: gemfiles/Gemfile-ruby-1.8.7
- rvm: 1.9.3
gemfile: Gemfile
- rvm: 2.0.0
gemfile: Gemfile
- rvm: 2.1.0
gemfile: Gemfile
- rvm: 2.1.1
gemfile: Gemfile
# env: COVERAGE=true
- rvm: 2.1.1
gemfile: gemfiles/Gemfile-edge
- rvm: jruby-18mode
gemfile: gemfiles/Gemfile-ruby-1.8.7
- rvm: jruby-19mode
gemfile: Gemfile
- rvm: jruby-head
gemfile: Gemfile
allow_failures:
- rvm: 1.8.7
- rvm: jruby-18mode
- rvm: jruby-head
notifications:
email:
- [email protected]
before_install:
- gem update --system # todo: workaround for https://github.com/rubygems/rubygems/pull/763
|
language: ruby
script: bundle exec rake travis
matrix:
fast_finish: true
include:
- rvm: 2.0.0
gemfile: Gemfile
- rvm: 2.1.0
gemfile: Gemfile
- rvm: 2.1.1
gemfile: Gemfile
- rvm: 2.2
gemfile: Gemfile
# env: COVERAGE=true
- rvm: 2.1.1
gemfile: gemfiles/Gemfile-edge
- rvm: jruby-head
gemfile: Gemfile
allow_failures:
- rvm: 1.8.7
- rvm: jruby-18mode
- rvm: jruby-head
notifications:
email:
- [email protected]
before_install:
- gem update --system # todo: workaround for https://github.com/rubygems/rubygems/pull/763
|
Drop support for 1.8.7 and 1.9.3
|
Drop support for 1.8.7 and 1.9.3
|
YAML
|
mit
|
fog/fog-softlayer,gatherdigital/fog-softlayer
|
de26d05318d57431410884a17382daf697496881
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 6
cache:
directories:
- docs/vendor/bundle
- node_modules
- $HOME/.yarn-cache
before_install:
- |
echo "machine github.com login reactjs-bot password $GITHUB_TOKEN" >~/.netrc
unset GITHUB_TOKEN
if [ "$TEST_TYPE" != build_website ] && \
! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.md$)|(^(docs|examples))/'
then
echo "Only docs were updated, stopping build process."
exit
fi
sudo apt-key adv --fetch-keys http://dl.yarnpkg.com/debian/pubkey.gpg
echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update -qq
sudo apt-get install -y -qq yarn
yarn --version
install:
- |
yarn install
script:
- |
yarn run lint
# Disabled until testing is fixed
# yarn run test:lcov
|
language: node_js
node_js:
- 6
cache:
directories:
- docs/vendor/bundle
- node_modules
- $HOME/.yarn-cache
before_install:
- |
sudo apt-key adv --fetch-keys http://dl.yarnpkg.com/debian/pubkey.gpg
echo "deb http://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update -qq
sudo apt-get install -y -qq yarn
yarn --version
install:
- |
yarn install
script:
- |
yarn run lint
# Disabled until testing is fixed
# yarn run test:lcov
|
Remove some scripts copied by mistake from react
|
Remove some scripts copied by mistake from react
|
YAML
|
mit
|
yuvalsaraf/react-cordova-boilerplate,gitsad/react-cordova-boilerplate,unimonkiez/react-cordova-boilerplate,yuvalsaraf/react-cordova-boilerplate,yuvalsaraf/react-cordova-boilerplate,gitsad/react-cordova-boilerplate,unimonkiez/react-cordova-boilerplate,unimonkiez/react-cordova-boilerplate,gitsad/react-cordova-boilerplate
|
5d78d48731468d4f01aef488c6fd82fb2b9282ee
|
.travis.yml
|
.travis.yml
|
sudo: false
os:
- linux
- osx
- windows
language: node_js
node_js:
- node
- '10'
- '8'
- '6'
|
sudo: false
os:
- linux
- osx
- windows
language: node_js
node_js:
- node
- '10'
- '8'
|
Drop node v6 since picomatch doesnt support it.
|
Drop node v6 since picomatch doesnt support it.
|
YAML
|
mit
|
jonschlinkert/micromatch,micromatch/micromatch
|
2ea216dff10f3ed47e5431d4e7ae08858d253c45
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.7
- 1.6
install:
- go get -u github.com/golang/lint/golint
script:
- make check
- make build
- make release
- make clean
- make test
- make coverage
|
language: go
go:
- 1.7
- 1.6
install:
- go get -u github.com/golang/lint/golint
script:
- make check
- make build
- make release
- make clean
- make unit-test
- make unit-coverage
|
Update test command for Travis CI
|
Update test command for Travis CI
Signed-off-by: Jingwen Peng <[email protected]>
|
YAML
|
apache-2.0
|
yunify/snips
|
def8f21bdbcea435629933c1f04744a828889362
|
.travis.yml
|
.travis.yml
|
sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
cache:
directories:
- $HOME/.composer/cache
install:
- phpenv config-rm xdebug.ini
- composer install
script:
- find -name "*.php" -not -path "./vendor/*" -print0 | xargs -n 1 -0 php -l
- $(php -r 'if (PHP_MAJOR_VERSION >= 7) echo "phpdbg -qrr"; else echo "php";') vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml
after_script:
- curl -OL https://github.com/php-coveralls/php-coveralls/releases/download/v1.0.0/coveralls.phar
- chmod +x coveralls.phar
- ./coveralls.phar -v
|
sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
cache:
directories:
- $HOME/.composer/cache
install:
- phpenv config-rm xdebug.ini || echo "No xdebug config found."
- composer install
script:
- find -name "*.php" -not -path "./vendor/*" -print0 | xargs -n 1 -0 php -l
- $(php -r 'if (PHP_MAJOR_VERSION >= 7) echo "phpdbg -qrr"; else echo "php";') vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml
after_script:
- curl -OL https://github.com/php-coveralls/php-coveralls/releases/download/v1.0.0/coveralls.phar
- chmod +x coveralls.phar
- ./coveralls.phar -v
|
Fix Travis on PHP nightly
|
Fix Travis on PHP nightly
|
YAML
|
mit
|
kelunik/two-factor
|
8ee91385c7ebf8456dd336cf6c97e2ae38505d11
|
.travis.yml
|
.travis.yml
|
language: ruby
only:
- master
rvm:
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
env:
matrix:
- "RAILS_VERSION=\"~> 3.0.0\""
- "RAILS_VERSION=\"~> 3.1.0\""
- "RAILS_VERSION=\"~> 3.2.0\""
- "RAILS_VERSION=\"~> 4.0.0\""
matrix:
exclude:
- rvm: jruby-18mode
env: "RAILS_VERSION=\"~> 4.0.0\""
- rvm: rbx-18mode
env: "RAILS_VERSION=\"~> 4.0.0\""
- rvm: 1.8.7
env: "RAILS_VERSION=\"~> 4.0.0\""
- rvm: 1.9.2
env: "RAILS_VERSION=\"~> 4.0.0\""
allow_failures:
- rvm: jruby-18mode
- rvm: jruby-19mode
- rvm: rbx-18mode
- rvm: rbx-19mode
|
language: ruby
only:
- master
rvm:
- jruby-19mode
- rbx-19mode
- 1.9.2
- 1.9.3
- 2.0.0
env:
matrix:
- "RAILS_VERSION=\"~> 3.0.0\""
- "RAILS_VERSION=\"~> 3.1.0\""
- "RAILS_VERSION=\"~> 3.2.0\""
- "RAILS_VERSION=\"~> 4.0.0\""
matrix:
exclude:
- rvm: 1.9.2
env: "RAILS_VERSION=\"~> 4.0.0\""
allow_failures:
- rvm: jruby-19mode
- rvm: rbx-19mode
|
Stop testing against ruby 1.8
|
Stop testing against ruby 1.8
Ruby 1.8 has been EOL'ed and our build matrix is much bigger than it needs to be
|
YAML
|
mit
|
pivotaltracker/delayed_job,r-fujiwara/delayed_job,nruth/delayed_job,pivotaltracker/delayed_job,doximity/delayed_job,pwnall/delayed_job,khwangster/delayed_job,morsedigital/delayed_job,envato/delayed_job,dblock/delayed_job,mavenlink/delayed_job,scrumalliance/delayed_job,tom-asta-dev/delayed_job,collectiveidea/delayed_job,raszi/delayed_job,ratdaddy/delayed_job,dblock/delayed_job,CarlosCD/delayed_job,johnnyshields/delayed_job,ryannealmes/delayed_job,khwangster/delayed_job,Shopify/delayed_job_current,maxjacobson/delayed_job
|
1a80f1e6be650d703289cdc9319d91c1b1088ad6
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
env:
global:
- setup=basic
cache:
directories:
- vendor
- $HOME/.composer/cache
sudo: false
install:
- if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-source; fi
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-lowest --prefer-stable; fi
script:
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
notifications:
email: false
branches:
only:
- master
|
language: php
php:
- 5.6
- 7.0
- 7.1
env:
global:
- setup=basic
cache:
directories:
- vendor
- $HOME/.composer/cache
sudo: false
install:
- if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-source; fi
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-lowest --prefer-stable; fi
script:
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
notifications:
email: false
branches:
only:
- master
|
Remove PHP versions below 5.6 for Travis CI
|
Remove PHP versions below 5.6 for Travis CI
|
YAML
|
mit
|
hansott/pinterest-php
|
a05462afde7a37762a531950d308573b6de1aa6b
|
.travis.yml
|
.travis.yml
|
# Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/rubocop --version
- /opt/chefdk/embedded/bin/rubocop
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/embedded/bin/foodcritic . --exclude spec
- /opt/chefdk/embedded/bin/rspec spec
|
# Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/rubocop --version
- /opt/chefdk/embedded/bin/rubocop
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/embedded/bin/foodcritic . --exclude spec
- /opt/chefdk/embedded/bin/rspec spec
|
Use the pre-release builds of chefdk
|
Use the pre-release builds of chefdk
|
YAML
|
apache-2.0
|
jakimowicz/sql_server,criteo-forks/sql_server,chef-cookbooks/sql_server,mahsoud/sql_server,opscode-cookbooks/sql_server,tpetchel/sql_server,tpetchel/sql_server,jakimowicz/sql_server,mahsoud/sql_server,opscode-cookbooks/sql_server,chef-cookbooks/sql_server,criteo-forks/sql_server
|
bc06db21c399bfb669fafc853f4eb90876487fac
|
.travis.yml
|
.travis.yml
|
language: python
sudo: false
python:
- 3.4
before_install:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda3/bin:$PATH
- conda install --yes pip python==$TRAVIS_PYTHON_VERSION numpy matplotlib
- pip install flit
install:
- flit wheel
- pip install dist/plotchecker*
script:
- py.test --cov plotchecker
after_success:
- codecov
|
language: python
sudo: false
python:
- 3.4
before_install:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda3/bin:$PATH
- conda install --yes pip python==$TRAVIS_PYTHON_VERSION numpy matplotlib
- pip install flit
install:
- flit install
script:
- py.test --cov plotchecker
after_success:
- codecov
|
Revert "Just use flit to build the wheel"
|
Revert "Just use flit to build the wheel"
This reverts commit 665f792b22dddcd439a2433d0007a32ca42b8392.
|
YAML
|
bsd-3-clause
|
jhamrick/plotchecker
|
86c509089ca7d01e68e19dc050a2e85f1ec8a9b3
|
.travis.yml
|
.travis.yml
|
dist: trusty
sudo: required
language: ruby
cache:
bundler: true
rvm:
- 2.4.1-clang
addons:
postgresql: '9.6'
before_script:
- cp config/database.yml.travis config/database.yml
- psql -c "CREATE DATABASE open_lis_test ENCODING 'UTF-8';" -U postgres
|
dist: trusty
sudo: required
language: ruby
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.24.6
- export PATH=$HOME/.yarn/bin:$PATH
cache:
bundler: true
yarn: true
rvm:
- 2.4.1-clang
addons:
postgresql: '9.6'
before_script:
- cp config/database.yml.travis config/database.yml
- psql -c "CREATE DATABASE open_lis_test ENCODING 'UTF-8';" -U postgres
|
Use yarn in Travis CI
|
Use yarn in Travis CI
|
YAML
|
mit
|
Labtec/OpenLIS,Labtec/OpenLIS,Labtec/OpenLIS
|
c3e4e1806a84c79f06f6d7fe826cdf4bfb2ec84a
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "4"
- "6"
- "stable"
script:
- yarn run test:coverage
before_deploy:
- npm install -g auto-dist-tag
- auto-dist-tag --write
deploy:
provider: npm
email: [email protected]
api_key:
secure: hdNfvaHaA0mSzapY1quVvk3WFwzPIsVirzsJlQ/yJA+9CNOCvOwc3IoLe36z3P2KuqVSbhJnqsCIHaPveKnz89iCl/jXllM2lSF21M3eplMZo6vj9cc3LTI1vhexBs8Kc5Nbis3R7enkQFfGkWwm7TG1giGupG0JcMUK993bbzc=
on:
tags: true
repo: ember-cli/broccoli-uglify-sourcemap
|
language: node_js
node_js:
- "6"
- "stable"
script:
- yarn run test:coverage
before_deploy:
- npm install -g auto-dist-tag
- auto-dist-tag --write
deploy:
provider: npm
email: [email protected]
api_key:
secure: hdNfvaHaA0mSzapY1quVvk3WFwzPIsVirzsJlQ/yJA+9CNOCvOwc3IoLe36z3P2KuqVSbhJnqsCIHaPveKnz89iCl/jXllM2lSF21M3eplMZo6vj9cc3LTI1vhexBs8Kc5Nbis3R7enkQFfGkWwm7TG1giGupG0JcMUK993bbzc=
on:
tags: true
repo: ember-cli/broccoli-uglify-sourcemap
|
Drop Node 4 from test matrix
|
CI: Drop Node 4 from test matrix
|
YAML
|
mit
|
ef4/broccoli-uglify-sourcemap,ef4/broccoli-uglify-sourcemap
|
3f6de1f4e114b0b93270b6ce0cd00ffd3b5a1583
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- openjdk8
- openjdk11
env: NODE_VERSION=10.2.1 CXX=g++-4.8
before_install: nvm install $NODE_VERSION
jobs:
include:
- stage: "Shared Module"
name: "Build"
script: ./gradlew :shared:build
- name: "Tests"
script: ./gradlew :shared:test -i
- stage: "Language Server"
name: "Tests"
script: ./gradlew :server:test -i
- name: "Executable"
script: ./gradlew :server:installDist
- stage: "Editor extensions"
name: "VSCode"
script: ./gradlew :editors:vscode:build
- name: "Atom"
script: ./gradlew :editors:atom:build
addons:
apt:
packages:
- libsecret-1-dev
- g++-4.8
before_deploy:
- npm install -g vsce atom-package-manager
- ./gradlew :editors:vscode:packageExtension
deploy:
- provider: script
script: cd editors/vscode && vsce publish -p $VSC_TOKEN
skip_cleanup: true
on:
repo: fwcd/kotlin-language-server
tags: true
condition: $TRAVIS_OS_NAME = linux
- provider: script
script: cd editors/atom && apm publish --tag $(git describe --tags --abbrev=0)
on:
repo: fwcd/kotlin-language-server
tags: true
condition: $TRAVIS_OS_NAME = linux
|
language: java
jdk:
- openjdk8
- openjdk11
env: NODE_VERSION=10.2.1 CXX=g++-4.8
before_install: nvm install $NODE_VERSION
addons:
apt:
packages:
- libsecret-1-dev
- g++-4.8
jobs:
include:
- stage: "Shared Module"
name: "Build"
script: ./gradlew :shared:build
- name: "Tests"
script: ./gradlew :shared:test -i
- stage: "Language Server"
name: "Tests"
script: ./gradlew :server:test -i
- name: "Executable"
script: ./gradlew :server:installDist
- stage: "Editor extensions"
name: "VSCode"
script: ./gradlew :editors:vscode:build
- name: "Atom"
script: ./gradlew :editors:atom:build
- stage: "Deploy"
before_deploy:
- npm install -g vsce atom-package-manager
- ./gradlew :editors:vscode:packageExtension
- ./gradlew :editors:atom:install
deploy:
- provider: script
script: cd editors/vscode && vsce publish -p $VSC_TOKEN
skip_cleanup: true
on:
repo: fwcd/kotlin-language-server
tags: true
condition: $TRAVIS_OS_NAME = linux
- provider: script
script: cd editors/atom && apm publish --tag $(git describe --tags --abbrev=0)
on:
repo: fwcd/kotlin-language-server
tags: true
condition: $TRAVIS_OS_NAME = linux
|
Move deployment into a separate build stage
|
Move deployment into a separate build stage
|
YAML
|
mit
|
fwcd/kotlin-language-server,fwcd/kotlin-language-server,fwcd/kotlin-language-server
|
549c3d6b62848cbfccb864bb92eb3201525b3f4c
|
.travis.yml
|
.travis.yml
|
dist: trusty
sudo: false
language: c
branches:
only:
- master
cache:
directories:
- $HOME/env
before_install:
- pip install --user hererocks
- hererocks $HOME/env --luajit 2.0.3 --luarocks latest
- source $HOME/env/bin/activate
install:
- luarocks show lanes > /dev/null || luarocks install lanes
- luarocks show luacheck > /dev/null || luarocks install luacheck
- luarocks list --outdated --porcelain | awk '{ print $1, $3 }' | xargs --no-run-if-empty -n 2 luarocks install
script:
- git diff --check $TRAVIS_COMMIT_RANGE
- git diff --name-only $TRAVIS_COMMIT_RANGE | grep '\.lua$' | xargs --no-run-if-empty luacheck --std min+garrysmod+wiremod
|
dist: trusty
sudo: false
language: c
branches:
only:
- master
cache:
directories:
- $HOME/env
before_install:
- pip install --user hererocks
- hererocks $HOME/env --luajit 2.0.3 --luarocks latest
- source $HOME/env/bin/activate
install:
- luarocks show lanes > /dev/null || luarocks install lanes
- luarocks show luacheck > /dev/null || luarocks install luacheck
- luarocks list --outdated --porcelain | awk '{ print $1, $3 }' | xargs --no-run-if-empty -n 2 luarocks install
script:
- git diff --check $TRAVIS_COMMIT_RANGE
- git diff --name-only $TRAVIS_COMMIT_RANGE | grep '\.lua$' | grep -v '^lua/entities/gmod_wire_expression2/core/' | xargs --no-run-if-empty luacheck --std min+garrysmod+wiremod
|
Stop running Luacheck on E2 extension files
|
Stop running Luacheck on E2 extension files
They use a custom preprocessor so don't contain standard Lua syntax.
This should stop Travis builds failing when somebody touches these files.
See #1087 for a discussion on this.
|
YAML
|
apache-2.0
|
Grocel/wire,thegrb93/wire,dvdvideo1234/wire,wiremod/wire,sammyt291/wire,garrysmodlua/wire,bigdogmat/wire,NezzKryptic/Wire
|
c5badb6e7b3673a247ff0d208c8e7fb5fe96344c
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '6'
- '8'
- '9'
script: 'npm run ci'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
|
language: node_js
node_js:
- '6'
- '8'
- '10'
- '12'
script: 'npm run ci'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
|
Drop node 9, add 10 and 12
|
Travis: Drop node 9, add 10 and 12
|
YAML
|
bsd-3-clause
|
unexpectedjs/unexpected-messy
|
927f4d7fc5cb47f0063f7a049d3b48d2af95365a
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.2.3
before_install: gem install bundler -v 1.10.6
|
language: ruby
rvm:
- 2.1.5
before_install: gem install bundler -v 1.10.6
|
Use Ruby 2.1.5 when building on Travis CI.
|
Use Ruby 2.1.5 when building on Travis CI.
Related to proiel/proiel-cli#3.
|
YAML
|
mit
|
proiel/proiel,proiel/proiel
|
faafd9b2312385e467d081c56ee0ec61596c2ef7
|
.travis.yml
|
.travis.yml
|
language: php
php:
- '7.0'
- hhvm
- nightly
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
script: phpunit
|
language: php
php:
- '7.0'
- nightly
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
script: phpunit
|
Remove HHVM from Travis CI
|
Remove HHVM from Travis CI
|
YAML
|
mit
|
php-earth/stats,wwphp-fb/stats,php-earth/stats,wwphp-fb/stats
|
b74f7bb372dbf0f98a13d77fe2aa762180e1e4e5
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.7
virtualenv:
# apt packages ends up amongst system packages
system_site_packages: true
addons:
apt:
packages:
- qt4-qmake
- libqt4-dev
- python-qt4
# - python-pyside # not whitelisted for some reason
install:
# Based on http://stackoverflow.com/a/24545890/478949
- pip install PySide --no-index --find-links https://parkin.github.io/python-wheelhouse/;
script:
- nosetests .
|
language: python
python:
- 2.7
virtualenv:
# apt packages ends up amongst system packages
system_site_packages: true
addons:
apt:
packages:
- qt4-qmake
- libqt4-dev
- python-qt4
# - python-pyside # not whitelisted for some reason
install:
# Based on http://stackoverflow.com/a/24545890/478949
- pip install PySide --no-index --find-links https://parkin.github.io/python-wheelhouse/;
script:
- nosetests --verbose
|
Enable verbosity on nosetests to find out what's going wrong.
|
Enable verbosity on nosetests to find out what's going wrong.
|
YAML
|
mit
|
mottosso/Qt.py,fredrikaverpil/Qt.py,mottosso/Qt.py,fredrikaverpil/Qt.py
|
048938169231f051c1612af608cde673ccc77529
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
|
Add Ruby 2.1 to Travis
|
Add Ruby 2.1 to Travis
|
YAML
|
mit
|
jmdeldin/cross_validation
|
c5e5c08b1df5bfac4eebb2d5bbe0fea1c146b0ba
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 1.9.2
- jruby-19mode
- rbx-19mode
- ruby-head
|
language: ruby
rvm:
- 1.9.3
- 1.9.2
- jruby-19mode
- rbx-19mode
- ruby-head
- jruby-head
|
Revert "Do not check jruby-head"
|
Revert "Do not check jruby-head"
This reverts commit 4c0d2b33fde08781eb05e7e3a040c4eeaed52618.
|
YAML
|
mit
|
yagooar/lorem_ipsum_amet
|
1c6e3a8f6a395539911753ba9ba51118ffce7b8c
|
.travis.yml
|
.travis.yml
|
language: java
jdk: oraclejdk7
before_install:
# Gradle
- wget http://services.gradle.org/distributions/gradle-1.6-bin.zip
- unzip gradle-1.6-bin.zip
- export GRADLE_HOME=$PWD/gradle-1.6
- export PATH=$GRADLE_HOME/bin:$PATH
script: gradle assemble
|
language: java
jdk: oraclejdk6
before_install:
# Gradle
- wget http://services.gradle.org/distributions/gradle-1.6-bin.zip
- unzip gradle-1.6-bin.zip
- export GRADLE_HOME=$PWD/gradle-1.6
- export PATH=$GRADLE_HOME/bin:$PATH
script: gradle assemble
|
Use JDK6 for Android compatibility.
|
Use JDK6 for Android compatibility.
|
YAML
|
mit
|
Alanyanbc/sharebook,Alanyanbc/sharebook
|
50fc5539b73864b8753c2801d6c42cf82089510d
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
before_install:
- "npm install --global bower grunt-cli"
|
language: node_js
node_js:
- '0.10'
before_install:
- npm install --global bower grunt-cli
deploy:
provider: npm
email: [email protected]
api_key:
secure: d0TXTI1s5jyogMsFk53Z0U2vtDaI/haN1CGWifRoOS8M5WWAOA8t+1s7KgZQm5//TcRgkJXCZXeMugPJw/7syjVAKLggi5+0KMrNH09/bMWwC1CqNGForHa1Gvv/WhG9E9EWK1Sf03nKsNxlCWYp5pA7HZ0g9UW33/EM2xK2jUY=
on:
tags: true
|
Add NPM deploy step with encrypted API key
|
Add NPM deploy step with encrypted API key
|
YAML
|
mit
|
nabil-boag/angular-multimocks,paulreeve/angular-multimocks,edconolly/angular-multimocks,wongatech/angular-multimocks,douglaseggleton/angular-multimocks,douglaseggleton/angular-multimocks,nabil-boag/angular-multimocks,wongatech/angular-multimocks,edconolly/angular-multimocks,paulreeve/angular-multimocks
|
cf867582a28256167f95cf77f914fa46101344fc
|
.travis.yml
|
.travis.yml
|
# Use docker-based build environment (instead of openvz)
sudo: false
language: java
jdk:
- oraclejdk8
cache:
directories:
- '$HOME/.m2/repository'
after_success:
- mvn clean test jacoco:report coveralls:report
|
# Use docker-based build environment (instead of openvz)
sudo: false
language: java
jdk:
- oraclejdk8
cache:
directories:
- '$HOME/.m2/repository'
after_success:
- mvn clean test jacoco:report coveralls:report
- echo "<settings><servers><server><id>ossrh</id><username>\${env.OSSRH_USER}</username><password>\${env.OSSRH_PASS}</password></server></servers></settings>" > ~/settings.xml
- mvn deploy --settings ~/settings.xml
|
Add deployment of SNAPSHOT artifacts after CI build to Sonatype OSS repository
|
Add deployment of SNAPSHOT artifacts after CI build to Sonatype OSS repository
Kudos go to http://notbarjo.blogspot.de/2014/09/travis-ci-maven-deploy.html
|
YAML
|
mit
|
CPGFinanceSystems/verita,CPGFinanceSystems/verita
|
f986c5693aa7fcd1a2ee641fe6f418deba2e4318
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
sudo: false
addons:
apt:
packages:
- libevent-dev # Used by 'event' and 'libevent' PHP extensions
cache:
directories:
- $HOME/.composer/cache
install:
- ./travis-init.sh
- composer install
script:
- ./vendor/bin/phpunit --coverage-text
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
sudo: false
addons:
apt:
packages:
- libevent-dev # Used by 'event' and 'libevent' PHP extensions
cache:
directories:
- $HOME/.composer/cache/files
install:
- ./travis-init.sh
- composer install
script:
- ./vendor/bin/phpunit --coverage-text
|
Adjust composer cache directory to only cache package files
|
Adjust composer cache directory to only cache package files
|
YAML
|
mit
|
clue-labs/event-loop,kaduev13/event-loop,reactphp/event-loop,kaduev13/event-loop
|
c0c287a26758d8c4cb0af7eb629451aece187d1b
|
.travis.yml
|
.travis.yml
|
---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install -g phantomjs-prebuilt@2
- npm install
- bower install
script:
- ember try $EMBER_TRY_SCENARIO test
|
---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- EMBER_TRY_SCENARIO=ember-2.3
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install -g phantomjs-prebuilt@2
- npm install
- bower install
script:
- ember try $EMBER_TRY_SCENARIO test
|
Add an ember try scenario for ember-2.3, the oldest supported version.
|
Add an ember try scenario for ember-2.3, the oldest supported version.
|
YAML
|
mit
|
baroquon/ember-paper,cogniteev/ember-paper,cogniteev/ember-paper,mnutt/ember-paper,pauln/ember-paper,PartCycleTech/ember-paper,JustInToCoding/ember-paper,miguelcobain/ember-paper,stonecircle/ember-paper,mnutt/ember-paper,Blooie/ember-paper,xomaczar/ember-paper,tmclouisluk/ember-paper,jamesdixon/ember-paper,cogniteev/ember-paper,JustInToCoding/ember-paper,tmclouisluk/ember-paper,stonecircle/ember-paper,mnutt/ember-paper,baroquon/ember-paper,Blooie/ember-paper,baroquon/ember-paper,xomaczar/ember-paper,joukevandermaas/ember-paper,joukevandermaas/ember-paper,xomaczar/ember-paper,pauln/ember-paper,DanChadwick/ember-paper,DanChadwick/ember-paper,DanChadwick/ember-paper,canufeel/ember-paper,pauln/ember-paper,JustInToCoding/ember-paper,stonecircle/ember-paper,PartCycleTech/ember-paper,miguelcobain/ember-paper,jamesdixon/ember-paper,PartCycleTech/ember-paper,jamesdixon/ember-paper,miguelcobain/ember-paper,bjornharrtell/ember-paper,joukevandermaas/ember-paper,bjornharrtell/ember-paper,tmclouisluk/ember-paper,bjornharrtell/ember-paper,canufeel/ember-paper
|
59e38026bab2f41456cd813b0dbd0e5489c0b657
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.2
- 1.9.3
- jruby-19mode # JRuby 1.7.0
- rbx-19mode
# - ruby-head # seems unstable on travis at this time
|
language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode # JRuby 1.7.0
- rbx-19mode
# - ruby-head # seems unstable on travis at this time
|
Add Ruby 2.0.0 for Travis CI
|
Add Ruby 2.0.0 for Travis CI
|
YAML
|
mit
|
RobotsAndPencils/grocer,dfried/grocer,grocer/grocer,utx-tex/grocer,rockarloz/grocer
|
88c865c6497fba5e339c8c108c0fd2b991abfa67
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.6
- 2.7
- pypy
env:
- TWISTED_VERSION=12.2.0
- TWISTED_VERSION=12.1.0
install:
- pip install Twisted==$TWISTED_VERSION
- pip install -r requirements-dev.txt --use-mirrors
script:
- pep8 treq
- pyflakes treq
- trial treq
|
language: python
python:
#- 2.6
#- 2.7
- pypy
env:
- TWISTED_VERSION=12.2.0
#- TWISTED_VERSION=12.1.0
install:
- pip install Twisted==$TWISTED_VERSION
- pip install -r requirements-dev.txt --use-mirrors
script:
- pep8 treq
- pyflakes treq
- strace trial treq
|
Comment out everything but pypy with latest twisted and try running trial under strace.
|
Comment out everything but pypy with latest twisted and try running trial under strace.
|
YAML
|
mit
|
alex/treq,alex/treq,glyph/treq,habnabit/treq,mithrandi/treq,hawkowl/treq,cyli/treq,hawkowl/treq,inspectlabs/treq,ldanielburr/treq,FxIII/treq
|
6d29de52ac70bdc281c20230de8dc037c497676b
|
.travis.yml
|
.travis.yml
|
sudo: false
language: clojure
lein: 2.8.1
jdk:
- oraclejdk8
- oraclejdk10
script: lein do check, midje
|
sudo: false
language: clojure
lein: 2.8.1
jdk:
- oraclejdk8
- openjdk11 # Don't fall for Oracle's trick: https://blog.joda.org/2018/09/do-not-fall-into-oracles-java-11-trap.html
script: lein do check, midje
|
Upgrade to JVM 11 (LTS)
|
:green_heart: Upgrade to JVM 11 (LTS)
|
YAML
|
epl-1.0
|
pmonks/bookmark-writer
|
dd9f069a9c0086990f1fa6191bce2ccb355a15d3
|
.travis.yml
|
.travis.yml
|
language: php
php:
- '7.0'
- '5.6'
- '5.5.9'
- '5.5'
- '5.4'
- hhvm
env:
matrix:
- PREFER_LOWEST=""
- PREFER_LOWEST="--prefer-lowest"
matrix:
allow_failures:
- php: '5.4'
- php: hhvm
install:
- if [[ "$(phpenv version-name)" != "hhvm" ]]; then echo 'error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi
- travis_retry composer update --no-interaction --prefer-source $PREFER_LOWEST
script:
- vendor/bin/phpunit -v --color -c .travis-phpunit$([[ "$(phpenv version-name)" == "hhvm" ]] && echo -n "-hhvm").xml
after_success:
- bash <(curl -s https://codecov.io/bash)
|
language: php
php:
- '7.0'
- '5.6'
- '5.5.9'
- '5.5'
- '5.4'
- hhvm
env:
matrix:
- PREFER_LOWEST=""
- PREFER_LOWEST="--prefer-lowest"
matrix:
allow_failures:
- php: '5.4'
- php: hhvm
install:
- if [[ "$(phpenv version-name)" != "hhvm" ]]; then echo 'error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi
- travis_retry composer update --no-interaction --prefer-source $PREFER_LOWEST
script:
- phpunit -v --color -c .travis-phpunit$([[ "$(phpenv version-name)" == "hhvm" ]] && echo -n "-hhvm").xml
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Use global PHPUnit in Travis builds
|
Use global PHPUnit in Travis builds
|
YAML
|
mit
|
danhunsaker/laravel-flysystem-service
|
822f0a09cec8ea9bdf009e5155c7be1ca6a1b08b
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
install: python setup.py install
script: python setup.py test
|
language: python
python:
- "2.6"
- "2.7"
- "3.3"
install: python setup.py install
script: python setup.py test
|
Remove 3.2 support as WTForms doesn't support it
|
Remove 3.2 support as WTForms doesn't support it
|
YAML
|
mit
|
Javex/pyramid_crud,Javex/pyramid_crud,urielarg/pyramid_crud,urielarg/pyramid_crud,Javex/pyramid_crud
|
d45a9665f705d0bb9e9e3a705ec8a0c6b52ac342
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.0
- 7.1
- 7.2
cache:
directories:
- $HOME/.composer/cache
env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
before_script:
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
script:
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- if [[ $COMPOSER_FLAGS == '' ]]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
matrix:
allow_failures:
- php: 7.2
|
language: php
php:
- 7.0
- 7.1
- 7.2
cache:
directories:
- $HOME/.composer/cache
before_script:
- travis_retry composer update --no-interaction --prefer-dist
script:
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- if [ $(phpenv version-name) == "7.1" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
matrix:
allow_failures:
- php: 7.2
|
Remove lower dependencies runs. Only run coverage for php 7.1
|
Remove lower dependencies runs. Only run coverage for php 7.1
|
YAML
|
mit
|
nWidart/laravel-modules
|
999f240c87d6a49c5dbfdd4a49e662c3281e9e2c
|
.travis.yml
|
.travis.yml
|
language: bash
services: docker
env:
- VERSION=17.09
- VERSION=17.07
- VERSION=17.06
install:
- git clone https://github.com/docker-library/official-images.git ~/official-images
before_script:
- env | sort
- cd "$VERSION"
- image="docker:$VERSION"
script:
- travis_retry docker build -t "$image" .
- ~/official-images/test/run.sh "$image"
- travis_retry docker build -t "$image-dind" dind
- ~/official-images/test/run.sh "$image-dind"
- travis_retry docker build -t "$image-git" git
- ~/official-images/test/run.sh "$image-git"
after_script:
- docker images
# vim:set et ts=2 sw=2:
|
language: bash
services: docker
env:
- VERSION=17.09
- VERSION=17.07
install:
- git clone https://github.com/docker-library/official-images.git ~/official-images
before_script:
- env | sort
- cd "$VERSION"
- image="docker:$VERSION"
script:
- travis_retry docker build -t "$image" .
- ~/official-images/test/run.sh "$image"
- travis_retry docker build -t "$image-dind" dind
- ~/official-images/test/run.sh "$image-dind"
- travis_retry docker build -t "$image-git" git
- ~/official-images/test/run.sh "$image-git"
after_script:
- docker images
# vim:set et ts=2 sw=2:
|
Update Travis for 17.06 removal
|
Update Travis for 17.06 removal
|
YAML
|
apache-2.0
|
infosiftr/docker,docker-library/docker
|
dfdda1cfa6d5dba5dcce96748f98410bf547bf49
|
.appveyor.yml
|
.appveyor.yml
|
version: '{branch}-{build}'
init:
- cmd: git config --global core.autocrlf true
before_build:
- cmd: >-
nuget restore Agiil.sln
git submodule update --init --recursive
# As of 2017-05-15 it appears AppVeyor use a 32-bit MSBuild.
# This means that we must compile for 32-bit, because otherwise
# the custom 'CompileScssFiles' target will fail on usage of the
# 64-bit flavour of libsass.dll
platform: x86
build:
verbosity: normal
test:
assemblies:
except:
- '**\Agiil.Tests.Common.dll'
- '**\Agiil.BDD.dll'
- '**\Ploeh.AutoFixture.NUnit3.dll'
|
version: '{branch}-{build}'
init:
- cmd: git config --global core.autocrlf true
project: Agiil.sln
before_build:
- cmd: >-
nuget restore Agiil.sln
git submodule update --init --recursive
# As of 2017-05-15 it appears AppVeyor use a 32-bit MSBuild.
# This means that we must compile for 32-bit, because otherwise
# the custom 'CompileScssFiles' target will fail on usage of the
# 64-bit flavour of libsass.dll
platform: x86
build:
verbosity: normal
test:
assemblies:
except:
- '**\Agiil.Tests.Common.dll'
- '**\Agiil.BDD.dll'
- '**\Ploeh.AutoFixture.NUnit3.dll'
|
Add expicit solution name; only need to build Agiil
|
Add expicit solution name; only need to build Agiil
|
YAML
|
mit
|
csf-dev/agiil,csf-dev/agiil,csf-dev/agiil,csf-dev/agiil
|
ebb2a78242fd10b157952cb0ad03005d77ea02c9
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 0.1
before_install:
- npm install -g grunt-cli
install:
- npm install
script:
# Reference the locally-installed version of Grunt
- ./node_modules/grunt-cli/bin/grunt test
after_success:
# Check to see if the version file has been updated
- ./create-release-tag.sh
deploy:
provider: heroku
api_key:
secure: h/9/Rcd41XVU4VYYeBoKKvG6uShEoDksCGGZ/2dgeY1f3tYnhGzzgL6TIkvhafwDbKk2Y4o6d/MI05K+s7lorf2uTKpr1To2o52hQqmb4YREPWruZtBqoRo5X4nCeN2oEdW+yJRH3jZDNUmwkPzjytqxkcUUUeDPHfz3+xCtSZk=
app: govuk-prototype-kit
on: master
notifications:
email: false
sudo: false
|
language: node_js
node_js:
- 4.0
before_install:
- npm install -g grunt-cli
install:
- npm install
script:
# Reference the locally-installed version of Grunt
- ./node_modules/grunt-cli/bin/grunt test
after_success:
# Check to see if the version file has been updated
- ./create-release-tag.sh
deploy:
provider: heroku
api_key:
secure: h/9/Rcd41XVU4VYYeBoKKvG6uShEoDksCGGZ/2dgeY1f3tYnhGzzgL6TIkvhafwDbKk2Y4o6d/MI05K+s7lorf2uTKpr1To2o52hQqmb4YREPWruZtBqoRo5X4nCeN2oEdW+yJRH3jZDNUmwkPzjytqxkcUUUeDPHfz3+xCtSZk=
app: govuk-prototype-kit
on: master
notifications:
email: false
sudo: false
|
Update node_js to 4.0 to fix issue with node-sass
|
Update node_js to 4.0 to fix issue with node-sass
Getting this error with node-sass:
Failed at the [email protected] postinstall script.
|
YAML
|
mit
|
companieshouse/ch-accounts-prototype,karlparton/my-govuk,DilwoarH/GDS-Prototype-DM-SavedSearch,joelanman/govuk_prototype_kit,Demwunz/esif-prototype,chrishanes/pvb_prisoner_proto,DilwoarH/GDS-Prototype-DM-SavedSearch,dwpdigitaltech/hrt-prototype,OrcaTom/dwp_contentpatterns,dwpdigitaltech/ejs-prototype,BucksCountyCouncil/verify-local-patterns,davedark/proto-timeline,danblundell/verify-local-patterns,Demwunz/esif-prototype,davedark/proto-timeline,OrcaTom/dwp_contentpatterns,abbott567/govuk_prototype_kit,companieshouse/ch-accounts-prototype,samwake/hoddat-cofc-caseworking,dwpdigitaltech/ejs-prototype,benjeffreys/hmcts-idam-proto,OrcaTom/dwp_contentpatterns,glancyea/tagtest,nhsbsa/ppc-prototype,tsmorgan/marx,arminio/govuk_prototype_kit,dwpdigitaltech/digital-debt,joelanman/govuk_prototype_kit,kenmaddison-scc/verify-local-patterns,arminio/govuk_prototype_kit,danblundell/verify-local-patterns,nhsbsa/ppc-prototype,chrishanes/pvb_prisoner_proto,alphagov/govuk_prototype_kit,paulpod/invgov,kenmaddison-scc/verify-local-patterns,samwake/hoddat-cofc-caseworking,benjeffreys/hmcts-idam-proto,glancyea/tagtest,karlparton/my-govuk,tsmorgan/marx,danblundell/verify-local-patterns,quis/notify-public-research-prototype,arminio/govuk_prototype_kit,benjeffreys/hmcts-idam-proto,quis/notify-public-research-prototype,abbott567/govuk_prototype_kit,nhsbsa/ppc-prototype,DilwoarH/GDS-Prototype-DM-SavedSearch,BucksCountyCouncil/verify-local-patterns,gup-dwp/pip-prototype-v2,tsmorgan/marx,quis/notify-public-research-prototype,gup-dwp/pip-prototype-v2,chrishanes/pvb_prisoner_proto,dwpdigitaltech/hrt-prototype,paulpod/invgov,gup-dwp/pip-prototype-v2,paulpod/invgov,karlparton/my-govuk,dwpdigitaltech/ejs-prototype,joelanman/govuk_prototype_kit,davedark/proto-timeline,Demwunz/esif-prototype,samwake/hoddat-cofc-caseworking,dwpdigitaltech/hrt-prototype,hannalaakso/accessible-timeout-warning,glancyea/tagtest,alphagov/govuk_prototype_kit,kenmaddison-scc/verify-local-patterns,alphagov/govuk_prototype_kit,dwpdigitaltech/digital-debt,gavinwye/govuk_prototype_kit,BucksCountyCouncil/verify-local-patterns,dwpdigitaltech/digital-debt,gavinwye/govuk_prototype_kit,abbott567/govuk_prototype_kit,hannalaakso/accessible-timeout-warning,hannalaakso/accessible-timeout-warning
|
1b81463734cc171aa791810f21fbc743b22db151
|
.travis.yml
|
.travis.yml
|
sudo: required
language: node_js
node_js:
- "6"
- "5"
- "4"
- "0.12"
services:
- docker
env:
DOCKER_VERSION: 1.11.0-0~trusty
DOCKER_COMPOSE_VERSION: 1.7.1
DEBUG: "navy:*"
NAVY_DEBUG: "navy:*"
before_install:
# list docker-engine versions
- apt-cache madison docker-engine
# upgrade docker-engine to specific version
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION}
# reinstall docker-compose at specific version
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
# print versions
- docker --version
- docker-compose --version
before_script:
# bootstrap packages
- npm run bootstrap
|
sudo: required
language: node_js
node_js:
- "5"
- "4"
- "0.12"
services:
- docker
env:
DOCKER_VERSION: 1.11.0-0~trusty
DOCKER_COMPOSE_VERSION: 1.7.1
DEBUG: "navy:*"
NAVY_DEBUG: "navy:*"
before_install:
# list docker-engine versions
- apt-cache madison docker-engine
# upgrade docker-engine to specific version
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION}
# reinstall docker-compose at specific version
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
# print versions
- docker --version
- docker-compose --version
before_script:
# bootstrap packages
- npm run bootstrap
|
Remove Node 6 from build matrix as pty.js doesn't support it
|
Remove Node 6 from build matrix as pty.js doesn't support it
|
YAML
|
mit
|
momentumft/navy,momentumft/navy,momentumft/navy
|
bd1056f806a33d903965e0f41609b61a2861de26
|
.appveyor.yml
|
.appveyor.yml
|
clone_depth: 5
configuration:
- Release
- Debug
image: Visual Studio 2015
platform:
- x64
build_script:
- 'git submodule update --init --recursive'
- "C:\\Python36\\python.exe setup.py"
- ps: Invoke-WebRequest "https://github.com/chigraph/chigraph/releases/download/dependencies/llvm-4.0.0-$env{CONFIGURATION}-msvc14-win64.tar.xz" third_party/llvm-%CONFIGURATION%.tar.xz
- mkdir third_party/llvm-%CONFIGURATION%
- cd third_party/llvm-%CONFIGURATION%
- tar xf ../llvm-%CONFIGURATION%.tar.xz
- cd ../..
- mkdir build
- cd build
- cmake -G'Visual Studio 14 2015 Win64' -DCMAKE_BUILD_TYPE="%CONFIGURATION%" ..
- msbuild chigraph.sln
|
clone_depth: 5
configuration:
- Release
- Debug
image: Visual Studio 2015
platform:
- x64
build_script:
- 'git submodule update --init --recursive'
- ps: Invoke-WebRequest "https://github.com/chigraph/chigraph/releases/download/dependencies/llvm-4.0.0-$env{CONFIGURATION}-msvc14-win64.tar.xz" third_party/llvm-%CONFIGURATION%.tar.xz
- mkdir third_party/llvm-%CONFIGURATION%
- cd third_party/llvm-%CONFIGURATION%
- tar xf ../llvm-%CONFIGURATION%.tar.xz
- cd ../..
- mkdir build
- cd build
- cmake -G'Visual Studio 14 2015 Win64' -DCMAKE_BUILD_TYPE="%CONFIGURATION%" ..
- msbuild chigraph.sln
|
Remove call to setup.py, which isn't a thing for chigrpah
|
Remove call to setup.py, which isn't a thing for chigrpah
|
YAML
|
apache-2.0
|
GuapoTaco/chigraph,chigraph/chigraph,chigraph/chigraph,russelltg/chigraph,GuapoTaco/chigraph,chigraph/chigraph,russelltg/chigraph
|
6461a126ec28c05ef2a4d6b735e6ee7a79a480d1
|
.travis.yml
|
.travis.yml
|
language: php
php:
- "5.4"
- "5.5"
- "5.6"
- "nightly"
- "hhvm"
sudo: false
before_script:
- composer install --no-interaction
- cp config/app_travis.php config/app.php
- cp config/oauth_example.php config/oauth.php
- mysql -e 'create database pmaerr;'
- wget https://scrutinizer-ci.com/ocular.phar
script:
- bin/cake migrations migrate
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml -c phpunit.xml.dist
after_script:
- php vendor/bin/coveralls -v
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
matrix:
allow_failures:
- php: "hhvm"
- php: "nightly"
|
language: php
php:
- "5.6"
- "nightly"
- "hhvm"
sudo: false
before_script:
- composer install --no-interaction
- cp config/app_travis.php config/app.php
- cp config/oauth_example.php config/oauth.php
- mysql -e 'create database pmaerr;'
- wget https://scrutinizer-ci.com/ocular.phar
script:
- bin/cake migrations migrate
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml -c phpunit.xml.dist
after_script:
- php vendor/bin/coveralls -v
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
matrix:
allow_failures:
- php: "hhvm"
- php: "nightly"
|
Remove older PHP versions from Travis
|
Remove older PHP versions from Travis
Our production is 5.6 so there is no need to support anything older.
Signed-off-by: Michal Čihař <[email protected]>
|
YAML
|
mit
|
phpmyadmin/error-reporting-server,madhuracj/error-reporting-server,ujjwalwahi/error-reporting-server,devenbansod/error-reporting-server,ujjwalwahi/error-reporting-server,devenbansod/error-reporting-server,madhuracj/error-reporting-server,madhuracj/error-reporting-server,ujjwalwahi/error-reporting-server,phpmyadmin/error-reporting-server,phpmyadmin/error-reporting-server,devenbansod/error-reporting-server
|
693223af3b24fd92b7031f6f7fa2b55dd926d0df
|
.travis.yml
|
.travis.yml
|
language: php
php:
- "5.3"
- "5.4"
- "5.5"
- "5.6"
- "7.0"
- "hhvm"
matrix:
allow_failures:
- php: 7.0
sudo: false
script:
- if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then vendor/bin/phpunit; fi
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover; fi
|
language: php
php:
- "5.3"
- "5.4"
- "5.5"
- "5.6"
- "7.0"
- "hhvm"
matrix:
allow_failures:
- php: 7.0
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
script:
- if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then vendor/bin/phpunit; fi
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover; fi
|
Make sure dev deps. are installed before testing
|
Make sure dev deps. are installed before testing
|
YAML
|
mit
|
jeremykenedy/html-to-markdown,TomzxForks/html-to-markdown,nickcernis/html-to-markdown,thephpleague/html-to-markdown,deadflowers/html-to-markdown,thephpleague/html-to-markdown,nickcernis/html-to-markdown,jarnix/html-to-markdown
|
4051a25615ead2049f1b1c99fcb4601f93dd276a
|
.travis.yml
|
.travis.yml
|
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8
dist: trusty
language: ruby
jdk:
- oraclejdk8
rvm:
- 2.6.6
install:
- rvm use 2.6.6
- gem install bundler
- bundle install
script: buildr package
git:
depth: false
|
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8
dist: trusty
language: ruby
jdk:
- oraclejdk8
rvm:
- 2.6.6
install:
- gem install bundler
- bundle install
script: buildr package
git:
depth: false
|
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/arez,realityforge/arez,realityforge/arez
|
d70909475a345d2dbb3772e585a976b5fef7ff32
|
.travis.yml
|
.travis.yml
|
language: objective-c
osx_image: xcode8
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- WORKSPACE="Aho-Corasick-Swift.xcworkspace"
- IOS_FRAMEWORK_SCHEME="Aho-Corasick-Swift"
- IOS_SDK=iphonesimulator10.0
matrix:
- DESTINATION="OS=10.0,name=iPhone 7 Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" POD_LINT="NO"
script:
- set -o pipefail
- xcodebuild -version
- xcodebuild -showsdks
- xcodebuild -list
- xcodebuild -workspace "$WORKSPACE" -list
# Build and test Framework in Debug
- xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO test | xcpretty
# Build Framework in ReleaseTest
- xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration ReleaseTest ONLY_ACTIVE_ARCH=NO build | xcpretty
# Run `pod lib lint` if specified
- if [ $POD_LINT == "YES" ]; then
pod lib lint;
fi
- ruby Tests/CheckCocoaPodsQualityIndexes.rb AhoCorasick
|
language: objective-c
osx_image: xcode8
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- WORKSPACE="Aho-Corasick-Swift.xcworkspace"
- IOS_FRAMEWORK_SCHEME="Aho-Corasick-Swift"
- IOS_SDK=iphonesimulator10.0
matrix:
- DESTINATION="OS=10.0,name=iPhone 7 Plus" SCHEME="$IOS_FRAMEWORK_SCHEME" SDK="$IOS_SDK" POD_LINT="NO"
script:
- set -o pipefail
- xcodebuild -version
- xcodebuild -showsdks
- xcodebuild -list
- xcodebuild -workspace "$WORKSPACE" -list
# Build and test Framework in Debug
- xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO test | xcpretty
# Build Framework in ReleaseTest
- xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration ReleaseTest ONLY_ACTIVE_ARCH=NO build | xcpretty
# Run `pod lib lint` if specified
- if [ $POD_LINT == "YES" ]; then
pod lib lint;
fi
# - ruby Tests/CheckCocoaPodsQualityIndexes.rb AhoCorasick
|
Disable CocoaPods Quality Indexes for now
|
Disable CocoaPods Quality Indexes for now
|
YAML
|
apache-2.0
|
fpg1503/Aho-Corasick-Swift,fpg1503/Aho-Corasick-Swift
|
734d9df216a2b04676efa8cd49affed803c31017
|
.travis.yml
|
.travis.yml
|
language: android
jdk:
- oraclejdk8
android:
components:
- tools
- tools
- platform-tools
- build-tools-26.0.2
- android-26
- extra-android-support
- extra-google-google_play_services
- extra-android-m2repository
- extra-google-m2repository
- addon-google_apis-google-21
before_install:
- chmod +x gradlew
script: ./gradlew testRelease jacocoTestReport assembleRelease
after_success:
- bash <(curl -s https://codecov.io/bash)
|
language: android
jdk:
- oraclejdk8
android:
components:
- tools
- tools
- platform-tools
- build-tools-26.0.2
- android-26
- extra-android-support
- extra-google-google_play_services
- extra-android-m2repository
- extra-google-m2repository
- addon-google_apis-google-21
before_install:
- chmod +x gradlew
script: ./gradlew testRelease jacocoTestReport connectedCheck assembleRelease
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Add connectedCheck to include UI tests in code coverage
|
Add connectedCheck to include UI tests in code coverage
|
YAML
|
apache-2.0
|
brave-warrior/TravisClient_Android,brave-warrior/TravisClient_Android,dkhmelenko/TravisClient-Android,brave-warrior/TravisClient-Android,dkhmelenko/TravisClient-Android,dkhmelenko/Varis-Android,dkhmelenko/Varis-Android,brave-warrior/TravisClient-Android,dkhmelenko/Varis-Android
|
1c07f68e238893ba0067f831a96f2a35aa33860c
|
.travis.yml
|
.travis.yml
|
sudo: false
language: go
go:
- 1.11.1
install:
- go get github.com/gwenn/yacr
- go get -tags all github.com/gwenn/gosqlite
before_script:
- go get github.com/bmizerany/assert
script:
# - GODEBUG=cgocheck=2 go test -v -tags all github.com/gwenn/gosqlite
- GODEBUG=cgocheck=0 go test -v -tags all github.com/gwenn/gosqlite
|
sudo: false
language: go
go:
- 1.11.5
install:
- go get github.com/gwenn/yacr
- go get -tags all github.com/gwenn/gosqlite
before_script:
- go get github.com/bmizerany/assert
script:
# - GODEBUG=cgocheck=2 go test -v -tags all github.com/gwenn/gosqlite
- GODEBUG=cgocheck=0 go test -v -tags all github.com/gwenn/gosqlite
|
Upgrade Go version in Travis CI script
|
Upgrade Go version in Travis CI script
|
YAML
|
bsd-3-clause
|
gwenn/gosqlite,gwenn/gosqlite
|
22be5a65ee1d9f2069a09d82aa2e5dda0293974e
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.8"
- "0.10"
before_script:
- npm install -g grunt-cli
|
language: node_js
node_js:
- "0.10"
before_script:
- npm install -g grunt-cli
|
Drop Node.js 0.8 from Travis run
|
build: Drop Node.js 0.8 from Travis run
|
YAML
|
mit
|
Krinkle/qunit-theme-ninja
|
3a9084fdb68c9fb846453c7c6264cf55e97d6577
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- "0.10"
env:
- TEST_DIR=packages/dispatchr
- TEST_DIR=packages/fluxible
- TEST_DIR=packages/fluxible-plugin-fetchr
- TEST_DIR=packages/fluxible-reducer-store
- TEST_DIR=packages/fluxible-addons-react
- TEST_DIR=packages/fluxible-router
- TEST_DIR=packages/generator-fluxible
- TEST_DIR=site
script: cd $TEST_DIR && npm test
after_success:
- "npm run cover"
- "cat artifacts/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
|
sudo: false
language: node_js
node_js:
- "0.10"
env:
- TEST_DIR=/
- TEST_DIR=packages/dispatchr
- TEST_DIR=packages/fluxible
- TEST_DIR=packages/fluxible-plugin-fetchr
- TEST_DIR=packages/fluxible-reducer-store
- TEST_DIR=packages/fluxible-addons-react
- TEST_DIR=packages/fluxible-router
- TEST_DIR=packages/generator-fluxible
- TEST_DIR=site
script: cd $TEST_DIR && npm test
after_success:
- "npm run cover"
- "cat artifacts/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
|
Add root as test directory to test full integration
|
Add root as test directory to test full integration
|
YAML
|
bsd-3-clause
|
pablolmiranda/fluxible
|
b3810bc53d8a7a8f9e86aea5820382657ad79de3
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.0
- 7.1
env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
script:
- vendor/bin/phpunit --coverage-clover ./tests/logs/clover.xml
after_script:
- php vendor/bin/coveralls -v
|
language: php
php:
- 7.0
- 7.1
env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
script:
- vendor/bin/phpunit --coverage-clover ./tests/logs/clover.xml
after_script:
- php vendor/bin/coveralls -v
notifications:
slack:
rooms:
secure: WWZmxESfUhOm/Sh3/XyL9Qd7iZ55Is0I1zhPivnAaN0G8j/nnLC4ihHj5lB8JzjVne0umsbJuJq8j2rTgEs8eLy78tlGQ3Vcxb7aNlAFg+Af790uoV5i2HscMBxBbjUPREK13AzgxuintKNpVG8S++YSe6qM1mIO938CtD+U8Nfbk0JtSV7j7S3aVQVaF4pprkmNOF5Sl2JZ19DoN0EK/r8iXOhwu+udw+CGavBx3gdgRO73mxuHdcGn/EP1kAwkhIIQeas7wYzuu5H29inzQKBsM2eS6vveaUuWSKEa6pXj6YkHmWnWov1+y/Q8XLis0JJT7759b7nKNC1mUFF0PeRGwzWvzYNZ1+WmSap2rB9gSj6l5Q+DAuNY/ULE3np8uWattayjz8KOgwL9XzDtMXjajaTFwkfjLsJmFtSj7dpCOcae8+CZ2pcy2sGxEdP8iKTrLeL+pMcbHNGF3Ez/z4HqoEqIZ856Bj9qu1lvmTZRTAieiBw9aAw5wCzZzLzc+eu41bilQM8GWDHRYNyPZEBqtfNpXhg55FfRY8hIFbax9qTZOewF4cILsRJfdhPNNrnvj4B3sbJEhenSQnb+X0N6ii/iHVgfPFbPQH6EUublfM+cNy3AqEqAR8hccdaM+aFTPGlY8OiRM9Q53i2WIppxqhVA3741dUDXk+JDvFg=
|
Add slack notification on Travis builds
|
Add slack notification on Travis builds
|
YAML
|
mit
|
Rareloop/router
|
741071fe15f40a54f1c3f53b4b1baf758945a704
|
.travis.yml
|
.travis.yml
|
language: "node_js"
node_js:
- node
- 6
services:
- mongodb
|
sudo: false
language: "node_js"
node_js:
- node
- 6
services:
- mongodb
addons:
apt:
sources:
- mongodb-upstart
- mongodb-3.2-precise
packages:
- mongodb-org-server
- mongodb-org-shell
|
Make Travis use MongoDB 3.2
|
Make Travis use MongoDB 3.2
This should hopefully fix some failing tests
|
YAML
|
mit
|
thatJavaNerd/novaXfer,thatJavaNerd/novaXfer,thatJavaNerd/novaXfer
|
6e8d404ea6816976bb8bd20064371029be567e4c
|
.travis.yml
|
.travis.yml
|
language: php
env:
- SYMFONY_DEPS_VERSION=2.1
- SYMFONY_DEPS_VERSION=2.2
before_script:
# symfony/*
- sh -c "if [ '$SYMFONY_DEPS_VERSION' = '2.2' ]; then sed -i 's/>=2.1,<2.3-dev/2.2.*@dev/g' composer.json; composer update --dev --prefer-source; fi"
- composer install --dev --prefer-source
php:
- 5.3
- 5.4
- 5.5
|
language: php
env:
- SYMFONY_DEPS_VERSION=2.1
- SYMFONY_DEPS_VERSION=2.2
before_script:
# symfony/*
- sh -c "if [ '$SYMFONY_DEPS_VERSION' = '2.2' ]; then sed -i 's/>=2.1,<2.3-dev/2.2.*@dev/g' composer.json; composer require --no-update 'symfony/property-access:2.2.*@dev'; composer update --dev --prefer-source; fi"
- composer install --dev --prefer-source
php:
- 5.3
- 5.4
- 5.5
|
Add symfony/property-access require for 2.2
|
Add symfony/property-access require for 2.2
This gives an actual good version of symfony/form instead of some old beta.
|
YAML
|
mit
|
gencer/Silex,romainneutron/Silex,plotek/Silex,peterkokot/Silex,lokhman/Silex,beealone/Silex,fhinkel/Silex,cesarmarinhorj/Silex,mTorres/Silex,Incognito/silex-fork,SpacePossum/Silex,cgsmith/Silex,Xephi/Silex,Xephi/Silex,peterkokot/Silex,jdreesen/Silex,SanderKnape/Silex,peterkokot/Silex,JPry/Silex,SanderKnape/Silex,akucherevskiy/developex_test,GromNaN/Silex,RayRutjes/Silex,tcx1000/Silex,naderman/Silex,arduanov/Silex,mathroc/Silex,CarsonF/Silex,tcx1000/Silex,JPry/Silex,fabpot/Silex,naderman/Silex,plotek/Silex,fabpot/Silex,beealone/Silex,GromNaN/Silex,fhinkel/Silex,akucherevskiy/developex_test,silexphp/Silex,naderman/Silex,jdreesen/Silex,Tobion/Silex,CarsonF/Silex,Tobion/Silex,arduanov/Silex,GromNaN/Silex,romainneutron/Silex,mathroc/Silex,SpacePossum/Silex,Tobion/Silex,akucherevskiy/developex_test,mTorres/Silex,mmauri04/Silex,lokhman/Silex,cesarmarinhorj/Silex,romainneutron/Silex,RayRutjes/Silex,cgsmith/Silex,mmauri04/Silex,Incognito/silex-fork,CarsonF/Silex
|
191d5d05acdfa70ac7a89f1357a1a5b412f23843
|
.travis.yml
|
.travis.yml
|
language: python
sudo: required
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libxmlsec1 xmlsec1 libxmlsec1-openssl libxmlsec1-dev
install:
- pip install -r test/requirements.txt
before_script:
- wget https://github.com/GENI-NSF/geni-tools/archive/v2.10.tar.gz -O /tmp/geni-tools.tar.gz
- tar -xf /tmp/geni-tools.tar.gz -C /tmp
- export PYTHONPATH=$PYTHONPATH:/tmp/geni-tools-2.10/src
script:
- test/travis-build
- python -m unittest discover test
|
language: python
sudo: required
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libxmlsec1 xmlsec1 libxmlsec1-openssl libxmlsec1-dev
- sudo apt-get install -qq -y swig # For pip M2Crypto
install:
- pip install -r test/requirements.txt
before_script:
- wget https://github.com/GENI-NSF/geni-tools/archive/v2.10.tar.gz -O /tmp/geni-tools.tar.gz
- tar -xf /tmp/geni-tools.tar.gz -C /tmp
- export PYTHONPATH=$PYTHONPATH:/tmp/geni-tools-2.10/src
script:
- test/travis-build
- python -m unittest discover test
|
Add swig, pip M2Crypto requires it
|
Add swig, pip M2Crypto requires it
|
YAML
|
mit
|
MarshallBrinn/geni-ch,tcmitchell/geni-ch,tcmitchell/geni-ch,MarshallBrinn/geni-ch
|
f390e35c8f1607cfd429323b2b01eb3299fe4bd3
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.4"
- "pypy3"
nstall:
- travis_retry pip install -r requirements.txt
- travis_retry pip install coveralls
script:
- coverage run --branch --source=mygpoauth ./manage.py test
after_script:
- coveralls
sudo: false
|
language: python
python:
- "3.4"
- "pypy3"
nstall:
- travis_retry pip install -r requirements.txt
- travis_retry pip install coveralls
script:
- coverage run --branch --source=mygpoauth ./manage.py test
after_script:
- coveralls
sudo: false
env:
- DATABASE_URL="postgres://postgres@localhost/mygpo_test"
|
Set DATABASE_URL for Travis-CI tests
|
Set DATABASE_URL for Travis-CI tests
|
YAML
|
agpl-3.0
|
gpodder/mygpo-auth,gpodder/mygpo-auth
|
033c514d09e99e2dd0b90ff4c4d2b9d7d94a49de
|
.travis.yml
|
.travis.yml
|
language: python
python:
- '3.5'
- '3.6'
env:
- HASS=0.95.4
before_install:
- mv secrets_dummy.yaml secrets.yaml
install:
- pip3 install homeassistant==$HASS
script:
- hass -c . --script check_config
|
language: python
python:
- '3.5'
- '3.6'
env:
- HASS=0.96.3
before_install:
- mv secrets_dummy.yaml secrets.yaml
install:
- pip3 install homeassistant==$HASS
script:
- hass -c . --script check_config
|
Update Home Assistant to 0.96.3 for config checks in Travis CI
|
Update Home Assistant to 0.96.3 for config checks in Travis CI
|
YAML
|
mit
|
davidorlea/homeassistant-config,davidorlea/homeassistant-config,davidorlea/homeassistant-config
|
58208c1624562dabc04299694fb3b45d10c9ea80
|
.travis.yml
|
.travis.yml
|
language: python
dist: "xenial"
python:
- "3.5"
- "3.6"
- "3.7"
env:
- DJANGO=1.11
- DJANGO=2.0
- DJANGO=2.1
- DJANGO=2.2
- DJANGO=3.0
- DJANGO=3.1
before_install:
- pip install --upgrade pytest
install:
- pip install -q Django==$DJANGO
- pip install -e .
- pip install -e '.[test]'
- pip install codecov
- cp ci/testsettings.py testsettings.py
- python -c "import uuid; print('SECRET_KEY = \'%s\'' % uuid.uuid4())" >> testsettings.py
script:
- py.test --cov=pucas
after_success:
- codecov
|
language: python
dist: "xenial"
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
env:
- DJANGO=1.11
- DJANGO=2.0
- DJANGO=2.1
- DJANGO=2.2
- DJANGO=3.0
- DJANGO=3.1
matrix:
exclude:
- python: "3.5"
env: DJANGO=3.0
- python: "3.5"
env: DJANGO=3.1
before_install:
- pip install --upgrade pytest
install:
- pip install -q Django==$DJANGO
- pip install -e .
- pip install -e '.[test]'
- pip install codecov
- cp ci/testsettings.py testsettings.py
- python -c "import uuid; print('SECRET_KEY = \'%s\'' % uuid.uuid4())" >> testsettings.py
script:
- py.test --cov=pucas
after_success:
- codecov
|
Update testing matrix to drop py3.5 for django 3.x; add py3.8
|
Update testing matrix to drop py3.5 for django 3.x; add py3.8
|
YAML
|
apache-2.0
|
Princeton-CDH/django-pucas,Princeton-CDH/django-pucas
|
36683f37c983c363ef1c926d063f50de39a00e34
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.0
- 7.1
- 7.2
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit --verbose
|
language: php
php:
- 7.0
- 7.1
- 7.2
- 7.3
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit --verbose
|
Add PHP 7.3 to Travis
|
Add PHP 7.3 to Travis
|
YAML
|
mit
|
laravel/cashier,laravel/cashier
|
5f25fe0d86a1f8f0b95c04be2bd8d56b955bae2d
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.6
- 2.7
# command to run tests
script: python setup.py develop && python setup.py ptr
|
language: python
python:
- 2.6
- 2.7
# command to run tests
script: sudo aptitude install -y tcl && python setup.py develop && python setup.py ptr
|
Install TCL so we can run the test IRC server
|
Install TCL so we can run the test IRC server
|
YAML
|
mit
|
yougov/pmxbot,yougov/pmxbot,yougov/pmxbot
|
e413c8e314d606093315d049fc879e8c6daec10f
|
.travis.yml
|
.travis.yml
|
language: csharp
mono: none
dotnet: 2.0.0
matrix:
include:
- os: linux
dist: trusty
- os: osx
before_install:
- if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get -qq update & sudo apt-get install -y tor; else brew install tor; fi
- sudo killall tor
- tor RunAsDaemon 1 SOCKSPort 9050 ControlPort 9051 HashedControlPassword 16:0978DBAF70EEB5C46063F3F6FD8CBC7A86DF70D2206916C1E2AE29EAF6
- sleep 3
script:
- cd src/DotNetTor.Tests
- dotnet test
|
language: csharp
mono: none
dotnet: 2.0.0
matrix:
include:
- os: linux
dist: trusty
- os: osx
before_install:
- if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get -qq update && sudo apt-get install -y tor; else brew install tor; fi
- sudo killall tor
- tor RunAsDaemon 1 SOCKSPort 9050 ControlPort 9051 HashedControlPassword 16:0978DBAF70EEB5C46063F3F6FD8CBC7A86DF70D2206916C1E2AE29EAF6
- sleep 3
script:
- cd src/DotNetTor.Tests
- dotnet test
|
Fix apt-get running in background
|
Fix apt-get running in background
|
YAML
|
mit
|
nopara73/DotNetTor
|
b4706682943b438f809643b973455c10351788b6
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.0
before_script:
- composer install --prefer-dist
- composer require "satooshi/php-coveralls:^1.0"
script:
- mkdir -p build/logs
- bin/check-code-cov
- vendor/bin/phpunit -c phpunit.xml.dist --coverage-text --coverage-clover ./build/logs/clover.xml
after_script:
- php vendor/bin/coveralls -v
branches:
only:
- develop
|
language: php
php:
- 7.0
- 7.1
before_script:
- composer install --prefer-dist
- composer require "satooshi/php-coveralls:^1.0"
script:
- mkdir -p build/logs
- bin/check-code-cov
- vendor/bin/phpunit -c phpunit.xml.dist --coverage-text --coverage-clover ./build/logs/clover.xml
after_script:
- php vendor/bin/coveralls -v
branches:
only:
- develop
|
Add PHP 7.1 to supported versions
|
Add PHP 7.1 to supported versions
|
YAML
|
mit
|
mihaeu/dephpend,mihaeu/dephpend
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.