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 |
|---|---|---|---|---|---|---|---|---|---|
794fce659aed053ca5c5071bbcb1904e45964e6d | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "iGFpacAiqeg2jVeDL5dbh5w/TPg4okyfWKsYxonYqIPYUbwsyLyGUZULoWh7sK5GMDUPnhMLKAnKCphQO40zjnsnuO3imGqheeCoD1dIENr0fCSVYtEwkTJRePKRNEgGoIRs9/0qNSYLywkHBH53rsx2weXWn9FTNuhS9C8iwZ8="
addons:
coverity_scan:
# GitHub project metadata
project:
name: "SALSA-W/M-SALSA"
description: "Build submitted via Travis CI"
# Commands to prepare for build_command
# ** likely specific to your build **
build_command_prepend: "mvn clean"
# The command that will be added as an argument to "cov-build" to compile your project
build_command: "mvn -DskipTests=true compile"
# Pattern to match selecting branches that will run analysis.
# Take care in resource usage, and consider the build frequency allowances per
# https://scan.coverity.com/faq#frequency
branch_pattern: coverity_scan
script:
mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
notifications:
email: false | language: java
jdk:
- oraclejdk8
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "iGFpacAiqeg2jVeDL5dbh5w/TPg4okyfWKsYxonYqIPYUbwsyLyGUZULoWh7sK5GMDUPnhMLKAnKCphQO40zjnsnuO3imGqheeCoD1dIENr0fCSVYtEwkTJRePKRNEgGoIRs9/0qNSYLywkHBH53rsx2weXWn9FTNuhS9C8iwZ8="
addons:
coverity_scan:
# GitHub project metadata
project:
name: "SALSA-W/M-SALSA"
description: "Build submitted via Travis CI"
notification_email: m.salsa@scientist.com
# Commands to prepare for build_command
# ** likely specific to your build **
build_command_prepend: "mvn clean"
# The command that will be added as an argument to "cov-build" to compile your project
build_command: "mvn -DskipTests=true compile"
# Pattern to match selecting branches that will run analysis.
# Take care in resource usage, and consider the build frequency allowances per
# https://scan.coverity.com/faq#frequency
branch_pattern: coverity_scan
script:
mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
notifications:
email: false | Add mail to test coverity scan | [ADD] Add mail to test coverity scan
| YAML | apache-2.0 | SALSA-W/M-SALSA,SALSA-W/M-SALSA,SALSA-W/M-SALSA,SALSA-W/M-SALSA,SALSA-W/M-SALSA |
dbdfa5489566acac89bf650ecae36322f7f6877f | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
before_install:
- sudo apt-add-repository -y ppa:ubuntu-sdk-team/ppa
- sudo apt-get update -qq
- sudo apt-get install -qq qt5-qmake qtbase5-dev
script:
- qmake -v
- qmake
- make
| language: cpp
compiler:
- gcc
- clang
before_install:
- sudo apt-add-repository -y ppa:ubuntu-sdk-team/ppa
- sudo apt-get update -qq
- sudo apt-get install -qq qt5-default
script:
- qmake -v
- qmake
- make
| Add qt5-default to apt-get install | Add qt5-default to apt-get install
| YAML | lgpl-2.1 | dstftw/qosdnotification,dstftw/qosdnotification |
2ae36c53ed969f3f99e21d756021f8f9885f6485 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
global:
- TEST_COMMAND="composer test"
matrix:
allow_failures:
- php: 7.0
fast_finish: true
include:
- php: 5.4
env:
- COMPOSER_FLAGS="--prefer-stable --prefer-lowest"
- COVERAGE=true
- TEST_COMMAND="composer test-ci"
before_install:
- travis_retry composer self-update
install:
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-source --no-interaction
before_script:
- vendor/bin/http_test_server > /dev/null 2>&1 &
script:
- $TEST_COMMAND
after_success:
- if [[ "$COVERAGE" = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [[ "$COVERAGE" = true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml; fi
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
global:
- TEST_COMMAND="composer test"
matrix:
allow_failures:
- php: 7.0
fast_finish: true
include:
- php: 5.4
env:
- COMPOSER_FLAGS="--prefer-stable --prefer-lowest"
- COVERAGE=true
- TEST_COMMAND="composer test-ci"
before_install:
- travis_retry composer self-update
install:
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-source --no-interaction
script:
- $TEST_COMMAND
after_success:
- if [[ "$COVERAGE" = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [[ "$COVERAGE" = true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml; fi
| Remove HTTP server from testing | Remove HTTP server from testing
| YAML | mit | php-http/httplug,php-http/adapter |
07cd9e335ea9995b6ddaad73b51ec7fafd80011c | .travis.yml | .travis.yml | language: go
go:
- 1.8.3
- 1.7.6
sudo: false
script:
- go vet ./...
- go test ./...
| language: go
go:
- 1.9
- 1.8.3
sudo: false
script:
- go vet ./...
- go test ./...
| Build against current stable versions of Go | Build against current stable versions of Go
(1.9 and 1.8.3) | YAML | mit | TV4/mms |
27e0ef3f2792f6ce4fe3ce97099c4a27319e6f1d | .travis.yml | .travis.yml | language: node_js
node_js: "6"
addons:
apt:
packages:
- fakeroot
- dpkg
- rpm
- libdbus-1-dev
- libglib2.0-dev
- dbus
before_install:
- cd linux/
script:
- yarn build
cache:
yarn: true
directories:
- linux/node_modules
deploy:
- provider: packagecloud
repository: "headset-electron"
username: "headsetapp"
token: "${PACKAGECLOUD_TOKEN}"
dist: "ubuntu/trusty"
local_dir: build/installers
package_glob: "*.deb"
skip_cleanup: true
on:
branch: master
tags: true
- provider: packagecloud
repository: "headset-electron"
username: "headsetapp"
token: "${PACKAGECLOUD_TOKEN}"
dist: "fedora/26"
local_dir: build/installers
package_glob: "*.rpm"
skip_cleanup: true
on:
branch: master
tags: true
| language: node_js
node_js: "6"
addons:
apt:
packages:
- fakeroot
- dpkg
- rpm
- libdbus-1-dev
- libglib2.0-dev
- dbus
before_install:
- cd linux/
script:
- yarn build
git:
depth: 3
cache:
yarn: true
directories:
- linux/node_modules
deploy:
- provider: packagecloud
repository: "headset-electron"
username: "headsetapp"
token: "${PACKAGECLOUD_TOKEN}"
dist: "ubuntu/trusty"
local_dir: build/installers
package_glob: "*.deb"
skip_cleanup: true
on:
branch: master
tags: true
- provider: packagecloud
repository: "headset-electron"
username: "headsetapp"
token: "${PACKAGECLOUD_TOKEN}"
dist: "fedora/26"
local_dir: build/installers
package_glob: "*.rpm"
skip_cleanup: true
on:
branch: master
tags: true
| Reduce depth of `git clone` on Travis This is primarily to speed up the build on Travis | Reduce depth of `git clone` on Travis
This is primarily to speed up the build on Travis
| YAML | mit | fcastilloec/headset-electron,headsetapp/headset-electron,headsetapp/headset-electron,fcastilloec/headset-electron,headsetapp/headset-electron,fcastilloec/headset-electron |
404fc658f5e68c1938cb471095ff084d81154619 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode6.4
before_install:
- "sudo xcode-select --install || true"
# - 'echo "--netrc" >> ~/.curlrc'
# - 'echo -e "machine github.com login $GITHUB_PASSWORD" > ~/.netrc'
# - "chmod 600 ~/.netrc"
- "brew install carthage libssh2"
- "cd vendor && carthage bootstrap --platform mac --no-use-binaries --verbose"
- "cd $TRAVIS_BUILD_DIR"
install: "make"
before_script: "bin/roost update"
script: "bin/roost build -B"
| language: objective-c
osx_image: xcode6.4
before_install:
- "sudo xcode-select --install || true"
# - 'echo "--netrc" >> ~/.curlrc'
# - 'echo -e "machine github.com login $GITHUB_PASSWORD" > ~/.netrc'
# - "chmod 600 ~/.netrc"
- "brew install carthage libssh2"
- "cd vendor && carthage bootstrap --platform mac --no-use-binaries --verbose"
- "cd $TRAVIS_BUILD_DIR"
install: "make"
before_script: "bin/roost update"
script:
- "bin/roost build -B"
# Test that the clean command works
- "bin/roost clean"
# And that it can build after cleaning
- "bin/roost build"
| Add more functionality tests to Travis configuration | Add more functionality tests to Travis configuration
| YAML | bsd-3-clause | dirk/Roost |
2a4e622dbb91a292174bdbd72335752fcf3d07c2 | .travis.yml | .travis.yml | sudo: false # see: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
language: ruby
rvm:
- "2.2.6"
dist: precise
before_install:
- gem update bundler
- nvm install node
- npm install jest
before_script:
- cp config/database.travis.yml config/database.yml
- cp config/app_environment_variables.sample.rb config/app_environment_variables.rb
- mysql -e 'create database lara_test;'
- bundle exec rake db:migrate
# uncomment this line if your project needs to run something other than `rake`:
script: bundle exec rake && bundle exec rake jasmine:ci && npx jest --config jest/jest.travis-config.js
cache: bundler
bundler_args: --without development
# blacklist - these branches aren't feature branches and shouldn't be getting direct commits
branches:
except:
- staging
- production
| sudo: false # see: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
language: ruby
rvm:
- "2.2.6"
dist: precise
before_install:
- gem update bundler
- nvm install node
before_script:
- cp config/database.travis.yml config/database.yml
- cp config/app_environment_variables.sample.rb config/app_environment_variables.rb
- mysql -e 'create database lara_test;'
- bundle exec rake db:migrate
# uncomment this line if your project needs to run something other than `rake`:
script:
- bundle exec rake
- bundle exec rake jasmine:ci
- cd lara-plugin-api && npm i && npm run test
cache: bundler
bundler_args: --without development
# blacklist - these branches aren't feature branches and shouldn't be getting direct commits
branches:
except:
- staging
- production
| Update TravisCI config (jest tests) | Update TravisCI config (jest tests)
[#165062314]
| YAML | mit | concord-consortium/lara,concord-consortium/lara,concord-consortium/lara,concord-consortium/lara,concord-consortium/lara |
1243305e3ee1d72926b673c0c2dafe204257c791 | .travis.yml | .travis.yml | ---
env:
- PUPPET_VERSION=2.7.23
- PUPPET_VERSION=3.3.2
notifications:
email: false
rvm:
- 1.9.3
- 1.8.7
matrix:
allow_failures:
- env: PUPPET_VERSION=2.7.23
language: ruby
before_script: "gem install --no-ri --no-rdoc bundler"
script: 'bundle exec rake validate && bundle exec rake lint && SPEC_OPTS="--format documentation" bundle exec rake spec'
gemfile: Gemfile
| ---
env:
- PUPPET_VERSION=2.7.23
- PUPPET_VERSION=3.3.2
- PUPPET_VERSION=3.4.2
notifications:
email: false
rvm:
- 1.9.3
- 1.8.7
matrix:
allow_failures:
- env: PUPPET_VERSION=2.7.23
language: ruby
before_script: "gem install --no-ri --no-rdoc bundler"
script: 'bundle exec rake validate && bundle exec rake lint && SPEC_OPTS="--format documentation" bundle exec rake spec'
gemfile: Gemfile
| Add testing for Puppet v3.4 | Add testing for Puppet v3.4
| YAML | apache-2.0 | ghoneycutt/puppet-module-skeleton,ghoneycutt/puppet-module-skeleton |
7b8f991a7da895be180aed5d1b36a7eb756e64b7 | .travis.yml | .travis.yml | sudo: required
services:
- docker
language: ruby
bundler_args: --without integration development
rvm:
- 2.1
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rspec spec
script:
- bundle exec rake lint
- bundle exec rake kitchen:all_suites
| sudo: required
services:
- docker
branches:
only:
- master
- /^(i:ci)-\d\.\d\.\d/
language: ruby
bundler_args: --without integration development
rvm:
- 2.1
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rspec spec
script:
- bundle exec rake lint
- bundle exec rake kitchen:all_suites
| Return back build only for master branch and added regexp for tags | Return back build only for master branch and added regexp for tags
| YAML | apache-2.0 | vkhatri/chef-aerospike-cluster,vkhatri/chef-aerospike-cluster,vkhatri/chef-aerospike-cluster,trademob/chef-aerospike-cluster,trademob/chef-aerospike-cluster,trademob/chef-aerospike-cluster |
f114dea34d06cf6953c0a4363094fa825b4c9f6c | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.2.1"
script: npm run test
# For some reason, `sudo: false` broke nvm. Tried this build two times:
# https://s3.amazonaws.com/archive.travis-ci.org/jobs/109619626/log.txt
sudo: false
| language: generic
env:
global:
- NODE_VERSION='4.2.1'
matrix:
include:
- os: linux
sudo: false
- os: osx
install:
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then which gsed || brew install gnu-sed; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then which gtimeout || brew install coreutils; fi
- rm -rf ~/.nvm
- git clone https://github.com/creationix/nvm.git ~/.nvm
- source ~/.nvm/nvm.sh
- nvm install $NODE_VERSION
- node --version
- npm install
script: npm run test
| Test on OSX and Linux on Travis-CI | Test on OSX and Linux on Travis-CI
| YAML | mit | WarpEngineer/bash3boilerplate,WarpEngineer/bash3boilerplate,kvz/bash3boilerplate,WarpEngineer/bash3boilerplate,kvz/bash3boilerplate,kvz/bash3boilerplate,kvz/bash3boilerplate,WarpEngineer/bash3boilerplate |
765e02be88bca0655ae2973626206fe3c4da22ba | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- oraclejdk8
script: "mvn clean install -Dazure.account_name=$account_name -Dazure.access_key=$access_key -Djava.net.preferIPv4Stack=true"
| sudo: false
language: java
jdk:
- oraclejdk8
script: "mvn clean install -Dazure.account_name=$account_name -Dazure.access_key=$access_key -Djava.net.preferIPv4Stack=true"
notifications:
email: false
| Disable email notifications from Travis CI | Disable email notifications from Travis CI
| YAML | apache-2.0 | rhusar/jgroups-azure,jgroups-extras/jgroups-azure |
6e1c968f0627affbf3509e6d1778dc2b17ab4734 | .travis.yml | .travis.yml | language: ruby
cache: bundler
matrix:
fast_finish: true
include:
- rvm: 2.1
env: RUN=default
- rvm: 1.9.3
env: RUN=rspec
- rvm: 2.0.0
env: RUN="rspec mspec"
- rvm: rbx
env: RUN=rspec
- rvm: jruby
env: RUN=rspec
allow_failures:
- rvm: 1.8.7
- rvm: 1.9.3
- rvm: 2.0.0
- rvm: rbx
- rvm: jruby
# Setting TimeZone. We'll need to do this in order to
# have the TZ related failures surface on Travis CI.
# http://stackoverflow.com/a/23374438/601782
before_install:
- git submodule update --init
script:
- "bundle exec rake $RUN"
notifications:
irc: "irc.freenode.org#opal"
webhooks:
urls:
- https://webhooks.gitter.im/e/2ea12333adebda0c2289
| language: ruby
cache: bundler
matrix:
fast_finish: true
include:
- rvm: 2.1
env: RUN=default
- rvm: 1.9.3
env: RUN=rspec
- rvm: 2.0.0
env: RUN="rspec mspec"
- rvm: rbx
env: RUN=rspec
- rvm: jruby
env: RUN=rspec
allow_failures:
- rvm: 1.8.7
- rvm: 1.9.3
- rvm: 2.0.0
- rvm: rbx
- rvm: jruby
# Setting TimeZone. We'll need to do this in order to
# have the TZ related failures surface on Travis CI.
# http://stackoverflow.com/a/23374438/601782
before_install:
- git submodule update --init
- npm install
script:
- "bundle exec rake $RUN"
notifications:
irc: "irc.freenode.org#opal"
webhooks:
urls:
- https://webhooks.gitter.im/e/2ea12333adebda0c2289
| Install npm modules for mspec_node | Install npm modules for mspec_node
| YAML | mit | jgaskins/opal,c42engineering/opal,iliabylich/opal,domgetter/opal,suyesh/opal,kachick/opal,suyesh/opal,fazibear/opal,gausie/opal,castwide/opal,suyesh/opal,Ajedi32/opal,kachick/opal,Flikofbluelight747/opal,bbatsov/opal,merongivian/opal,gausie/opal,c42engineering/opal,wied03/opal,wied03/opal,catprintlabs/opal,gabrielrios/opal,Ajedi32/opal,jannishuebl/opal,gabrielrios/opal,Flikofbluelight747/opal,opal/opal,bbatsov/opal,opal/opal,gausie/opal,jgaskins/opal,domgetter/opal,Flikofbluelight747/opal,Mogztter/opal,kachick/opal,opal/opal,Mogztter/opal,fazibear/opal,iliabylich/opal,jgaskins/opal,jannishuebl/opal,iliabylich/opal,Mogztter/opal,merongivian/opal,bbatsov/opal,catprintlabs/opal,merongivian/opal,gabrielrios/opal,opal/opal,Mogztter/opal,jannishuebl/opal,castwide/opal,catprintlabs/opal,kachick/opal,castwide/opal,Ajedi32/opal,wied03/opal,fazibear/opal,c42engineering/opal |
01b8b00ec19699b79d73c1a4b71f5b186cd98852 | _pkgdown.yml | _pkgdown.yml | url: https://gargle.r-lib.org
authors:
Jennifer Bryan:
href: https://jennybryan.org
navbar:
type: default
left:
- icon: fa-home fa-lg
href: index.html
- text: Articles
menu:
- text: How to use gargle for auth in a client package
href: articles/gargle-auth-in-client-package.html
- text: Request Helper Functions
href: articles/request-helper-functions.html
- text: Reference
href: reference/index.html
- text: News
href: news/index.html
development:
mode: auto
| url: https://gargle.r-lib.org
authors:
Jennifer Bryan:
href: https://jennybryan.org
navbar:
type: default
left:
- icon: fa-home fa-lg
href: index.html
- text: Articles
menu:
- text: How to use gargle for auth in a client package
href: articles/gargle-auth-in-client-package.html
- text: Request Helper Functions
href: articles/request-helper-functions.html
- text: Managing tokens securely
href: articles/articles/managing-tokens-securely.html
- text: Reference
href: reference/index.html
- text: News
href: news/index.html
development:
mode: auto
| Add token management article to menu | Add token management article to menu
| YAML | mit | craigcitro/gauth,ropenscilabs/gauth |
50860b633282586bdd0c8ebfa317cd566cb1d0c2 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
services:
- redis-server
# command to install dependencies
install:
- pip install tox-travis
- python setup.py install
# command to run tests
script:
- tox | language: python
python:
- '2.7'
- '3.3'
- '3.4'
- '3.5'
- '3.6'
services:
- redis-server
install:
- pip install tox-travis
- python setup.py install
script:
- tox
deploy:
provider: pypi
user: meamka
password:
secure: dIIE5MbMD5ZKxlb8PBOtlw0zgyQTZaV7Vp1Htv82hIYWHUqhX8HQXAavCRA3wp9IZ5MO+AvLV+hBxNkRIYdBclUTCCfS51WU4MnUsD55WRgDfEbmr1IbpMg+N07zjkW7gSkaLndE9TZ20FjvpUsRUQIeQQrDMegI7938sq75vCGTPu5SGxpWL4TrfrtICtBPIeVOHY3Ughz7qexzZe+G+6ZX3zxyocHJVIBDVSEkF9V8RQnCK6DZHu+9pLEVB/FRhSK+IvA86P0vsj7sxDE1PbtmUToI7qiUDFmTb8p7Xa84wBNWC5OQzqGQdgyKmneKKLAlKLjGsLVxZybkmGVazPA7WyD/oM4x/h4dNVGtLdDynNyjTlapo+2nDlumHUAgqDfS2I4Xt56rgMthP1kNDxDah3+L7IEau3aL/77GbxAOisok6EXRQs3Na2QTHd86oB2HVPWN2DmwfwmdsoLqGdFtnwMK01xzCe+0pYJQcwYcN6Fr1FpcM8At0IVEBGTCmA4OJN4kFqI2kg4tkbZRpddVA+pRLoF1XEg+NWCvXEEtNfdG6yzQIA6SYatLq+a/QcB6bRW6bskmAKyPMhJuH0qur0YP2Vn9xro8TqsN1TeYiVhOqSo0VgEuW9k1hSo7txG6GdgJOKxUGvg+9s8D1tnfNV5VLNazemZCDQSz1hc=
on:
branch: master
tags: true | Add deploy to pypi to Travis | Add deploy to pypi to Travis
| YAML | mit | dictatorlib/dictator |
f05d6343ef58f63500a5bb5851e577839efe3a36 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.2"
env:
- COBALT_MONGO_URI=mongodb://localhost:27017/cobalt
install:
- npm install
before_script:
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.2.0.tgz -O /tmp/mongodb.tgz
- tar -xvf /tmp/mongodb.tgz
- mkdir /tmp/data
- ${PWD}/mongodb-linux-x86_64-3.2.0/bin/mongod --dbpath /tmp/data --bind_ip 127.0.0.1 --auth &> /dev/null &
- until nc -z localhost 27017; do echo Waiting for MongoDB; sleep 1; done
script:
- npm test
sudo: false
| language: node_js
node_js:
- "4.2"
env:
- COBALT_MONGO_URI=mongodb://localhost:27017/cobalt
install:
- npm install
before_script:
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.2.0.tgz -O /tmp/mongodb.tgz
- tar -xvf /tmp/mongodb.tgz
- mkdir /tmp/data
- ${PWD}/mongodb-linux-x86_64-3.2.0/bin/mongod --dbpath /tmp/data --bind_ip 127.0.0.1 &> /dev/null &
- until nc -z localhost 27017; do echo Waiting for MongoDB; sleep 1; done
script:
- npm test
sudo: false
| Remove --auth on custom MongoDB install | Remove --auth on custom MongoDB install
| YAML | mit | cobalt-uoft/cobalt,kshvmdn/cobalt,cobalt-io/cobalt,cobalt-io/cobalt |
835f85093cb632b343a8c1ece8786ae8d9d0be16 | .travis.yml | .travis.yml | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode9
before_install:
- gem install cocoapods --version 1.2.0
env:
- DESTINATION='platform=iOS Simulator,name=iPhone 6,OS=11.0' UI=true
- DESTINATION='platform=iOS Simulator,name=iPhone 6,OS=10.3.1' UI=true
- DESTINATION='platform=iOS Simulator,name=iPad Air,OS=11.0' UI=true
- DESTINATION='platform=iOS Simulator,name=iPad Air,OS=10.3.1' UI=true
script:
- set -o pipefail
- travis/validate_carthage.sh
- xcodebuild -destination "$DESTINATION" -workspace Example/XCTest-Gherkin.xcworkspace -scheme XCTest-Gherkin-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO test | xcpretty
- if [ $UI ]; then xcodebuild -destination "$DESTINATION" -workspace Example/XCTest-Gherkin.xcworkspace -scheme XCTest-Gherkin-Example-UI -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO test | xcpretty; fi
- pod lib lint --allow-warnings
| # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode9
before_install:
- gem install cocoapods --version 1.2.0
env:
- DESTINATION='platform=iOS Simulator,name=iPhone 6,OS=11.0' UI=true
- DESTINATION='platform=iOS Simulator,name=iPhone 6,OS=10.3.1' UI=true
- DESTINATION='platform=iOS Simulator,name=iPad Air,OS=11.0' UI=true
- DESTINATION='platform=iOS Simulator,name=iPad Air,OS=10.3.1' UI=true
script:
- set -o pipefail
- travis/validate_carthage.sh
- xcodebuild -destination "$DESTINATION" -workspace Example/XCTest-Gherkin.xcworkspace -scheme XCTest-Gherkin-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO test | xcpretty
- if [ $UI ]; then xcodebuild -destination "$DESTINATION" -workspace Example/XCTest-Gherkin.xcworkspace -scheme XCTest-Gherkin-Example-UI -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO test | xcpretty; fi
- pod lib lint --allow-warnings
matrix:
include:
- osx_image: xcode8
env: DESTINATION='platform=iOS Simulator,name=iPhone 6,OS=10.3.1' UI=true
| Add an xcode 8 sanity check | Add an xcode 8 sanity check
| YAML | apache-2.0 | net-a-porter-mobile/XCTest-Gherkin,net-a-porter-mobile/XCTest-Gherkin,net-a-porter-mobile/XCTest-Gherkin,net-a-porter-mobile/XCTest-Gherkin |
b037db719a709fb4be8123cc2ea060856fadfdef | .travis.yml | .travis.yml | language: java
matrix:
include:
- os: linux
dist: precise
jdk: oraclejdk7
env: TEST_SUITE=assemble test --tests '*SystemdJournalAppenderTest*'
- os: linux
jdk: oraclejdk8
env: TEST_SUITE=build
- os: linux
jdk: openjdk8
env: TEST_SUITE=build
- os: linux
jdk: oraclejdk9
env: TEST_SUITE=build
- os: linux
jdk: openjdk10
env: TEST_SUITE=build
script:
- ./gradlew ${TEST_SUITE}
branches:
- master
- 1.x
| language: java
matrix:
include:
- os: linux
dist: precise
jdk: oraclejdk7
env: TEST_SUITE=assemble test --tests '*SystemdJournalAppenderTest*'
- os: linux
jdk: oraclejdk8
env: TEST_SUITE=build
- os: linux
jdk: openjdk8
env: TEST_SUITE=build
- os: linux
jdk: oraclejdk9
env: TEST_SUITE=build
- os: linux
jdk: openjdk10
env: TEST_SUITE=build
- os: linux
jdk: openjdk11
env: TEST_SUITE=build
script:
- ./gradlew ${TEST_SUITE}
branches:
- master
- 1.x
| Build and test on OpenJDK 11 | Build and test on OpenJDK 11
| YAML | bsd-3-clause | bwaldvogel/log4j-systemd-journal-appender,bwaldvogel/log4j-systemd-journal-appender |
9d2247ab02949bc15430d7facb86e9686b1240f8 | .travis.yml | .travis.yml | language: "python"
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
install:
- "make reqs"
script:
- "make test"
| language: "python"
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "pypy"
install:
- "make reqs"
script:
- "make test"
| Add Python 3.7 for unit testing | Add Python 3.7 for unit testing | YAML | mit | frederickjansen/polyline,hicsail/polyline |
45b40d22b0cd9e00068ce44573047e1c89c8b697 | .travis.yml | .travis.yml | language: php
php:
- '5.6'
- '7.0'
- '7.1'
install:
- travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
- if [[ $TRAVIS_PHP_VERSION =~ ^5.6 ]]; then travis_retry composer update $COMPOSER_ARGS --with-dependencies $LEGACY_DEPS ; fi
- if [[ $DEPS == 'latest' ]]; then travis_retry composer require --dev --no-update $COMPOSER_ARGS $LATEST_DEPS ; fi
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
- composer show --installed
| language: php
php:
- '5.6'
- '7.1'
- '7.2'
install:
- travis_retry composer install $COMPOSER_ARGS --ignore-platform-reqs
- if [[ $TRAVIS_PHP_VERSION =~ ^5.6 ]]; then travis_retry composer update $COMPOSER_ARGS --with-dependencies $LEGACY_DEPS ; fi
- if [[ $DEPS == 'latest' ]]; then travis_retry composer require --dev --no-update $COMPOSER_ARGS $LATEST_DEPS ; fi
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
- composer show --installed
| Add php7.2 to Travis test. | Add php7.2 to Travis test.
| YAML | mit | AndyDune/Pipeline |
0d1880bba046fd5bcfb0d59812530b6d1a3c028a | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
gemfile:
- gemfiles/rails_3_2.gemfile
- gemfiles/rails_4_0.gemfile
- gemfiles/rails_4_1.gemfile
- gemfiles/rails_4_2.gemfile
- gemfiles/rails_5_0.gemfile
rvm:
- 2.3.1
- 2.2
- 2.1
- 2.0
- 1.9
matrix:
fast_finish: true
exclude:
- rvm: 1.9
gemfile: gemfiles/rails_5_0.gemfile
- rvm: 2.0
gemfile: gemfiles/rails_5_0.gemfile
- rvm: 2.1
gemfile: gemfiles/rails_5_0.gemfile
- rvm: 2.2
gemfile: gemfiles/rails_5_0.gemfile
- rvm: 2.2
gemfile: gemfiles/rails_3_0.gemfile
- rvm: 2.2
gemfile: gemfiles/rails_3_1.gemfile
- rvm: 2.3.1
gemfile: gemfiles/rails_3_0.gemfile
- rvm: 2.3.1
gemfile: gemfiles/rails_3_1.gemfile
| language: ruby
cache: bundler
sudo: false
gemfile:
- gemfiles/rails_3_0.gemfile
- gemfiles/rails_3_1.gemfile
- gemfiles/rails_3_2.gemfile
- gemfiles/rails_4_0.gemfile
- gemfiles/rails_4_1.gemfile
- gemfiles/rails_4_2.gemfile
- gemfiles/rails_5_0.gemfile
rvm:
- 2.3.1
- 2.2
- 2.1
- 2.0
- 1.9
matrix:
fast_finish: true
exclude:
- rvm: 1.9
gemfile: gemfiles/rails_5_0.gemfile
- rvm: 2.0
gemfile: gemfiles/rails_5_0.gemfile
- rvm: 2.1
gemfile: gemfiles/rails_5_0.gemfile
- rvm: 2.2
gemfile: gemfiles/rails_5_0.gemfile
- rvm: 2.2
gemfile: gemfiles/rails_3_0.gemfile
- rvm: 2.2
gemfile: gemfiles/rails_3_1.gemfile
- rvm: 2.3.1
gemfile: gemfiles/rails_3_0.gemfile
- rvm: 2.3.1
gemfile: gemfiles/rails_3_1.gemfile
| Add rails 3.0 and 3.1 to trvis config | Add rails 3.0 and 3.1 to trvis config
| YAML | mit | rwz/nestive,rwz/nestive |
3baf9484d9e7dfbdfb585541d188421e4a9046e0 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.2
script: bundle exec rspec
before_install:
- gem install bundler
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
script: bundle exec rspec
before_install:
- gem install bundler
| Add newer Ruby versions to Travis config | Add newer Ruby versions to Travis config
| YAML | mit | tomstuart/monads |
afb190c15ab803ebad62940485c620728ef15d19 | .travis.yml | .travis.yml | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
php:
- 5.6
- 7.0
- nightly
- hhvm
matrix:
fast_finish: true
before_install:
- if ([ "hhvm" != "$TRAVIS_PHP_VERSION" ] && [ "nightly" != "$TRAVIS_PHP_VERSION" ]);
then wget https://scrutinizer-ci.com/ocular.phar;
fi
install:
- composer install --prefer-dist
script:
- bin/phpunit -c phpunit.xml.dist --coverage-text
after_script:
- if ([ "hhvm" != "$TRAVIS_PHP_VERSION" ] && [ "nightly" != "$TRAVIS_PHP_VERSION" ]); then
php ocular.phar code-coverage:upload --format=php-clover coverage.xml;
fi
notifications:
email: false
| language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
php:
- 5.6
- 7.0
- nightly
- hhvm
matrix:
allow_failures:
- php: nightly
- php: hhvm
fast_finish: true
before_install:
- if ([ "hhvm" != "$TRAVIS_PHP_VERSION" ] && [ "nightly" != "$TRAVIS_PHP_VERSION" ]);
then wget https://scrutinizer-ci.com/ocular.phar;
fi
install:
- composer install --prefer-dist
script:
- bin/phpunit -c phpunit.xml.dist --coverage-text
after_script:
- if ([ "hhvm" != "$TRAVIS_PHP_VERSION" ] && [ "nightly" != "$TRAVIS_PHP_VERSION" ]); then
php ocular.phar code-coverage:upload --format=php-clover coverage.xml;
fi
notifications:
email: false
| Enable Travis failure for nightly PHP builds and HHVM | Enable Travis failure for nightly PHP builds and HHVM
| YAML | mit | theofidry/LaravelYaml |
f68b86f0a21a510c901a3eee388a03a8cf4d7b13 | .travis.yml | .travis.yml | language: cpp
dist: trusty
sudo: false
script: make
compiler:
- clang
- gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-4.0
packages:
- gcc-6
- g++-6
- cmake
- libboost-all-dev
- clang-4.0
| language: cpp
dist: trusty
sudo: false
script: make
env:
- CXX=clang++-4.0 CC=clang-4.0
- CXX=g++-6 CC=gcc-6
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-4.0
packages:
- gcc-6
- g++-6
- cmake
- libboost-all-dev
- clang-4.0
| Use env instead of compiler | Use env instead of compiler
| YAML | bsd-2-clause | potree/PotreeConverter,potree/PotreeConverter,potree/PotreeConverter,potree/PotreeConverter,potree/PotreeConverter,potree/PotreeConverter,potree/PotreeConverter |
36711f87e39ccb3f7e0b439ee7d65a197539e08b | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '8'
- '10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '6'
- '8'
- '10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| Build with Node.js 6 at Travis CI. | Build with Node.js 6 at Travis CI.
| YAML | mit | bigeasy/reconfigure,bigeasy/reconfigure |
f258c6988a13bd12f9e4f057c462640cdfa3f959 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2
- 2.1
- 2.0
- 1.9.3
- jruby-9000
- jruby-19mode
env:
- PARSE_APPLICATION_ID=Slw1ACyMSVguo79pWvfIq15pkUjfwTLNPpL4984b PARSE_REST_API_KEY=qJKM8CGOAn70WOyR16f16YbyKWM0nBJCEbbtAMOm
sudo: false
| language: ruby
rvm:
- 2.3
- 2.2
- 2.1
- 2.0.0
- 1.9.3
- jruby
- jruby-1.7
env:
- PARSE_APPLICATION_ID=Slw1ACyMSVguo79pWvfIq15pkUjfwTLNPpL4984b PARSE_REST_API_KEY=qJKM8CGOAn70WOyR16f16YbyKWM0nBJCEbbtAMOm
sudo: false
| Test against the latest releases of each Ruby version | Test against the latest releases of each Ruby version
| YAML | mit | nickuya/parse-ruby-client,adelevie/parse-ruby-client,nickuya/parse-ruby-client,adelevie/parse-ruby-client |
21bd4192b8ba79e917f93274fb9b38f9e7a2cb7c | .travis.yml | .travis.yml | language: shell
os: linux
dist: xenial
git:
depth: false
branches:
only:
- master
- dev
services:
- docker
env:
- VERSION=36
- VERSION=37
- VERSION=38
- LATEST_LTS=36
- LATEST=38
- DB_TYPE=all
- DB_TYPE=mysqli
- DB_TYPE=pgsql
- DOCKERFILE=dockerfiles/apache/Dockerfile
- DOCKERFILE=dockerfiles/fpm_alpine/Dockerfile
script: bash travis/build.sh
deploy:
- provider: script
on:
branch: master
script: bash travis/~/co deploy.sh
| language: shell
os: linux
dist: xenial
git:
depth: false
services:
- docker
env:
- VERSION=36
- VERSION=37
- VERSION=38
- LATEST_LTS=36
- LATEST=38
- DB_TYPE=all
- DB_TYPE=mysqli
- DB_TYPE=pgsql
- DOCKERFILE=dockerfiles/apache/Dockerfile
- DOCKERFILE=dockerfiles/fpm_alpine/Dockerfile
script: bash travis/build.sh
deploy:
- provider: script
on:
branch: master
script: bash travis/deploy.sh
| Test Build on any branch. | Test Build on any branch.
| YAML | agpl-3.0 | ellakcy/docker-moodle,ellakcy/docker-moodle |
31b48a00c597e6cef13685ef9450a0c25b687355 | .travis.yml | .travis.yml | language: rust
cache: cargo
rust:
- nightly
before_script: "(cargo install rustfmt || true)"
script:
- cargo fmt -- --write-mode=diff && cargo build && cargo test
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
cargo rustdoc -- --no-defaults --passes collapse-docs --passes unindent-comments &&
echo "<meta http-equiv=refresh content=0;url=`echo $TRAVIS_REPO_SLUG | cut -d '/' -f 2`/index.html>" > target/doc/index.html &&
sudo pip install ghp-import &&
ghp-import -n target/doc &&
git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
| language: rust
cache: cargo
dist: trusty
os:
- linux
# Run builds for all the supported trains
rust:
- stable
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
- gcc
- binutils-dev
- libiberty-dev
before_script: "(cargo install rustfmt || true)"
# The main build
script:
- cargo fmt -- --write-mode=diff && cargo build && cargo test
# Upload docs
after_success: |
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
tar xzf master.tar.gz &&
cd kcov-master &&
mkdir build &&
cd build &&
cmake .. &&
make &&
make install DESTDIR=../../kcov-build &&
cd ../.. &&
rm -rf kcov-master &&
for file in target/debug/gemini-*[^\.d]; do mkdir -p "target/cov/$(basename $file)"; ./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done &&
bash <(curl -s https://codecov.io/bash) &&
echo "Uploaded code coverage" &&
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
cargo rustdoc -- --no-defaults --passes collapse-docs --passes unindent-comments &&
echo "<meta http-equiv=refresh content=0;url=`echo $TRAVIS_REPO_SLUG | cut -d '/' -f 2`/index.html>" > target/doc/index.html &&
sudo pip install ghp-import &&
ghp-import -n target/doc &&
git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
| Add automatic code coverage reports | Add automatic code coverage reports
| YAML | mit | holmgr/gemini,holmgr/gemini |
32ae05a60d392fd2b289b4e8a712223c454d8b13 | .travis.yml | .travis.yml | language: ruby
sudo: false
services:
- mysql
rvm:
- 2.5.8
- 2.6.6
- 2.7.1
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/rails_6.0.gemfile
before_install:
- "[[ $BUNDLE_GEMFILE =~ rails_4\\.2 ]] && gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true"
- "[[ $BUNDLE_GEMFILE =~ rails_4\\.2 ]] && gem install bundler -v '< 2' || true"
- "[[ $BUNDLE_GEMFILE =~ rails_4\\.2 ]] && export BUNDLER_VERSION=1.17.3 || true"
before_script:
- RAILS_ENV=test bundle exec rake db:setup
| language: ruby
sudo: false
services:
- mysql
rvm:
- 2.5.8
- 2.6.6
- 2.7.1
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/rails_6.0.gemfile
before_install:
- "[[ $BUNDLE_GEMFILE =~ rails_4\\.2 ]] && gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true"
- "[[ $BUNDLE_GEMFILE =~ rails_4\\.2 ]] && gem install bundler -v '< 2' || true"
before_script:
- RAILS_ENV=test bundle exec rake db:setup
matrix:
fast_finish: false
exclude:
- rvm: 2.7.1
gemfile: gemfiles/rails_4.2.gemfile
| Drop ruby 2.7.1 and rails 4.2 from Travis CI target | Drop ruby 2.7.1 and rails 4.2 from Travis CI target
Rails 4.2 uses BigDecimal.new, but it dropped from ruby 2.7.
| YAML | mit | cookpad/garage,cookpad/garage,cookpad/garage,cookpad/garage |
113972c8a483db75c66fc5e4ce42b132da3ff20c | .travis.yml | .travis.yml | language: python
os: linux
dist: xenial
matrix:
include:
- env: NOXSESSION=docs
- env: NOXSESSION=lint
- python: 3.6
env: NOXSESSION=test-3.6
- python: 3.7
env: NOXSESSION=test-3.7
- python: 3.8
env: NOXSESSION=test-3.8
install: pip install nox
script: nox
| language: python
os: linux
dist: xenial
python: 3.8
matrix:
include:
- env: NOXSESSION=docs
- env: NOXSESSION=lint
- python: 3.6
env: NOXSESSION=test-3.6
- python: 3.7
env: NOXSESSION=test-3.7
- python: 3.8
env: NOXSESSION=test-3.8
install: pip install nox
script: nox
| Use Python 3.8 on Travis CI | Use Python 3.8 on Travis CI
| YAML | mit | GaretJax/sphinx-autobuild |
6c1772fd0f42be099de54dd5ff49e9400a656ce4 | .travis.yml | .travis.yml | script: rake ci
bundler_args: --without custom
rvm:
- 1.9.3
- ruby-head
- jruby-19mode
- jruby-head # FIXME: timers firing in the wrong order?
- rbx-19mode
matrix:
allow_failures:
- rvm: jruby-head
- rvm: rbx-19mode
notifications:
irc: "irc.freenode.org#celluloid"
| script: rake ci
bundler_args: --without custom
rvm:
- 1.9.3
- ruby-head
- jruby-19mode
- jruby-head
- rbx-19mode
notifications:
irc: "irc.freenode.org#celluloid"
| Remove rbx and jruby from allowed failures | Remove rbx and jruby from allowed failures
| YAML | mit | celluloid/celluloid,jasonm23/celluloid,kenichi/celluloid,TiagoCardoso1983/celluloid,dilumn/celluloid,davydovanton/celluloid,jstoja/celluloid,sideci-sample/sideci-sample-celluloid,mehta/celluloid,tarcieri/celluloid,marshall-lee/celluloid,seuros/celluloid,olleolleolle/celluloid |
c34671586aac87154e6a5d785aba15e11bf50bc9 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
script:
- python setup.py test
- python setup.py check_style
| language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
script: python setup.py check_style test
| Check code style in Travis | Check code style in Travis
| YAML | mit | mcrute/pydora |
0f1a1e8f41d5f8632af34555c7821907832c04bb | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
env:
- DOCTRINE_VERSION=2.1.*
- DOCTRINE_VERSION=2.2.*
- DOCTRINE_VERSION=2.3.*
- DOCTRINE_VERSION=2.4.*
install:
- composer self-update
- composer install
- composer require doctrine/orm:${DOCTRINE_VERSION} --dev --prefer-source --update-with-dependencies
notifications:
email: false
script: vendor/bin/phpunit
cache:
directories:
- $COMPOSER_CACHE_DIR
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
env:
- DOCTRINE_VERSION=2.1.*
- DOCTRINE_VERSION=2.2.*
- DOCTRINE_VERSION=2.3.*
- DOCTRINE_VERSION=2.4.*
- DOCTRINE_VERSION=2.5.*
install:
- composer self-update
- composer install
- composer require doctrine/orm:${DOCTRINE_VERSION} --dev --prefer-source --update-with-dependencies
notifications:
email: false
script: vendor/bin/phpunit
cache:
directories:
- $COMPOSER_CACHE_DIR
| Revert "Avoid testing against Doctrime 2.5 (temporarily), fails" | Revert "Avoid testing against Doctrime 2.5 (temporarily), fails"
This reverts commit 8968d3eabae17a1fdd449183c7e2cb72d0946057.
| YAML | bsd-3-clause | enumag/DoctrineExtensions,nimasdj/DoctrineExtensions,zilionis/DoctrineExtensions,pelex/DoctrineExtensions,pnvasanth/DoctrineExtensions |
65750cca0b8c7c1e5e11ac985fd51119c9942fc2 | .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.3.1
install:
- rvm use 2.3.1
- gem install bundler
- bundle install
script: buildr package jacoco:report
after_success:
- bash <(curl -s https://codecov.io/bash)
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:
- rvm use 2.3.1
- gem install bundler
- bundle install
script: buildr package jacoco:report
after_success:
- bash <(curl -s https://codecov.io/bash)
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/replicant,realityforge/replicant |
e0d463ba6b1baf712dc79e4df1c3aaeb9026948d | .travis.yml | .travis.yml | language: php
env:
- SYMFONY_DEPS_VERSION=2.3
# - SYMFONY_DEPS_VERSION=2.4
before_script:
# symfony/*
- composer self-update
# - sh -c "if [ '$SYMFONY_DEPS_VERSION' = '2.4' ]; then sed -i 's/>=2.3,<2.5-dev/2.4.*@dev/g' composer.json; fi"
- sh -c "if [ '$SYMFONY_DEPS_VERSION' = '2.3' ]; then sed -i 's/>=2.3,<2.5-dev/2.3.*@dev/g' composer.json; fi"
- sh -c "if [ '${TRAVIS_PHP_VERSION:0:3}' = '5.3' ]; then sed -i 's~</whitelist>~<exclude><file>src/SilexRouting/Application/RoutingTrait.php</file></exclude></whitelist>~g' phpunit.xml.dist; fi"
- composer update --prefer-source
script:
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- php vendor/bin/coveralls -v
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
| language: php
env:
- SYMFONY_VERSION=2.3
- SYMFONY_VERSION=2.4
before_script:
- sed -i "s/>=2.3,<2.5-dev/~${SYMFONY_VERSION}.0/g" composer.json
- sh -c "if [ '${TRAVIS_PHP_VERSION:0:3}' = '5.3' ]; then sed -i 's~</whitelist>~<exclude><file>src/SilexRouting/Application/RoutingTrait.php</file></exclude></whitelist>~g' phpunit.xml.dist; fi"
- composer install
script:
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- php vendor/bin/coveralls -v
php:
- 5.3
- 5.4
- 5.5
- hhvm
| Test against symfony 2.4 and hhvm | Test against symfony 2.4 and hhvm
| YAML | mit | chili-labs/Silex-Routing |
24542089e03b13ea6890abf0e2839fa4e7184008 | .travis.yml | .travis.yml |
language: ruby
rvm:
#- 1.8.7 # no, since it doesn't get fun(a, *b, c) or fun0\n.fun1
#- 1.9.3 # Travis broken September 2017
#- 2.1.1
- 2.2.2
- 2.3.1
- 2.4.1
- 2.5.1
#- jruby-18mode
- jruby-19mode
- jruby-20mode
#matrix:
# include:
# - rvm: jruby-9.1.13.0
# #- env: JRUBY_OPTS="--profile.api"
#before_install: gem install bundler
script: bundle exec rspec
branches:
only:
- master
#except:
# - master
cache: bundler
|
language: ruby
rvm:
#- 1.8.7 # no, since it doesn't get fun(a, *b, c) or fun0\n.fun1
#- 1.9.3 # Travis broken September 2017
#- 2.1.1
- 2.2.2
- 2.3.1
- 2.4.1
- 2.5.1
- 2.7.1
#- jruby-9.1.13.0
- jruby-9.2.5.0
#matrix:
# include:
# - rvm: jruby-9.1.13.0
# #- env: JRUBY_OPTS="--profile.api"
#before_install: gem install bundler
script: bundle exec rspec
branches:
only:
- master
#except:
# - master
cache: bundler
| Test on Ruby 2.7 and JRuby 2.5 | Test on Ruby 2.7 and JRuby 2.5
| YAML | mit | jmettraux/raabro |
d2668988d1d6148e2880bc5d6b08b5a4ee925974 | .travis.yml | .travis.yml | language: cpp
compiler:
- clang
- gcc
before_script:
# nomlib dependencies (SDL)
- sudo apt-get install libsdl1.2-dev libsdl1.2debian libsdl-image1.2-dev libsdl-image1.2 libsdl-ttf2.0-dev libsdl-ttf2.0-0
# nomlib dependencies (Audio)
- sudo apt-get install libsndfile1-dev libopenal-dev
- mkdir build && cd build && cmake ..
script:
- make -j4
# whitelist
branches:
only:
- dev
| language: cpp
compiler:
- clang
- gcc
before_install:
# nomlib dependencies (SDL)
- sudo apt-get install libsdl1.2-dev libsdl1.2debian libsdl-image1.2-dev libsdl-image1.2 libsdl-ttf2.0-dev libsdl-ttf2.0-0
# nomlib dependencies (Audio)
- sudo apt-get install libsndfile1-dev libopenal-dev
before_script:
- mkdir -p build && cd build && cmake ..
script:
- make -j4
- make install
- make uninstall
# whitelist
branches:
only:
- dev
| Add separate make, make install & uninstall steps | Add separate make, make install & uninstall steps
| YAML | bsd-2-clause | i8degrees/nomlib,i8degrees/nomlib,i8degrees/nomlib,i8degrees/nomlib |
6ee7817dd9b8f07e80ba5d847f7b14828fac5986 | .travis.yml | .travis.yml | language: ruby
rvm:
- "2.2.3"
# make Travis use its legacy infrastructure
sudo: true
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rake lang:update
install: ./script/travis_setup
before_script:
- rake db:schema:load
- rake db:fixtures:load
- rake lang:update
| language: ruby
rvm:
- "2.2.3"
# make Travis use its legacy infrastructure
sudo: true
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rake lang:update
install: ./script/travis_setup
before_script:
- rake db:schema:load
- rake db:fixtures:load
- rake lang:update
# translation controller tests need this file
- rake lang:export:el
| Make Travis create Greek translation file | Make Travis create Greek translation file
The non-English .txt files had been deleted.
But some translation controller tests need the Greek file, el.txt.
(If it doesn't exist the tests throw an Error.)
Therefore create it.
Thanks to @pellaea for the fix!
| YAML | mit | pellaea/mushroom-observer,JoeCohen/mushroom-observer,JoeCohen/mushroom-observer,MushroomObserver/mushroom-observer,JoeCohen/mushroom-observer,pellaea/mushroom-observer,pellaea/mushroom-observer,MushroomObserver/mushroom-observer,JoeCohen/mushroom-observer,MushroomObserver/mushroom-observer,JoeCohen/mushroom-observer,MushroomObserver/mushroom-observer,MushroomObserver/mushroom-observer,pellaea/mushroom-observer,JoeCohen/mushroom-observer,JoeCohen/mushroom-observer,pellaea/mushroom-observer,MushroomObserver/mushroom-observer,pellaea/mushroom-observer,MushroomObserver/mushroom-observer,pellaea/mushroom-observer |
80a2a21cc00abbb67476b7f3bb2f46dbf3a563b5 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.6"
- "3.8"
# command to install dependencies
install:
- "pip install --upgrade flake8>=3.7.9 pyparsing==2.4.4 pytest==4.6.6"
# install modules shipped with pythonista
- "pip install -r tests/pythonista_modules.txt"
before_script:
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings.
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=88 --statistics
# show pytest version
- pytest --version
# command to run tests
script: pytest tests/ --ignore=tests/system/data/ --showlocals --verbose --show-capture=all --log-level=debug
| language: python
python:
- "2.7"
- "3.6"
- "3.8"
matrix:
include:
allow_failures:
- python: 3.8
# command to install dependencies
install:
- "pip install --upgrade flake8>=3.7.9 pyparsing==2.4.4 pytest==4.6.6"
# install modules shipped with pythonista
- "pip install -r tests/pythonista_modules.txt"
before_script:
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings.
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=88 --statistics
# show pytest version
- pytest --version
# command to run tests
script: pytest tests/ --ignore=tests/system/data/ --showlocals --verbose --show-capture=all --log-level=debug
| Allow failures on Python 3.8 | Allow failures on Python 3.8 | YAML | mit | ywangd/stash,ywangd/stash |
413e3c7436ddd240dc8478d1957d24c7967ff01d | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
env:
- QT4_BUILD=ON
- QT4_BUILD=OFF
before_install:
- sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
- sudo add-apt-repository --yes ppa:kalakris/cmake
- sudo apt-get update -qq
- sudo apt-get install -qq cmake libqtcore4 qt4-qmake libqt5core5 qt5-qmake qt5-default qtchooser libmsgpack-dev
script:
- mkdir build
- cd build
- cmake ..
- make
- make test
| language: cpp
compiler:
- gcc
env:
- QT4_BUILD=ON
- QT4_BUILD=OFF
before_install:
- sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
- sudo add-apt-repository --yes ppa:kalakris/cmake
- sudo apt-get update -qq
- sudo apt-get install -qq cmake libqtcore4 qt4-qmake libqt5core5 qt5-qmake qt5-default qtchooser libmsgpack-dev
script:
- mkdir build
- cd build
- cmake ..
- make
- make test
| Disable clang build on Travis for now. | Disable clang build on Travis for now.
Travis runs 12.04 (old!), and there are only PPA packages for
Qt 5.0.2, which contains a bug [1] (which has since been fixed in
[2]) that fails the build when using clang.
We have to either
* wait until Travis CI moves to 14.04 [3], or
* someone provides more recent Qt packages for 12.04 (unlikely).
Anyway, the two builds on Travis should now pass.
[1] https://bugreports.qt.io/browse/QTBUG-32100
[2] https://codereview.qt-project.org/#/c/60150/
| YAML | mit | romixlab/qmsgpack-patched,romixlab/qmsgpack,toby20130333/qmsgpack,jiangcaiyang/qmsgpack-patched,toby20130333/qmsgpack,romixlab/qmsgpack-patched,jiangcaiyang/qmsgpack-patched,romixlab/qmsgpack |
49f5bd4d380b3352e91a0379ec8cc4ffb387f113 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- "pip install ."
script: "python tests/test_parse.py"
| language: python
python:
- "2.7"
- "3.3"
install:
- "pip install ."
script: "python tests/test_parse.py"
| Add python version for testing | Add python version for testing
| YAML | mit | divijbindlish/parse-torrent-name |
6fc21ce1f380b1dd830c8dd63924a9d10ed01186 | .travis.yml | .travis.yml | language: php
php:
- '7.0'
- '7.1'
install: composer install
after_success:
- vendor/bin/test-reporter
addons:
code_climate:
repo_token: $CODECLIMATE_TOKEN
| language: php
php:
- '7.0'
- '7.1'
install: composer install
script: vendor/bin/phpunit
after_success:
- vendor/bin/test-reporter
addons:
code_climate:
repo_token: $CODECLIMATE_TOKEN
| Use vendor version of phpunit to run tests in Travis-CI | Use vendor version of phpunit to run tests in Travis-CI
| YAML | mit | stijink/homescreen,stijink/homescreen,stijink/homescreen,stijink/homescreen |
eb32e0b77cadd4db985301f96b1c1863366666d2 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- rbx
- rbx-2.0
- ree
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- rbx-18mode
- rbx-19mode
- ree
| Test against Rubinius in both Ruby 1.8 and 1.9 mode | Test against Rubinius in both Ruby 1.8 and 1.9 mode
| YAML | mit | ngpestelos/omniauth,yui-knk/omniauth,poznyakandrey/omniauth,thomasmillergb/Year2-ruby-software-hut,ayunav/omniauth,sideci-sample/sideci-sample-omniauth,dougal/omniauth,omniauth/omniauth,twalpole/omniauth,intridea/omniauth,thomasmillergb/Year2-ruby-software-hut,likeberi/omniauth,nbrustein/omniauth |
597d82f560c8c7e2411d0537a896e6f6e5d598ba | .travis.yml | .travis.yml | # Travis CI script
language: python
python:
- "2.7"
install:
- pip install -r requirements.txt
script: py.test | # Travis CI script
language: python
python:
- "2.7"
cache: pip
install:
- pip install -r requirements.txt
script: py.test | Add caching for Travis CI | Add caching for Travis CI
Enable Travis CI pip caching for faster builds.
| YAML | mit | Jacobinski/SaltBot |
8534a0c9f7c8d81ea5e1d9d63a17e0a468d785b8 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- ree
- 1.9.2
- 1.9.3
- jruby
- rbx-18mode
# - rbx-19mode
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- rbx
- rbx-2.0
- ree
| Revert "Test against Rubinius in both Ruby 1.8 and 1.9 mode" | Revert "Test against Rubinius in both Ruby 1.8 and 1.9 mode"
This reverts commit eb32e0b77cadd4db985301f96b1c1863366666d2.
Conflicts:
.travis.yml
| YAML | mit | thomasmillergb/Year2-ruby-software-hut,likeberi/omniauth,dougal/omniauth,yui-knk/omniauth,nbrustein/omniauth,thomasmillergb/Year2-ruby-software-hut,poznyakandrey/omniauth,ngpestelos/omniauth,sideci-sample/sideci-sample-omniauth,ayunav/omniauth,omniauth/omniauth,twalpole/omniauth,intridea/omniauth |
f50983f582c91948ef244d357010da1d71850514 | .travis.yml | .travis.yml | language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- cpanm --quiet --notest Devel::Cover::Report::Coveralls
script:
- cover -delete && cover -test
after_success:
- cover -report coveralls | sudo: false
sudo: false
language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- cpanm --quiet --notest Devel::Cover::Report::Coveralls
script:
- cover -delete && cover -test
after_success:
- cover -report coveralls | Add v5.22 to Travis, and run in container by turning off sudo | Add v5.22 to Travis, and run in container by turning off sudo
| YAML | artistic-2.0 | jmaslak/PerlPowerTools,jmaslak/PerlPowerTools |
cbfcbdbec0bbe56fc7c1f21493faf6ee5a80e944 | .travis.yml | .travis.yml | language: python
env:
- TWISTED=Twisted==12.0 RUNTESTS=trial
- TWISTED=Twisted==12.1 RUNTESTS=trial
- TWISTED=Twisted==12.2 RUNTESTS=trial
- TWISTED=Twisted==12.3 RUNTESTS=trial
- TWISTED=Twisted==13.0 RUNTESTS=trial
- TWISTED=Twisted==13.1 RUNTESTS=trial
- TWISTED=Twisted==13.2 RUNTESTS=trial
python:
- 2.6
- 2.7
- pypy
matrix:
include:
- python: 3.3
env: TWISTED=git+https://github.com/twisted/twisted.git RUNTESTS="python -m unittest discover"
install:
- python setup.py --version
- pip install -q --no-use-wheel $TWISTED --use-mirrors
- python setup.py -q install
script: $RUNTESTS crochet.tests
notifications:
email: false
| language: python
env:
- TWISTED=Twisted==12.1 RUNTESTS=trial
- TWISTED=Twisted==12.2 RUNTESTS=trial
- TWISTED=Twisted==12.3 RUNTESTS=trial
- TWISTED=Twisted==13.0 RUNTESTS=trial
- TWISTED=Twisted==13.1 RUNTESTS=trial
- TWISTED=Twisted==13.2 RUNTESTS=trial
- TWISTED=Twisted==14.0 RUNTESTS=trial
python:
- 2.6
- 2.7
- pypy
matrix:
include:
- python: 3.3
env: TWISTED=14.0 RUNTESTS="python -m unittest discover"
install:
- python setup.py --version
- pip install -q --no-use-wheel $TWISTED --use-mirrors
- python setup.py -q install
script: $RUNTESTS crochet.tests
notifications:
email: false
| Test with Twisted 14.0 on both Python 2 and 3. | Test with Twisted 14.0 on both Python 2 and 3.
| YAML | mit | wrmsr/crochet,rolando/crochet,itamarst/crochet |
05430bc7b1263b27d33f764221c836b2a7969166 | .travis.yml | .travis.yml | dist: xenial
matrix:
fast_finish: true
include:
- language: java
jdk: openjdk8
env: FRONT=false
- language: java
jdk: oraclejdk8
env: FRONT=false
- language: java
jdk: openjdk9
env: FRONT=false
- language: java
jdk: oraclejdk9
env: FRONT=false
- language: java
jdk: openjdk10
env: FRONT=false
- language: java
jdk: openjdk11
env: FRONT=false
- language: java
jdk: oraclejdk11
env: FRONT=false
- language: node_js
node_js: lts/*
env: FRONT=true
- language: node_js
node_js: node
env: FRONT=true
allow_failures:
- jdk: openjdk9
- jdk: oraclejdk9
- jdk: openjdk10
- jdk: openjdk11
- jdk: oraclejdk11
before_install:
- if [[ $FRONT = 'true' ]]; then curl -o- -L https://yarnpkg.com/install.sh | bash -s; fi
- if [[ $FRONT = 'true' ]]; then PATH=$HOME/.yarn/bin:$PATH; fi
- if [[ $FRONT = 'true' ]]; then cd front; fi
| matrix:
fast_finish: true
include:
- language: java
jdk: openjdk8
env: FRONT=false
- language: java
jdk: oraclejdk8
env: FRONT=false
- language: java
jdk: openjdk9
env: FRONT=false
- language: java
jdk: oraclejdk9
env: FRONT=false
- language: java
jdk: openjdk10
env: FRONT=false
- language: java
jdk: openjdk11
env: FRONT=false
- language: java
jdk: oraclejdk11
env: FRONT=false
- language: node_js
node_js: lts/*
env: FRONT=true
- language: node_js
node_js: node
env: FRONT=true
allow_failures:
- jdk: openjdk9
- jdk: oraclejdk9
- jdk: openjdk10
- jdk: openjdk11
- jdk: oraclejdk11
before_install:
- if [[ $FRONT = 'true' ]]; then curl -o- -L https://yarnpkg.com/install.sh | bash -s; fi
- if [[ $FRONT = 'true' ]]; then PATH=$HOME/.yarn/bin:$PATH; fi
- if [[ $FRONT = 'true' ]]; then cd front; fi
| Revert xenial as jdk8 is not configured properly | Revert xenial as jdk8 is not configured properly
| YAML | mit | mpalourdio/SpringBootAngularHTML5,mpalourdio/SpringBootAngularHTML5,mpalourdio/SpringBootAngularHTML5,mpalourdio/SpringBootAngularHTML5 |
3b372e270ccdeabda4dfac68ffe1c9d95f189fdc | .travis.yml | .travis.yml | git:
depth: 10
branches:
only:
- master
env:
global:
- ATOM_ACCESS_TOKEN=da809a6077bb1b0aa7c5623f7b2d5f1fec2faae4
osx_image: xcode7.3
compiler: clang
matrix:
include:
- os: linux
env: NODE_VERSION=4
- os: osx
env: ATOM_SPECS_TASK=core NODE_VERSION=4
- os: osx
env: ATOM_SPECS_TASK=packages NODE_VERSION=4
sudo: false
install:
- git clone https://github.com/creationix/nvm.git /tmp/.nvm
- source /tmp/.nvm/nvm.sh
- nvm install $NODE_VERSION
- nvm use --delete-prefix $NODE_VERSION
script: script/cibuild
cache:
timeout: 1000
directories:
- node_modules
- build/node_modules
- apm/node_modules
- $HOME/.atom/compile-cache
notifications:
email:
on_success: never
on_failure: change
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- build-essential
- git
- libgnome-keyring-dev
- fakeroot
- gcc-multilib
| git:
depth: 10
branches:
only:
- master
env:
global:
- ATOM_ACCESS_TOKEN=da809a6077bb1b0aa7c5623f7b2d5f1fec2faae4
osx_image: xcode7.3
compiler: clang
matrix:
include:
- os: linux
env: NODE_VERSION=4
- os: osx
env: ATOM_SPECS_TASK=core NODE_VERSION=4
- os: osx
env: ATOM_SPECS_TASK=packages NODE_VERSION=4
sudo: false
install:
- git clone https://github.com/creationix/nvm.git /tmp/.nvm
- source /tmp/.nvm/nvm.sh
- nvm install $NODE_VERSION
- nvm use --delete-prefix $NODE_VERSION
- npm install -g npm
script: script/cibuild
cache:
timeout: 1000
directories:
- node_modules
- build/node_modules
- apm/node_modules
- $HOME/.atom/compile-cache
notifications:
email:
on_success: never
on_failure: change
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- build-essential
- git
- libgnome-keyring-dev
- fakeroot
- gcc-multilib
| Install npm 3 on Travis | Install npm 3 on Travis | YAML | mit | gontadu/atom,CraZySacX/atom,andrewleverette/atom,decaffeinate-examples/atom,bsmr-x-script/atom,CraZySacX/atom,andrewleverette/atom,liuderchi/atom,AdrianVovk/substance-ide,sotayamashita/atom,Mokolea/atom,bolinfest/atom,atom/atom,Ingramz/atom,brumm/atom,liuderchi/atom,tjkr/atom,rlugojr/atom,Arcanemagus/atom,AdrianVovk/substance-ide,helber/atom,tjkr/atom,decaffeinate-examples/atom,ardeshirj/atom,gontadu/atom,rlugojr/atom,atom/atom,AlexxNica/atom,decaffeinate-examples/atom,liuderchi/atom,FIT-CSE2410-A-Bombs/atom,xream/atom,me-benni/atom,bsmr-x-script/atom,PKRoma/atom,tjkr/atom,xream/atom,me-benni/atom,brettle/atom,ardeshirj/atom,AlexxNica/atom,liuderchi/atom,stinsonga/atom,me-benni/atom,stinsonga/atom,brettle/atom,PKRoma/atom,stinsonga/atom,decaffeinate-examples/atom,sotayamashita/atom,CraZySacX/atom,atom/atom,FIT-CSE2410-A-Bombs/atom,t9md/atom,stinsonga/atom,kevinrenaers/atom,Arcanemagus/atom,helber/atom,ardeshirj/atom,helber/atom,Ingramz/atom,bolinfest/atom,bsmr-x-script/atom,t9md/atom,kevinrenaers/atom,bolinfest/atom,Mokolea/atom,xream/atom,Ingramz/atom,Mokolea/atom,kevinrenaers/atom,brettle/atom,gontadu/atom,sotayamashita/atom,andrewleverette/atom,rlugojr/atom,t9md/atom,Arcanemagus/atom,brumm/atom,AdrianVovk/substance-ide,FIT-CSE2410-A-Bombs/atom,AlexxNica/atom,PKRoma/atom,brumm/atom |
4bc9f7ea83d858ffae2b5ad29b6b5abe6a264242 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- rbx-18mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: rbx-18mode
- rvm: rbx-19mode
bundler_args: --without benchmarks
script:
- bundle exec rake
- bundle exec rspec
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- rbx-18mode
- rbx-19mode
- ruby-head
bundler_args: --without benchmarks
script:
- bundle exec rake
- bundle exec rspec
| Revert "Revert "Don't let rbx fail" - commit again when Travis has rbx 2.0.0rc1 or higher." | Revert "Revert "Don't let rbx fail" - commit again when Travis has rbx 2.0.0rc1 or higher."
This reverts commit 6bff063289831f3a155c1f3c61ef4b84af87ba3a.
| YAML | mit | modulexcite/mysql2,sodabrew/mysql2,jeremy/mysql2,PipelineDeals/mysql2,dylanahsmith/mysql2,tamird/mysql2,brianmario/mysql2,jeremy/mysql2,webdev1001/mysql2,mkdynamic/mysql2,PipelineDeals/mysql2,bigcartel/mysql2,kamipo/mysql2,blaind/mysql2,PipelineDeals/mysql2,marshall-lee/mysql2,webdev1001/mysql2,marshall-lee/mysql2,yui-knk/mysql2,sodabrew/mysql2,zBMNForks/mysql2,PipelineDeals/mysql2,marshall-lee/mysql2,jeremy/mysql2,webdev1001/mysql2,jconroy77/mysql2,kamipo/mysql2,zmack/mysql2,tamird/mysql2,kamipo/mysql2,zBMNForks/mysql2,kamipo/mysql2,bigcartel/mysql2,tamird/mysql2,zBMNForks/mysql2,zmack/mysql2,zmack/mysql2,bigcartel/mysql2,jconroy77/mysql2,webdev1001/mysql2,brianmario/mysql2,yui-knk/mysql2,modulexcite/mysql2,mkdynamic/mysql2,zmack/mysql2,modulexcite/mysql2,dylanahsmith/mysql2,jconroy77/mysql2,marshall-lee/mysql2,jconroy77/mysql2,sodabrew/mysql2,mkdynamic/mysql2,brianmario/mysql2,tamird/mysql2,mkdynamic/mysql2,yui-knk/mysql2,bigcartel/mysql2,zBMNForks/mysql2,modulexcite/mysql2,yui-knk/mysql2,blaind/mysql2 |
936bd817497f3493a2b358ff22be34489636c0ec | .travis.yml | .travis.yml | sudo: required
language: bash
env:
- DOKKU_VERSION=master
before_install: make setup
script: make test
| sudo: required
dist: trusty
language: bash
env:
- DOKKU_VERSION=master
before_install: make setup
script: make test
| Switch testing distro to trusty | Switch testing distro to trusty
| YAML | mit | dokku/dokku-nats,dokku/dokku-nats |
c67c2de150fb252e25fc416340b503ec9673bd2a | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.3"
env:
- DJANGO=Django==1.4.16
- DJANGO=Django==1.5.11
- DJANGO=Django==1.6.8
- DJANGO=Django==1.7.1
matrix:
allow_failures:
# Allow failures for Python 3.3
- python: "3.3"
exclude:
# Django 1.4 and 1.5 do not fully support Python 3.3
- env: DJANGO=Django==1.4.12
python: "3.3"
- env: DJANGO=Django==1.5.7
python: "3.3"
# 1.7 doesn't support Python 2.6 anymore
- env: DJANGO=Django==1.7.1
python: "2.6"
# command to install dependencies
install:
- pip install $DJANGO
- pip install -r requirements.txt
# command to run tests
script: python setup.py test
| language: python
python:
- "2.6"
- "2.7"
- "3.3"
env:
- DJANGO=Django==1.4.21
- DJANGO=Django==1.7.9
- DJANGO=Django==1.8.3
matrix:
allow_failures:
# Allow failures for Python 3.3
- python: "3.3"
exclude:
# Django 1.4 and 1.5 do not fully support Python 3.3
- env: DJANGO=Django==1.4.21
python: "3.3"
# 1.7 and 1.8 don't support Python 2.6 anymore
- env: DJANGO=Django==1.7.9
python: "2.6"
- env: DJANGO=Django==1.8.3
python: "2.6"
# command to install dependencies
install:
- pip install $DJANGO
- pip install -r requirements.txt
# command to run tests
script: python setup.py test
| Test against modern Django versions. | Test against modern Django versions. | YAML | agpl-3.0 | ctxis/django-newsletter,dsanders11/django-newsletter,ctxis/django-newsletter,dsanders11/django-newsletter,ctxis/django-newsletter,dsanders11/django-newsletter |
b2f23ba983ab5432669417fdead872c6d3db6421 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 5"
| language: ruby
rvm:
- 2.0.0
- 2.1.0
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 5"
| Remove Ruby 1.9.3 from Travis CI configuration. | Remove Ruby 1.9.3 from Travis CI configuration.
| YAML | mit | Tybot204/pusher-fake,Tybot204/pusher-fake,tristandunn/pusher-fake,Drooids/pusher-fake,Drooids/pusher-fake,tristandunn/pusher-fake |
73e5c13b76ea500f7835cf01222b093eb2812b73 | .travis.yml | .travis.yml | language: objective-c
xcode_project: Faraday.xcodeproj
xcode_scheme: Faraday
osx_image: xcode7.1
| language: objective-c
xcode_project: Faraday.xcodeproj
xcode_scheme: Faraday
osx_image: xcode7.1
before_install:
- brew update
- brew uninstall xctool && brew install --HEAD xctool
| Update Travis's xctool to HEAD | Update Travis's xctool to HEAD
| YAML | mit | royratcliffe/Faraday,royratcliffe/Faraday |
435478cc84f41793403e7f6bae47362d80e42c31 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
install:
- "pip install -r requirements.txt -r requirements-test.txt"
- "pip install -e ."
script:
- "pytest"
| language: python
python:
- "3.7"
- "3.8"
- "3.9"
install:
- "pip install -r requirements.txt -r requirements-test.txt"
- "pip install -e ."
script:
- "pytest"
| Change support Python versions to 3.7, 3.8, 3.9 | Change support Python versions to 3.7, 3.8, 3.9
| YAML | mit | homeworkprod/gewebehaken |
4460043f2d924810c00a79dd678a92c4794d80d8 | .travis.yml | .travis.yml | language: android
android:
components:
- build-tools-22.0.1
| language: android
jdk:
- oraclejdk8
- oraclejdk7
android:
components:
- build-tools-22.0.1
| Test against jdk7 and jdk8 with Travis | Test against jdk7 and jdk8 with Travis
| YAML | mit | i18next/i18next-android |
76f541db465e50755fbf1781c6d1b92f919b8edb | .travis.yml | .travis.yml | language: node_js
node_js:
- "10"
- "12"
- "14"
script:
- npm run-script lint
- npm test
| language: node_js
node_js:
- "14"
- "16"
- "18"
script:
- npm run-script lint
- npm test
| Test on Node 14, 16 and 18 | Test on Node 14, 16 and 18 | YAML | mit | rastapasta/mapscii,rastapasta/mapscii |
f1a23f02ae2ee128210fa1aad03e739db4904ff1 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "6"
cache:
directories:
- client/node_modules
addons:
code_climate:
repo_token: 4ad3e12283a16e2adf2b673cf3c3d3fd211af822b86105bd768136c72bf16eb1
before_script: cd client && npm install
script: npm test && echo "Test finished" && exit 1
after_success:
- npm install -g codeclimate-test-reporter
- codeclimate-test-reporter < lcov.info
| sudo: false
language: node_js
node_js:
- "6"
cache:
directories:
- client/node_modules
addons:
code_climate:
repo_token: 4ad3e12283a16e2adf2b673cf3c3d3fd211af822b86105bd768136c72bf16eb1
before_script: cd client && npm install
script: echo "Build finished" && exit 1
after_success:
- npm install -g codeclimate-test-reporter
- codeclimate-test-reporter < lcov.info
| Change scripts to fix TravisCI stalled build issue | Change scripts to fix TravisCI stalled build issue
| YAML | mit | kukiron/graphql-messaging-app,kukiron/graphql-messaging-app |
03f66bea2dd452cfb328a3c99fce07e9962600de | .travis.yml | .travis.yml | ---
language: ruby
rvm:
- 1.9.3
- 2.0.0
script:
- rake test:unit
- if [ "$TRAVIS_SECURE_ENV_VARS" == "true" ] ; then rake test:integration ; fi
| ---
language: ruby
rvm:
- 1.9.3
- 2.0.0
script:
- bundle exec rake test:unit
- if [ "$TRAVIS_SECURE_ENV_VARS" == "true" ] ; then rake test:integration ; fi
| Resolve failures caused by conflicting gem versions. Tests fails due to minitest version conflict. | Resolve failures caused by conflicting gem versions. Tests fails due to minitest version conflict.
| YAML | mit | devigned/azure-sdk-for-ruby,alexderz/azure-sdk-for-ruby,Azure/azure-sdk-for-ruby,kshmir/azure-sdk-for-ruby,theckman/azure-sdk-for-ruby,mstuefer/azure-sdk-for-ruby,devigned/azure-sdk-for-ruby,oaastest/azure-sdk-for-ruby,wastoresh/azure-sdk-for-ruby,Azure/azure-sdk-for-ruby |
0ab5aabc396c50d5d3bf14dab670842a8ba54dab | .travis.yml | .travis.yml | sudo: false
language: python
python:
- '2.7'
- '3.3'
install:
- pip install -U --force setuptools pip
- ./setup.py develop
- pip install -e '.[tests]'
script:
- pylama
- py.test
| sudo: false
language: python
python:
- '2.7'
- '3.4'
install:
- pip install -U --force setuptools pip
- ./setup.py develop
- pip install -e '.[tests]'
script:
- pylama
- py.test
| Add Python 3.4 to Travis CI builds | Add Python 3.4 to Travis CI builds
Change .travis.yml to run the build with Python 3.4 and remove 3.3 no
longer supported by setuptools.
| YAML | apache-2.0 | zaproxy/zap-api-python |
dacb9dc4bb03ce75a751925f487583b3feb2875c | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "2.7"
env:
global:
- DJANGO_SETTINGS_MODULE=fiware_cloto.cloto_settings.settings_tests
- COVERALLS_SERVICE_NAME=travis-ci
# COVERALLS_REPO_TOKEN (encrypted)
- secure: "Cl2WLpbSJEo8PYmjlNOv0X+AUwewZxk4NfXNwDAcpnpSvUL7NTTVkghQUkmY8gH8VKPqAi5sgpEMPRUJUQLnbXtcN4z8tP7UWOfFONVC80itS0OHauggmqSIUR2WvpeQ5tncsO8CiD+XhnlKqo/xjA/7/sXQ3w/FbyBoXmmtn0U="
script:
- sh checkstyle.sh
- sudo ./build.sh travis_build
after_success:
- coveralls
| language: python
sudo: required
python:
- "2.7"
env:
global:
- DJANGO_SETTINGS_MODULE=fiware_cloto.cloto_settings.settings_tests
- COVERALLS_SERVICE_NAME=travis-ci
# COVERALLS_REPO_TOKEN (encrypted)
- secure: "Cl2WLpbSJEo8PYmjlNOv0X+AUwewZxk4NfXNwDAcpnpSvUL7NTTVkghQUkmY8gH8VKPqAi5sgpEMPRUJUQLnbXtcN4z8tP7UWOfFONVC80itS0OHauggmqSIUR2WvpeQ5tncsO8CiD+XhnlKqo/xjA/7/sXQ3w/FbyBoXmmtn0U="
script:
- sh checkstyle.sh
- sudo ./build.sh travis_build
after_success:
- coveralls
| Correct Travis execution in the new infrastructure | Correct Travis execution in the new infrastructure
| YAML | apache-2.0 | telefonicaid/fiware-cloto,Fiware/cloud.Cloto,FiwareULPGC/fiware-cloto,FiwareULPGC/fiware-cloto,Fiware/cloud.Cloto,telefonicaid/fiware-cloto |
6d7ab8b7a1428217332b73ad7024feeb920d7fe6 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.3
- ree
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
notifications:
irc: "irc.freenode.org#celluloid"
| rvm:
- 1.8.7
- 1.9.3
- ree
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-18mode
- rvm: rbx-19mode
notifications:
irc: "irc.freenode.org#celluloid"
| Move rbx to allowed failures | Move rbx to allowed failures
| YAML | mit | copiousfreetime/timers,celluloid/timers |
668086907142c4907a7ee6dfc0eaf35456a397ca | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
before_script:
- composer install
notifications:
email: matthiasnoback@gmail.com | language: php
php:
- 5.3
- 5.4
env:
- DOCTRINE_VERSION: 2.1.*
- DOCTRINE_VERSION: 2.2.*
- DOCTRINE_VERSION: 2.3.*
- DOCTRINE_VERSION: 2.4.*@dev
before_script:
- composer require --dev doctrine/dbal:${DOCTRINE_VERSION}
notifications:
email: matthiasnoback@gmail.com | Test against multiple Doctrine DBAL versions | Test against multiple Doctrine DBAL versions
| YAML | mit | matthiasnoback/doctrine-dbal-test-service-provider |
f87922be040fc28831eb618df10ad7570387a6a5 | .travis.yml | .travis.yml | language: bash
env:
- SHUNIT_COLOR='always'
script:
# Execute the unit tests.
- ./test_runner
os:
- linux
- osx
addons:
apt:
packages:
- ksh
- zsh
matrix:
include:
- os: linux
script:
# Run the source through ShellCheck (http://www.shellcheck.net).
- shellcheck shunit2 *_test.sh
- shellcheck -s sh shunit2_test_helpers
- os: linux
# Support Ubuntu Trusty through Apr 2019.
dist: trusty
branches:
only:
- master
- 2.1.x
# Tags, e.g. v.2.1.8.
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/
| language: bash
env:
- SHUNIT_COLOR='always'
script:
# Execute the unit tests.
- ./test_runner
addons:
apt:
packages:
- ksh
- mksh
- zsh
matrix:
include:
- os: linux
dist: bionic # Support Ubuntu Bionic 18.04 through at least Apr 2023.
- os: linux
dist: xenial # Support Ubuntu Xenial 16.04 through at least Apr 2021.
- os: linux
dist: trusty # Support Ubuntu Trusty 14.04 through at least Apr 2019.
- os: osx
- os: linux
script:
# Run the source through ShellCheck (http://www.shellcheck.net).
- shellcheck shunit2 *_test.sh
- shellcheck -s sh shunit2_test_helpers
branches:
only:
- master
- 2.1.x
# Tags, e.g. v.2.1.8.
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/
| Support more linux versions and mksh. | Support more linux versions and mksh.
| YAML | apache-2.0 | kward/shunit2 |
fbd0ce006326e2e410084297e64afdfb9052d2a1 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6.9.2"
addons:
firefox: "latest"
before_install:
- ./tools/travis/init-env
- ./tools/travis/install-geckodriver
- ./tools/travis/start-xvfb
- . ./tools/travis/env.sh
- export DISPLAY=$ENV_DISPLAY
- export PATH=$PATH:$ENV_LOCAL_BIN_DIR
install:
- npm install --global gulp-cli
- npm run bootstrap
script:
- gulp unit-test-with-coverage
- gulp dist
- gulp start-server
- gulp acceptance-test
- gulp stop-server
- gulp lint
- gulp docs
after_script:
- gulp publish-coverage
| language: node_js
node_js:
- "6.9.2"
addons:
firefox: "latest"
before_install:
- ./tools/travis/init-env
- ./tools/travis/install-geckodriver
- ./tools/travis/start-xvfb
- . ./tools/travis/env.sh
- export DISPLAY=$ENV_DISPLAY
- export PATH=$PATH:$ENV_LOCAL_BIN_DIR
install:
- npm install --global gulp-cli phantomjs
- npm run bootstrap
script:
- gulp unit-test-with-coverage
- gulp dist
- gulp start-server
- gulp acceptance-test:server
- ENV_WEBDRIVER_BROWSER_NAME=phantomjs gulp acceptance-test:client
- ENV_WEBDRIVER_BROWSER_NAME=firefox gulp acceptance-test:client
- gulp stop-server
- gulp lint
- gulp docs
after_script:
- gulp publish-coverage
| Add PhantomJS to list of browsers to be tested on Travis | Add PhantomJS to list of browsers to be tested on Travis
| YAML | mit | ssoloff/dice-server-js,ssoloff/dice-server-js,ssoloff/dice-server-js,ssoloff/dice-server-js |
7ca9756ddd115bd680c5c600f648a88f3550a183 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "3"
- "4"
cache:
directories:
- node_modules
matrix:
fast_finish: true
allow_failures:
- node_js: "3"
| sudo: false
language: node_js
node_js:
- "0.12"
- "4"
cache:
directories:
- node_modules
matrix:
fast_finish: true
| Test only relevant Node.js versions at Travis CI | Test only relevant Node.js versions at Travis CI
| YAML | mit | paazmaya/grunt-html2md |
1a62ede32054d03a17391e6e6033fd7402cde12b | snapcraft.yaml | snapcraft.yaml | name: micro
version: git
summary: A modern and intuitive terminal-based text editor
description: |
Micro is a terminal-based text editor that aims to be easy to use and
intuitive, while also taking advantage of the full capabilities of modern
terminals.
confinement: classic
apps:
micro:
command: bin/micro
parts:
micro:
source: .
source-type: git
plugin: go
build-packages: [make]
prepare: |
mkdir -p ../go/src/github.com/zyedidia/micro
cp -R . ../go/src/github.com/zyedidia/micro
build: |
export GOPATH=$(pwd)/../go
export GOBIN=$(pwd)/../go/bin
cd ../go/src/github.com/zyedidia/micro
make install
install: |
mkdir $SNAPCRAFT_PART_INSTALL/bin
mv ../go/bin/micro $SNAPCRAFT_PART_INSTALL/bin/
| name: micro
version: git
summary: A modern and intuitive terminal-based text editor
description: |
Micro is a terminal-based text editor that aims to be easy to use and
intuitive, while also taking advantage of the full capabilities of modern
terminals.
confinement: classic
apps:
micro:
command: bin/micro
parts:
go:
source-tag: go1.10
micro:
after: [go]
source: .
source-type: git
plugin: nil
build-packages: [make]
prepare: |
mkdir -p ../go/src/github.com/zyedidia/micro
cp -R . ../go/src/github.com/zyedidia/micro
build: |
export GOPATH=$(pwd)/../go
export GOBIN=$(pwd)/../go/bin
cd ../go/src/github.com/zyedidia/micro
make install
install: |
mkdir $SNAPCRAFT_PART_INSTALL/bin
mv ../go/bin/micro $SNAPCRAFT_PART_INSTALL/bin/
| Build snap using up-to-date golang | Build snap using up-to-date golang
| YAML | mit | zyedidia/micro,zyedidia/micro |
ee8707ff16d69e1764d1b5df5c2cda6447e38871 | .github/workflows/node.js.yml | .github/workflows/node.js.yml | # This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm run test
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@1.1.3
| # This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm run test
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
| Add github token secret for coveralls | Add github token secret for coveralls
| YAML | mit | ayebear/picoes |
4282f556e43debf45a468bde68b8ad5f192c400d | files/.travis.yml | files/.travis.yml | ---
language: python
python: "2.7"
before_install:
- sudo apt-get update --assume-yes -qq
- sudo apt-get install --assume-yes -qq python-apt python-pycurl
install:
- sudo pip install ansible
script:
- ansible --version
- ansible-playbook --inventory-file tests/hosts --syntax-check tests/playbook.yml
- ansible-playbook --inventory-file tests/hosts --connection=local -vvvv tests/playbook.yml
| ---
language: python
python: "2.7"
before_install:
- sudo apt-get update --assume-yes -qq
- sudo apt-get install --assume-yes -qq python-apt python-pycurl
install:
- sudo pip install ansible
script:
- ansible --version
- ansible-playbook --inventory-file tests/hosts --syntax-check tests/playbook.yml
- ansible-playbook --inventory-file tests/hosts --connection=local -vvvv tests/playbook.yml
| Fix YAML indentation to two whitespace indents | Fix YAML indentation to two whitespace indents
| YAML | apache-2.0 | silpion/ansible-generator,silpion/ansible-generator |
30fed5855abad38724e23f2cd98331ec0b0d14ad | appveyor.yml | appveyor.yml | os: 'Visual Studio 2015'
init:
- 'git config --global core.autocrlf input'
environment:
matrix:
- platform: x64
configuration: Release
- platform: x86
configuration: Release
- platform: x64
configuration: Debug
- platform: x86
configuration: Debug
before_build:
- 'cmake . -G "Visual Studio 14 2015 Win64" -DCMAKE_INSTALL_PREFIX=C:\Projects\libs "-DCMAKE_BUILD_TYPE=%CONFIGURATION%"'
build:
project: INSTALL.vcxproj
notifications:
- provider: Email
to:
- demiobenour@gmail.com
| os: 'Visual Studio 2015'
init:
- 'git config --global core.autocrlf input'
environment:
matrix:
- platform: x64
configuration: Release
- platform: x86
configuration: Release
- platform: x64
configuration: Debug
- platform: x86
configuration: Debug
before_build:
- >-
cmake . -G "Visual Studio 14 2015 Win64"
-DCMAKE_INSTALL_PREFIX=C:\Projects\libs
"-DCMAKE_BUILD_TYPE=%CONFIGURATION%"
"-DBOOST_ROOT=C:\Libraries\boost_1_63_0"
build:
project: INSTALL.vcxproj
notifications:
- provider: Email
to:
- demiobenour@gmail.com
| Set Boost root for Appveyor | Set Boost root for Appveyor
| YAML | isc | DemiMarie/SlipRock,DemiMarie/SlipRock,DemiMarie/SlipRock,DemiMarie/SlipRock,DemiMarie/SlipRock |
b7bfff8866597ca0f72936fec40b815c570d2e4e | appveyor.yml | appveyor.yml | # Test against this version of Node.js
os: Visual Studio 2015
environment:
nodejs_version: "4.0.0"
platform:
- x86
- x64
# Install scripts. (runs after repo cloning)
install:
# Init submodules
- git submodule update --init --recursive
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install
# Build it
build_script:
- mkdir build
- cd build
- cmake -DSKIP_SUBMODULES_UPDATE=ON ..
- cmake --build .
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test
| # Test against this version of Node.js
os: Visual Studio 2015
environment:
matrix:
- nodejs_version: "4.4.7"
- nodejs_version: "6.3.0"
platform:
- x86
- x64
# Install scripts. (runs after repo cloning)
install:
# Init submodules
- git submodule update --init --recursive
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install
# Build it
build_script:
- mkdir build
- cd build
- cmake -DSKIP_SUBMODULES_UPDATE=ON ..
- cmake --build .
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
- npm test
| Build for LTS and dev node | Build for LTS and dev node
| YAML | mit | APE-EDX/APE,APE-EDX/APE |
8074fad393907b88d65ad0a49cfa0912eb2293e6 | appveyor.yml | appveyor.yml | environment:
matrix:
# For Python versions available on Appveyor, see
# http://www.appveyor.com/docs/installed-software#python
# The list here is complete (excluding Python 2.6, which
# isn't covered by this document) at the time of writing.
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python33-x64"
DISTUTILS_USE_SDK: "1"
- PYTHON: "C:\\Python34-x64"
DISTUTILS_USE_SDK: "1"
- PYTHON: "C:\\Python35-x64"
install:
# We need wheel installed to build wheels
- "%PYTHON%\\python.exe -m pip install brotli enum regex"
build: off
test_script:
- "%PYTHON%\\python.exe test.py"
| environment:
matrix:
# For Python versions available on Appveyor, see
# http://www.appveyor.com/docs/installed-software#python
# The list here is complete (excluding Python 2.6, which
# isn't covered by this document) at the time of writing.
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python34-x64"
DISTUTILS_USE_SDK: "1"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
install:
# We need wheel installed to build wheels
- "%PYTHON%\\python.exe -m pip install brotli regex"
build: off
test_script:
- "%PYTHON%\\python.exe test.py"
| Remove Python 3.3x64 and Add Python 3.6 | Remove Python 3.3x64 and Add Python 3.6 | YAML | mit | somebody1234/Charcoal |
2d1a501ce9183974d3f06849effef27e5d91f24c | appveyor.yml | appveyor.yml | version: 1.0.{build}
os: Visual Studio 2015
configuration: Release
before_build:
- nuget restore
build:
project: src\Wundercal.sln
verbosity: minimal
test: off | version: 1.0.{build}
os: Visual Studio 2015
configuration: Release
before_build:
- nuget restore src\Wundercal.sln
build:
project: src\Wundercal.sln
verbosity: minimal
test: off | Add path to solution for huget restore | Add path to solution for huget restore
| YAML | apache-2.0 | marska/wundercal |
9e7f1dcb6994ce4fe92043111f0bdfa1b112aa82 | appveyor.yml | appveyor.yml | configuration: Release
install:
- choco install GitVersion
- choco install opencover -source https://nuget.org/api/v2/
- choco install coveralls.io -source https://nuget.org/api/v2/
- choco install resharper-clt
- GitVersion /output buildserver /UpdateAssemblyInfo true
cache:
- packages -> **\packages.config
- C:\ProgramData\chocolatey\bin\OpenCover.Console.exe
- C:\ProgramData\chocolatey\bin\coveralls.net.exe
- C:\ProgramData\chocolatey\bin\GitVersion.exe
- C:\ProgramData\chocolatey\bin\inspectcode.exe
- C:\ProgramData\chocolatey\lib -> appveyor.yml
build:
project: Vika.sln
verbosity: minimal
after_build:
- inspectcode /o="inspectcodereport.xml" "Vika.sln"
- NVika\bin\Release\NVika buildserver "inspectcodereport.xml" --debug --includesource | configuration: Release
install:
- choco install GitVersion.Portable
- choco install opencover -source https://nuget.org/api/v2/
- choco install coveralls.io -source https://nuget.org/api/v2/
- choco install resharper-clt
- GitVersion /output buildserver /UpdateAssemblyInfo true
cache:
- packages -> **\packages.config
- C:\ProgramData\chocolatey\bin\OpenCover.Console.exe
- C:\ProgramData\chocolatey\bin\coveralls.net.exe
- C:\ProgramData\chocolatey\bin\GitVersion.exe
- C:\ProgramData\chocolatey\bin\inspectcode.exe
- C:\ProgramData\chocolatey\lib -> appveyor.yml
build:
project: Vika.sln
verbosity: minimal
after_build:
- inspectcode /o="inspectcodereport.xml" "Vika.sln"
- NVika\bin\Release\NVika buildserver "inspectcodereport.xml" --debug --includesource
| Fix obsolete version of GitVersion | Fix obsolete version of GitVersion | YAML | apache-2.0 | laedit/vika |
b3f271b3ce6f9b25cc0c7cdcf423c030b810de74 | appveyor.yml | appveyor.yml | environment:
APPVEYOR_YML_DISABLE_PS_LINUX: true
COVERALLS_TOKEN:
secure: 9e+vrJ65VDmTcwWipInm3fmWWnG1cLYLsoQHnKkroGtLHTkUvTJ9w8KwD12W0u0w
GITHUB_TOKEN:
secure: tohnGHbkou++U/1IejloBChnM+z8eK+cPOBbdgutCzD9QYWjnfhDTnO04+Xgk21Y
install:
- dotnet tool install -g Cake.Tool --version 0.34.1
build_script:
- dotnet cake build.cake --verbosity=Verbose
test: off
skip_tags: true
skip_branch_with_pr: true
image:
- Visual Studio 2017
- Ubuntu
artifacts:
- path: 'artifacts\*.nupkg'
- path: 'artifacts\CHANGELOG.md' | environment:
APPVEYOR_YML_DISABLE_PS_LINUX: true
COVERALLS_TOKEN:
secure: 9e+vrJ65VDmTcwWipInm3fmWWnG1cLYLsoQHnKkroGtLHTkUvTJ9w8KwD12W0u0w
GITHUB_TOKEN:
secure: tohnGHbkou++U/1IejloBChnM+z8eK+cPOBbdgutCzD9QYWjnfhDTnO04+Xgk21Y
install:
- dotnet tool install -g Cake.Tool --version 0.34.1
build_script:
- dotnet cake build.cake --verbosity=Verbose
test: off
skip_tags: true
skip_branch_with_pr: true
image:
- Visual Studio 2019
- Ubuntu
artifacts:
- path: 'artifacts\*.nupkg'
- path: 'artifacts\CHANGELOG.md' | Update Visual Studio image version on AppVeyor | Update Visual Studio image version on AppVeyor
| YAML | mit | k94ll13nn3/Strinken |
a513f353c8772c726e307f2e2fddbd3293f0a708 | appveyor.yml | appveyor.yml | version: 0.1.0 ({build})
platform:
- x86
- x64
# build Configuration, i.e. Debug, Release, etc.
configuration:
- Debug
- Release
# scripts that run after cloning repository
install:
- cmd: git submodule update --init
# scripts to run before build
before_build:
- cmd: python external/styleguide/cpplint/cpplint.py --verbose=0 include/jet/*.h
- cmd: python external/styleguide/cpplint/cpplint.py --verbose=0 include/jet/detail/*.h
- cmd: python external/styleguide/cpplint/cpplint.py --verbose=0 src/jet/*
- cmd: nuget restore
build:
project: Jet.sln
# enable MSBuild parallel builds
parallel: true
# MSBuild verbosity level (quiet|minimal|normal|detailed)
verbosity: normal
# scripts to run after build
after_build:
# Run unit tests
- cmd: bin\unit_tests.bat
| version: 0.1.0 ({build})
clone_folder: c:\projects\fluid-engine-dev
platform:
- x86
- x64
# build Configuration, i.e. Debug, Release, etc.
configuration:
- Debug
- Release
# scripts that run after cloning repository
install:
- cmd: git submodule update --init
# scripts to run before build
before_build:
- cmd: python c:\projects\fluid-engine-dev\external\styleguide\cpplint\cpplint.py --verbose=0 c:\projects\fluid-engine-dev\include\jet\*.h
- cmd: python c:\projects\fluid-engine-dev\external\styleguide\cpplint\cpplint.py --verbose=0 c:\projects\fluid-engine-dev\include\jet\detail\*.h
- cmd: python c:\projects\fluid-engine-dev\external\styleguide\cpplint\cpplint.py --verbose=0 c:\projects\fluid-engine-dev\src\jet\*
- cmd: nuget restore
build:
project: Jet.sln
# enable MSBuild parallel builds
parallel: true
# MSBuild verbosity level (quiet|minimal|normal|detailed)
verbosity: normal
# scripts to run after build
after_build:
# Run unit tests
- cmd: bin\unit_tests.bat
| Use full path when running cpplint from AppVeyor | Use full path when running cpplint from AppVeyor
| YAML | mit | doyubkim/fluid-engine-dev,doyubkim/fluid-engine-dev,doyubkim/fluid-engine-dev,doyubkim/fluid-engine-dev |
ec74de0bf94b79c789026d377fa4758d451809c0 | appveyor.yml | appveyor.yml | version: 0.8.0-{build}
environment:
matrix:
- GENERATOR: Visual Studio 14 2015
- GENERATOR: Visual Studio 14 2015 Win64
configuration: Debug
before_build:
- git submodule update --init --recursive
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=%CONFIGURATION% -G "%GENERATOR%" -DENABLE_GIPFELI=no -DENABLE_BROTLI=no -DENABLE_DENSITY=no -DENABLE_PITHY=no -DENABLE_SNAPPY=no -DENABLE_ZLING=no ..
build_script: cmake --build . --config %CONFIGURATION%
| version: 0.8.0-{build}
environment:
matrix:
- GENERATOR: Visual Studio 14 2015
- GENERATOR: Visual Studio 14 2015 Win64
configuration: Debug
install: git submodule update --init --recursive
before_build:
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=%CONFIGURATION% -G "%GENERATOR%" -DENABLE_GIPFELI=no -DENABLE_BROTLI=no -DENABLE_DENSITY=no -DENABLE_PITHY=no -DENABLE_SNAPPY=no -DENABLE_ZLING=no ..
build_script: cmake --build . --config %CONFIGURATION%
| Update submodules in install section | Update submodules in install section
| YAML | mit | jibsen/squash,jibsen/squash,Cloudef/squash,jibsen/squash,quixdb/squash,Cloudef/squash,quixdb/squash,Cloudef/squash,quixdb/squash |
112cc5f52b145eea1680713a1c7cc578c6e98c2a | appveyor.yml | appveyor.yml | version: 2.0.{build}
os: Visual Studio 2022
configuration: Release
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
# restore NuGet packages before running
before_build:
# Display .NET Core version
- cmd: dotnet --version
# Display minimal restore text
- cmd: dotnet restore --verbosity m
build:
verbosity: minimal
test_script:
- cd tests\Useful.Extensions.Tests
- dotnet test | version: 2.0.{build}
os: Visual Studio 2022
configuration: Release
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
# restore NuGet packages before running
before_build:
# Display .NET Core version
- cmd: dotnet --version
# Display .NET SDK versions available
- cmd: dotnet --list-sdks
# Display minimal restore text
- cmd: dotnet restore --verbosity m
build:
verbosity: minimal
test_script:
- cd tests\Useful.Extensions.Tests
- dotnet test | Add command to list available SDKs | Add command to list available SDKs
Need to see what SDK's are available on appveyor.
| YAML | mit | Tazmainiandevil/Useful.Extensions |
b623ed2b88ca86f50f33c200b0fa663a2987c3fc | appveyor.yml | appveyor.yml | version: 0.5.0.{build}
install:
- cinst -y pester
- git clone https://github.com/PowerShell/DscResource.Tests
build: off
test_script:
- ps: |
$testResultsFile = ".\TestsResults.xml"
$res = Invoke-Pester -OutputFormat NUnitXml -OutputFile $testResultsFile -PassThru
(New-Object 'System.Net.WebClient').UploadFile("https://ci.appveyor.com/api/testresults/nunit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path $testResultsFile))
if ($res.FailedCount -gt 0) {
throw "$($res.FailedCount) tests failed."
}
deploy: off
on_finish:
- ps: |
$pwd = Join-Path $pwd "modules\xSharePoint"
Remove-Item (Join-Path $pwd "xSharePoint.pssproj")
$manifest = Join-Path $pwd "xSharePoint.psd1"
(Get-Content $manifest -Raw).Replace("0.5.0", $env:APPVEYOR_BUILD_VERSION) | Out-File $manifest
- 7z a xSharePoint.zip %APPVEYOR_BUILD_FOLDER%\modules\xSharePoint
- artifacts:
- path: xSharePoint.zip
name: PSModule
type: zip
| version: 0.5.0.{build}
install:
- cinst -y pester
- git clone https://github.com/PowerShell/DscResource.Tests
build: off
test_script:
- ps: |
$testResultsFile = ".\TestsResults.xml"
$res = Invoke-Pester -OutputFormat NUnitXml -OutputFile $testResultsFile -PassThru
(New-Object 'System.Net.WebClient').UploadFile("https://ci.appveyor.com/api/testresults/nunit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path $testResultsFile))
if ($res.FailedCount -gt 0) {
throw "$($res.FailedCount) tests failed."
}
deploy: off
on_finish:
- ps: |
$pwd = Join-Path $pwd "modules\xSharePoint"
Remove-Item (Join-Path $pwd "xSharePoint.pssproj")
$manifest = Join-Path $pwd "xSharePoint.psd1"
(Get-Content $manifest -Raw).Replace("0.5.0", $env:APPVEYOR_BUILD_VERSION) | Out-File $manifest
- 7z a xSharePoint.zip %APPVEYOR_BUILD_FOLDER%\modules\xSharePoint
- ps: Get-ChildItem .\xSharePoint.zip | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
| Use PS to publish artifact | Use PS to publish artifact
| YAML | mit | ykuijs/xSharePoint,ykuijs/xSharePoint,MikeLacher448/xSharePoint,mrpullen/xSharePoint,BrunoReboul/SharePointDsc,MikeLacher448/xSharePoint,BrunoReboul/SharePointDsc,mrpullen/xSharePoint |
d8ae50800ac547295b54179d6c396578c4e3336b | roles/download/tasks/set_docker_image_facts.yml | roles/download/tasks/set_docker_image_facts.yml | ---
- set_fact:
pull_by_digest: >-
{%- if download.sha256 is defined and download.sha256 != '' -%}true{%- else -%}false{%- endif -%}
- set_fact:
pull_args: >-
{%- if pull_by_digest|bool %}{{download.repo}}@sha256:{{download.sha256}}{%- else -%}{{download.repo}}:{{download.tag}}{%- endif -%}
- name: Register docker images info
shell: "{{ docker_bin_dir }}/docker images -q | xargs {{ docker_bin_dir }}/docker inspect -f {% raw %}'{{.RepoTags}},{{.RepoDigests}}'{% endraw %}"
register: docker_images_raw
failed_when: false
when: not download_always_pull|bool
- set_fact: docker_images="{{docker_images_raw.stdout|regex_replace('\[|\]|\\n]','')|regex_replace('\s',',')}}"
when: not download_always_pull|bool
- set_fact:
pull_required: >-
{%- if pull_args in docker_images.split(',') %}false{%- else -%}true{%- endif -%}
when: not download_always_pull|bool
- name: Check the local digest sha256 corresponds to the given image tag
assert:
that: "{{download.repo}}:{{download.tag}} in docker_images.split(',')"
when: not download_always_pull|bool and not pull_required|bool and pull_by_digest|bool
| ---
- set_fact:
pull_by_digest: >-
{%- if download.sha256 is defined and download.sha256 != '' -%}true{%- else -%}false{%- endif -%}
- set_fact:
pull_args: >-
{%- if pull_by_digest|bool %}{{download.repo}}@sha256:{{download.sha256}}{%- else -%}{{download.repo}}:{{download.tag}}{%- endif -%}
- name: Register docker images info
raw: >-
{{ docker_bin_dir }}/docker images -q | xargs {{ docker_bin_dir }}/docker inspect -f "{{ '{{' }} .RepoTags {{ '}}' }},{{ '{{' }} .RepoDigests {{ '}}' }}"
register: docker_images_raw
failed_when: false
when: not download_always_pull|bool
- set_fact: docker_images="{{docker_images_raw.stdout|regex_replace('\[|\]|\\n]','')|regex_replace('\s',',')}}"
when: not download_always_pull|bool
- set_fact:
pull_required: >-
{%- if pull_args in docker_images.split(',') %}false{%- else -%}true{%- endif -%}
when: not download_always_pull|bool
- name: Check the local digest sha256 corresponds to the given image tag
assert:
that: "{{download.repo}}:{{download.tag}} in docker_images.split(',')"
when: not download_always_pull|bool and not pull_required|bool and pull_by_digest|bool
| Work around escaping curly braces for docker inspect | Work around escaping curly braces for docker inspect
| YAML | apache-2.0 | Abdelsalam-Abbas/kubespray_fork,kubespray/kargo,rogerwelin/kargo,ayaz/kubespray,kubernetes-incubator/kargo,sgm-media/kargo,hatch-k8s/kargo,hatch-k8s/kargo,VincentS/kargo,insequent/kargo,kubernetes-sigs/kubespray,Lendico/kargo,VincentS/kargo,kubernetes-incubator/kubespray,galthaus/setup-kubernetes,galthaus/setup-kubernetes,kubernetes-sigs/kubespray,Abdelsalam-Abbas/kubespray_fork,Lendico/kargo,kubernetes-sigs/kubespray,kubernetes-sigs/kubespray,Atoms/kubespray,kubernetes-incubator/kargo,sgm-media/kargo,Atoms/kubespray,insequent/kargo,rogerwelin/kargo,Atoms/kubespray,kubernetes-incubator/kubespray,kubespray/kargo,ayaz/kubespray,Atoms/kubespray |
6454e8bd29f5001483dcb1506710633c0d8a020f | util/ansible/deploy.yml | util/ansible/deploy.yml | ---
- hosts: all
become: true
vars:
util_base: "{{ playbook_dir | dirname }}"
www_base: "{{ util_base | dirname }}"
app_base: "{{ www_base | dirname }}"
tmp_base: "{{ app_base }}/www_tmp"
app_env: "production"
update_mode: false
dev_azuracast_user_password: "azuracast"
dev_mysql_user_password: "azuracast"
roles:
- init
- azuracast-user
- azuracast-config
- azuracast-radio
- supervisord
- nginx
- php
- redis
- mariadb
- azuracast-db-install
- ufw
- dbip
- composer
- influxdb
- services
- azuracast-setup
- azuracast-build
- azuracast-cron
| ---
- hosts: all
become: true
vars:
util_base: "{{ playbook_dir | dirname }}"
www_base: "{{ util_base | dirname }}"
app_base: "{{ www_base | dirname }}"
tmp_base: "{{ app_base }}/www_tmp"
app_env: "production"
update_mode: false
dev_azuracast_user_password: "azuracast"
dev_mysql_user_password: "azuracast"
roles:
- init
- azuracast-user
- azuracast-config
- azuracast-radio
- supervisord
- nginx
- php
- redis
- mariadb
- azuracast-db-install
- ufw
- dbip
- composer
- influxdb
- services
- azuracast-build
- azuracast-setup
- azuracast-cron
| Switch order of install operations. | Switch order of install operations.
| YAML | agpl-3.0 | AzuraCast/AzuraCast,AzuraCast/AzuraCast,AzuraCast/AzuraCast,SlvrEagle23/AzuraCast,AzuraCast/AzuraCast,SlvrEagle23/AzuraCast,SlvrEagle23/AzuraCast,SlvrEagle23/AzuraCast,SlvrEagle23/AzuraCast |
725a587b4b002dfa05b2067cf20a3aae96087d0d | metadata/inc.flide.vi8.yml | metadata/inc.flide.vi8.yml | Categories:
- System
License: Apache-2.0
AuthorName: Ravi Agarwal
AuthorEmail: 8vim@protonmail.com
SourceCode: https://github.com/flide/8VIM
IssueTracker: https://github.com/flide/8VIM/issues
AutoName: 8Vim
RepoType: git
Repo: https://github.com/flide/8VIM
Builds:
- versionName: iteration-3
versionCode: 4
commit: iteration-3
subdir: 8vim
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: iteration-3
CurrentVersionCode: 4
| Categories:
- System
License: Apache-2.0
AuthorName: Ravi Agarwal
AuthorEmail: 8vim@protonmail.com
SourceCode: https://github.com/flide/8VIM
IssueTracker: https://github.com/flide/8VIM/issues
AutoName: 8Vim
RepoType: git
Repo: https://github.com/flide/8VIM
Builds:
- versionName: iteration-3
versionCode: 4
commit: iteration-3
subdir: 8vim
gradle:
- yes
- versionName: iteration-5
versionCode: 5
commit: iteration-5
subdir: 8vim
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: iteration-5
CurrentVersionCode: 5
| Update 8Vim to iteration-5 (5) | Update 8Vim to iteration-5 (5)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
0bbd7cd069404c73a15467bc5ed348b5f2bc1561 | catalog/Developer_Tools/Concurrent_Processing.yml | catalog/Developer_Tools/Concurrent_Processing.yml | name: Concurrent Processing
description: Tools that simplify the writing of concurrent Ruby programs
projects:
- celluloid
- concurrent-ruby
- cool.io
- dataflow
- eventbox
- eventmachine
- tribe
- wires
- workers
| name: Concurrent Processing
description: Tools that simplify the writing of concurrent Ruby programs
projects:
- async
- celluloid
- concurrent-ruby
- cool.io
- dataflow
- eventbox
- eventmachine
- tribe
- wires
- workers
| Add async to Concurrent Processing | Add async to Concurrent Processing
| YAML | mit | rubytoolbox/catalog |
471893f22af2be5b79fec653ff2cef1d35b4a271 | ci/pyuvdata_tests.yml | ci/pyuvdata_tests.yml | name: pyuvdata_tests
channels:
- conda-forge
- defaults
dependencies:
- astropy
- h5py
- astropy-healpix
- numpy
- python-casacore
- pyyaml
- scipy
- coverage
- pytest-cov
- setuptools_scm
- pip
- pip:
- pytest-cases
- pygitversion
| name: pyuvdata_tests
channels:
- conda-forge
- defaults
dependencies:
- astropy
- h5py
- astropy-healpix
- numpy
- python-casacore
- pyyaml
- scipy
- coverage
- pytest-cov
- setuptools_scm
- pip
- pip:
- pytest-cases
| Remove pygitversion from deps as it is only required in pyproject | Remove pygitversion from deps as it is only required in pyproject
| YAML | bsd-2-clause | HERA-Team/pyuvdata,HERA-Team/pyuvdata,HERA-Team/pyuvdata,HERA-Team/pyuvdata |
8a29a32739549dae7a341daba4d520cec9ab3c74 | metadata/com.svenjacobs.app.leon.yml | metadata/com.svenjacobs.app.leon.yml | Categories:
- System
License: GPL-3.0-or-later
AuthorName: Sven Jacobs
AuthorEmail: leon-app@svenjacobs.com
AuthorWebSite: https://svenjacobs.com
SourceCode: https://github.com/svenjacobs/leon
IssueTracker: https://github.com/svenjacobs/leon/issues
Changelog: https://github.com/svenjacobs/leon/blob/main/CHANGELOG.md
AutoName: URL Cleaner
RepoType: git
Repo: https://github.com/svenjacobs/leon
Builds:
- versionName: 0.3.0
versionCode: 223
commit: 0.3.0
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk
- update-alternatives --auto java
gradle:
- yes
- versionName: 0.4.0
versionCode: 224
commit: 0.4.0
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk
- update-alternatives --auto java
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 0.4.0
CurrentVersionCode: 224
| Categories:
- System
License: GPL-3.0-or-later
AuthorName: Sven Jacobs
AuthorEmail: leon-app@svenjacobs.com
AuthorWebSite: https://svenjacobs.com
SourceCode: https://github.com/svenjacobs/leon
IssueTracker: https://github.com/svenjacobs/leon/issues
Changelog: https://github.com/svenjacobs/leon/blob/main/CHANGELOG.md
AutoName: URL Cleaner
RepoType: git
Repo: https://github.com/svenjacobs/leon
Builds:
- versionName: 0.3.0
versionCode: 223
commit: 0.3.0
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk
- update-alternatives --auto java
gradle:
- yes
- versionName: 0.4.0
versionCode: 224
commit: 0.4.0
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk
- update-alternatives --auto java
gradle:
- yes
- versionName: 0.4.1
versionCode: 225
commit: 0.4.1
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk
- update-alternatives --auto java
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 0.4.1
CurrentVersionCode: 225
| Update URL Cleaner to 0.4.1 (225) | Update URL Cleaner to 0.4.1 (225)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
5168a21a9763919670c832991ac5c0d91d5996e9 | shippable.yml | shippable.yml | language: java
jdk:
- oraclejdk8
build:
ci:
- mvn install
#Create folders for test and code coverage
- mkdir -p shippable/testresults
- mkdir -p shippable/codecoverage
- cp -r target/site/jacoco/jacoco.xml shippable/codecoverage
runtime:
nodePool: shippable_shared_aarch64
| language: java
jdk:
- oraclejdk8
build:
ci:
- mvn install
#Create folders for test and code coverage
- mkdir -p shippable/testresults
- cp -r target/surefire-reports/* shippable/testresults
runtime:
nodePool: shippable_shared_aarch64
| Remove code coverage copy/paste error (Jacoco is not used) | Remove code coverage copy/paste error (Jacoco is not used) | YAML | apache-2.0 | brettwooldridge/NuProcess,brettwooldridge/NuProcess,brettwooldridge/NuProcess |
902d76e72a81e84424f025fd7c93fe1cbdb168a3 | catalog/Web_Apps_Services_Interaction/Web_Analytics.yml | catalog/Web_Apps_Services_Interaction/Web_Analytics.yml | name: Web Analytics
description:
projects:
- ga_events
- gabba
- gabbara
- garb
- gattica
- google-analytics-rails
- googlepagerank
- legato
- mixpanel_rails
- PageRankr
- rack-google-analytics
- rack_clicky
- redis_analytics
- rugalytics
- wwwtf
- yaga
| name: Web Analytics
description:
projects:
- callcounter
- ga_events
- gabba
- gabbara
- garb
- gattica
- google-analytics-rails
- googlepagerank
- legato
- mixpanel_rails
- PageRankr
- rack-google-analytics
- rack_clicky
- redis_analytics
- rugalytics
- wwwtf
- yaga
| Add callcounter gem to analytics category | Add callcounter gem to analytics category | YAML | mit | rubytoolbox/catalog |
0c038bd82925042eacdb2b5ae36f03417528c3df | pubspec.yaml | pubspec.yaml | name: fl_chart
description: A powerful Flutter chart library, currently supporting Line Chart, Bar Chart and Pie Chart.
version: 0.55.0
homepage: https://github.com/imaNNeoFighT/fl_chart
environment:
sdk: ">=2.12.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
equatable: ^2.0.3
dev_dependencies:
mockito: ^5.1.0
build_runner: ^2.1.10
flutter_lints: ^2.0.1
vector_math: ^2.1.2 #Added to use in some generated codes of mockito
flutter_test:
sdk: flutter
| name: fl_chart
description: A powerful Flutter chart library, currently supporting Line Chart, Bar Chart and Pie Chart.
version: 0.55.0
homepage: https://github.com/imaNNeoFighT/fl_chart
environment:
sdk: ">=2.12.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
equatable: ^2.0.3
dev_dependencies:
mockito: ^5.3.0
build_runner: ^2.2.0
flutter_lints: ^2.0.1
vector_math: ^2.1.2 #Added to use in some generated codes of mockito
flutter_test:
sdk: flutter
| Upgrade mockito and build_runner dependencies | Upgrade mockito and build_runner dependencies
| YAML | mit | imaNNeoFighT/fl_chart,imaNNeoFighT/fl_chart,imaNNeoFighT/fl_chart,imaNNeoFighT/fl_chart,imaNNeoFighT/fl_chart,imaNNeoFighT/fl_chart,imaNNeoFighT/fl_chart |
9d9f3ff1771d2b4c0fcfdc4dc7a9df76bf411bfa | ansible/roles/init/tasks/dotfiles.yml | ansible/roles/init/tasks/dotfiles.yml | ---
- name: Get the dots!
git:
repo: https://github.com/e4r7hbug/dotfiles.git
dest: ~/git/github.dotfiles
| ---
- name: Get the dots!
become: yes
become_user: "{{ user }}"
git:
repo: https://github.com/e4r7hbug/dotfiles.git
dest: "~{{ user }}/git/github.dotfiles"
| Use become for correct dotfile permissions | ansible: Use become for correct dotfile permissions
| YAML | mit | e4r7hbug/dotfiles,e4r7hbug/dotfiles |
258b3c7a821186d743944dd6c7972a1d5ced375b | ansible/roles/php-base/tasks/main.yml | ansible/roles/php-base/tasks/main.yml | ---
- name: Install base packages for php development environment
apt: name={{ item }} state=present update_cache=yes
with_items:
- php5-common
- php5-cli
- name: Set some configuration values in php.ini
lineinfile:
dest: /etc/php5/cli/php.ini
regexp: "{{ item.regexp }}"
line: "{{ item.line }}"
state: present
with_items:
- regexp: ';?date.timezone =.*$'
line: 'date.timezone = Europe/Rome'
- regexp: ';?display_errors =.*$'
line: 'display_errors = On'
- regexp: ';?error_reporting =.*$'
line: 'error_reporting = E_ALL'
- name: Install composer
command: curl https://getcomposer.org/composer.phar -o /usr/local/bin/composer creates=/usr/local/bin/composer
- name: Set composer permissions
file: path=/usr/local/bin/composer state=file mode=0755
| ---
- name: Install base packages for php development environment
apt: name={{ item }} state=present update_cache=yes
with_items:
- php5-common
- php5-cli
- php5-intl
- name: Set some configuration values in php.ini
lineinfile:
dest: /etc/php5/cli/php.ini
regexp: "{{ item.regexp }}"
line: "{{ item.line }}"
state: present
with_items:
- regexp: ';?date.timezone =.*$'
line: 'date.timezone = Europe/Rome'
- regexp: ';?display_errors =.*$'
line: 'display_errors = On'
- regexp: ';?error_reporting =.*$'
line: 'error_reporting = E_ALL'
- name: Install composer
command: curl https://getcomposer.org/composer.phar -o /usr/local/bin/composer creates=/usr/local/bin/composer
- name: Set composer permissions
file: path=/usr/local/bin/composer state=file mode=0755
| Add php5-intl module to PHP dev environment | Add php5-intl module to PHP dev environment
| YAML | mit | ebargtuo/docker-dev-env,ebargtuo/docker-dev-env,ebargtuo/docker-dev-env |
4c69eadf856a3b3061001ec20baf40df6a0f928d | zuul.d/layout.yaml | zuul.d/layout.yaml | - project:
templates:
- tripleo-buildimage-jobs
- openstack-python3-ussuri-jobs
- release-notes-jobs-python3
| - project:
templates:
- tripleo-buildimage-jobs
- openstack-python3-victoria-jobs
- release-notes-jobs-python3
| Add Python3 victoria unit tests | Add Python3 victoria unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for victoria.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: I0cc58532d0f0312b39d5cf90585a8b28548e4784
| YAML | apache-2.0 | openstack/tripleo-puppet-elements,openstack/tripleo-puppet-elements |
21b85df49066d3a1e67561953acbc9e9e23abcf1 | zuul.d/layout.yaml | zuul.d/layout.yaml | - project:
templates:
- openstack-python-jobs
- openstack-python35-jobs
- openstack-python36-jobs
- openstack-python37-jobs
- tripleo-multinode-container-minimal
- release-notes-jobs-python3
post:
jobs:
- publish-openstack-python-branch-tarball
| - project:
templates:
- tripleo-buildimage-jobs
- openstack-python-jobs
- openstack-python35-jobs
- openstack-python36-jobs
- openstack-python37-jobs
- release-notes-jobs-python3
post:
jobs:
- publish-openstack-python-branch-tarball
| Replace multinode jobs with image builds | Replace multinode jobs with image builds
This repository is not used in the multinode jobs. We should be running
the image build job and OVB jobs to test this.
Change-Id: I757bacb4d4f8a8ab30886a3624b4d985960bbc8a
| YAML | apache-2.0 | openstack/tripleo-image-elements,openstack/tripleo-image-elements |
4469a326fd99f2c8567f974bd1f7e6b2d5db9868 | .cirrus.yml | .cirrus.yml | freebsd_instance:
image: freebsd-12-0-release-amd64
task:
name: stable x86_64-unknown-freebsd
setup_script:
- pkg install -y curl gmake py36-sphinx
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y
build_script:
- . $HOME/.cargo/env
- cargo build
test_script:
- . $HOME/.cargo/env
- cargo test
- |
mkdir installdir_test
make install DESTDIR=installdir_test SPHINXBUILD='sphinx-build-3.6'
[ `ls installdir_test/usr/local/bin | wc -l` -gt 0 ]
| freebsd_instance:
image: freebsd-12-0-release-amd64
task:
name: stable x86_64-unknown-freebsd
setup_script:
- pkg install -y curl gmake
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y
build_script:
- . $HOME/.cargo/env
- cargo build
test_script:
- . $HOME/.cargo/env
- cargo test
| Disable installation test on FreeBSD due to sphinx-build issue | Disable installation test on FreeBSD due to sphinx-build issue
| YAML | mit | uutils/coreutils,uutils/coreutils,uutils/coreutils |
e51b4eb694b7874cdb265d3fe16f585f4de3a9a5 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
rvm:
- 2.4.1
before_install:
- gem install bundler -v 1.14.6
- git clone --depth 10 https://github.com/antirez/redis.git
- cd redis
- git fetch && git fetch --tags
- git checkout 4.0.6
- make
- cd ..
- git clone --depth 1 https://github.com/RedisLabsModules/RediSearch.git
- cd RediSearch
- git fetch && git fetch --tags
- git checkout v1.0.4
- make all
- cd ..
| sudo: required
dist: trusty
language: ruby
rvm:
- 2.4.1
before_install:
- gem install bundler -v 1.14.6
- git clone --depth 10 https://github.com/antirez/redis.git
- cd redis
- git fetch && git fetch --tags
- git checkout 4.0.6
- make
- cd ..
- git clone --depth 1 https://github.com/RedisLabsModules/RediSearch.git
- cd RediSearch
- git fetch && git fetch --tags
- git checkout v1.2.0
- make all
- cd ..
| Upgrade RediSearch version used in CI tests | Upgrade RediSearch version used in CI tests
| YAML | mit | vruizext/redisearch-rb |
a08964ea00c686c2f16a2619f15aabcadb3aa564 | .travis.yml | .travis.yml | language: go
go:
- 1.4
- 1.5
- 1.6
install:
- go get -t ./...
script:
- go build
- go test ./...
| language: go
go:
- 1.7
- 1.8
- 1.9
- "1.10"
- tip
install:
- go get -t ./...
script:
- go build
- go test ./...
| Update Travis to use modern versions of Go | Update Travis to use modern versions of Go
| YAML | mit | dingoblog/dingo,dinever/dingo,dingoblog/dingo,dinever/dingo |
ddc156f755d7f0e88530db3647aba466017f7f9d | .travis.yml | .travis.yml | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
- INSTANCE=all-centos-6
- INSTANCE=all-centos-7
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1
| addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
env:
- CHEF_LICENSE=accept
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
- INSTANCE=all-centos-6
- INSTANCE=all-centos-7
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env:
- UNIT_AND_LINT=1
- CHEF_LICENSE=accept
| Update for Chef 15 license agreement and Chef Workstation | Update for Chef 15 license agreement and Chef Workstation
| YAML | apache-2.0 | chef-cookbooks/yum-centos |
5aa0deae0e45b63aaca80e5e800b0991725ea757 | .travis.yml | .travis.yml | language: node_js
node_js:
- 4
- 0.12
- 0.10
sudo: false
| language: node_js
node_js:
- 6
- 5
- 4
- 3
- 2
- 1
- 0.12
- 0.10
sudo: false
| Test on more Node versions | Test on more Node versions
| YAML | mit | nicolasmccurdy/procrastinate,nicolasmccurdy/procrastinate |
456ebb1e3a7ea2db43f629414b6bb74d7fd93d67 | .travis.yml | .travis.yml | language: php
php:
- "5.3.3"
- "5.3"
- "5.4"
- "5.5"
- "5.6"
- "hhvm"
- "hhvm-nightly"
install: composer install
script: vendor/bin/phpunit --configuration phpunit.coverage.xml
| language: php
php:
- "5.3.3"
- "5.3"
- "5.4"
- "5.5"
- "5.6"
- "hhvm"
- "hhvm-nightly"
matrix:
allow_failures:
- php: "hhvm-nightly"
install: composer install
script: vendor/bin/phpunit --configuration phpunit.coverage.xml
| Allow failures for HHVM nightly. | Allow failures for HHVM nightly.
| YAML | mit | eloquent/phony,eloquent/phony,eloquent/phony,eloquent/phony |
90b0fa0caa7ec42466a6189d39e607c1dc6f75ce | .travis.yml | .travis.yml | language: python
python:
- "3.5"
sudo: false
env:
- TOXENV=py27-lint
- TOXENV=py27-docs
- TOXENV=py35-django19
- TOXENV=py34-django19
- TOXENV=py27-django19
- TOXENV=py35-django18
- TOXENV=py34-django18
- TOXENV=py33-django18
- TOXENV=py32-django18
- TOXENV=py27-django18
- TOXENV=py27-django110
- TOXENV=py35-django110
- TOXENV=py34-django110
matrix:
fast_finish: true
install:
# Virtualenv < 14 is required to keep the Python 3.2 builds running.
- pip install tox "virtualenv<14"
script:
- tox
after_success:
- pip install codecov
- codecov -e TOXENV
notifications:
email: false
| language: python
python:
- "3.5"
sudo: false
env:
- TOXENV=py27-lint
- TOXENV=py27-docs
- TOXENV="py35-django1.9"
- TOXENV="py34-django1.9"
- TOXENV="py27-django1.9"
- TOXENV="py35-django1.8"
- TOXENV="py34-django1.8"
- TOXENV="py33-django1.8"
- TOXENV="py32-django1.8"
- TOXENV="py27-django1.8"
- TOXENV="py27-django1.10"
- TOXENV="py35-django1.10"
- TOXENV="py34-django1.10"
matrix:
fast_finish: true
install:
# Virtualenv < 14 is required to keep the Python 3.2 builds running.
- pip install tox "virtualenv<14"
script:
- tox
after_success:
- pip install codecov
- codecov -e TOXENV
notifications:
email: false
| Fix names of tox environments. | Fix names of tox environments. | YAML | bsd-3-clause | kanemra/django-celery,axiom-data-science/django-celery,celery/django-celery,axiom-data-science/django-celery,axiom-data-science/django-celery,kanemra/django-celery,kanemra/django-celery,celery/django-celery,celery/django-celery |
f64cb4a8f5c0331f49d4b90044d990f0f8bcaf47 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.3
- 5.4
env:
- DB=MYSQL CORE_RELEASE=3.5
matrix:
include:
- php: 5.5
env: DB=PGSQL CORE_RELEASE=3.1
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.2
- php: 7.1
env: DB=MYSQL CORE_RELEASE=3.6
before_script:
- composer self-update || true
- phpenv rehash
- git clone git://github.com/silverstripe/silverstripe-travis-support.git ~/travis-support
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss
- cd ~/builds/ss
script:
- vendor/bin/phpunit selectupload/tests
| language: php
sudo: false
php:
- 5.4
env:
- DB=MYSQL CORE_RELEASE=3.5
matrix:
include:
- php: 5.5
env: DB=PGSQL CORE_RELEASE=3.1
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.2
- php: 7.1
env: DB=MYSQL CORE_RELEASE=3.6
before_script:
- composer self-update || true
- phpenv rehash
- git clone git://github.com/silverstripe/silverstripe-travis-support.git ~/travis-support
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss
- cd ~/builds/ss
script:
- vendor/bin/phpunit selectupload/tests
| Remove PHP 5.3 from Travis build matrix | Remove PHP 5.3 from Travis build matrix | YAML | bsd-3-clause | silverstripe-labs/silverstripe-selectupload,silverstripe-labs/silverstripe-selectupload,silverstripe-labs/silverstripe-selectupload |
af0bb0a663918a078e7f7f44416832baad3e1364 | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- oraclejdk8
before_script:
- echo ==== Setting up toolchain.xml ====
- ls /usr/lib/jvm
- cp kura/setups/toolchains/toolchains-travis.xml ~/.m2/toolchains.xml
- echo ==== Setting up Maven 3.3 for Travis ====
- wget -O maven.tar.gz http://www-eu.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz
- mkdir maven
- cd maven ; tar --strip-components 1 -xzf ../maven.tar.gz ; cd ..
- chmod a+x maven/bin/mvn
- export M2_HOME=$PWD/maven
- export PATH=$PWD/maven/bin:${PATH}
- hash -r
script: RUN_TESTS=true ./build-all.sh -Pbree
| language: java
sudo: false
jdk:
- oraclejdk8
before_script:
- echo ==== Setting up toolchain.xml ====
- ls /usr/lib/jvm
- cp kura/setups/toolchains/toolchains-travis.xml ~/.m2/toolchains.xml
- echo ==== Setting up Maven 3.3 for Travis ====
- wget -O maven.tar.gz http://www-eu.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz
- mkdir maven
- cd maven ; tar --strip-components 1 -xzf ../maven.tar.gz ; cd ..
- chmod a+x maven/bin/mvn
- export M2_HOME=$PWD/maven
- export PATH=$PWD/maven/bin:${PATH}
- hash -r
addons:
apt:
packages:
- dos2unix
script: RUN_TESTS=true ./build-all.sh -Pbree
| Fix net.admin tests on Travis | Fix net.admin tests on Travis
net.admin tests are failing on Travis due to missing dos2unix.
Install the dos2unix package.
| YAML | epl-1.0 | markoer/kura,nicolatimeus/kura,ctron/kura,nicolatimeus/kura,nicolatimeus/kura,ctron/kura,ymai/kura,gavinying/kura,ctron/kura,nicolatimeus/kura,cdealti/kura,ctron/kura,cdealti/kura,darionct/kura,cdealti/kura,cdealti/kura,gavinying/kura,darionct/kura,gavinying/kura,nicolatimeus/kura,darionct/kura,cdealti/kura,darionct/kura,ymai/kura,gavinying/kura,ymai/kura,markoer/kura,darionct/kura,ymai/kura,nicolatimeus/kura,gavinying/kura,gavinying/kura,markoer/kura,markoer/kura,ctron/kura,markoer/kura,markoer/kura,ymai/kura,ymai/kura,cdealti/kura,darionct/kura,ctron/kura |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.