commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
9c45a76c7432bc7007a62a81754e8d7933c33ee3 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6.3.1"
deploy:
provider: npm
email: thomas.winckell@gmail.com
api_key: $NPM_TOKEN
on:
tags: true
after_success:
- codeclimate-test-reporter < ./coverage/lcov.info
addons:
code_climate:
repo_token: $CODE_CLIMATE_TOKEN
notifications:
email:
recipients:
-... | language: node_js
node_js:
- "6.3.1"
deploy:
- provider: npm
email: thomas.winckell@gmail.com
api_key: $NPM_TOKEN
on:
tags: true
- provider: s3
access_key_id: $AWS_ACCESS_KEY
secret_access_key: $AWS_SECRET_KEY
bucket: "travis-demo-client"
skip_cleanup: true
on:
tags: t... | Deploy on S3 on tags | Deploy on S3 on tags
| YAML | mit | thomaswinckell/travis-demo-client,thomaswinckell/travis-demo-client,thomaswinckell/travis-demo-client |
a7d716b3c344c299374f24095fcd42bb4efa5f1e | .travis.yml | .travis.yml | language: ruby
script: rake test
branches:
only:
- master
services:
- redis-server
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
- jruby-head
jdk:
- openjdk6
- openjdk7
- oraclejdk7
matrix:
exclude:
- rvm: 2.0.0
jdk: openjdk7
- rvm: 2.0.0
jdk: openjdk6
... | language: ruby
script: rake test
branches:
only:
- master
services:
- redis-server
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- jruby-19mode
- rbx-19mode
- ruby-head
- jruby-head
jdk:
- openjdk6
- openjdk7
- oraclejdk7
matrix:
exclude:
- rvm: 2.0.0
jdk: openjdk7
- rvm: 2.0.0
jdk: ope... | Add Travis support for Ruby 2.1.1 | Add Travis support for Ruby 2.1.1
Add Travis support for Ruby 2.1.1 | YAML | bsd-3-clause | danilogcarolino/sidetiq,vayu-technology/sidetiq,Altonymous/sidetiq,talentpad/sidetiq,sfroehler/sidetiq,slategroup/sidetiq,rjocoleman/sidetiq,atpay/sidetiq,tomoyuki-yanagisawa/sidetiq-mod,grzlus/sidetiq,brennovich/sidetiq,kickserv/sidetiq,vayu-technology/sidetiq,akhiln/sidetiq,flowerett/sidetiq,endofunky/sidetiq,stancha... |
957a3fec3f667310c353a98e3b8ba5d02fee89f6 | .travis.yml | .travis.yml | language: php
dist: xenial
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
matrix:
include:
- name: PHPStan
php: 7.4
before_script:
- travis_retry composer update --no-interaction --no-dev
- curl -L https://github.com/phpstan/phpstan/releases/download/0.12.32/phpstan.phar -o ph... | language: php
dist: xenial
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
matrix:
include:
- name: PHPStan
php: 7.4.7
before_script:
- travis_retry composer update --no-interaction --no-dev
- curl -L https://github.com/phpstan/phpstan/releases/download/0.12.32/phpstan.phar -o ... | Use PHP 7.4.7 to run PHPStan | Use PHP 7.4.7 to run PHPStan
| YAML | mit | m4tthumphrey/php-gitlab-api |
3361303da6b383f149c077a95bb9b09ca849f6be | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm
script: phpunit
| language: php
php:
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm
before_script:
- composer self-update
script:
- phpunit
| Update composer before running tests | Update composer before running tests
| YAML | mit | hnq90/Gettext,icebird93/Gettext,oscarotero/Gettext,oscarotero/Gettext,hnq90/Gettext,PSF1/Gettext,PSF1/Gettext,icebird93/Gettext |
f3669f04ef4d538a3e98df6218028120b4cdaa8d | .travis.yml | .travis.yml | language: ruby
sudo: required
rvm:
- 2.1
- 2.2
- 2.3.1
install:
- sudo apt-get update -qq
- sudo apt-get install -qq libpcap-dev
- gem install bundler
- bundler install --path vendor/bundle --jobs=3 --retry=3
script:
- bundler exec rake
- sudo bundler exec rake spec:sudo | language: ruby
sudo: required
rvm:
- 2.1
- 2.2
- 2.3.1
install:
- sudo apt-get update -qq
- sudo apt-get install -qq libpcap-dev
- sudo gem install bundler
- bundler install --path vendor/bundle --jobs=3 --retry=3
script:
- bundler exec rake
- sudo bundler exec rake spec:sudo | Add sudo on installing bundler to have it as root | Add sudo on installing bundler to have it as root
| YAML | mit | sdaubert/packetgen |
c94c02e110945c6aa75198db4e27d17a46e7fa49 | .circleci/config.yml | .circleci/config.yml | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:8.11.4
# Specify service dependencies here if necessary
# CircleCI maintai... | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:10.16
# Specify service dependencies here if necessary
# CircleCI maintain... | Update CircleCI Node.js Docker image | Update CircleCI Node.js Docker image
| YAML | mit | ocetnik/react-native-background-timer,ocetnik/react-native-background-timer,ocetnik/react-native-background-timer |
a5614ec03b75017723c8e7fbac28acf3727b43ab | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
minecraft_server:
docker:
- image: circleci/buildpack-deps:18.10
steps:
- checkout
- setup_remote_docker
- run: docker build minecraft-server
workflows:
version: 2
build:
jobs:
- minecraft_server
| version: 2
jobs:
minecraft_server:
docker:
- image: circleci/buildpack-deps:18.10
steps:
- checkout
- setup_remote_docker
- run: docker build -t mc:$CIRCLE_BUILD_NUM minecraft-server
- run:
name: Test default version and type
no_output_timeout: "10s"
... | Add testing of minecraft-server image in CircleCI | Add testing of minecraft-server image in CircleCI
| YAML | apache-2.0 | itzg/dockerfiles |
fdd72b5967d76d8cb19258df98b6a47997811bc8 | .circleci/config.yml | .circleci/config.yml | version: 2.0
jobs:
build:
docker:
- image: clojure:lein-2.8.1
environment:
- DB_PORT: 5432
- CLOJARS_ENVIRONMENT: test
- image: postgres:12.1
environment:
- POSTGRES_USER=clojars
- POSTGRES_PASSWORD=clojars
- POSTGRES_DB=clojars
wor... | version: 2.0
jobs:
build:
docker:
- image: clojure:lein-2.8.1
environment:
- DB_PORT: 5432
- CLOJARS_ENVIRONMENT: test
- image: postgres:12.1
environment:
- POSTGRES_USER=clojars
- POSTGRES_PASSWORD=clojars
- POSTGRES_DB=clojars
wor... | Add clj-kondo linting to CI build | Add clj-kondo linting to CI build
| YAML | epl-1.0 | ato/clojars-web,ato/clojars-web,tobias/clojars-web,tobias/clojars-web,clojars/clojars-web,clojars/clojars-web,tobias/clojars-web,clojars/clojars-web |
9fdb3db0eff4bb531e2a189c4f548a6000131830 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: node_js
branches:
only:
- master
- develop
node_js:
- 8.16.*
cache:
- pip
- yarn
install:
- pip install --user awscli
before_script:
- yarn
script: ./travis/build.sh
deploy:
- provider: script
script: ./travis/deploy.sh
skip_cleanup: true
on:
repo: sendgri... | sudo: required
dist: trusty
language: node_js
branches:
only:
- master
- develop
node_js:
- 12.16.*
cache:
- pip
- yarn
install:
- pip install --user awscli
before_script:
- yarn
script: ./travis/build.sh
deploy:
- provider: script
script: ./travis/deploy.sh
skip_cleanup: true
on:
repo: sendgr... | Upgrade Node version from 8 to 12 | Upgrade Node version from 8 to 12
| YAML | mit | sendgrid/docs,Whatthefoxsays/docs,Whatthefoxsays/docs,Whatthefoxsays/docs,sendgrid/docs,sendgrid/docs |
dc32d25a4eaa0a87a93199f80f21d6f902676166 | .travis.yml | .travis.yml | notifications:
email:
on_success: never
on_failure: change
env:
global:
- DOTFILES_PATH=~/.dotfiles
matrix:
include:
- os: linux
sudo: required
addons:
apt:
sources:
- debian-sid
packages:
- shellcheck
- os: osx
before_install... | notifications:
email:
on_success: never
on_failure: change
env:
global:
- DOTFILES_PATH=~/.dotfiles
matrix:
include:
- os: linux
sudo: required
addons:
apt:
sources:
- debian-sid
packages:
- shellcheck
#- os: osx
# before_insta... | Remove OS X build configuration temporarily | Remove OS X build configuration temporarily
| YAML | mit | jmlntw/dotfiles,jmlntw/dotfiles |
45d3974c9357fe8e34ed580ea878a9e7b1689790 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
branches:
only:
- master
env:
- GUARD_SLEEP=1
notifications:
recipients:
- thibaud@thibaud.me
- rymai@rymai.me
- michi@netzpiraten.ch
- yann.lugrin@sans-savoir.net
irc: "irc.freenode.or... | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ruby-head
- ree
#- jruby-18mode
#- jruby-19mode
#- jruby-head
- rbx-18mode
- rbx-19mode
branches:
only:
- master
env:
- GUARD_SLEEP=1
notifications:
recipients:
- thibaud@thibaud.me
- rymai@rymai.me
- michi@netzpiraten.ch
- yann.lugrin@sans-sa... | Revert "Try JRuby on Travis CI." | Revert "Try JRuby on Travis CI."
This reverts commit 420d3efc10bd7a08b1f3dd686a97919340b7ae63.
| YAML | mit | pjump/guard,ginkel/guard,yujinakayama/guard,baberthal/guard,100star/guard,sdgdsffdsfff/guard,guard/guard,garettarrowood/guard,sideci-sample/sideci-sample-guard |
5f35c95faadab0ae53173cb64330cfa983a085bb | .travis.yml | .travis.yml | language: scala
jdk:
- oraclejdk8
scala:
- 2.11.6
script:
- cd code
- sbt ++$TRAVIS_SCALA_VERSION +publishLocal
- cd ../test-app
- sbt ++$TRAVIS_SCALA_VERSION -DplayTestVersion=2.4.0 +test
after_success:
- ! '[[ $TRAVIS_BRANCH == "master" ]] && { sbt +publish; };'
env:
global:
- secure: lWiAEXvfiZWpdhly/x9OHewK2xwL... | language: scala
jdk:
- oraclejdk8
scala:
- 2.11.6
script:
- cd code
- sbt ++$TRAVIS_SCALA_VERSION +publishLocal
- cd ../test-app
- sbt ++$TRAVIS_SCALA_VERSION -DplayTestVersion=2.4.0 +test
- cd ../code
after_success:
- ! '[[ $TRAVIS_BRANCH == "master" ]] && { sbt +publish; };'
env:
global:
- secure: lWiAEXvfiZWpdhl... | Change back to code directory to publish | Change back to code directory to publish | YAML | apache-2.0 | schaloner/deadbolt-2-java,mkurz/deadbolt-2-java,schaloner/deadbolt-2-java,mkurz/deadbolt-2-java |
28a7d43ba974c08210e135a5ac363b988991546f | .travis.yml | .travis.yml | language: rust
rust:
- stable
- nightly
sudo: false
script:
- cargo build --features=ssl
- cargo test --features=ssl
env:
global:
secure: DUE2yG7/ASacYARIs7nysUAUhK86AqwE/PdQ3j+D5dqzxs3IOMSOcc7PA1r2w3FkXd52rENCYqKz2iReniJn4fG5S3Q+NbcfaYkhS/6P1y0sQB8yIIVeBRf/Bo2bR2P5TRh+piYWDmqYLUvsQ0+DpQ78MR... | language: rust
rust:
- stable
- nightly
sudo: false
script:
- cargo build
- cargo test
- cargo build --features=ssl
- cargo test --features=ssl
env:
global:
secure: DUE2yG7/ASacYARIs7nysUAUhK86AqwE/PdQ3j+D5dqzxs3IOMSOcc7PA1r2w3FkXd52rENCYqKz2iReniJn4fG5S3Q+NbcfaYkhS/6P1y0sQB8yIIVeBRf... | Test both with and without SSL on Travis CI | Test both with and without SSL on Travis CI
| YAML | mit | dorfsmay/iron,ahwatts/iron,reem/iron,iron/iron |
60eca3e38e8ee7979c24981d0513e6762d63602c | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
services:
- mongodb
before_script:
- rake db:mongoid:create_indexes
notifications:
campfire:
rooms:
- secure: "eEuzoYFXLPeIMt+zHGzZp6XCvbfxRDe8FA3kVwrNRB0zoOktPRZXD9O8ng2z\nx2Yg8C7i1unstuW0bjPvwphpdxJOTFSxliw6P4Xk1Y9HnTYQqqUbDat/zL9c\nAyjYezuRQgYFSBP2BgNZ2RL9... | language: ruby
rvm:
- 2.0.0
services:
- mongodb
before_script:
- rake db:mongoid:create_indexes
notifications:
campfire:
rooms:
- secure: "eEuzoYFXLPeIMt+zHGzZp6XCvbfxRDe8FA3kVwrNRB0zoOktPRZXD9O8ng2z\nx2Yg8C7i1unstuW0bjPvwphpdxJOTFSxliw6P4Xk1Y9HnTYQqqUbDat/zL9c\nAyjYezuRQgYFSBP2BgNZ2RL9RiLSyLQBWh... | Remove 1.9.3 support from Travis config | Remove 1.9.3 support from Travis config
A successful Heroku deploy requires us to specify a version of Ruby in our Gemfile. Since we're developing with Ruby 2.0.0, that's what's specified in the Gemfile. Although Travis builds have been passing on 1.9.3, we can't guarantee that version will always be supported. Theref... | YAML | bsd-3-clause | appropriate/ohana-web-search-la,marks/dmvpmh-ohana-web-search,folklabs/cc-web-search,smcgov/SMC-Connect,ellpee/ohana-web-search,smcgov/SMC-Connect,wesley1001/ohana-web-search,codeforamerica/ohana-web-search,ellpee/ohana-web-search,noahpatterson/DCOpen211DCConnect,volkanunsal/nyc-prepared-search,smcgov/SMC-Connect,marks... |
62b9a0c54f6c2b842e9af4e0a2b49a85d008eaa0 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.1
- ruby-head
| language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.1.5
- 2.2.0
- ruby-head
| Update Travis CI ruby versions | Update Travis CI ruby versions
| YAML | bsd-3-clause | ItaiLeibowitz/rb-libsvm,ItaiLeibowitz/rb-libsvm,ItaiLeibowitz/rb-libsvm |
af3d42817822becb94acba4ba36ee8a30e150623 | automation/ansible/roles/common/tasks/main.yml | automation/ansible/roles/common/tasks/main.yml | ---
# file: roles/common/tasks/main.yml
- name: make sure debootstrap is installed
shell: type debootstrap
- name: make sure rinse is installed
shell: type rinse
- name: make sure docker is running
service: name=docker state=running
- name: execute stage 0 build
shell: sudo roles/common/files/stage-0.sh
- n... | ---
# file: roles/common/tasks/main.yml
- name: make sure debootstrap is installed
shell: type debootstrap
- name: make sure rinse is installed
shell: type rinse
- name: make sure docker is running
service: name=docker state=running
- name: execute stage 0 build
shell: sudo roles/build/files/stage-0.sh
- na... | Make stage-1 execution explicit by using shell module, instead of script module. | Make stage-1 execution explicit by using shell module, instead of script module.
| YAML | apache-2.0 | locaweb/leela,locaweb/leela,locaweb/leela,locaweb/leela,locaweb/leela |
69a3fe1a0f574b2700ec305a9dbd641e19e537b1 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "pypy"
- "3.3"
- "3.4"
install:
# Travis uses an outdated PyPy, this installs the most recent one.
- "[[ ${TOX_ENV} == pypy ]] && sudo add-apt-repository -y ppa:pypy/ppa || true"
- "[[ ${TOX_ENV} == pypy ]] && sudo apt-get -y update && sudo apt... | language: python
python:
- "2.6"
- "2.7"
- "pypy"
- "3.3"
- "3.4"
install:
# Travis uses an outdated PyPy, this installs the most recent one.
- "[[ ${TRAVIS_PYTHON_VERSION} == pypy ]] && sudo add-apt-repository -y ppa:pypy/ppa || true"
- "[[ ${TRAVIS_PYTHON_VERSION} == pypy ]] && sudo a... | Remove reference to old variable | Remove reference to old variable
| YAML | bsd-3-clause | magne4000/werkzeug,edcomstock/werkzeug,joshfriend/werkzeug,zhaoguixu/werkzeug,ThiefMaster/werkzeug,pjknkda/werkzeug,VishvajitP/werkzeug,VishvajitP/werkzeug,godfreyy/werkzeug,liaoqingwei/werkzeug,miumok98/werkzeug,DasIch/werkzeug,sonnyhu/werkzeug,snordhausen/werkzeug,syrrim/werkzeug,mitsuhiko/werkzeug,nateprewitt/werkze... |
fceb289309a845f6e8d1b0c4bf87f8a620be24bc | .travis.yml | .travis.yml | ### Config file for automatic testing at travis-ci.org
dist: xenial
language: python
python:
- "3.7"
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
- "2.6"
- "pypy"
### command to install external dependencies
# using sudo instead of rvmsudo was causing some PATH problems:
# see http://stackoverflow.com/que... | ### Config file for automatic testing at travis-ci.org
dist: xenial
language: python
python:
- "3.7"
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
- "2.6"
- "pypy"
### command to install external dependencies
# using sudo instead of rvmsudo was causing some PATH problems:
# see http://stackoverflow.com/que... | Add xmllint explicitly (no longer available by default) | Add xmllint explicitly (no longer available by default)
| YAML | bsd-3-clause | jmourelos/doconv,jmourelos/doconv |
980dc20f964d9a34acd222b4c2fe758365972dfe | .travis.yml | .travis.yml | before_install:
- gem install bundler
language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
- "2.1.1"
- "2.1.2"
- "2.1.4"
- "2.2.0"
| before_install:
- gem install bundler
language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
- "2.1.1"
- "2.1.2"
- "2.1.4"
- "2.2.0"
- "2.3.1"
| Add ruby 2.3.1 to unit tests | Add ruby 2.3.1 to unit tests
| YAML | mit | neilslater/secret_store,neilslater/secret_store |
9b7057addd4a794b54849ae29bada7cb47e7f1ac | .travis.yml | .travis.yml | # Travis CI Configuration
language: node_js
node_js:
- "12"
- "11"
- "10"
- "9"
- "8"
install:
- npm install
- npm install coveralls
before_script:
- gulp build
script:
- npm run coverage
after_success:
- cat coverage/lcov.info | coveralls
| # Travis CI Configuration
language: node_js
node_js:
- "8"
- "9"
- "10"
- "11"
- "12"
install:
- npm install
- npm install coveralls
before_script:
- gulp build
script:
- npm run coverage
after_success:
- cat coverage/lcov.info | coveralls
| Sort Travis Node versions from oldest to newest | Sort Travis Node versions from oldest to newest
| YAML | mit | caleb531/connect-four |
2f623adf1abcf741ae71351aaa64e85313a32798 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.6
env:
matrix:
- PHPUNIT_TEST=1
- PHPCS_TEST=1
matrix:
include:
- php: 5.6
env: PHPUNIT_TEST=1
- php: 7.0
env: PHPUNIT_TEST=1
- php: 7.1.2
env: PHPUNIT_TEST=1
before_script:
- composer validate
- composer install --dev --prefer-dist
... | language: php
sudo: false
php:
- 5.6
env:
matrix:
- PHPUNIT_TEST=1
- PHPCS_TEST=1
matrix:
include:
- php: 5.6
env: PHPUNIT_TEST=1
- php: 7.0
env: PHPUNIT_TEST=1
- php: 7.1.2
env: PHPUNIT_TEST=1
before_script:
- composer validate
- composer install --dev --prefer-dist
... | Fix to download the proper version of silverstripe-admin | Fix to download the proper version of silverstripe-admin
| YAML | mit | silverstripe-labs/silverstripe-behat-extension,silverstripe/silverstripe-behat-extension,silverstripe/silverstripe-behat-extension |
abe26174cdd952134b2f6ec2eb727ac1e031a9cd | .travis.yml | .travis.yml | sudo: false
language: erlang
install: 'true'
otp_release:
- 19.0
- 18.0
script: "./elvis rock && ./rebar3 do dialyzer, eunit"
| sudo: false
language: erlang
install: 'true'
before_script:
- wget https://s3.amazonaws.com/rebar3/rebar3
- chmod +x rebar3
env: PATH=$PATH:.
cache:
directories:
- $HOME/.cache/rebar3/
otp_release:
- 19.0
- 18.0
script: "./elvis rock && rebar3 do dialyzer, eunit"
| Use latest rebar3 and persist cache on Travis | Use latest rebar3 and persist cache on Travis
It might be wise to get rid of ./rebar3 to avoid inconsistent results.
| YAML | mit | deadtrickster/prometheus.erl |
74fb5edc90981ef2529840455fbb1ccdbd90ef60 | .travis.yml | .travis.yml | # Faster container-based infrastructure
sudo: false
language: python
python:
- "3.5"
- "3.6"
install:
- pip install -e .[tests] isort unify flake8
- pip freeze
script:
- pytest
- flake8
- isort --check-only --recursive asgiref tests
- unify --check-only --recursive --quote \" asgiref tests
| # Faster container-based infrastructure
sudo: false
language: python
python:
- "3.5"
- "3.6"
install:
- pip install -e .[tests] isort unify flake8
- pip freeze
script:
- pytest
- flake8
- isort --check-only --recursive asgiref tests
- unify --check-only --recursive --quote \" asgiref tests
jobs:
... | Add deploy stage to Travis | Add deploy stage to Travis
| YAML | bsd-3-clause | django/asgiref |
04fedcf47aca5eaf160c5e43374db1edc4b24029 | .travis.yml | .travis.yml | # R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: r
sudo: false
cache: packages
addons:
apt:
packages:
- python2.7
- python-numpy
| # R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: r
sudo: false
cache: packages
addons:
apt:
packages:
- python2.7
- python-numpy
- python-scipy
| Add scipy installation on Travis | Add scipy installation on Travis | YAML | apache-2.0 | terrytangyuan/reticulate,rstudio/reticulate,rstudio/reticulate,terrytangyuan/reticulate,rstudio/reticulate,rstudio/reticulate,rstudio/reticulate,terrytangyuan/reticulate |
f89efe56e6a8bb0419d009de4ea20a3dba1dbd27 | .travis.yml | .travis.yml | language: go
go:
- "1.10.x"
script:
go build
| language: go
go:
- "1.10.x"
script:
go test -race ./...
| Add test -race to CI | Add test -race to CI
| YAML | apache-2.0 | mattrco/anode |
28f3fd97eedbf53744af8792550ecfcf27e5ed87 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode9
script:
- xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-macOS test
- xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-iOS
- xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-watchOS
- xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-t... | language: objective-c
osx_image: xcode9.3
script:
- xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-macOS test
- xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-iOS
- xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash-watchOS
- xcrun xcodebuild -project SipHash.xcodeproj -scheme SipHash... | Switch to xcode 9.3 for newest Swift version | Switch to xcode 9.3 for newest Swift version
| YAML | mit | lorentey/SipHash,lorentey/SipHash,lorentey/SipHash |
6249239f338be2d36630fd601fccc01c04fa0ed5 | .travis.yml | .travis.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not ... | Drop Oracle JDK 8, add OpenJDK 13. | Drop Oracle JDK 8, add OpenJDK 13. | YAML | apache-2.0 | apache/commons-jexl,apache/commons-jexl,apache/commons-jexl |
9eb7082e82da7c522c1a32d7b5b611aa24395932 | .travis.yml | .travis.yml | language: c
compiler:
- gcc
script: make test
before_install:
- sudo apt-get update -qq
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq --force-yes libgd2-xpm ia32-libs ia32-libs-multiarch; fi
- sudo pip install git+https://github.com/openxc/openxc-python
- script/bootstrap.sh
- cd src... | language: c
compiler:
- gcc
script: make test
before_install:
- sudo apt-get update -qq
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq -y libgd2-xpm ia32-libs ia32-libs-multiarch; fi
- sudo pip install git+https://github.com/openxc/openxc-python
- script/bootstrap.sh
- cd src
notifica... | Use -y flag in CI setup to avoid timing out. | Use -y flag in CI setup to avoid timing out.
| YAML | bsd-3-clause | ene-ilies/vi-firmware,mgiannikouris/vi-firmware,mgiannikouris/vi-firmware,mgiannikouris/vi-firmware,ene-ilies/vi-firmware,mgiannikouris/vi-firmware,ene-ilies/vi-firmware,openxc/vi-firmware,openxc/vi-firmware,openxc/vi-firmware,ene-ilies/vi-firmware,openxc/vi-firmware |
b540726107e0b60cc764f8de16f98f917e53f650 | .travis.yml | .travis.yml | # See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
sudo: false
language: php
matrix:
include:
- php: 5.3
env: DB=MYSQL CORE_RELEASE=3.4
- php: 5.4
env: DB=MYSQL CORE_RELEASE=3.5
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3
- php: 5.6
env: DB=... | # See https://github.com/silverstripe/silverstripe-travis-support for setup details
sudo: false
language: php
matrix:
include:
- php: 5.3
env: DB=MYSQL CORE_RELEASE=3.4
- php: 5.4
env: DB=MYSQL CORE_RELEASE=3.5
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3
- php: 5.6
env: DB=MYSQL... | Add PHP7 + SS3.6 build to Travis configuration | Add PHP7 + SS3.6 build to Travis configuration
| YAML | bsd-3-clause | silverstripe/silverstripe-userforms,robbyahn/silverstripe-userforms,silverstripe/silverstripe-userforms,dnadesign/silverstripe-userforms,robbyahn/silverstripe-userforms,dnadesign/silverstripe-userforms |
a8eaed88bcff2fcbf57211784432abbf05f1ccdd | .travis.yml | .travis.yml | before_install:
- gem install bundler
language: ruby
rvm:
- '2.4'
- '2.5'
- '2.6'
- '2.7'
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
| before_install:
- gem install bundler
language: ruby
rvm:
- '2.5'
- '2.6'
- '2.7'
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
| Support of Ruby 2.4 has ended | Support of Ruby 2.4 has ended
https://www.ruby-lang.org/en/news/2020/04/05/support-of-ruby-2-4-has-ended/
| YAML | mit | envato/zxcvbn-ruby |
ba3e31fb844fa6828280c1097a02b7fcb2519b51 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
| language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
after_success:
- npm run coverage
- npm i coveralls
- cat ./coverage/lcov.info | coveralls
notifications:
email:
on_success: never
| Use the standard Jade Travis configuration | Use the standard Jade Travis configuration
| YAML | mit | pugjs/jade-linker,pugjs/jade-linker,jadejs/jade-linker,jadejs/jade-linker |
5e9576f2c7bd122560a4200a57df7dab44979ee4 | meta/main.yml | meta/main.yml | ---
galaxy_info:
author: OpenStack
description: Security hardening role for OpenStack Ansible
company: OpenStack
license: Apache
min_ansible_version: 1.8
platforms:
- name: Ubuntu
versions:
- trusty
categories:
- cloud
- secuity
- system
dependencies: []
| ---
galaxy_info:
author: OpenStack
description: Security hardening role for OpenStack Ansible
company: OpenStack
license: Apache
min_ansible_version: 1.8
platforms:
- name: Ubuntu
versions:
- trusty
categories:
- cloud
- security
- system
dependencies: []
| Fix typo: secuity -> security | Fix typo: secuity -> security
Change-Id: If9b40bc6dc02fa67a934dd32e77ee1cfaa8125d5
| YAML | apache-2.0 | major/openstack-ansible-security,major/openstack-ansible-security |
2298d1a1081b09844bf7cdbe6fa9b0da095689e0 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
before_script: composer install --dev --prefer-source
script: bin/phpspec run -fpretty --verbose
| language: php
php:
- 5.5
- 5.6
- 7.0
before_script: composer install --no-interaction --prefer-source
script: bin/phpspec run -fpretty --verbose
| Fix invalid deps and move AttributeFactory to component | Fix invalid deps and move AttributeFactory to component
| YAML | mit | Sylius/Variation |
dd0f9896e6b36094c2139b552ca29ce8aa2820bf | provisioning/roles/api/tasks/main.yml | provisioning/roles/api/tasks/main.yml | ---
- name: Install Node, NPM and nginx
apt: name={{item}} state=installed
with_items:
- nodejs-legacy
- npm
- nginx-light
- name: Locally install dependencies
local_action: command npm install
args:
chdir: ../api
become: false
- name: Sync ipfs-search api
synchronize: src=../../../... | ---
- name: Install Node, NPM and nginx
apt: name={{item}} state=installed
with_items:
- nodejs-legacy
- npm
- nginx-light
- name: Locally install dependencies
local_action: command npm install
args:
chdir: ../api
become: false
- name: Create destination folder for search api
file: ... | Make sure destination directory exists. | Make sure destination directory exists. | YAML | agpl-3.0 | ipfs-search/ipfs-search,ipfs-search/ipfs-search,dokterbob/ipfs-search,dokterbob/ipfs-search,dokterbob/ipfs-search |
b9bd0d4c128a43ef98a3713732597664171ed470 | provisioning/roles/common/tasks/main.yml | provisioning/roles/common/tasks/main.yml | ---
- name: Update apt-cache
apt: update_cache=yes cache_valid_time=3600
sudo: yes
- name: Upgrade the OS
apt: upgrade=yes
sudo: yes
- name: Install common packages
apt: pkg={{ item }} state=latest
sudo: yes
with_items:
- build-essential
- git
- tree
- vim
- curl
- w... | ---
- name: Update apt-cache
apt: update_cache=yes cache_valid_time=3600
sudo: yes
- name: Upgrade the OS
apt: upgrade=yes
sudo: yes
- name: Install common packages
apt: pkg={{ item }} state=latest
sudo: yes
with_items:
- build-essential
- git
- tree
- vim
- curl
- w... | Install ansible on the guest machine. | Install ansible on the guest machine.
| YAML | apache-2.0 | diogoosorio/zidisha-vagrant |
23dbf0ee67ea568ca54706afeb7373d87f7d1819 | integration/signer/policy_template.yaml | integration/signer/policy_template.yaml | apiVersion: kritis.grafeas.io/v1beta1
kind: VulnzSigningPolicy
metadata:
name: my-vsp
spec:
project: <ATTESTATION_PROJECT>
noteReference: projects/<NOTE_PROJECT>/notes/<NOTE_ID>
packageVulnerabilityRequirements:
maximumSeverity: MEDIUM
maximumFixNotAvailableSeverity: MEDIUM
allowlistCVEs:
- pr... | apiVersion: kritis.grafeas.io/v1beta1
kind: VulnzSigningPolicy
metadata:
name: my-vsp
spec:
project: <ATTESTATION_PROJECT>
noteReference: projects/<NOTE_PROJECT>/notes/<NOTE_ID>
packageVulnerabilityRequirements:
maximumSeverity: LOW
maximumFixNotAvailableSeverity: ALLOW_ALL
allowlistCVEs:
- pr... | Update requirements so tests can pass. | Update requirements so tests can pass.
| YAML | apache-2.0 | grafeas/kritis,grafeas/kritis,grafeas/kritis |
5784c64dd1314911060f5760cb9a53a136b7359d | .travis.yml | .travis.yml | language: go
go:
- 1.7 # ubuntu 16.04
- 1.x
addons:
postgresql: "9.4"
apt:
packages:
- upx-ucl
- binutils
- fakeroot
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- gem install package_cloud
- pip instal... | language: go
go:
- 1.10 # ubuntu 18.04
- 1.x
addons:
postgresql: "9.4"
apt:
packages:
- upx-ucl
- binutils
- fakeroot
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- gem install package_cloud
- pip insta... | Use go version for Ubuntu 18.04 | Use go version for Ubuntu 18.04
| YAML | agpl-3.0 | jollheef/henhouse,jollheef/henhouse,jollheef/henhouse,jollheef/henhouse |
6a9f0e01556965353189bac368d6ea92f4f3a66e | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
matrix:
allow_failures:
- php: 7
before_script:
- wget http://getcomposer.org/composer.phar
- php composer.phar install --dev --prefer-source --no-interaction
script:
- mkdir -p build/logs
- phpunit --coverage-clover build/logs/clover.xml
afte... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
cache:
directories:
- $HOME/.composer/cache/files
env:
- SYMFONY_VERSION=2.3.*
matrix:
allow_failures:
- php: 7
include:
- php: 5.6
env: SYMFONY_VERSION=3.0.*@dev
- php: 7
env: SYMFONY_VERSION=3.0.*@dev
before_script:
-... | Add Travis configuration to test also against Symfony 3.0 and speed up testing. | Add Travis configuration to test also against Symfony 3.0 and speed up testing.
| YAML | mit | lennerd/vipx-bot-detect |
8a8094f935c926ff739459053fa8155909923bf3 | simplesamlphp/simplesamlphp/CVE-2016-3124.yaml | simplesamlphp/simplesamlphp/CVE-2016-3124.yaml | title: Information leakage issue in the sanitycheck module
link: https://simplesamlphp.org/security/201603-01
cve: CVE-2016-3124
branches:
master:
time: 2016-03-07 13:04:57
versions: ['<=1.14.1']
1.14:
time: 2016-03-07 13:06:15
versions: ['<=1.14... | title: Information leakage issue in the sanitycheck module
link: https://simplesamlphp.org/security/201603-01
cve: CVE-2016-3124
branches:
master:
time: 2016-03-07 13:04:57
versions: ['<=1.14.1']
reference: composer://simplesamlphp/simplesamlphp
| Remove the 1.14 branch, not really needed. | Remove the 1.14 branch, not really needed.
| YAML | unlicense | FriendsOfSilverStripe/security-advisories,markstory/security-advisories,Ocramius/security-advisories,FriendsOfPHP/security-advisories,kdambekalns/security-advisories,marcomenzel/security-advisories |
f56bc4058202d5358a947efcb2d936320225079e | .github/workflows/code-quality-checks.yml | .github/workflows/code-quality-checks.yml | name: Code quality checks
on:
push:
branches:
- main
pull_request:
jobs:
code_quality:
name: Check code quality
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
... | name: Code quality checks
on:
push:
branches:
- main
pull_request:
jobs:
code_quality:
name: Check code quality
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
... | Enable coverage check in CI | Enable coverage check in CI
| YAML | bsd-3-clause | nkantar/Parsenvy |
e8f86043675f6e23517cd8150f19b3e59bf2f613 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
- 3.7
- pypy
install:
- python setup.py sdist
- pip install dist/`python setup.py --name`-`python setup.py --version`.tar.gz
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
before_script: pip install .
script:
- cover... | dist: xenial
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
- 3.7
- pypy
install:
- python setup.py sdist
- pip install dist/`python setup.py --name`-`python setup.py --version`.tar.gz
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
before_script: pip install .
scri... | Use Xenial distro for testing | Use Xenial distro for testing
| YAML | mit | aleasoluciones/boscli |
deb591917f915feadd354312cb264b8c620fb938 | test/integration/basic-agent/agent.yml | test/integration/basic-agent/agent.yml | ---
- name: python2 check
hosts: all
become: True
gather_facts: false
tasks:
- include: ../ubuntu-test-tools.yml
- name: agent
hosts: all
become: True
gather_facts: true
vars_files:
- agent_vars.yml
pre_tasks:
- name: Install nginx
include: ../nginx.yml
roles :
- ansible-co... | ---
- name: python2 check
hosts: all
become: True
gather_facts: false
tasks:
- include: ../ubuntu-test-tools.yml
- name: agent
hosts: all
become: True
gather_facts: true
vars_files:
- agent_vars.yml
roles :
- ansible-consul
post_tasks:
- name: Pause till every thing is update_cac... | Install nginx after role executes to check haproxy reload | Install nginx after role executes to check haproxy reload
| YAML | mit | hellofresh/ansible-consul,hellofresh/ansible-consul,hellofresh/ansible-consul |
12b7daa7bf24b7865aad136265ce33f11d0adac2 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.1
- 2.2
- ruby-head
- jruby
- rbx-2
matrix:
allow_failures:
- rvm: rbx-2
addons:
code_climate:
repo_token: 2a03fa37ce5a5cb21bb117a736be5d83dcf9f1c3ea2b248f7af4c0a7b330d8c8
after_success:
- bundle exec codeclimate-test-reporter
notifications:
slack:
secure: IfKhtia5n... | language: ruby
sudo: false
rvm:
- 2.1
- 2.2
- ruby-head
- jruby
- rbx
matrix:
allow_failures:
- rvm: rbx-2
addons:
code_climate:
repo_token: 2a03fa37ce5a5cb21bb117a736be5d83dcf9f1c3ea2b248f7af4c0a7b330d8c8
after_success:
- bundle exec codeclimate-test-reporter
notifications:
slack:
secure: IfKhtia5nM6... | Test against the current version of rubinius. | Test against the current version of rubinius.
| YAML | mit | trailofbits/ruby-sslyze |
73c7c70ac8b6108865a15ecfda3ca2c0254b658f | metadata/net.dcnnt.yml | metadata/net.dcnnt.yml | Categories:
- Connectivity
- System
License: MIT
AuthorName: cyanomiko
SourceCode: https://github.com/cyanomiko/dcnnt-android
IssueTracker: https://github.com/cyanomiko/dcnnt-android/issues
AutoName: Device Connect
RepoType: git
Repo: https://github.com/cyanomiko/dcnnt-android
Builds:
- versionName: 0.3.7
... | Categories:
- Connectivity
- System
License: MIT
AuthorName: cyanomiko
SourceCode: https://github.com/cyanomiko/dcnnt-android
IssueTracker: https://github.com/cyanomiko/dcnnt-android/issues
AutoName: Device Connect
RepoType: git
Repo: https://github.com/cyanomiko/dcnnt-android
Builds:
- versionName: 0.3.7
... | Update Device Connect to 0.5.0 (15) | Update Device Connect to 0.5.0 (15)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
4cc8ae74a3c175f0ecab80ab843bdaa8baa43d6a | .travis.yml | .travis.yml | script: ./scripts/build
install:
- sudo apt-get update -qq
- sudo cp -r assets/fonts/* /usr/local/share/fonts/
- sudo fc-cache -f -v
- sudo apt-get install texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended
- sudo pip install python-docx
deploy:
provider: s3
access_key_id: AKIAI6DXQYKG4LOZCCSA
... | script: ./scripts/build
install:
- sudo apt-get update -qq
- sudo cp -r assets/fonts/* /usr/local/share/fonts/
- sudo fc-cache -f -v
- sudo apt-get install texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended
- sudo pip install python-docx
deploy:
provider: s3
access_key_id: AKIAI6DXQYKG4LOZCCSA
... | Change repo name for S3 upload | Change repo name for S3 upload
| YAML | agpl-3.0 | asm-products/Dissertate,michaelpacer/Dissertate,suchow/Dissertate,michaelpacer/Dissertate,suchow/Dissertate,suchow/Dissertate,asm-products/Dissertate,michaelpacer/Dissertate,asm-products/Dissertate,suchow/Dissertate,asm-products/Dissertate,michaelpacer/Dissertate |
88b641977e5959715ee0ee11042babbef95beb04 | elasticsearch-kibana-minimal.yml | elasticsearch-kibana-minimal.yml | ---
version: '2'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:$ELASTIC_VERSION
cap_add:
- IPC_LOCK
volumes:
- esdata1:/usr/share/elasticsearch/data
ports:
- 9200:9200
kibana:
image: docker.elastic.co/kibana/kibana:$ELASTIC_VERSION
links:
... | ---
version: '2'
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:$ELASTIC_VERSION
cap_add:
- IPC_LOCK
volumes:
- /usr/share/elasticsearch/data
ports:
- 9200:9200
kibana:
image: docker.elastic.co/kibana/kibana:$ELASTIC_VERSION
links:
- e... | CHANGE to an anonymous volume to simplify the config even further | CHANGE to an anonymous volume to simplify the config even further
| YAML | mit | xeraa/elastic-docker |
b7e639dfad82b5fe163818df35b5a771c6ed4911 | config/space_api.yml | config/space_api.yml | space: init Lab
logo: initlab-logo.png
url: https://initlab.org
location:
address: floor 2, 6 Rila str., Sofia, Bulgaria
lat: 42.70789247
lon: 23.32527086
spacefed:
spacenet: false
spacesaml: false
spacephone: false
contact:
irc: irc://irc.ludost.net/#initlab
twitter: '@initLab'
ml: yo@initlab.org
i... | space: init Lab
logo: initlab-logo.png
url: https://initlab.org
location:
address: floor 3, 64A, Tsar Asen Str., Sofia, Bulgaria
lat: 42.6879500
lon: 23.3169100
spacefed:
spacenet: false
spacesaml: false
spacephone: false
contact:
irc: irc://irc.ludost.net/#initlab
twitter: '@initLab'
ml: yo@initlab.o... | Update address and location in SpaceAPI config | Update address and location in SpaceAPI config
| YAML | mit | initLab/fauna,initLab/fauna,initLab/fauna |
c77ceb8fbacdc498637f7412899b8aa61e8c716c | vars/main.yml | vars/main.yml | ---
metronome_powerdns_repo_master:
apt_repo: "deb [arch=amd64] http://repo.powerdns.com/{{ ansible_distribution | lower }} {{ ansible_distribution_release | lower }}-metronome main"
gpg_key: "http://repo.powerdns.com/CBC8B383-pub.asc"
gpg_key_id: "D47975F8DAE32700A563E64FFF389421CBC8B383"
yum_repo_baseurl: "h... | ---
metronome_powerdns_repo_master:
apt_repo: "deb [arch=amd64] http://repo.powerdns.com/{{ ansible_distribution | lower }} {{ ansible_distribution_release | lower }}-metronome-master main"
gpg_key: "http://repo.powerdns.com/CBC8B383-pub.asc"
gpg_key_id: "D47975F8DAE32700A563E64FFF389421CBC8B383"
yum_repo_base... | Fix the metronome master repo URL | Fix the metronome master repo URL
| YAML | mit | PowerDNS/metronome-ansible |
fd1678c4822d8a706d4885bcfff78036cddea15b | .github/workflows/main.yml | .github/workflows/main.yml | name: Node
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 18
- 16
- 14
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setu... | name: Node
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 18
- 16
- 14
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setu... | Make GH action more granular to help pin-pointing problems | Make GH action more granular to help pin-pointing problems
| YAML | mit | SBoudrias/Inquirer.js,SBoudrias/Inquirer.js |
09328273dbf6384b0957d7d50e0aa0f0b57c8a00 | configs/circleci.yml | configs/circleci.yml | build:
type: build
commands:
- lein deps
- lein midje
deploy:
type: deploy
commands:
- lein deps
- lein daemon start ":web":
environment:
CIRCLE_ENV: "production"
SWANK: "true"
- sudo /etc/init.d/nginx :start
| build:
type: build
commands:
- lein deps
- lein midje
deploy:
type: deploy
commands:
- lein deps
- lein daemon start ":web":
environment:
CIRCLE_ENV: "production"
SWANK: "true"
- sudo /etc/init.d/nginx start
| Fix a typo in circle config | Fix a typo in circle config
| YAML | epl-1.0 | RayRutjes/frontend,circleci/frontend,prathamesh-sonpatki/frontend,RayRutjes/frontend,circleci/frontend,circleci/frontend,prathamesh-sonpatki/frontend |
7006b07f2788fd557db2f6e369db505731e5094f | .travis.yml | .travis.yml | language: ruby
cache: bundler
script: "bundle exec rake"
rvm:
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
- 2.5.1
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
before_install:
- gem install rubygems-update && update_rubygems
# Rails 4.2 doesn't support bundl... | language: ruby
cache: bundler
script: "bundle exec rake"
rvm:
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
- 2.5.1
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
before_install:
- gem install rubygems-update && update_rubygems
# ... | Test Rails 5.2 on Travis | Test Rails 5.2 on Travis
| YAML | mit | expectedbehavior/acts_as_archival,expectedbehavior/acts_as_archival |
b3e332317557c33d0ad733514033c797270be20b | metadata/godau.fynn.usagedirect.yml | metadata/godau.fynn.usagedirect.yml | Categories:
- System
License: Apache-2.0
AuthorName: Fynn Godau
AuthorEmail: fynngodau@mailbox.org
SourceCode: https://codeberg.org/fynngodau/usageDirect
IssueTracker: https://codeberg.org/fynngodau/usageDirect/issues
AutoName: usageDirect
RepoType: git
Repo: https://codeberg.org/fynngodau/usageDirect.git
Builds:
... | Categories:
- System
License: Apache-2.0
AuthorName: Fynn Godau
AuthorEmail: fynngodau@mailbox.org
SourceCode: https://codeberg.org/fynngodau/usageDirect
IssueTracker: https://codeberg.org/fynngodau/usageDirect/issues
AutoName: usageDirect
RepoType: git
Repo: https://codeberg.org/fynngodau/usageDirect.git
Builds:
... | Update usageDirect to 0.2 (2) | Update usageDirect to 0.2 (2)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
9f4200db50fc5b79e1491625a181114fce74d6c2 | circle.yml | circle.yml | dependencies:
pre:
- cmake .
override:
- make
| dependencies:
pre:
- sudo apt-get update; sudo apt-get install libgc-dev
- cmake .
override:
- make
test:
override:
- ./lisp < test.scm
| Install libgc-dev on CircleCI container | Install libgc-dev on CircleCI container
| YAML | mit | masaedw/lisp |
0f685846ef4ba28f295f69b760940df5d3a9f8fc | config/blobs.yml | config/blobs.yml | jq/jq-linux64-1.5:
size: 3027945
object_id: 9302e872-a5fc-4141-b985-033d47829089
sha: d8e36831c3c94bb58be34dd544f44a6c6cb88568
vault-broker/vault-broker:
size: 6813888
object_id: f82da81b-85b3-4fdf-4405-1190424be308
sha: 42c70b44f619befb7c4d5417490877cda4f1657b
vault/vault_0.9.6_linux_amd64.zip:
size: 197... | jq/jq-linux64-1.5:
size: 3027945
object_id: 9302e872-a5fc-4141-b985-033d47829089
sha: d8e36831c3c94bb58be34dd544f44a6c6cb88568
vault/vault_0.9.6_linux_amd64.zip:
size: 19726726
object_id: c0e52248-db33-4096-5593-53c0ccc70473
sha: 85b2093c0dd7b594b9f793fcb9d7ad73d8b04fdd
| Remove vault-broker blob from release metadata | Remove vault-broker blob from release metadata
| YAML | apache-2.0 | cloudfoundry-community/vault-boshrelease,cloudfoundry-community/vault-boshrelease,cloudfoundry-community/vault-boshrelease,cloudfoundry-community/vault-boshrelease |
84bc1f4881290fc2b998e856f4a2f42ee4ce732c | .travis.yml | .travis.yml | language: python
python:
- "3.6"
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script:
- pytest --cov=. --cov-report term-missing
branches:
only:
- master
- dev
- /^Release\/.*$/
after_success:
- coveralls
| language: python
python:
- "3.6"
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script:
- pytest --cov=. --cov-report term-missing
branches:
only:
- live
- beta
- dev
- /^Release\/.*$/
after_success:
- coveralls
| Revise Travis for new branch names | Revise Travis for new branch names
| YAML | mit | richardbuckle/EDRefCard,richardbuckle/EDRefCard,richardbuckle/EDRefCard |
666067003f08c88c817a86b9ec7b54a8a66b127a | .github/workflows/main.yml | .github/workflows/main.yml | name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # all
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name... | name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
env:
DOTNET_NOLOGO: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true # Avoid pre-populating the NuGet package cache
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # a... | Set .NET CLI Environment Variables | Set .NET CLI Environment Variables
| YAML | mit | DbUp/DbUp |
62f307c077a130359e24e7bbfab8690113408df3 | .github/workflows/main.yml | .github/workflows/main.yml | # Action was shamelessly copied from here: https://stackoverflow.com/a/64311970
name: github pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
py... | # Action was shamelessly copied from here: https://stackoverflow.com/a/64311970
name: github pages
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
... | Update branch for the workflow to be executed on | Update branch for the workflow to be executed on
Update branch for the workflow to be executed on from `main` to `master` | YAML | apache-2.0 | LoyolaChicagoCS/coursedescriptions,LoyolaChicagoCS/coursedescriptions,LoyolaChicagoCS/coursedescriptions |
2f806972e93ed35bc417d37337c248c5e8178f28 | .travis.yml | .travis.yml | language: csharp
sudo: required
dist: trusty
env:
- CLI_VERSION=latest
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
mono:
- 4.2.3
os:
- linux
- osx
osx_image: xcode7.1
before_install:
- if test "$TRAVIS_... | Enable Travis CI to build all branches | Enable Travis CI to build all branches
| YAML | mit | RehanSaeed/Serilog.Exceptions,RehanSaeed/Serilog.Exceptions | |
78c96e5cd2dbd9d648c414aa3a7a178f66970fd9 | .github/workflows/main.yml | .github/workflows/main.yml | name: Node CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8, 10, 12]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}... | name: Node CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8, 10, 12]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}... | Set SINON_CHROME_BIN for esm-bundle test | Set SINON_CHROME_BIN for esm-bundle test
| YAML | bsd-3-clause | cjohansen/Sinon.JS,mroderick/Sinon.JS,mroderick/Sinon.JS,cjohansen/Sinon.JS,cjohansen/Sinon.JS,mroderick/Sinon.JS |
27375ed871235c8f03a6f641201eea8400451bac | .github/workflows/main.yml | .github/workflows/main.yml | name: main
on:
push:
pull_request:
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include: [
{ msystem: MINGW64, arch: x86_64 },
{ msystem: MINGW32, arch: i686 }
]
defaults:
run:
shell: msys2 {0}
steps:
... | name: main
on:
push:
pull_request:
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include: [
{ msystem: MINGW64, arch: x86_64 },
{ msystem: MINGW32, arch: i686 }
]
steps:
- uses: actions/checkout@v2
with:
... | Move the checkout to C:/_ | CI: Move the checkout to C:/_
To (a) get more space and (b) reduce the path lengths
| YAML | bsd-3-clause | Ede123/MINGW-packages,Optiligence/MINGW-packages,JPeterMugaas/MINGW-packages,JPeterMugaas/MINGW-packages,stahta01/MINGW-packages,oroppas/MINGW-packages,lhmouse/MINGW-packages,mati865/MINGW-packages,Chocobo1/MINGW-packages,stahta01/MINGW-packages,oroppas/MINGW-packages,fabiangreffrath/MINGW-packages,RickLeaf/MINGW-packa... |
16b59281b8eb0912e6efb52ace28fd9aa006a3f3 | .travis.yml | .travis.yml | dist: trusty
sudo: false
group: beta
language: node_js
node_js:
- node
cache:
directories:
- node_modules
before_install:
- if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild --update-binary && node -e 'console.log(pr... | dist: trusty
sudo: false
group: beta
language: node_js
node_js:
- 7
cache:
directories:
- node_modules
before_install:
- if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild --update-binary && node -e 'console.log(proce... | Build with node 7.x on Travis | Build with node 7.x on Travis
Related to: https://github.com/Collaborne/gulp-xliff-to-carbon-i18n/issues/8
| YAML | apache-2.0 | Collaborne/gulp-xliff-to-carbon-i18n |
be7d07aa8597784b9a39be840b64a54fde307a28 | .github/workflows/rust.yml | .github/workflows/rust.yml | name: Rust
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build
- name: Run tests
run: cargo test
| name: Rust
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: cargo build
- name: Run tests
run: cargo test --features encoding,serialize
| Test on PR and with all features enabled | Test on PR and with all features enabled | YAML | mit | tafia/quick-xml,tafia/quick-xml |
9cfd61f0fbf9f9c0b07abc709ea3ef08731106cb | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get install -qq gcc-4.8
- sudo apt-get install -qq g++-4.8
- export CC="gcc-4.8"
- export CXX="g++-4.8"
- export CFLAGS=-std=c... | language: python
python:
- "2.6"
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get install -qq gcc-4.8
- sudo apt-get install -qq g++-4.8
- export CC="gcc-4.8"
- export CXX="g++-4.8"
- export CFLAGS=-std=c... | Support Python 3.6 and don't support Python 3.3 | Support Python 3.6 and don't support Python 3.3
| YAML | apache-2.0 | ikegami-yukino/neologdn,ikegami-yukino/neologdn |
5ec9b4a819465a38eb4fb5849d8637639d0dd9c5 | .travis.yml | .travis.yml | language: node_js
cache: yarn
node_js:
- stable
- "8"
- "6"
- "4"
install:
- YARN_IGNORE_ENGINES=true yarn
| language: node_js
cache: yarn
node_js:
- node
- "8"
- "6"
- "4"
install:
- YARN_IGNORE_ENGINES=true yarn
| Rename latest Node.js version in Travis CI | Rename latest Node.js version in Travis CI
| YAML | mit | yisibl/autoprefixer,postcss/autoprefixer |
dba9fc8bc3910977a66abf684d9df32079f9752d | .travis.yml | .travis.yml | language: go
os:
- linux
- osx
go:
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- 1.8
- tip
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/860de7e374c89032863a
on_success: change
on_failure: always
on_start: never
email:
on_success: change
on_failure: always
scri... | language: go
os:
- linux
- osx
go:
- 1.7
- 1.8
- tip
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/860de7e374c89032863a
on_success: change
on_failure: always
on_start: never
email:
on_success: change
on_failure: always
script: make debug
| Bump Golang dependency to 1.7, so we can use the context package | Bump Golang dependency to 1.7, so we can use the context package
| YAML | agpl-3.0 | muesli/beehive,muesli/beehive |
bac1b60a743ddff626fea1c33f0596dceb2fe6c4 | .github/workflows/test.yml | .github/workflows/test.yml | # This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see... | # This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see... | Bump ruby/setup-ruby from 1.103.0 to 1.104.0 | Bump ruby/setup-ruby from 1.103.0 to 1.104.0
Bumps [ruby/setup-ruby](https://github.com/ruby/setup-ruby) from 1.103.0 to 1.104.0.
- [Release notes](https://github.com/ruby/setup-ruby/releases)
- [Commits](https://github.com/ruby/setup-ruby/compare/eb938a806ed6dbfb36293b94ccb2afaf2d590c92...e404913b054b478c35ac2a0980a8... | YAML | mit | araneforseti/api-tester,araneforseti/api-tester |
be61f00aabd63bf2f32d841976b8cdfc6109b0f5 | .github/workflows/test.yml | .github/workflows/test.yml | on: [push, pull_request]
name: Test
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.11.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./... | on: [push, pull_request]
name: Test
jobs:
test111:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.11.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...
test112:
runs-on: ubuntu-l... | Test across many Go versions. | Test across many Go versions.
| YAML | apache-2.0 | google/btree |
5319879536eea4abb41b9dbe8e715ed321dea199 | .github/workflows/test.yml | .github/workflows/test.yml | name: Test
on:
- push
- pull_request
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
mode: [run_tests]
python:
- "2.6"
- "3.2"
- "3.6"
- "3.8"
include:
- os: ubuntu-latest
mode: check_style
python: "2.7"
... | name: Test
on:
- push
- pull_request
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
mode: [run_tests]
python:
- "3.5"
- "3.8"
include:
- os: ubuntu-latest
mode: check_style
python: "2.7"
- os: ubuntu-latest
... | Use only the limited Python versions available | CI: Use only the limited Python versions available
| YAML | bsd-3-clause | remram44/rpaths,remram44/rpaths |
e1119b0c9a0ea35ace144f012b52f971e386b0cc | .github/workflows/test.yml | .github/workflows/test.yml | name: Test Suite
on: [push, pull_request]
jobs:
Test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Install dependencies
run: npm install
-... | name: Test Suite
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Install dependencies
run: npm insta... | Use key and name better | Use key and name better
| YAML | mit | neild3r/vscode-php-docblocker |
2ad480e5409db1ea7bde1658439a8104b11cf749 | .travis.yml | .travis.yml | language: scala
scala:
- 2.10.5
- 2.11.6
sudo: false
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/scala-$TRAVIS_SCALA_VERSION
script:
- travis_retry "./travis.sh"
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
after_success: "./travis... | language: scala
scala:
- 2.10.5
- 2.11.7
sudo: false
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/scala-$TRAVIS_SCALA_VERSION
script:
- travis_retry "./travis.sh"
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
after_success: "./travis... | Fix Scala minor version on Travis | Fix Scala minor version on Travis
| YAML | mit | skinny-framework/skinny-framework,holycattle/skinny-framework,Kuchitama/skinny-framework,holycattle/skinny-framework,skinny-framework/skinny-framework,seratch/skinny-framework,holycattle/skinny-framework,holycattle/skinny-framework,holycattle/skinny-framework,Kuchitama/skinny-framework,Kuchitama/skinny-framework,skinny... |
a5fc9ad918ea77b375f5d7096476d0b99612a74b | .github/workflows/test.yml | .github/workflows/test.yml | name: test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ... | name: test
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
w... | Enable github ci for macos env | Enable github ci for macos env
| YAML | mit | lorien/grab,lorien/grab |
a352c1c66416e82eb0c18a9b98c26b95dd6ae336 | .github/workflows/test.yml | .github/workflows/test.yml | name: Node CI
on: [push]
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2.3.3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.1
with:
node-version: ... | name: Node CI
on: [push]
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2.3.3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.1
with:
node-version: ... | Bump ridedott/merge-me-action from v1.7.2 to v1.7.3 | Bump ridedott/merge-me-action from v1.7.2 to v1.7.3
| YAML | mit | noflo/noflo-tween |
6e081a71421c85788be7f43a200d9dc442be1572 | .github/workflows/test.yml | .github/workflows/test.yml | name: Node CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node... | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: npm install, build, and test
run: |
npm ci
npm test
env:
C... | Test with one node version | Test with one node version
| YAML | mit | github/include-fragment-element,github/include-fragment-element |
e0ed0833d89645afea04c1a665b84e5732ffd87a | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.8
notifications:
hipchat:
- secure: "HqBUrmf4P2bgvwb4b9PL1tBae2wcZaXadOgwRwAFhdhDZFHaKXIXlJRUW8tN\ntdO83OZgatxJrpWWQj8VYTfDuhlE3b3NxVWeXc3PkfrHmuvejQf4veh7kwR0\njLVE6jb+ZbFIwRE2W0VFLFKYQHI6PLem4W0OKXW5Shqzy8Ewlow="
irc:
channels: "irc.freenode.org#apiary"
on_success: alw... | language: node_js
node_js:
- 0.8
- 0.10
notifications:
hipchat:
- secure: "HqBUrmf4P2bgvwb4b9PL1tBae2wcZaXadOgwRwAFhdhDZFHaKXIXlJRUW8tN\ntdO83OZgatxJrpWWQj8VYTfDuhlE3b3NxVWeXc3PkfrHmuvejQf4veh7kwR0\njLVE6jb+ZbFIwRE2W0VFLFKYQHI6PLem4W0OKXW5Shqzy8Ewlow="
irc:
channels: "irc.freenode.org#apiary"
on_suc... | Add node 0.10 to test suite | Add node 0.10 to test suite
| YAML | mit | apiaryio/s3-streaming-upload |
ba1e4b3ce1848efed377fd98322252f407e5058b | .github/workflows/test.yml | .github/workflows/test.yml | name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
... | name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
pyth... | Remove Python 3.5 from GitHub Actions Test workflow | Remove Python 3.5 from GitHub Actions Test workflow
| YAML | mit | tweepy/tweepy,svven/tweepy |
1142355083508f97b8e9e17a73c53bd1488c84a5 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| Build with Node.js 10 on Travis CI. | Build with Node.js 10 on Travis CI.
| YAML | mit | bigeasy/interrupt |
52e06dd114c07827cb4e588b091d490b7908be51 | .github/workflows/test.yml | .github/workflows/test.yml | name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade p... | name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade p... | Add coveralls repo token to upload step | Add coveralls repo token to upload step
| YAML | mit | lagerfeuer/cryptocompare |
ca1aa25e06da2d8f8e72a42c92b62fa1cf745e9f | .github/workflows/test.yml | .github/workflows/test.yml | name: Test
on:
pull_request:
push:
schedule:
- cron: '0 6 * * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- 'pypy3'
toxenv: ... | name: Test
on:
pull_request:
push:
schedule:
- cron: '0 6 * * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- 'pypy-3.6'
- '... | Update PyPy versions in CI | Update PyPy versions in CI
| YAML | mit | jwodder/daemail |
8e825a88139e0c451046d6cdb53df5a3bd4b58a7 | .travis.yml | .travis.yml | language: android
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- tools # intentional, see travis-ci/docs-travis-ci-com#779
- build-tools-26.0.2
- android-22 # For emulator to work
- android-26
- extra-android-m2repository
- sys-img-armeabi-v7a-android-22
licenses:
... | language: android
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- tools # intentional, see travis-ci/docs-travis-ci-com#779
- build-tools-26.0.2
- android-22 # For emulator to work
- android-26
- extra-android-m2repository
- sys-img-armeabi-v7a-android-15
- sys-img-... | Print lint and test reports after Travis-CI failure. | Print lint and test reports after Travis-CI failure.
| YAML | apache-2.0 | oasisfeng/condom |
9e3d012acd6438ddb86727fccf8768565e7e4780 | .travis.yml | .travis.yml | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
languag... | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
languag... | Use newer simulator for tests. | Use newer simulator for tests.
| YAML | mit | yext/YXTUnsatisfiableConstraintsDetector,yext/YXTUnsatisfiableConstraintsDetector |
5a4b0a51cc17bec5b69b7052473c4f96b2e9078d | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.6"
- "3.7"
install: pip install tox-travis
script: tox
| sudo: false
language: python
python:
- "2.7"
- "3.6"
install: pip install tox-travis
script: tox
| Remove 3.7 from Travis config | Remove 3.7 from Travis config
| YAML | apache-2.0 | callowayproject/django-categories,callowayproject/django-categories,callowayproject/django-categories |
accd4ccd258bc87ea029d1276eb140590f05dd5b | .travis.yml | .travis.yml | before_script:
- npm cache clean
- npm update -g npm
language: node_js
node_js:
- 0.8 | before_script:
- npm cache clean
- npm update -g npm
language: node_js
node_js:
- 0.10 | Fix Travis CI build error | Fix Travis CI build error
| YAML | mit | rakesh-mohanta/wix-ui-lib,rakesh-mohanta/wix-ui-lib |
8edfabe0af587b842bd4835d508ebeb7b92a3ad5 | .travis.yml | .travis.yml | before_script: cp config/database.yml.example config/database.yml
language: ruby
rvm:
- 1.9.2
#- 1.9.3
script: bundle exec rake db:create db:migrate db:test:prepare default
branches:
only:
- master
| branches:
only:
- master
before_script: cp config/database.yml.example config/database.yml
language: ruby
matrix:
allow_failures:
- rvm: 1.9.3
- rvm: ruby-head
rvm:
- 1.9.2
- 1.9.3
- ruby-head
script: bundle exec rake db:create db:migrate db:test:prepare default
| Test against ruby-head (allow failures) | Test against ruby-head (allow failures)
| YAML | mit | maclover7/rubygems.org,jamelablack/rubygems.org,farukaydin/rubygems.org,arthurnn/rubygems.org,Ch4s3/rubygems.org,olivierlacan/rubygems.org,wallin/rubygems.org,spk/rubygems.org,fotanus/rubygems.org,knappe/rubygems.org,hrs113355/rubygems.org,davydovanton/rubygems.org,arthurnn/rubygems.org,JuanitoFatas/rubygems.org,polamj... |
b219e447ea62fe02bd124544a2ff12b6c945c9d1 | .travis.yml | .travis.yml | language: php
dist: trusty
cache:
directories:
- $HOME/.composer/cache/files
- $HOME/.cache/composer/files
matrix:
include:
- php: 5.6
- php: 7.3
fast_finish: true
before_script:
- composer install
- cp src/config.php.dist src/config.php
- git remote set-branches --add origin master
- git ... | language: php
dist: trusty
cache:
directories:
- $HOME/.composer/cache/files
- $HOME/.cache/composer/files
matrix:
include:
- php: 7.3
fast_finish: true
before_script:
- composer install
- cp src/config.php.dist src/config.php
- git remote set-branches --add origin master
- git fetch
script:
... | Remove PHP 5.6 testing from Travis | Remove PHP 5.6 testing from Travis
| YAML | bsd-3-clause | joindin/joindin-api,heiglandreas/joindin-api,lornajane/joindin-api,heiglandreas/joindin-api,dstockto/joindin-api,joindin/joindin-api,dstockto/joindin-api,heiglandreas/joindin-api,lornajane/joindin-api,joindin/joindin-api,lornajane/joindin-api,dstockto/joindin-api |
b372fc2178f0fc7921a6b05057deee0c168ad69b | .travis.yml | .travis.yml | language: objective-c
# xcode_workspace: ReactiveAccountStoreDemo.xcworkspace
# xcode_scheme: ReactiveAccountStoreDemo
# xcode_sdk:
# - iphonesimulator7.1
# - iphonesimulator7.0
env:
global:
- LANG=en_US.UTF-8
- LC_ALL=en_US.UTF-8
before_install:
- brew update
- brew upgrade xctool
- gem update cocoa... | language: objective-c
# xcode_workspace: ReactiveAccountStoreDemo.xcworkspace
# xcode_scheme: ReactiveAccountStoreDemo
# xcode_sdk:
# - iphonesimulator7.1
# - iphonesimulator7.0
env:
global:
- LANG=en_US.UTF-8
- LC_ALL=en_US.UTF-8
before_install:
- brew update
- brew upgrade xctool
- gem update cocoa... | Use xcodebuild directory instead of xctool | Use xcodebuild directory instead of xctool
| YAML | mit | ikesyo/ReactiveAccountStore |
6a0577de33b999e777332a49f63376c0043d380a | .travis.yml | .travis.yml | language: c
compiler:
- gcc
- clang
notifications:
recipients:
- kenhys@gmail.com
branches:
only:
- master
env:
- USE_DEBUG=yes
- USE_DEBUG=no
before_script:
- curl https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh
- git submodule update --init --recursive
... | language: c
compiler:
- gcc
- clang
notifications:
recipients:
- kenhys@gmail.com
branches:
only:
- master
env:
- USE_DEBUG=yes
- USE_DEBUG=no
before_script:
- curl --location https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh
- git submodule update --init --r... | Use --location option to support redirect | Use --location option to support redirect
| YAML | bsd-2-clause | kenhys/sylpheed-customview,kenhys/sylpheed-customview |
022b9d2d04c259dcdf43e6f00a455f15a7c63b6b | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
- '0.12'
- '0.10'
script: set -e; mkdir -p build; npm run build; if [[ $(node --version) == v6* ]]; then npm run coveralls; chmod u+x scripts/deploy-edge-to-cdn.sh; ./scripts/deploy-edge-to-cdn.sh; fi
env:
global:
- GH_REF: github.com/ractivejs/ract... | sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
script: set -e; mkdir -p build; npm run build; if [[ $(node --version) == v6* ]]; then npm run coveralls; chmod u+x scripts/deploy-edge-to-cdn.sh; ./scripts/deploy-edge-to-cdn.sh; fi
env:
global:
- GH_REF: github.com/ractivejs/ractive.git
- CDN_REF: g... | Remove CI for Node < 4 | Remove CI for Node < 4
| YAML | mit | ractivejs/ractive,ractivejs/ractive,marcalexiei/ractive,marcalexiei/ractive,marcalexiei/ractive,ractivejs/ractive |
4eab63bf79a0c3a9eba01903b194548650395676 | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.10.x
- 1.11.x
- 1.12.x
- tip
matrix:
allow_failures:
- go: tip
before_install:
- go get -u github.com/golang/dep/cmd/dep github.com/golangci/golangci-lint/cmd/golangci-lint
install:
- dep ensure
before_script:
- golangci-lint run
script:
- go test -covermode=at... | sudo: false
language: go
go:
- 1.11.x
- 1.12.x
- tip
matrix:
allow_failures:
- go: tip
before_install:
- go get -u github.com/golang/dep/cmd/dep github.com/golangci/golangci-lint/cmd/golangci-lint
install:
- dep ensure
before_script:
- golangci-lint run
script:
- go test -covermode=atomic -cover... | Remove go1.10 environment on Travis CI | Remove go1.10 environment on Travis CI
| YAML | mit | osamingo/jsonrpc |
149ed0f75f4ae138d2a7d2d8862cdac77a51f386 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.2
install:
- bundle install
script: bundle exec rake spec
| language: objective-c
osx_image: xcode7.3
install:
- bundle install
script: bundle exec rake spec
| Use Xcode 7.3 on TravisCI | Use Xcode 7.3 on TravisCI
| YAML | mit | mattt/FormatterKit,mattt/FormatterKit,otaran/FormatterKit,twobitlabs/FormatterKit,twobitlabs/FormatterKit,Elethom/FormatterKit,twobitlabs/FormatterKit,mattt/FormatterKit,otaran/FormatterKit,Elethom/FormatterKit,otaran/FormatterKit |
beb0e0eb774dd15e79574ace338b885101d86d4b | .travis.yml | .travis.yml | dist: trusty
sudo: false
language: python
python:
- 2.7
- &latest_py3 3.6
jobs:
fast_finish: true
include:
- stage: deploy
if: tag IS present
python: *latest_py3
install: skip
script: skip
deploy:
provider: pypi
on:
tags: true
all_branches: true
user: jaraco... | dist: xenial
sudo: false
language: python
python:
- 2.7
- 3.6
- &latest_py3 3.7
jobs:
fast_finish: true
include:
- stage: deploy
if: tag IS present
python: *latest_py3
install: skip
script: skip
deploy:
provider: pypi
on:
tags: true
all_branches: true
user: ... | Use xenial to include support for Python 3.7. | Use xenial to include support for Python 3.7.
| YAML | mit | jaraco/rwt,jaraco/jaraco.stream,jazzband/inflect,jaraco/jaraco.logging,jaraco/calendra,python/importlib_metadata,jaraco/jaraco.context,jaraco/zipp,yougov/pmxbot,jaraco/jaraco.path,jaraco/jaraco.text,jaraco/jaraco.collections,jaraco/hgtools,jaraco/backports.functools_lru_cache,yougov/pmxbot,yougov/librarypaste,jaraco/po... |
daee1e359daceee1519474461c3575c74869fbef | .travis.yml | .travis.yml | language: c, python3
addons:
apt:
packages:
- re2c
install:
- git clone https://github.com/martine/ninja.git
- cd ninja
- ./configure.py --bootstrap
- export PATH=$(pwd):$PATH
- cd ..
cache:
directories:
- ninja
script:
- ninja --version
- make Posix
- make run-posix
| language: c, python3
addons:
apt:
packages:
- re2c
install:
- CURDIR = $(pwd)
- if [ ! -d "~/foss/ninja" ]: then
- mkdir ~/foss/ninja
- git clone https://github.com/martine/ninja.git ~/foss/ninja
- cd ~/foss/ninja
- ./configure.py --bootstrap
fi
- export PATH=$(pwd):$PATH
- cd ... | Add conditional to an install script. | Add conditional to an install script.
Not sure this works, but we need to conditionally do install ninja.
In the future we may need to validate the version if it did get cached.
| YAML | bsd-2-clause | winksaville/baremetal-hi,winksaville/baremetal-hi |
23e58816ac64f8d20766dfe1fde8c4c4c421b353 | .travis.yml | .travis.yml | language: go
go:
- 1.4
before_install:
- go get github.com/mattn/gom
services:
- rabbitmq
- redis-server
script: make
# Use Travis' container-based infrastructure:
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
notifications:
email: false
| language: go
go:
- 1.5.3
before_install:
- go get github.com/mattn/gom
services:
- rabbitmq
- redis-server
script: make
# Use Travis' container-based infrastructure:
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
notifications:
email: false
| Make Travis tests run with Go 1.5.3 | Make Travis tests run with Go 1.5.3
I omitted to updated this when upgrading the Go runtime to version 1.5.3
in 28b1717be.
| YAML | mit | alphagov/govuk_crawler_worker |
d19d57a73a61fe5913dcbd843f5a9aff4e33c5ce | .travis.yml | .travis.yml | language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "2.7"
- "3.4"
install:
- sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https:... | language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "2.7"
- "3.4"
# Setup the environment before installing
before_install:
- sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$TRAVIS_P... | Move miniconda and deps into before_install step | Move miniconda and deps into before_install step
| YAML | mit | scottclowe/python-ci,scottclowe/python-continuous-integration,scottclowe/python-ci,scottclowe/python-continuous-integration |
57761a0d4eaef89372fdfb8d42eb5d9763946ad3 | .travis.yml | .travis.yml | env:
global:
- CC_TEST_REPORTER_ID=1561686e6399317b53a92aaad0550f8b91fe5af312e1f2852ab803ff6fcb6fa9
language: python
matrix:
include:
- python: "3.6"
dist: xenial
env:
TEST_REPORT_TARGET: "yes"
- python: "3.7"
dist: xenial
install:
- pip install pipenv
- pipenv install --dev --skip-lock
... | env:
global:
- CC_TEST_REPORTER_ID=1561686e6399317b53a92aaad0550f8b91fe5af312e1f2852ab803ff6fcb6fa9
language: python
matrix:
include:
- python: "3.6"
dist: xenial
- python: "3.7"
dist: xenial
env:
TEST_REPORT_TARGET: "yes"
install:
- pip install pipenv
- pipenv install --dev --skip-lock
... | Change a target version of test coverage | :hammer: Change a target version of test coverage
| YAML | mit | tadashi-aikawa/gemini |
3391482066599d7635e8681688a609cadb471f9d | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.2"
- "2.7"
sudo: false
env:
- REQ="Django>=1.7,<1.8 FeinCMS>=1.11,<1.12"
- REQ="Django>=1.8,<1.9 FeinCMS>=1.11,<1.12"
- REQ="Django>=1.8,<1.9 FeinCMS==2.0a10"
install:
- pip install -q $REQ django-mptt==0.7.4 factory_boy==2.5.2 pytz==2015.4 flake8
- python setup... | language: python
python:
- "3.4"
- "3.2"
- "2.7"
sudo: false
env:
- REQ="Django>=1.7,<1.8 FeinCMS>=1.11,<1.12"
- REQ="Django>=1.8,<1.9 FeinCMS>=1.11,<1.12"
- REQ="Django>=1.8,<1.9 FeinCMS==2.0a10"
- REQ="Django>=1.10,<1.11 https://github.com/feincms/feincms/archive/next.zip"
install:
- pip install -... | Add a few Django versions to the CI matrix | Add a few Django versions to the CI matrix
| YAML | bsd-3-clause | matthiask/feincms-elephantblog,feincms/feincms-elephantblog,feincms/feincms-elephantblog,matthiask/feincms-elephantblog,matthiask/feincms-elephantblog |
649563a001f172881207248320f0182b4c772725 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
before_install:
- sudo apt-get install texlive-base
install:
- "pip install -r requirements.txt --use-mirrors"
script:
- make html && make html
- make singlehtml && make singlehtml
- make text
- make singletext
- make latexpdf
| language: python
python:
- 2.6
- 2.7
before_install:
- sudo apt-get remove chromium firefox mongodb-10gen
- sudo apt-get install texlive-base
install:
- "pip install -r requirements.txt --use-mirrors"
script:
- make html && make html
- make singlehtml && make singlehtml
- make text
- make singletext... | Uninstall a couple large packages | Uninstall a couple large packages
| YAML | bsd-2-clause | jterrace/sphinxtr,jterrace/sphinxtr |
0991adf8b520595585ef9591d1181d61f159c42c | .travis.yml | .travis.yml | language: go
# go1.11beta1 breaks the tests for lib/net/reverseconnection
go:
- "1.10"
before_install:
- go get github.com/mattn/goveralls
- REPO_NAME=$(basename $PWD)
- GITHUB_PATH=$(dirname $(dirname $PWD))
- SYMANTEC_PROJECT_DIR=${GITHUB_PATH}/Symantec/${REPO_NAME}
- mkdir -p ${SYMANTEC_PRO... | language: go
# go1.11beta1 breaks the tests for lib/net/reverseconnection
go:
- "1.10"
before_install:
- go get github.com/mattn/goveralls
- REPO_NAME=$(basename $PWD)
- GITHUB_PATH=$(dirname $(dirname $PWD))
- SYMANTEC_PROJECT_DIR=${GITHUB_PATH}/Symantec/${REPO_NAME}
- mkdir -p ${SYMANTEC_PRO... | Add build-darwin target for TravisCI. | Add build-darwin target for TravisCI.
| YAML | apache-2.0 | Symantec/Dominator,Symantec/Dominator,Symantec/Dominator,rgooch/Dominator,rgooch/Dominator,rgooch/Dominator |
33b10ff8e30c43aa965d1aa6b213f01d46486a3d | .travis.yml | .travis.yml | language: node_js
matrix:
include:
- node_js: '0.10'
- node_js: '0.12'
- node_js: iojs
- node_js: 4
- node_js: 5
- node_js: 6
- node_js: node
env: COVERALLS=1
| language: node_js
matrix:
include:
- node_js: '0.12'
- node_js: iojs
- node_js: 4
- node_js: 5
- node_js: 6
- node_js: node
env: COVERALLS=1
| Remove Node 0.10 from Travis | Remove Node 0.10 from Travis
| YAML | mit | timdp/rollup-plugin-strip-logger |
6e3ccebe3e7f62e6fda0a51dd76f161c938b3770 | .travis.yml | .travis.yml | language: generic
matrix:
include:
- script:
- make test
- pod lib lint
env: JOB=Xcode
os: osx
osx_image: xcode8.3
before_install:
- pod repo update
- script:
- swift test
- swiftlint
env: JOB=SPM
os: osx
osx_image: xcode8.3
... | language: generic
matrix:
include:
- script:
- make test
- pod lib lint
env: JOB=Xcode
os: osx
osx_image: xcode8.3
before_install:
- pod repo update
- script:
- swift test
- swiftlint
env: JOB=SPM
os: osx
osx_image: xcode8.3
... | Add Swift 4 on Linux job without Docker | Add Swift 4 on Linux job without Docker
| YAML | mit | jpsim/SourceKitten,jpsim/SourceKitten,jpsim/SourceKitten,jpsim/SourceKitten,jpsim/SourceKitten |
62822a0d01202cda397a9bf4be52392d252a1c53 | .travis.yml | .travis.yml | language: node_js
node_js:
- "10"
- "8"
- "6"
notifications:
email:
recipients:
- ci@verylastroom.com
on_success: change
on_failure: change
before_script:
- yarn install --pure-install
script:
- yarn run test
| language: node_js
node_js:
- "10"
- "8"
- "6"
before_script:
- yarn install --pure-install
script:
- yarn run test
| Remove unused email notification on Travis CI build | Remove unused email notification on Travis CI build
| YAML | mit | rezzza/gulp-uglifycss |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.