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
ffbdae18b3c435c48612ae6a3526873fea763894
.github/workflows/rubocop-analysis.yml
.github/workflows/rubocop-analysis.yml
# pulled from repo name: "Rubocop" on: push: branches-ignore: - "dependabot/**" pull_request: branches: [ master ] jobs: rubocop: runs-on: ubuntu-latest strategy: fail-fast: false steps: - name: Checkout repository uses: actions/checkout@v2 # If running on a self-hosted runner, check it meets the requirements # listed at https://github.com/ruby/setup-ruby#using-self-hosted-runners - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: 2.6 # This step is not necessary if you add the gem to your Gemfile - name: Install Code Scanning integration run: bundle add code-scanning-rubocop --version 0.3.0 --skip-install - name: Install dependencies run: bundle install - name: Rubocop run run: | bash -c " bundle exec rubocop --require code_scanning --format CodeScanning::SarifFormatter -o rubocop.sarif [[ $? -ne 2 ]] " - name: Upload Sarif output uses: github/codeql-action/upload-sarif@v1 with: sarif_file: rubocop.sarif
# pulled from repo name: "Rubocop" on: push: branches-ignore: - "dependabot/**" pull_request: branches: [ master ] jobs: rubocop: runs-on: ubuntu-latest strategy: fail-fast: false steps: - name: Checkout repository uses: actions/checkout@v2 # If running on a self-hosted runner, check it meets the requirements # listed at https://github.com/ruby/setup-ruby#using-self-hosted-runners - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: 2.6 # This step is not necessary if you add the gem to your Gemfile - name: Install Code Scanning integration run: bundle add code-scanning-rubocop --skip-install - name: Install dependencies run: bundle install - name: Rubocop run run: | bash -c " bundle exec rubocop --require code_scanning --format CodeScanning::SarifFormatter -o rubocop.sarif [[ $? -ne 2 ]] " - name: Upload Sarif output uses: github/codeql-action/upload-sarif@v1 with: sarif_file: rubocop.sarif
Use latest version of code-scanning-rubocop
Use latest version of code-scanning-rubocop
YAML
bsd-3-clause
boothale/faexport,boothale/faexport,boothale/faexport
650d41b3144fbb2f89ecf106c5d996d9a1a5662b
.github/workflows/publish_image.yml
.github/workflows/publish_image.yml
name: Publish Docker image to GitHub Container Registry on: push: branches: - master - deploy jobs: publish: name: Publish Docker image to GitHub Container Registry runs-on: ubuntu-latest steps: - name: Login to GitHub Container Registry uses: docker/login-action@v1 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Push to GitHub Packages uses: docker/build-push-action@v2 with: push: true tags: ghcr.io/${{ github.repository }}:${GITHUB_REF##*/}
name: Publish Docker image to GitHub Container Registry on: push: branches: - master - deploy jobs: publish: name: Publish Docker image to GitHub Container Registry runs-on: ubuntu-latest steps: - name: Login to GitHub Container Registry uses: docker/login-action@v1 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Push to GitHub Packages uses: docker/build-push-action@v2 with: push: true tags: ghcr.io/${{ github.repository }}:$GITHUB_REF_NAME
Use convenient to create tag from branch
Use convenient to create tag from branch
YAML
mit
datamade/la-metro-councilmatic,datamade/la-metro-councilmatic,datamade/la-metro-councilmatic,datamade/la-metro-councilmatic
a726d2b6268502a516316d6e3c18398f61380969
.github/workflows/pythonpackage.yml
.github/workflows/pythonpackage.yml
name: Python package on: push: branches: - master jobs: build: runs-on: ubuntu-latest strategy: max-parallel: 4 matrix: python-version: [3.6, 3.7] steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: python-version: ${{ matrix.python-version }} - name: Test with pytest run: | pip install pytest pytest
name: Python package on: push: branches: - master jobs: build: runs-on: ubuntu-latest strategy: max-parallel: 4 matrix: python-version: [3.6, 3.7] steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: python-version: ${{ matrix.python-version }} - name: Install requirements run: | python -m pip install --upgrade pip pip install -r requirements.txt - name: Test with pytest run: | pip install pytest pytest
Install logya requirements in github action
Install logya requirements in github action
YAML
mit
elaOnMars/logya,yaph/logya,elaOnMars/logya,yaph/logya,elaOnMars/logya
573c1eeabec1796d1057fb25b196abb614f87ddd
.travis.yml
.travis.yml
--- rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - rbx-2 - jruby - jruby-head - ruby-head matrix: include: - { rvm: 1.9.3, env: rack=1.4.0 } - { rvm: 1.8.7, env: tilt=master } - { rvm: 1.9.3, env: rack=master } - { rvm: 1.9.3, env: tilt=master } allow_failures: - env: tilt=master - rvm: rbx-2 - rvm: ruby-head - rvm: jruby-head
--- language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - rbx-2 - jruby - jruby-head - ruby-head sudo: false matrix: include: - { rvm: 1.9.3, env: rack=1.4.0 } - { rvm: 1.8.7, env: tilt=master } - { rvm: 1.9.3, env: rack=master } - { rvm: 1.9.3, env: tilt=master } allow_failures: - env: tilt=master - rvm: rbx-2 - rvm: ruby-head - rvm: jruby-head
Use the new Docker queue on Travis
Use the new Docker queue on Travis Because I said so!
YAML
mit
ABaldwinHunter/sinatra-classic,howtolearntocode/sinatra,laplaceliu/sinatra,guidohcosta/sinatra,sethuster/sinatra,Wirachmat/sinatra,lastcat/sinatra,cyberid41/sinatra,kumji/sinatra,QLGu/sinatra,ksw2599/sinatra,burningTyger/sinatra,davydovanton/sinatra,ryanshaw/sinatra,jenalgit/sinatra,ganmacs/sinatra,defsprite/sinatra,nicoayala/sinatra,frechei/sinatra,guidohcosta/sinatra,jkowens/sinatra,porras/sinatra,nju520/sinatra,kyontan/sinatra,Rayheng/sinatra,ktw1222/sinatra,dariubs/sinatra,RosenDimov/sinatra,siberianbear/sinatra,ksw2599/sinatra,kumji/sinatra,autopp/sinatra,nju520/sinatra,kyontan/sinatra,burningTyger/sinatra,burningTyger/sinatra,sinatra/sinatra,lastcat/sinatra,sinatra/sinatra,JonMidhir/sinatra,DoraALin/sinatra,Rayheng/sinatra,midorineko/sinatra,jkowens/sinatra,JonRowe/sinatra,davydovanton/sinatra,sethuster/sinatra,Wirachmat/sinatra,emiliocorpus/sinatra,jkowens/sinatra,autopp/sinatra,frechei/sinatra,mwpastore/sinatra,miyazawatomoka/sinatra,porras/sinatra,RosenDimov/sinatra,gferguson-gd/sinatra,gferguson-gd/sinatra,trexnix/sinatra,ktw1222/sinatra,eileencodes/sinatra,dariubs/sinatra,wzheng1/sinatra,mwpastore/sinatra,nicoayala/sinatra,laplaceliu/sinatra,eileencodes/sinatra,ryanshaw/sinatra,defsprite/sinatra,JonMidhir/sinatra,ABaldwinHunter/sinatra-classic,d-bot/sinatra,jenalgit/sinatra,mwpastore/sinatra,miyazawatomoka/sinatra,wzheng1/sinatra,QLGu/sinatra,cyberid41/sinatra,howtolearntocode/sinatra,trexnix/sinatra,ganmacs/sinatra,JonMidhir/sinatra,siberianbear/sinatra,midorineko/sinatra,JonRowe/sinatra,DoraALin/sinatra,emiliocorpus/sinatra,d-bot/sinatra
7d7e17e3336d924bf94047b9904539fef327163a
.travis.yml
.travis.yml
language: ruby rvm: 2.4.2 sudo: false script: "./ci/buildscript" env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true deploy: provider: heroku app: travis-foundation-website on: master api_key: secure: Rm1cRna+t7MpnxtntICizgDlY1o111R7GeAjNVbOQf4publ5coL9vC7KoKQx/cz5jeooE9Wx/4qe83/JIXdIVtAJZEcFDuEq+mTDPFn4z3teOp6Mwlr7jT83bWSajGHeuF9Bmw1BetFJ1TwKPJEbOc8ceDnHyqEIKfZkbnatc4M=
language: ruby rvm: 2.4.2 sudo: false script: "./ci/buildscript" env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true deploy: provider: heroku app: travis-foundation-website on: master api_key: $HEROKU_TOKEN
Move Heroku token to an env var in repo settings
Move Heroku token to an env var in repo settings
YAML
mit
travis-ci/travis-foundation,travis-ci/travis-foundation,travis-ci/travis-foundation,travis-ci/travis-foundation
bdf47e8da80f87b7689badf48a6b8672c048d7e4
.travis.yml
.travis.yml
language: go sudo: false dist: trusty env: global: - HUGO_BUILD_TAGS="extended" git: depth: false go: - "1.11.5" - tip os: - linux - osx - windows matrix: allow_failures: - go: tip fast_finish: true exclude: - os: windows go: tip install: - mkdir -p $HOME/src - mv $HOME/gopath/src/github.com/gohugoio/hugo $HOME/src - export TRAVIS_BUILD_DIR=$HOME/src/hugo - cd $HOME/src/hugo - go get github.com/magefile/mage script: - go mod download - mage -v test - mage -v check - mage -v hugo - ./hugo -s docs/ - ./hugo --renderToMemory -s docs/ - df -h before_install: - df -h # https://travis-ci.community/t/go-cant-find-gcc-with-go1-11-1-on-windows/293/5 - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then choco install mingw -y; export PATH=/c/tools/mingw64/bin:"$PATH"; fi - gem install asciidoctor - type asciidoctor
language: go sudo: false dist: trusty env: global: - HUGO_BUILD_TAGS="extended" git: depth: false go: - "1.11.5" - tip os: - linux - osx - windows matrix: allow_failures: - go: tip fast_finish: true exclude: - os: windows go: tip install: - mkdir -p $HOME/src - mv $TRAVIS_BUILD_DIR $HOME/src - export TRAVIS_BUILD_DIR=$HOME/src/hugo - cd $HOME/src/hugo - go get github.com/magefile/mage script: - go mod download - mage -v test - mage -v check - mage -v hugo - ./hugo -s docs/ - ./hugo --renderToMemory -s docs/ - df -h before_install: - df -h # https://travis-ci.community/t/go-cant-find-gcc-with-go1-11-1-on-windows/293/5 - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then choco install mingw -y; export PATH=/c/tools/mingw64/bin:"$PATH"; fi - gem install asciidoctor - type asciidoctor
Update Travis config to work for forked builds
Update Travis config to work for forked builds
YAML
apache-2.0
gohugoio/hugo,gohugoio/hugo,anthonyfok/hugo,anthonyfok/hugo,gohugoio/hugo,anthonyfok/hugo
ac4d7b70482ffa18fdecef0ac5299c821ae4f670
.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=resources-17090-ubuntu-1604 - INSTANCE=network-ubuntu-1604 - INSTANCE=volume-ubuntu-1604 # - INSTANCE=smoke-amazonlinux - INSTANCE=smoke-debian-7 - INSTANCE=smoke-debian-8 - INSTANCE=smoke-debian-9 - INSTANCE=smoke-centos-7 - INSTANCE=smoke-fedora-25 - INSTANCE=smoke-ubuntu-1404 - INSTANCE=smoke-ubuntu-1604 - INSTANCE=smoke-ubuntu-1704 # Ensure we make ChefDK's Ruby the default 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 verify ${INSTANCE} matrix: include: - script: - chef exec delivery local all env: UNIT_AND_LINT=1
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=resources-17090-ubuntu-1604 - INSTANCE=network-ubuntu-1604 - INSTANCE=volume-ubuntu-1604 - INSTANCE=smoke-debian-7 - INSTANCE=smoke-debian-8 - INSTANCE=smoke-debian-9 - INSTANCE=smoke-centos-7 - INSTANCE=smoke-fedora-26 - INSTANCE=smoke-ubuntu-1404 - INSTANCE=smoke-ubuntu-1604 - INSTANCE=smoke-ubuntu-1704 # Ensure we make ChefDK's Ruby the default 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 verify ${INSTANCE} matrix: include: - script: - chef exec delivery local all env: UNIT_AND_LINT=1
Update Travis for Fedora 26 testing
Update Travis for Fedora 26 testing Signed-off-by: Tim Smith <[email protected]>
YAML
apache-2.0
chef-cookbooks/docker,chef-cookbooks/docker,chef-cookbooks/docker
a7d6d9de2354c2780ce5d5a7c6cb236237040d7b
.travis.yml
.travis.yml
osx_image: xcode9.2 language: objective-c env: global: - LC_CTYPE=en_US.UTF-8 - LANG=en_US.UTF-8 before_install: - rvm list - rvm install $(cat .ruby-version) - brew update - brew outdated swiftlint || brew upgrade swiftlint # Test using Fastlane script: - ./fastlane/travis.sh
osx_image: xcode9.3 language: objective-c env: global: - LC_CTYPE=en_US.UTF-8 - LANG=en_US.UTF-8 before_install: - rvm list - rvm install $(cat .ruby-version) - brew update - brew outdated swiftlint || brew upgrade swiftlint # Test using Fastlane script: - ./fastlane/travis.sh
Update Travis to use Xcode 9.3
Update Travis to use Xcode 9.3 now that it is out of beta
YAML
mit
ustwo/formvalidator-swift,ustwo/formvalidator-swift,ustwo/formvalidator-swift
22dbeb698e8e34d6184b496ccad4956eca21889a
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 1.9.2 - rbx-19mode - ruby-head
language: ruby rvm: - 1.9.3 - 1.9.2 - rbx-19mode - ruby-head - jruby-19mode
Add JRuby 1.9 as a supported Version
Add JRuby 1.9 as a supported Version
YAML
mit
jlee-r7/rubyntlm,WinRb/rubyntlm,rapid7/rubyntlm
958d12a0c0abc99ba8ecd008e54c81127b9bcf91
.travis.yml
.travis.yml
language: python python: - "3.3" - "3.4" install: "pip3 install -r requirements.txt" script: "python3 build-assets.py all && git diff --exit-code"
language: python python: - "3.3" install: "pip3 install -r requirements.txt" script: "python3 -OO build-assets.py all && git diff --exit-code"
Add -OO param to hasten it somewhat
Add -OO param to hasten it somewhat
YAML
mit
hatbot-team/hatbot_resources
cd8cce9360fdceb0cb1b4228ef71c0b80a212a4b
.travis.yml
.travis.yml
dist: xenial language: python python: - "3.5" - "3.6" - "3.7" install: - pip install django script: - ./manage.py test --verbosity=2
dist: xenial language: python python: - "3.6" - "3.7" install: - pip install django script: - ./manage.py test --verbosity=2
Drop support for Python 3.5.
Drop support for Python 3.5.
YAML
bsd-3-clause
lamby/django-slack
43d6e6d5acd3308626aca05a5559e0128def9ef0
.travis.yml
.travis.yml
language: android android: components: - tools - tools #Running this twice get's the latest build tools (https://github.com/codepath/android_guides/wiki/Setting-up-Travis-CI) - platform-tools - android-28 - android-22 - build-tools-28.0.3 - extra - sys-img-armeabi-v7a-google_apis-22 licenses: - 'android-sdk-license-.+' jdk: oraclejdk8 notifications: email: false sudo: required #The build runs out of memory and is killed if we use the container system before_install: - yes | sdkmanager "platforms;android-28" before_script: - echo no | android create avd --force -n test -t android-22 --abi google_apis/armeabi-v7a -c 100M - emulator -avd test -no-audio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 & script: - ./gradlew clean build - ./gradlew test - ./gradlew connectedCheck
language: android android: components: - tools - tools #Running this twice get's the latest build tools (https://github.com/codepath/android_guides/wiki/Setting-up-Travis-CI) - platform-tools - android-28 - android-22 - build-tools-28.0.3 - extra - sys-img-armeabi-v7a-google_apis-22 licenses: - 'android-sdk-license-.+' jdk: oraclejdk8 notifications: email: false sudo: required #The build runs out of memory and is killed if we use the container system before_install: - yes | sdkmanager "platforms;android-28" before_script: - echo no | android create avd --force -n test -t android-22 --abi google_apis/armeabi-v7a -c 100M - emulator -avd test -noaudio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 & script: - ./gradlew clean build - ./gradlew test - ./gradlew connectedCheck
Test other "no audio" option
Test other "no audio" option
YAML
apache-2.0
pockethub/PocketHub,pockethub/PocketHub,PKRoma/github-android,PKRoma/github-android,forkhubs/android,Meisolsson/PocketHub,Meisolsson/PocketHub,forkhubs/android,PKRoma/PocketHub,PKRoma/github-android,Meisolsson/PocketHub,pockethub/PocketHub,Meisolsson/PocketHub,pockethub/PocketHub,PKRoma/PocketHub,forkhubs/android,PKRoma/PocketHub,PKRoma/PocketHub
595cb8528b340c0b99f5fa28893497c739602f1b
src/Resources/config/services.yml
src/Resources/config/services.yml
services: _defaults: autowire: true public: false autoconfigure: true bind: $startSession: "%hexanet_monolog_extra.session_start%" Hexanet\Common\MonologExtraBundle\: resource: '../../{Logger,EventListener,Processor,Provider}'
services: _defaults: autowire: true public: false autoconfigure: true bind: $startSession: "%hexanet_monolog_extra.session_start%" $session: '@?session' Hexanet\Common\MonologExtraBundle\: resource: '../../{Logger,EventListener,Processor,Provider}'
Handle case where http/session is not present
:bug: Handle case where http/session is not present
YAML
mit
Hexanet/LogBundle,Hexanet/MonologExtraBundle
96803237a15974cf61dbf2514754c8ab058dad5d
.travis.yml
.travis.yml
language: node_js node_js: - "6" branches: only: - master dist: trusty addons: apt: packages: - google-chrome-stable cache: directories: - node_modules before_script: # Chrome settings - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sleep 3 script: - npm run lint - npm run test.single - npm run build - npm run e2e - npm run deploy
language: node_js node_js: - "6" branches: only: - master dist: trusty addons: apt: packages: - google-chrome-stable cache: directories: - node_modules before_script: # Chrome settings - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sleep 3 script: - npm run lint - npm run test.single - npm run e2e after_success: - npm run build - npm run deploy
Move build and deploy to after success
Move build and deploy to after success
YAML
mit
Crevil/ng-graphql-github,Crevil/ng-graphql-github,Crevil/ng-graphql-github
71214a1cdbe21654f172a8421a612f53893bd0a6
.travis.yml
.travis.yml
language: go go: - 1.4 - 1.5 - 1.6 - 1.7 - 1.8 # doing 'tip' is not a great idea; it has previously caused things to suddenly become "broken" based on calendar date, and i don't appreciate it. install: true # don't `go get`, please. script: - time ./goad init - time ./goad test - time ./goad test ./... -race
language: go go: - 1.4 - 1.4.1 - 1.4.2 - 1.4.3 - 1.5 - 1.6 - 1.7 - 1.8 # doing 'tip' is not a great idea; it has previously caused things to suddenly become "broken" based on calendar date, and i don't appreciate it. install: true # don't `go get`, please. script: - time ./goad init - time ./goad test - time ./goad test ./... -race
Add more 1.4.* versions to tests. This behavior clearly drifted at some point? Where?
Add more 1.4.* versions to tests. This behavior clearly drifted at some point? Where? AMEND: No, really, there are only *docs commits* since the last time this *passed* -- https://travis-ci.org/polydawn/meep/builds/169297549 . What gives? Apparently all four 1.4.x versions exhibit the same behavior, so I'm going to *pretend this isn't happening* and hack the fixed numbers in and *walk away slowly*. Signed-off-by: Eric Myhre <[email protected]>
YAML
apache-2.0
polydawn/meep,polydawn/meep
38a73b32c1e54f6ab87d54a4db9037546a3da103
.travis.yml
.travis.yml
language: rust matrix: include: - rust: nightly script: - cargo test - cargo test --features preserve_order - cargo test --features arbitrary_precision - cargo test --features raw_value - cargo test --features unbounded_depth - rust: 1.15.0 script: # preserve_order is not supported on 1.15.0 - cargo build --manifest-path tests/crate/Cargo.toml - cargo build --manifest-path tests/crate/Cargo.toml --features arbitrary_precision - rust: 1.18.0 script: - cargo build --manifest-path tests/crate/Cargo.toml - cargo build --manifest-path tests/crate/Cargo.toml --features preserve_order - cargo build --manifest-path tests/crate/Cargo.toml --features arbitrary_precision - rust: stable - rust: beta - rust: 1.31.0 - rust: nightly name: Clippy script: - rustup component add clippy || travis_terminate 0 - cargo clippy script: - cargo build - cargo build --features preserve_order - cargo build --features arbitrary_precision
language: rust matrix: include: - rust: nightly script: - cargo test - cargo test --features preserve_order - cargo test --features arbitrary_precision - cargo test --features raw_value - cargo test --features unbounded_depth - rust: 1.27.0 script: - cargo build --manifest-path tests/crate/Cargo.toml - cargo build --manifest-path tests/crate/Cargo.toml --features preserve_order - cargo build --manifest-path tests/crate/Cargo.toml --features arbitrary_precision - rust: stable - rust: beta - rust: 1.31.0 - rust: nightly name: Clippy script: - rustup component add clippy || travis_terminate 0 - cargo clippy script: - cargo build - cargo build --features preserve_order - cargo build --features arbitrary_precision
Drop support for rustc <1.27
Drop support for rustc <1.27
YAML
apache-2.0
google/serde_json_lenient,bolinfest/serde-jsonrc,serde-rs/json
4ed5620b9312813f678a51009cb7ba08e896a7c1
.travis.yml
.travis.yml
rvm: - 1.9.1 - 1.9.2 - 1.9.2-head - 1.9.3-head - ruby-head
rvm: - 1.9.1 - 1.9.2 - ruby-head
Remove rubies not supported by Travis
Remove rubies not supported by Travis
YAML
mit
rubygems/gems,seuros/gems
1f1470dfe073d0a6b93919ca9c5fb5d02a3305d8
.travis.yml
.travis.yml
language: php php: - 7.0 - 5.6 install: composer install script: bin/phpunit tests/phpunit
language: php php: - 7.0 - 7.1 - 7.2 install: composer install script: bin/phpunit tests/phpunit
Update Travis to only test for PHP >= 7.1
Update Travis to only test for PHP >= 7.1
YAML
bsd-3-clause
pavlakis/notts-digital
8f8a52247af9f76ea1927c3af56db63cb3734616
.travis.yml
.travis.yml
language: python python: - "2.7" services: - mongodb - redis-server before_install: - sudo apt-get update -qq - sudo apt-get install -qq sloccount install: - npm install -g bower - pip install -U -r requirements/ci.txt - cp coviolations_web/settings/local_ci.py coviolations_web/settings/local.py script: - coverage run manage.py test violations projects tasks services app push 2>test_out after_script: - coverage report - coveralls - covio
language: python python: - "2.7" services: - mongodb - redis-server before_install: - sudo apt-get update -qq - sudo apt-get install -qq sloccount install: - npm install -g bower - pip install fabric - fab install:ci script: - coverage run manage.py test violations projects tasks services app push 2>test_out after_script: - coverage report - coveralls - covio
Use fabric in ci config
Use fabric in ci config
YAML
mit
nvbn/coviolations_web,nvbn/coviolations_web
1d83e20ee4d3ac880e1947462c9663b667664523
.travis.yml
.travis.yml
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 - pypy install: - pip install -r requirements.txt - pip install git+https://github.com/maxmind/HTTPretty.git - pip install pylint coveralls - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi - if [[ $TRAVIS_PYTHON_VERSION != '3.3' ]]; then pip install ipaddr; fi script: - coverage run --source=geoip2 setup.py test - if [[ $TRAVIS_PYTHON_VERSION != '3.3' ]]; then pylint geoip2; fi after_success: - coveralls notifications: email: recipients: - [email protected] on_success: change on_failure: always
language: python python: - 2.6 - 2.7 - 3.3 - pypy install: - pip install -r requirements.txt - pip install git+https://github.com/maxmind/HTTPretty.git - pip install pylint coveralls - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2 ipaddr; fi - if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install ipaddr; fi script: - coverage run --source=geoip2 setup.py test - if [[ $TRAVIS_PYTHON_VERSION != '3.3' ]]; then pylint geoip2; fi after_success: - coveralls notifications: email: recipients: - [email protected] on_success: change on_failure: always
Remove testing of 3.2 with Travis
Remove testing of 3.2 with Travis
YAML
apache-2.0
maxmind/GeoIP2-python,simudream/GeoIP2-python,maxmind/GeoIP2-python
0bf9140b9a073cfdb149ee81d5bf74206e80d0c7
.travis.yml
.travis.yml
language: python services: - docker cache: pip: true directories: - $HOME/google-cloud-sdk/ python: '2.7' dist: trusty sudo: required install: - pip install -r requirements.txt - pip install -r test-requirements.txt - pip install coveralls - $TRAVIS_BUILD_DIR/deploy/travis/install_gcloud.sh - yes | ${HOME}/google-cloud-sdk/bin/gcloud components install kubectl script: coverage run --source='.' -m unittest discover --pattern='*_test.py' after_success: coveralls deploy: - provider: script script: ./deploy/deploy.sh staging on: repo: m-lab/scraper branch: staging before_install: - if [[ -n "$encrypted_2d1b9fd64fca_iv" ]]; then deploy/travis/decrypt.sh "$encrypted_2d1b9fd64fca_iv" "$encrypted_2d1b9fd64fca_key" deploy/credentials.tar.gz.enc /tmp/credentials.tar.gz /tmp; fi
language: python services: - docker cache: pip: true directories: - $HOME/google-cloud-sdk/ python: '2.7' dist: trusty sudo: required install: - pip install -r requirements.txt - pip install -r test-requirements.txt - pip install coveralls - $TRAVIS_BUILD_DIR/deploy/travis/install_gcloud.sh - yes | ${HOME}/google-cloud-sdk/bin/gcloud components install kubectl script: coverage run --source='.' -m unittest discover --pattern='*_test.py' after_success: coveralls deploy: - provider: script script: ./deploy/deploy.sh staging on: repo: m-lab/scraper branch: staging before_install: - if [[ -n "$encrypted_2d1b9fd64fca_iv" ]]; then deploy/travis/decrypt.sh "$encrypted_2d1b9fd64fca_iv" "$encrypted_2d1b9fd64fca_key" deploy/keys/credentials.tar.gz.enc /tmp/credentials.tar.gz /tmp; fi
Correct path to .enc file
Correct path to .enc file
YAML
apache-2.0
m-lab/scraper,m-lab/scraper
f0538e0b59ce644e3ad29bc6efcba86ce8001f97
.travis.yml
.travis.yml
language: crystal script: - bin/fetch-configlet - bin/configlet . - make test
language: crystal script: - bin/fetch-configlet - bin/configlet lint . - make test
Call configlet subcommand on CI
Call configlet subcommand on CI This changes configlet to pass a subcommand. For now, we've released a version of configlet which handles both the old command: configlet path/to/track as well as the new command: configlet lint path/to/track This will let us update all the travis files to include the subcommand before we release the version of configlet that requires the subcommand.
YAML
mit
exercism/xcrystal
a485db9a344fd63aeda295592d0d8a27f04eda87
.travis.yml
.travis.yml
--- # Verify this with: http://lint.travis-ci.org/ language: ruby bundler_args: --without development system_tests before_install: rm Gemfile.lock || true script: bundle exec rake test rvm: - 1.8.7 - 1.9.3 env: matrix: - PUPPET_VERSION="~> 2.7.0" - PUPPET_VERSION="~> 3.1.0" - PUPPET_VERSION="~> 3.2.0" - PUPPET_VERSION="~> 3.3.0" - PUPPET_VERSION="~> 3.4.0" - PUPPET_VERSION="~> 3.6.0" - PUPPET_VERSION="~> 3.7.0" # Only notify for failed builds. notifications: email: on_success: never
--- # Verify this with: http://lint.travis-ci.org/ language: ruby bundler_args: --without development system_tests before_install: rm Gemfile.lock || true script: bundle exec rake test rvm: - 1.8.7 - 1.9.3 env: matrix: - PUPPET_VERSION="~> 2.7.0" - PUPPET_VERSION="~> 3.1.0" - PUPPET_VERSION="~> 3.3.0" - PUPPET_VERSION="~> 3.7.0" # Only notify for failed builds. notifications: email: on_success: never
Remove redundant puppet version tests
Remove redundant puppet version tests
YAML
mit
butlern/puppet-varnish,luckyraul/puppet-varnish-fork,chartbeat-labs/puppet-varnish,chartbeat-labs/puppet-varnish,luckyraul/puppet-varnish-fork,butlern/puppet-varnish,butlern/puppet-varnish,luckyraul/puppet-varnish-fork,chartbeat-labs/puppet-varnish
d2848e1707310291dbe3648ad94dc54cf10611a6
.travis.yml
.travis.yml
language: node_js node_js: - "iojs-v1" - "0.12" - "0.10" env: - NODE_ENV=development - NODE_ENV=production
language: node_js install: npm install --production=false node_js: - "iojs-v1" - "0.12" - "0.10" env: - NODE_ENV=development - NODE_ENV=production
Add `--production=false` to installation step
[Travis] Add `--production=false` to installation step When NODE_ENV=production, npm does not install devDependencies by default. However we need the devDependencies in order to build index.js, so manually specify `npm install --production=false`.
YAML
mit
grabbou/hapi-async-handler,ide/hapi-async-handler
eb055d335a3dd0bf9391d82ff227f21612afa695
.travis.yml
.travis.yml
language: php php: - 7.0 - 5.6 - 5.5 - 5.4 before_script: composer install
language: php php: - 7.1 - 7.0 - 5.6 - 5.5 - 5.4 before_script: composer install
Test in PHP 7.1 too
Test in PHP 7.1 too
YAML
mit
adrianclay/php-git
efa80531e86c3d056a857c22e84e5fca889c50a8
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12"
language: node_js node_js: - "0.10" - "0.12" - "4.2" - "5"
Update Travis to test newer Node versions
Update Travis to test newer Node versions
YAML
mit
helmetjs/hide-powered-by
adf025369474ecbe7f3470a39822db92053219f1
.travis.yml
.travis.yml
language: c os: - osx - linux install: - if [ "${TRAVIS_OS_NAME}" = "linux" ]; then bash travis-linux-deps.sh; fi - if [ "${TRAVIS_OS_NAME}" = "osx" ]; then bash travis-osx-deps.sh; fi before_script: - bash travis-build-libsodium.sh script: - xbuild libsodium-net.sln - nunit-console ./Tests/bin/Debug/Tests.dll
language: c os: - osx - linux env: - TRAVIS_OS_UNAME=$(uname -s) install: - if [[ $TRAVIS_OS_UNAME = 'Linux' ]]; then bash travis-linux-deps.sh; fi - if [[ $TRAVIS_OS_UNAME = 'Darwin' ]]; then bash travis-osx-deps.sh; fi before_script: - bash travis-build-libsodium.sh script: - xbuild libsodium-net.sln - nunit-console ./Tests/bin/Debug/Tests.dll
Work around Travis bug in how env var is set.
Work around Travis bug in how env var is set. TRAVIS_OS_NAME isn't set of the repo isn't setup for multi OS support, which breaks the build. So work around until the bug is fixed.
YAML
mit
tabrath/libsodium-core,BurningEnlightenment/libsodium-net,deckar01/libsodium-net,fraga/libsodium-net,adamcaudill/libsodium-net,adamcaudill/libsodium-net,fraga/libsodium-net,bitbeans/libsodium-net,bitbeans/libsodium-net,deckar01/libsodium-net,BurningEnlightenment/libsodium-net
84eb3184f6945b1ab08926ca37d7d609cb6065ac
.travis.yml
.travis.yml
language: ruby rvm: - 1.9 - 2.0 - 2.1 - 2.2 - 2.3.0
language: ruby sudo: false cache: bundler rvm: - 1.9 - 2.0 - 2.1 - 2.2 - 2.3.0 notifications: email: false
Disable email notifications from Travis CI
Disable email notifications from Travis CI
YAML
mit
rwz/natural_sort
add1843e10289aa7116b6d75470b60a9fa1c6d12
.travis.yml
.travis.yml
language: go go: - 1.8 install: - go get github.com/golang/lint/golint script: - golint -set_exit_status - go vet $(go list ./...) - go test $(go list ./...) sudo: false
language: go go: - 1.8.3 - 1.9rc2 install: - go get github.com/golang/lint/golint script: - golint -set_exit_status - go vet $(go list ./...) - go test $(go list ./...) sudo: false
Drop Go 1.8, add 1.8.3, 1.9rc2
Drop Go 1.8, add 1.8.3, 1.9rc2
YAML
mit
jsageryd/ttlcache
a3e75ed8cf8b522ecb6b5a7e9f4ffe2ea4af0967
.travis.yml
.travis.yml
language: cpp compiler: - gcc notifications: slack: fallto:MlnVOMNkx8YopsaSSxqh2Rcr before_install: - sudo apt-get install cmake - sudo apt-get install mercurial - git config --global user.email "[email protected]" - git config --global user.name "Build Server" script: "cmake -P oo-cmake-tests.cmake" branches: only: - master - devel
language: cpp compiler: - gcc env: - CMAKE_DIR="v3.0" CMAKE_VERSION="3.0.1" - CMAKE_DIR="v2.8" CMAKE_VERSION="2.8.12.2" notifications: slack: fallto:MlnVOMNkx8YopsaSSxqh2Rcr before_install: - sudo apt-get install cmake - sudo apt-get install mercurial - git config --global user.email "[email protected]" - git config --global user.name "Build Server" install: # install cmake -- - wget "http://www.cmake.org/files/${CMAKE_DIR}/cmake-${CMAKE_VERSION}.tar.gz" - tar xf "cmake-${CMAKE_VERSION}.tar.gz" - cmake -Hcmake-${CMAKE_VERSION} -B_builds -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="`pwd`/_install" - cmake --build _builds --target install - export PATH="`pwd`/_install/bin:${PATH}" # -- end # verify installed cmake -- - which cmake - cmake --version # -- end script: "cmake -P oo-cmake-tests.cmake" branches: only: - master - devel
Test with different cmake versions (2.8.12.2, 3.0.1)
Test with different cmake versions (2.8.12.2, 3.0.1)
YAML
mit
toeb/cmakepp,tempbottle/cmakepp,willyd/cmakepp,willyd/cmakepp,tempbottle/cmakepp
9ba46c445da4914816d2989a0594e3132ccd9af5
.travis.yml
.travis.yml
language: go sudo: false go: - "1.7.x" - "1.8.x" - "1.9.x" - "1.10.x" - "1.11.x" - "tip" before_install: - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover script: - goveralls -service=travis-ci
language: go sudo: false go: - "1.7.x" - "1.8.x" - "1.9.x" - "1.10.x" - "1.11.x" - "1.12.x" - "1.13.x" - "tip" before_install: - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover script: - goveralls -service=travis-ci
Test against latest version of Go
Test against latest version of Go
YAML
mit
go-logfmt/logfmt
1d6d44f96cea52b21a919b9df900f81675b8859a
.travis.yml
.travis.yml
language: node_js addons: chrome: stable node_js: - "6" - "8" env: - WEBPACK_VERSION=4 - WEBPACK_VERSION=3 script: yarn lint && yarn add --dev webpack@$WEBPACK_VERSION && yarn test
language: node_js addons: chrome: stable node_js: - "6" - "8" - "10" - "12" env: - WEBPACK_VERSION=4 - WEBPACK_VERSION=3 script: yarn lint && yarn add --dev webpack@$WEBPACK_VERSION && yarn test
Add Node 10 and 12 to Travis test matrix
Add Node 10 and 12 to Travis test matrix 10 is currently in LTS and 12 will start LTS in October. It seems like a good idea to run CI on these versions.
YAML
mit
enduire/happo.io,enduire/happo.io
4cc144a4e9efbb9791a1c5b36229e3bf2f4b411d
.travis.yml
.travis.yml
script: - "npm test" notifications: irc: - "chat.freenode.net#sequelizejs" language: node_js node_js: - "0.10"
script: - "npm test" notifications: irc: - "chat.freenode.net#sequelizejs" language: node_js node_js: - "0.10" before_script: - npm install sequelize@$(echo $SEQUELIZE) env: - SEQUELIZE=1.7.10 - SEQUELIZE=2.0.0-rc8 - SEQUELIZE=2.0.0
Build project with multiple versions of sequelize
Build project with multiple versions of sequelize
YAML
mit
sequelize/umzug,jukkah/umzug,crrobinson14/umzug,sequelize/umzug
a9cd122a238c6f082bd6bbd0d2b937a97cca06f8
.travis.yml
.travis.yml
language: cpp compiler: - gcc before_script: - mkdir build - cd build - cmake .. script: make
language: cpp compiler: - gcc before_script: - sudo apt-get update -qq - sudo apt-get install libboost-all-dev - mkdir build - cd build - cmake .. script: make
Add boost install for Travis
Add boost install for Travis
YAML
mit
caskorg/cask,caskorg/cask,caskorg/cask,caskorg/cask,caskorg/cask
41f0213930faa8ca7e83e307478e2c19518b4a58
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.5 addons: apt: packages: - xvfb gemfile: server/Gemfile env: NODE_VERSION=4 install: - git clone https://github.com/creationix/nvm.git /tmp/.nvm - source /tmp/.nvm/nvm.sh - nvm install $NODE_VERSION - nvm use $NODE_VERSION - npm install electron-packager -g script: - bash tools/cibuild.sh notifications: email: on_success: never on_failure: always
language: ruby rvm: - 2.1.5 addons: apt: packages: - wine gemfile: server/Gemfile env: NODE_VERSION=4 install: - git clone https://github.com/creationix/nvm.git /tmp/.nvm - source /tmp/.nvm/nvm.sh - nvm install $NODE_VERSION - nvm use $NODE_VERSION - npm install electron-packager -g script: - bash tools/cibuild.sh notifications: email: on_success: never on_failure: always
Fix xfvb typo to wine
Fix xfvb typo to wine
YAML
mit
IMcPwn/browser-backdoor,IMcPwn/browser-backdoor,IMcPwn/browser-backdoor,IMcPwn/browser-backdoor
c7af65888471c4de0570f153304b6eb8646a85b1
.travis.yml
.travis.yml
language: go go: - 1.2 - 1.3 - tip
language: go go: - 1.2 - 1.3 - 1.4 - tip
Add 1.4 to Travis CI.
Add 1.4 to Travis CI.
YAML
agpl-3.0
hockeypuck/openpgp
2eddcfdadb7f4b3bd33bd12341a94da0c7523b22
.travis.yml
.travis.yml
language: cpp sudo: false branches: only: - master - develop - release cache: directories: - $HOME/cmake env: global: - BUILD_DIR_NAME=build - BUILD_TYPE='Release' matrix: include: # 1 Linux GCC Builds - os: linux compiler: g++ env: COMPILER='g++-4.8' addons: apt: sources: ['ubuntu-toolchain-r-test'] packages: ['g++-4.8', 'libcurl4-openssl-dev'] - os: linux compiler: g++ env: COMPILER='g++-4.9' addons: apt: sources: ['ubuntu-toolchain-r-test'] packages: ['g++-4.9', 'libcurl4-openssl-dev'] - os: linux compiler: g++ env: COMPILER='g++-5' addons: apt: sources: ['ubuntu-toolchain-r-test'] packages: ['g++-5', 'libcurl4-openssl-dev'] before_install: - bash ./ci/install-deps.sh install: - export CXX=${COMPILER} before_script: - bash ./ci/configure.sh script: - bash ./ci/run.sh
language: cpp sudo: false branches: only: - master - develop - release cache: directories: - $HOME/cmake env: global: - BUILD_DIR_NAME=build - BUILD_TYPE='Release' matrix: include: - os: linux compiler: g++ env: COMPILER='g++-4.9' addons: apt: sources: ['ubuntu-toolchain-r-test'] packages: ['g++-4.9', 'libcurl4-openssl-dev'] - os: linux compiler: g++ env: COMPILER='g++-5' addons: apt: sources: ['ubuntu-toolchain-r-test'] packages: ['g++-5', 'libcurl4-openssl-dev'] before_install: - bash ./ci/install-deps.sh install: - export CXX=${COMPILER} before_script: - bash ./ci/configure.sh script: - bash ./ci/run.sh
Remove compiler gcc-4.8 from CI
[CLI-123] Remove compiler gcc-4.8 from CI
YAML
bsd-3-clause
VirgilSecurity/virgil-cli
de43c69a4c95275bcf945a555ac62fd6e0e89193
.travis.yml
.travis.yml
sudo: false language: php php: - 5.6 - 7.0 - nightly cache: directories: - ~/.composer/cache/files/ before_install: - phpenv config-add .travis.php.ini install: - composer install --prefer-dist before_script: # Ancient make binary at TravisCI doesn't support indentation with spaces - unexpand -t 4 Makefile > Makefile.tmp && mv Makefile.tmp Makefile - make generate-insecure-signing-key script: - make test branches: only: [master, develop]
sudo: false language: php php: - 5.6 - 7.0 - nightly addons: apt: packages: [expect] cache: directories: - ~/.composer/cache/files/ before_install: - phpenv config-add .travis.php.ini install: - composer install --prefer-dist before_script: # Ancient make binary at TravisCI doesn't support indentation with spaces - unexpand -t 4 Makefile > Makefile.tmp && mv Makefile.tmp Makefile - make generate-insecure-signing-key script: - make test branches: only: [master, develop]
Install expect on Travis to execute system tests
Install expect on Travis to execute system tests
YAML
mit
ibuildingsnl/qa-tools,ibuildingsnl/qa-tools,ibuildingsnl/qa-tools
54ba6ef0b4c44316faa78ff7620765b416630459
.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=default-debian-8 - INSTANCE=default-fedora-latest - INSTANCE=default-opensuse-leap - INSTANCE=default-ubuntu-1404 - INSTANCE=default-ubuntu-1604 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=default-debian-8 - INSTANCE=default-fedora-latest - INSTANCE=default-opensuse-leap - INSTANCE=default-ubuntu-1404 - INSTANCE=default-ubuntu-1604 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/resolver,chef-cookbooks/resolver
85ba78029a13ac78c9ee024526cc62a0b894553c
.travis.yml
.travis.yml
language: php php: - '5.4' - '5.6' - '7.0' before_install: - nvm install 4.1.1 - nvm use 4.1.1 install: - npm install script: - npm run compile --silent - npm test --silent sudo: false
language: php php: - '5.4' - '5.6' - '7.0' before_install: - nvm install 4.1.1 - nvm use 4.1.1 - npm install -g typings install: - npm install - typings install script: - npm run compile --silent - npm test --silent sudo: false
Add typings to Travis build
Add typings to Travis build
YAML
mit
felixfbecker/vscode-php-debug,felixfbecker/vscode-php-debug,felixfbecker/vscode-php-debug
6d31a855549d770658687c9e00ec350d146640ee
.travis.yml
.travis.yml
language: generic sudo: required dist: trusty matrix: include: - compiler: gcc addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-5 - g++-5 env: - COMPILER_NAME=gcc - CC=gcc-5 - CXX=g++-5 script: - cd build/nix - make && make tests notifications: email: [email protected]
language: generic matrix: include: - os: linux compiler: gcc sudo: required dist: trusty addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-5 - g++-5 env: - COMPILER_NAME=gcc - CC=gcc-5 - CXX=g++-5 script: - cd build/nix - make && make tests notifications: email: [email protected]
Move all linux stuff to linux matrix
Move all linux stuff to linux matrix
YAML
mit
trflynn89/libfly,trflynn89/libfly
9f35f05ada8726654071efa4aa185c7d463d1a72
.travis.yml
.travis.yml
language: ruby rvm: - "ruby-head" - "ruby 2.0.0" install: bundle install branches: only: - master
language: ruby rvm: - "ruby-head" - "ruby 2.0.0" install: bundle install branches: only: - master - new_main_loop
Add the other branch to CI as well.
Add the other branch to CI as well.
YAML
mit
queirozfcom/rachinations
08b0666a5a22d92dd9e40181a72834443b7c57d0
.travis.yml
.travis.yml
language: php cache: directories: - $HOME/.composer/cache/files git: depth: 1 php: - "7.2" - "7.3" before_install: - composer self-update --stable --no-interaction --no-progress - composer require php-coveralls/php-coveralls --prefer-dist --no-interaction --no-progress - composer global require ergebnis/composer-normalize bamarni/composer-bin-plugin --no-interaction --prefer-dist --no-progress --no-suggest install: - composer install --prefer-dist --no-interaction --no-progress - composer bin all install --prefer-dist --no-interaction --no-progress - mkdir -p build/logs script: - composer normalize --indent-size 4 --indent-style space --dry-run - ./vendor/bin/php-cs-fixer fix --diff --config vendor-bin/test/vendor/becklyn/php-cs/.php_cs.dist --dry-run --no-interaction - ./vendor/bin/phpstan analyse -l 4 --memory-limit 4G --ansi -c phpstan.neon . --no-interaction --no-progress - ./vendor/bin/simple-phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml --testdox after_script: - travis_retry php vendor/bin/php-coveralls
language: php cache: directories: - $HOME/.composer/cache/files git: depth: 1 php: - "7.3" - "7.4" before_install: - composer self-update --stable --no-interaction --no-progress - composer require php-coveralls/php-coveralls --prefer-dist --no-interaction --no-progress - composer global require ergebnis/composer-normalize bamarni/composer-bin-plugin --no-interaction --prefer-dist --no-progress --no-suggest install: - composer install --prefer-dist --no-interaction --no-progress - composer bin all install --prefer-dist --no-interaction --no-progress - mkdir -p build/logs script: - composer normalize --indent-size 4 --indent-style space --dry-run - ./vendor/bin/php-cs-fixer fix --diff --config vendor-bin/test/vendor/becklyn/php-cs/.php_cs.dist --dry-run --no-interaction - ./vendor/bin/phpstan analyse -l 4 --memory-limit 4G --ansi -c phpstan.neon . --no-interaction --no-progress - ./vendor/bin/simple-phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml --testdox after_script: - travis_retry php vendor/bin/php-coveralls
Stop testing on PHP 7.2 and add tests for PHP 7.4
Stop testing on PHP 7.2 and add tests for PHP 7.4
YAML
bsd-3-clause
Becklyn/BecklynRadBundle
a00e83b3232ed12b072880c6f5a750563720a276
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 # - 7.0 sudo: false install: - git clone https://github.com/krakjoe/pthreads.git; pushd pthreads; if [ "$TRAVIS_PHP_VERSION" != "7.0" ]; then git checkout master; else git checkout seven; fi; phpize; ./configure; make; make install; popd; echo "extension=pthreads.so" >> "$(php -r 'echo php_ini_loaded_file();')" - composer self-update - composer install --no-interaction --prefer-source script: - if [ "$TRAVIS_PHP_VERSION" != "7.0" ]; then vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml; else phpdbg -qrr vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml; fi after_script: - composer require satooshi/php-coveralls dev-master - vendor/bin/coveralls -v --exclude-no-stmt
language: php php: - 5.5 - 5.6 # - 7.0 sudo: false install: - git clone https://github.com/krakjoe/pthreads.git; pushd pthreads; if [ "$TRAVIS_PHP_VERSION" != "7.0" ]; then git checkout master; else git checkout seven; fi; phpize; ./configure; make; make install; popd; echo "extension=pthreads.so" >> "$(php -r 'echo php_ini_loaded_file();')" - composer self-update - composer install --no-interaction --prefer-source script: - if [ "$TRAVIS_PHP_VERSION" != "7.0" ]; then vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml; else phpdbg -qrr vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml; fi after_script: - composer require satooshi/php-coveralls dev-master - vendor/bin/coveralls -v --exclude-no-stmt notifications: slack: icicleio:zLkB18HsYCz8TbdK7RVqbi48
Add Slack <- Travis integration for fun
Add Slack <- Travis integration for fun
YAML
mit
clarkeash/concurrent,icicleio/concurrent,amphp/parallel
2692d0c4bee6d93a598345ea37971e791d41162d
.travis.yml
.travis.yml
language: node_js node_js: - 0.8 before_script: - npm install -g grunt-cli
language: node_js node_js: - "0.8" - "0.10" before_script: - npm install -g grunt-cli
Make Travis test with NodeJS 0.10.x
Make Travis test with NodeJS 0.10.x
YAML
mit
alanshaw/grunt-include-replace,legendtang/grunt-include-replace,stowball/grunt-include-replace-more,stowball/grunt-include-replace-more,legendtang/grunt-include-replace,alanshaw/grunt-include-replace
b40f12ac6dfa6c486ad2aae1540bdc3dec6938fd
.cirrus.yml
.cirrus.yml
task: matrix: - name: 😈 FreeBSD 11 freebsd_instance: image: freebsd-11-2-release-amd64 - name: 😈 FreeBSD 12 freebsd_instance: image: freebsd-12-0-release-amd64 env: # We use `PLUGINS_KDB` instead of `PLUGINS`, since `pkg` interprets the environment variable `PLUGINS`. PLUGINS_KDB: 'ALL;-iconv' # Building the test for the iconv plugin fails: https://cirrus-ci.com/task/4923537438539776 install_script: - pkg install -y cmake - pkg install -y git - pkg install -y ninja - pkg install -y yajl script: - mkdir build && cd build - cmake -GNinja -DPLUGINS="${PLUGINS_KDB:-ALL}" -DBINDINGS='ALL' -DTARGET_PLUGIN_FOLDER="" -DCMAKE_SKIP_INSTALL_RPATH=ON .. - ninja - output="$(ninja install 2>&1)" || printf '%s' "$output" tests_script: # Work around stalled process plugin and library problems on FreeBSD: https://issues.libelektra.org/2323 - sudo mount -t fdescfs fdesc /dev/fd - cd build && ninja run_all - kdb run_all
task: matrix: - name: 😈 FreeBSD 11 freebsd_instance: image: freebsd-11-2-release-amd64 - name: 😈 FreeBSD 12 freebsd_instance: image: freebsd-12-0-release-amd64 env: # We use `PLUGINS_KDB` instead of `PLUGINS`, since `pkg` interprets the environment variable `PLUGINS`. PLUGINS_KDB: 'ALL;-iconv;-filecheck' # Linking the iconv library fails: https://cirrus-ci.com/task/4923537438539776 install_script: - pkg install -y cmake - pkg install -y git - pkg install -y ninja - pkg install -y yajl script: - mkdir build && cd build - cmake -GNinja -DPLUGINS="${PLUGINS_KDB:-ALL}" -DBINDINGS='ALL' -DTARGET_PLUGIN_FOLDER="" -DCMAKE_SKIP_INSTALL_RPATH=ON .. - ninja - output="$(ninja install 2>&1)" || printf '%s' "$output" tests_script: # Work around stalled process plugin and library problems on FreeBSD: https://issues.libelektra.org/2323 - sudo mount -t fdescfs fdesc /dev/fd - cd build && ninja run_all - kdb run_all
Exclude `filecheck` plugin on FreeBSD 12
Cirrus: Exclude `filecheck` plugin on FreeBSD 12
YAML
bsd-3-clause
petermax2/libelektra,ElektraInitiative/libelektra,mpranj/libelektra,ElektraInitiative/libelektra,BernhardDenner/libelektra,mpranj/libelektra,mpranj/libelektra,petermax2/libelektra,mpranj/libelektra,petermax2/libelektra,ElektraInitiative/libelektra,mpranj/libelektra,BernhardDenner/libelektra,mpranj/libelektra,BernhardDenner/libelektra,BernhardDenner/libelektra,ElektraInitiative/libelektra,ElektraInitiative/libelektra,BernhardDenner/libelektra,BernhardDenner/libelektra,ElektraInitiative/libelektra,petermax2/libelektra,mpranj/libelektra,BernhardDenner/libelektra,ElektraInitiative/libelektra,mpranj/libelektra,ElektraInitiative/libelektra,petermax2/libelektra,ElektraInitiative/libelektra,mpranj/libelektra,mpranj/libelektra,petermax2/libelektra,mpranj/libelektra,BernhardDenner/libelektra,petermax2/libelektra,BernhardDenner/libelektra,petermax2/libelektra,ElektraInitiative/libelektra,ElektraInitiative/libelektra,petermax2/libelektra
fa88b620dc2bcdb9955bf38a0f9addd60cd273f6
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.4" - "pypy" env: - DJANGO=1.2.7 - DJANGO=1.3.1 - DJANGO=1.4.6 - DJANGO=1.5.2 - DJANGO=1.6.5 install: - sudo apt-get install libevent-dev - sudo pip install Django==$DJANGO --use-mirrors - sudo pip install pep8 --use-mirrors - sudo pip install https://github.com/dcramer/pyflakes/tarball/master - sudo pip install -e . --use-mirrors script: - "sudo pep8 --ignore=E501,E225 mock_django" - sudo pyflakes -x W mock_django - sudo python setup.py test
language: python python: - "2.6" - "2.7" - "3.4" - "pypy" env: - DJANGO=1.4.6 - DJANGO=1.5.2 - DJANGO=1.6.5 install: - sudo apt-get install libevent-dev - sudo pip install Django==$DJANGO --use-mirrors - sudo pip install pep8 --use-mirrors - sudo pip install https://github.com/dcramer/pyflakes/tarball/master - sudo pip install -e . --use-mirrors script: - "sudo pep8 --ignore=E501,E225 mock_django" - sudo pyflakes -x W mock_django - sudo python setup.py test
Remove testing on supported Django versions
Remove testing on supported Django versions
YAML
apache-2.0
dcramer/mock-django,bennylope/mock-django
91e44b1e610ebd5b0ee14b4cd1e295844978c8ba
.cirrus.yml
.cirrus.yml
task: name: stable x86_64-unknown-freebsd-11 freebsd_instance: image: freebsd-11-2-release-amd64 setup_script: - pkg install -y curl - curl https://sh.rustup.rs -sSf --output rustup.sh - sh rustup.sh -y - . $HOME/.cargo/env - rustup default stable test_script: - . $HOME/.cargo/env - sh ci/run.sh x86_64-unknown-freebsd task: name: nightly x86_64-unknown-freebsd-12 freebsd_instance: image: freebsd-12-0-release-amd64 setup_script: - pkg install -y curl - curl https://sh.rustup.rs -sSf --output rustup.sh - sh rustup.sh --default-toolchain nightly -y - . $HOME/.cargo/env - rustup default nightly test_script: - . $HOME/.cargo/env - sh ci/run.sh x86_64-unknown-freebsd
task: name: stable x86_64-unknown-freebsd-11 freebsd_instance: image: freebsd-11-3-release-amd64 setup_script: - pkg install -y curl - curl https://sh.rustup.rs -sSf --output rustup.sh - sh rustup.sh -y - . $HOME/.cargo/env - rustup default stable test_script: - . $HOME/.cargo/env - sh ci/run.sh x86_64-unknown-freebsd task: name: nightly x86_64-unknown-freebsd-12 freebsd_instance: image: freebsd-12-0-release-amd64 setup_script: - pkg install -y curl - curl https://sh.rustup.rs -sSf --output rustup.sh - sh rustup.sh --default-toolchain nightly -y - . $HOME/.cargo/env - rustup default nightly test_script: - . $HOME/.cargo/env - sh ci/run.sh x86_64-unknown-freebsd
Upgrade FreeBSD's CI image to release 11.3
Upgrade FreeBSD's CI image to release 11.3
YAML
apache-2.0
rust-lang/libc,rust-lang/libc,rust-lang/libc
e1f8fcdd0dab7607247f107495c60f98b900c69c
.cirrus.yml
.cirrus.yml
task: name: Test FreeBSD freebsd_instance: matrix: image_family: freebsd-11-3-snap image_family: freebsd-12-0 update_script: pkg update -f install_script: pkg install -y libpcap bash gsed gmake configure_script: - ./configure-freebsd.sh --default build_script: - gmake all test_script: - cd Tests/Packet++Test && Bin/Packet++Test - cd ../Pcap++Test && sudo Bin/Pcap++Test -n
task: name: Test FreeBSD freebsd_instance: matrix: image_family: freebsd-11-3-snap image_family: freebsd-12-1-snap update_script: pkg update -f install_script: pkg install -y libpcap bash gsed gmake configure_script: - ./configure-freebsd.sh --default build_script: - gmake all test_script: - cd Tests/Packet++Test && Bin/Packet++Test - cd ../Pcap++Test && sudo Bin/Pcap++Test -n
Update FreeBSD image to 12.1 in Cirrus CI
Update FreeBSD image to 12.1 in Cirrus CI
YAML
unlicense
seladb/PcapPlusPlus,seladb/PcapPlusPlus,seladb/PcapPlusPlus,seladb/PcapPlusPlus
f5e83d7b929515611f21fe3888956ba904e9b33e
.codacy.yml
.codacy.yml
--- engines: pylint: enabled: true python_version: 3 exclude_paths: - tests/ - karspexet/**/migrations/**/* - karspexet/**/test_*.py bandit: enabled: true exclude_paths: - tests/ - karspexet/**/migrations/**/* - karspexet/**/test_*.py eslint: enabled: true exclude_paths: - assets/fonts/icomoon/**/*
--- engines: prospector: enabled: false pylint: enabled: true python_version: 3 exclude_paths: - tests/ - karspexet/**/migrations/**/* - karspexet/**/test_*.py bandit: enabled: true exclude_paths: - tests/ - karspexet/**/migrations/**/* - karspexet/**/test_*.py eslint: enabled: true exclude_paths: - assets/fonts/icomoon/**/*
Disable Prospector, it doesn't like annotations
Disable Prospector, it doesn't like annotations
YAML
mit
Karspexet/Karspexet,Karspexet/Karspexet,Karspexet/Karspexet,Karspexet/Karspexet,Karspexet/Karspexet
8326af7ee68417e9327f8b7d273fe24ef8f490ca
vagga.yaml
vagga.yaml
commands: make: !Command description: Build rotor library container: ubuntu run: [cargo, build] test: !Command description: Run unit tests container: ubuntu run: [cargo, test] cargo: !Command description: Run any cargo command container: ubuntu run: [cargo] doc: !Command description: Build sphinx documentation container: docs run: [make, html] work-dir: doc epilog: | -------------------------------------------------- Documentation is now at doc/_build/html/index.html doc-api: !Command description: Build API documentation (rustdoc) container: ubuntu run: [cargo, doc] epilog: | --------------------------------------------------- Documentation is now at target/doc/rotor/index.html containers: ubuntu: setup: - !Ubuntu trusty - !UbuntuUniverse ~ - !Install [make, checkinstall, wget, ca-certificates, libssl-dev, build-essential] - !TarInstall url: "http://static.rust-lang.org/dist/rust-1.5.0-x86_64-unknown-linux-gnu.tar.gz" script: "./install.sh --prefix=/usr \ --components=rustc,rust-std-x86_64-unknown-linux-gnu,cargo" environ: HOME: /work/target docs: setup: - !Alpine v3.2 - !Install [alpine-base, py-sphinx, make] - !Py2Requirements doc/requirements.txt
commands: make: !Command description: Build rotor library container: ubuntu run: [cargo, build] test: !Command description: Run unit tests container: ubuntu run: [cargo, test] cargo: !Command description: Run any cargo command container: ubuntu run: [cargo] containers: ubuntu: setup: - !Ubuntu trusty - !UbuntuUniverse ~ - !Install [make, checkinstall, wget, ca-certificates, libssl-dev, build-essential] - !TarInstall url: "http://static.rust-lang.org/dist/rust-1.6.0-x86_64-unknown-linux-gnu.tar.gz" script: "./install.sh --prefix=/usr \ --components=rustc,rust-std-x86_64-unknown-linux-gnu,cargo" environ: HOME: /work/target
Upgrade rust to 1.6, remove unused doc container
Upgrade rust to 1.6, remove unused doc container
YAML
mit
tailhook/rotor-stream
140aab403a7b0a024bf2e5f90c6799ee91719f4f
.gitpod.yml
.gitpod.yml
image: file: .gitpod.Dockerfile vscode: extensions: - muhammad-sammy.csharp - ionide.ionide-fsharp - christian-kohler.path-intellisense - PKief.material-icon-theme - zhuangtongfa.material-theme - eamodio.gitlens - ms-azuretools.vscode-docker tasks: - init: ./build.sh
image: file: .gitpod.Dockerfile vscode: extensions: - muhammad-sammy.csharp - ionide.ionide-fsharp - christian-kohler.path-intellisense - PKief.material-icon-theme - zhuangtongfa.material-theme - eamodio.gitlens - ms-azuretools.vscode-docker tasks: - init: ./fake.sh
Add build script to init task
Add build script to init task
YAML
apache-2.0
fsprojects/FSharpx.Collections,fsprojects/FSharpx.Collections
660d1d05387de1278b87bcf2c3e0871b6a705285
crowdin.yaml
crowdin.yaml
"project_identifier" : "binary-bot" api_key_env: CROWDIN_API_KEY files: - source: /src/common/translations/en/*.json translation: /src/common/translations/%locale_with_underscore%/%original_file_name%
"project_identifier" : "binary-bot" api_key_env: CROWDIN_API_KEY files: - source: /src/common/translations/en/i10n.json translation: /src/common/translations/%locale_with_underscore%/%original_file_name%
Use the source file name instead of regex
Use the source file name instead of regex
YAML
mit
aminmarashi/binary-bot,binary-com/binary-bot,aminmarashi/binary-bot,binary-com/binary-bot
f3aa8ace1bff0b0c86b6508d04b50c910f5f56d3
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" env: global: - BEANSTALKD=./beanstalkd install: # Install most recent beanstalkd from source - wget https://github.com/kr/beanstalkd/archive/v1.10.tar.gz - tar xf v1.10.tar.gz - make -C beanstalkd-1.10/ - mv beanstalkd-1.10/beanstalkd . # Install Python dependencies. - pip install -r .travis-requirements.txt --use-mirrors script: nosetests -c .nose.cfg branches: only: - master - preflight
language: python python: - "2.6" - "2.7" env: global: - BEANSTALKD=./beanstalkd install: # Install most recent beanstalkd from source - wget https://github.com/kr/beanstalkd/archive/v1.10.tar.gz - tar xf v1.10.tar.gz - make -C beanstalkd-1.10/ - mv beanstalkd-1.10/beanstalkd . # Install Python dependencies. - pip install -r .travis-requirements.txt script: nosetests -c .nose.cfg branches: only: - master - preflight
Fix `pip` invocation for Travis CI builds
Fix `pip` invocation for Travis CI builds
YAML
apache-2.0
earl/beanstalkc
cd81cf197ffb4fe2fcd56fb12a0a91ea6efcae00
.travis.yml
.travis.yml
language: php sudo: false php: - 7.0 - 7.1 - 7.2 - 7.3 - nightly env: global: - DEFAULT=1 matrix: allow_failures: - php: nightly fast_finish: true include: - php: 7.1 env: - COVERALLS=1 before_script: - composer self-update - rm composer.lock - composer install --prefer-dist --no-interaction - sh -c "if [ '$COVERALLS' = '1' ]; then composer require --dev 'satooshi/php-coveralls:^2.0'; fi" - sh -c "if [ '$COVERALLS' = '1' ]; then mkdir -p build/logs; fi" script: - sh -c "if [ '$COVERALLS' = '1' ]; then vendor/bin/phpunit --stderr --coverage-clover build/logs/clover.xml; fi" - sh -c "if [ '$COVERALLS' = '1' ]; then php vendor/bin/php-coveralls -v; fi" - sh -c "if [ '$DEFAULT' = '1' ]; then vendor/bin/phpunit --stderr; fi" notifications: email: false
language: php sudo: false php: - 7.0 - 7.1 - 7.2 - 7.3 - nightly env: global: - DEFAULT=1 matrix: allow_failures: - php: 7.3 - php: nightly fast_finish: true include: - php: 7.1 env: - COVERALLS=1 before_script: - composer self-update - rm composer.lock - composer install --prefer-dist --no-interaction - sh -c "if [ '$COVERALLS' = '1' ]; then composer require --dev 'satooshi/php-coveralls:^2.0'; fi" - sh -c "if [ '$COVERALLS' = '1' ]; then mkdir -p build/logs; fi" script: - sh -c "if [ '$COVERALLS' = '1' ]; then vendor/bin/phpunit --stderr --coverage-clover build/logs/clover.xml; fi" - sh -c "if [ '$COVERALLS' = '1' ]; then php vendor/bin/php-coveralls -v; fi" - sh -c "if [ '$DEFAULT' = '1' ]; then vendor/bin/phpunit --stderr; fi" notifications: email: false
Allow failures in Travis with PHP 7.3
Allow failures in Travis with PHP 7.3 Because our dependency Gaufrette contains a PHP 7.3 incompatibility: There was 1 error: 1) Burzum\FileStorage\Test\TestCase\Model\Behavior\FileStorageBehaviorTest::testAfterDelete "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? /home/travis/build/burzum/cakephp-file-storage/vendor/knplabs/gaufrette/src/Gaufrette/Util/Path.php:30 /home/travis/build/burzum/cakephp-file-storage/vendor/knplabs/gaufrette/src/Gaufrette/Adapter/Local.php:37 /home/travis/build/burzum/cakephp-file-storage/src/Storage/StorageManager.php:171 /home/travis/build/burzum/cakephp-file-storage/src/Storage/StorageManager.php:148 /home/travis/build/burzum/cakephp-file-storage/src/Storage/StorageManager.php:126 /home/travis/build/burzum/cakephp-file-storage/src/Storage/StorageTrait.php:44 /home/travis/build/burzum/cakephp-file-storage/src/Model/Behavior/FileStorageBehavior.php:161 /home/travis/build/burzum/cakephp-file-storage/tests/TestCase/Model/Behavior/FileStorageBehaviorTest.php:107
YAML
mit
burzum/cakephp-file-storage
98859433a9daeec1f56ecf521f5727b35eb36c0c
.travis.yml
.travis.yml
language: node_js node_js: v8 deploy: provider: pages local_dir: dist skip_cleanup: true github_token: $GITHUB_TOKEN on: branch: master
language: ruby ruby: 2.4 script: jekyll build deploy: provider: pages local_dir: _site skip_cleanup: true github_token: $GITHUB_TOKEN on: branch: master
Build with ruby on TravisCI too
Build with ruby on TravisCI too
YAML
mit
dtc-innovation/research,dtc-innovation/research
b97fa8159b7f397bb7b1faf9710a764c03de558f
.travis.yml
.travis.yml
language: node_js node_js: - "5" install: - sudo apt-get update - cd hashstore/bakery/js - npm install - cd ../../.. - npm install - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda - conda info -a - conda create -q -n py2 python=2 - conda create -q -n py3 python=3 - for e in py2 py3 ; do source activate $e; pip install -r requirements.txt; pip install -r test-requirements.txt; done script: - cd hashstore/bakery/js - npm run build - cd ../../.. - npm run build - for e in py2 py3 ; do source activate $e; coverage run -p -m nose; echo $? > $e.status; done - source activate py2 - coverage combine - coverage report -m - codecov - rm .coverage - test $(cat py2.status) == 0 && test $(cat py3.status) == 0
language: node_js node_js: - "8" install: - sudo apt-get update - cd hashstore/bakery/js - npm install - cd ../../.. - npm install - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda - conda info -a - conda create -q -n py2 python=2 - conda create -q -n py3 python=3 - for e in py2 py3 ; do source activate $e; pip install -r requirements.txt; pip install -r test-requirements.txt; done script: - cd hashstore/bakery/js - npm run build - cd ../../.. - npm run build - for e in py2 py3 ; do source activate $e; coverage run -p -m nose; echo $? > $e.status; done - source activate py2 - coverage combine - coverage report -m - codecov - rm .coverage - test $(cat py2.status) == 0 && test $(cat py3.status) == 0
Fix for refactoring that gone bad.
Fix for refactoring that gone bad.
YAML
apache-2.0
walnutgeek/hashstore,walnutgeek/hashstore,walnutgeek/hashstore,walnutgeek/hashstore
3a1638530b9afb559e045217bcebe2400c5236f6
.travis.yml
.travis.yml
sudo: false language: php php: - 7.2 - 7.1 - 7.0 - 5.6 - 5.5 env: - SYMFONY_VERSION=3.4.* - SYMFONY_VERSION=3.3.* - SYMFONY_VERSION=3.2.* - SYMFONY_VERSION=3.1.* - SYMFONY_VERSION=2.8.* before_script: - if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then echo 'memory_limit = -1' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi - mysql -e "create database symfony;" - mysql -e "set global wait_timeout=600" - composer self-update - rm composer.lock # Prevent dependency problems - travis_retry composer require "symfony/symfony:${SYMFONY_VERSION}" script: - vendor/bin/phpunit --coverage-clover coverage.xml after_success: - php vendor/bin/coveralls matrix: fast_finish: true
sudo: false language: php php: - 7.2 - 7.1 - 7.0 - 5.6 - 5.5 env: - SYMFONY_VERSION=3.4.* - SYMFONY_VERSION=3.3.* - SYMFONY_VERSION=3.2.* - SYMFONY_VERSION=3.1.* - SYMFONY_VERSION=2.8.* before_script: - echo 'memory_limit = -1' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini - mysql -e "create database symfony;" - mysql -e "set global wait_timeout=600" - composer self-update - rm composer.lock # Prevent dependency problems - travis_retry composer require "symfony/symfony:${SYMFONY_VERSION}" script: - vendor/bin/phpunit --coverage-clover coverage.xml after_success: - php vendor/bin/coveralls matrix: fast_finish: true include: - php: 7.2 env: SYMFONY_VERSION=4.0.* - php: 7.1 env: SYMFONY_VERSION=4.0.*
Test Symfony 4.0 and remove HHVM check
Test Symfony 4.0 and remove HHVM check
YAML
mit
aimeos/aimeos-symfony2,aimeos/aimeos-symfony,aimeos/aimeos-symfony2,aimeos/aimeos-symfony2
ff2ddf3a7d50b9e271f5670f3b21f1410ff45616
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" - "0.8" before_install: - "sudo apt-get update" - "sudo apt-get install -qq libotr2-dev" - "pushd test; make build LIBOTR_DIR=/usr; popd" script: - "make all"
language: node_js node_js: - "0.11" - "0.10" before_install: - "sudo apt-get update" - "sudo apt-get install -qq libotr2-dev" - "pushd test; make build LIBOTR_DIR=/usr; popd" script: - "make all"
Stop testing on node v0.8
Stop testing on node v0.8
YAML
mpl-2.0
mvayngrib/otr,sualko/otr,mvayngrib/otr,arlolra/otr,astorije/otr,astorije/otr,astorije/otr,nonconforme/otr,nonconforme/otr,arlolra/otr,sualko/otr,sualko/otr,arlolra/otr,mvayngrib/otr,arlolra/otr,nonconforme/otr,sualko/otr,mvayngrib/otr,astorije/otr,nonconforme/otr
b452ffd2a9e5eed664247d9807a38539e665b4fe
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - ruby-head - rbx-19mode matrix: allow_failures: - rvm: ruby-head - rvm: rbx-19mode before_install: gem install bundler --pre script: - "bundle exec rake ci:all"
language: ruby rvm: - 1.9.3 - ruby-head - rbx-19mode - jruby-19mode - jruby-head matrix: allow_failures: - rvm: ruby-head - rvm: rbx-19mode - rvm: jruby-19mode - rvm: jruby-head before_install: gem install bundler --pre script: - "bundle exec rake ci:all"
Add JRuby to Travis configuration
Add JRuby to Travis configuration
YAML
mit
AlexParamonov/processor,AlexParamonov/processor
0a30de09f443c9c313223b338a8892b6ef9ddf1d
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" notifications: email: on_success: never on_failure: change
language: node_js node_js: - "0.10" notifications: email: on_success: never on_failure: change
Stop testing in 0.11 for now. Things be broke.
Stop testing in 0.11 for now. Things be broke.
YAML
apache-2.0
farmdawgnation/vain
3475a3712c86e25a6e74819f06462b862671a640
.travis.yml
.travis.yml
language: ruby rvm: - '2.3.0' - '2.2' - '2.1' - '2.0' - '1.9.3' - 'rbx-2' - 'jruby' before_install: - gem install bundler
language: ruby rvm: - '2.3.1' - '2.2.5' - '2.1.10' - 'rbx-2' - 'jruby' before_install: - gem update --system - gem install bundler
Update Ruby versions and update rubygems for install
[CI] Update Ruby versions and update rubygems for install
YAML
mit
jgraichen/rails-timeago,jgraichen/rails-timeago
12f901356e9981a0d1fd0c1239b18bcbe9f00932
.travis.yml
.travis.yml
notifications: recipients: - [email protected] language: erlang otp_release: - 17.0 - R16B02 script: "make ci" cache: directories: - logs
notifications: recipients: - [email protected] language: erlang otp_release: - 17.0 script: "make ci" cache: directories: - logs
Remove the no-longer-supported OTP version from Travis
Remove the no-longer-supported OTP version from Travis
YAML
mit
ibnfirnas/oauth1_core
3975bf195b1c440f66092be3994399b9913cd41a
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" env: - PYTHONPATH='.' branches: only: - master - next before_install: - sudo apt-get update - sudo apt-get install nodejs - curl http://npmjs.org/install.sh | sh - npm update zombie - npm install zombie install: - pip install . --use-mirrors - pip install nose - pip install fudge script: - nosetests --where=zombie
language: python python: - "2.6" - "2.7" - "3.2" env: - PYTHONPATH='.' branches: only: - master - next before_install: - sudo apt-get update - sudo apt-get install nodejs - curl http://npmjs.org/install.sh | sh - npm install zombie install: - pip install . --use-mirrors - pip install nose - pip install fudge script: - nosetests --where=zombie
Revert "Grab the latest Zombie for Travis-CI tests."
Revert "Grab the latest Zombie for Travis-CI tests." This reverts commit 32da5ff8b8e39e43b00dba1ce326538aa626b124.
YAML
mit
ryanpetrello/python-zombie,ryanpetrello/python-zombie
18490fb24d814b4b62ca2f767fd08dbef6982507
.travis.yml
.travis.yml
language: go go: - 1.2 install: - script/bootstrap script: - export PATH="$HOME/gopath/bin:$PATH" - script/build - script/test
language: go go: - 1.2 install: - script/bootstrap - bundle install script: - export PATH="$HOME/gopath/bin:$PATH" - script/build - script/test - bundle exec rake features
Add features spec to build
Add features spec to build
YAML
mit
beni55/gh,jingweno/gh,jingweno/gh,jingweno/gh,beni55/gh,beni55/gh
8230b076d1ccdd8d5180dcb87dc8bd188a9e27b3
.travis.yml
.travis.yml
language: go sudo: false go: - tip before_install: - go get github.com/mattn/goveralls script: - $HOME/gopath/bin/goveralls -service=travis-ci
language: go sudo: false go: - 1.9 before_install: - go get github.com/mattn/goveralls script: - $HOME/gopath/bin/goveralls -service=travis-ci
Use go 1.9 in Travis CI.
Use go 1.9 in Travis CI.
YAML
apache-2.0
casbin/casbin,hsluoyz/casbin,faceless-saint/casbin
04650a6e5eadcbec6a1e02f3d655318bbbbf47f7
.travis.yml
.travis.yml
language: python python: - "3.5" # command to install dependencies install: - sudo apt-get update - sudo apt-get install libsdl1.2-dev - pip install -r requirements.txt - pip install python-coveralls - pip install nose - pip install coverage # command to run tests script: - nosetests -v --with-coverage --cover-package=CreatureRogue after_success: - coveralls
language: python python: - "3.5" # command to install dependencies install: - sudo apt-get update - sudo apt-get install libsdl1.2-dev - pip install -r requirements.txt - pip install coveralls - pip install nose - pip install coverage # command to run tests script: - nosetests -v --with-coverage --cover-package=CreatureRogue after_success: - coveralls
Move back to coveralls package from python-coveralls. Not providing any benefit
Move back to coveralls package from python-coveralls. Not providing any benefit
YAML
mit
DaveTCode/CreatureRogue
73e5f096d8198aac55fc53fedb517be548cc5bfb
.travis.yml
.travis.yml
language: php php: - 5.3.3 - 5.4 - 5.5 - 5.6 - hhvm matrix: allow_failures: - php: hhvm before_script: - composer self-update - composer install --no-interaction --prefer-source --dev - composer require jakub-onderka/php-console-highlighter 0.3 script: - ./vendor/bin/tester tests - ./parallel-lint --exclude vendor --exclude tests/examples --no-colors . - ./parallel-lint --exclude vendor --exclude tests/examples .
language: php php: - 5.3.3 - 5.4 - 5.5 - 5.6 - hhvm - hhvm-nightly matrix: allow_failures: - php: hhvm - php: hhvm-nightly before_script: - composer self-update - composer install --no-interaction --prefer-source --dev - composer require jakub-onderka/php-console-highlighter 0.3 script: - ./vendor/bin/tester -p php tests - ./parallel-lint --exclude vendor --exclude tests/examples --no-colors . - ./parallel-lint --exclude vendor --exclude tests/examples .
Change Nette Tester Travis executable to PHP
Change Nette Tester Travis executable to PHP
YAML
bsd-2-clause
JeroenDeDauw/PHP-Parallel-Lint
80badde373ec8249c859a1f2bc79dfa5032d8347
.travis.yml
.travis.yml
go_import_path: v.io language: go go: 1.6 install: go get -t -v ./... script: VDLPATH=$PWD/.. go test -v ./...
go_import_path: v.io language: go go: 1.6 install: go get -t ./... script: VDLPATH=$PWD/.. go test ./...
Drop the -v for go get/test
Drop the -v for go get/test This makes the output cleaner.
YAML
bsd-3-clause
vanadium/core,vanadium/core,vanadium/core,vanadium/core
fdd2ee0545995db98a8ae14c3403018021b8e357
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.2" - "3.3" - "pypy" install: "pip install -r requirements.txt" before_script: python setup.py develop script: mamba spec/*.py
language: python python: - "2.7" - "3.3" - "pypy" install: "pip install -r requirements.txt" before_script: python setup.py develop script: mamba spec/*.py
Revert "Check support for python 3.2"
Revert "Check support for python 3.2" This reverts commit afbc84548a744c3454180d515c692b2fe752ee17. It gives an error when installing sure. Some stuff about strings.
YAML
mit
dex4er/mamba,jaimegildesagredo/mamba,nestorsalceda/mamba,alejandrodob/mamba,markng/mamba,angelsanz/mamba,eferro/mamba
b1cf70b71edf11f6d8d8fd797effb513011486f3
.travis.yml
.travis.yml
language: python python: - "2.7" before_install: "apt-get install libldap2-dev libsasl2-dev" install: "make install" before_script: "pip install -U pytest mock httplib2 wsgi_intercept" script: "make pep8 test"
language: python python: - "2.7" before_install: "sudo apt-get install libldap2-dev libsasl2-dev" install: "make install" before_script: "pip install -U pytest mock httplib2 wsgi_intercept" script: "make pep8 test"
Add sudo to apt command
Add sudo to apt command
YAML
bsd-3-clause
tiddlyweb/tiddlywebplugins.ldapauth
4e5a9241462c6adff63e6d7e24c45f7ecdbefd62
.travis.yml
.travis.yml
env: - GHCVER=7.2.2 - GHCVER=7.4.2 - GHCVER=7.6.3 - GHCVER=7.8.3 - GHCVER=head matrix: allow_failures: - env: GHCVER=head script: - wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --quiet | sh
env: - GHCVER=7.2.2 - GHCVER=7.4.2 - GHCVER=7.6.3 - GHCVER=7.8.3 - GHCVER=head script: - wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --quiet | sh
Remove GHC-head from the allowed list of failures
Remove GHC-head from the allowed list of failures
YAML
bsd-3-clause
ndmitchell/shake,ndmitchell/shake,ndmitchell/shake,ndmitchell/shake,ndmitchell/shake,ndmitchell/shake
fd2703a316873dbf12f1c7595688ab8cf8296416
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - 'iojs' - '0.12' - '0.10'
sudo: false language: node_js node_js: - '5' - '4' - '0.12' - '0.10'
Test on `4` and `5`
Test on `4` and `5`
YAML
mit
gillstrom/centimeter
9ca78c0168951af02a064963c8ada8196b1c0529
.travis.yml
.travis.yml
sudo: false dist: xenial language: python python: - 2.7 - 3.4 - 3.5 - 3.6 - 3.7 install: - pip install tox-travis coveralls before_script: - psql -c 'create database timezone_field_tests;' -U postgres script: - tox after_success: - coveralls
sudo: false dist: xenial services: - postgresql language: python python: - 2.7 - 3.4 - 3.5 - 3.6 - 3.7 install: - pip install tox-travis coveralls before_script: - psql -c 'create database timezone_field_tests;' -U postgres script: - tox after_success: - coveralls
Add PostgreSQL as a Travis CI service
Add PostgreSQL as a Travis CI service This used to be installed by default in the old Trusty images but they now require you to explicitly request it in your build.
YAML
bsd-2-clause
mfogel/django-timezone-field
1d370c742c61d2f8e72b4cbea0a890d09217f226
.travis.yml
.travis.yml
language: objective-c env: - LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 before_install: gem install xcpretty cocoapods -N podfile: Playgrounds/AudioKitPlayground/Podfile cache: cocoapods script: "./Tests/travis.sh" notifications: slack: secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3OmnDF/Yx7FN0sGiTskLYvi7jCzLY1QNqdg52VTsNI=
language: objective-c osx_image: beta-xcode6.3 env: - LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 before_install: gem install xcpretty cocoapods -N podfile: Playgrounds/AudioKitPlayground/Podfile cache: cocoapods script: "./Tests/travis.sh" notifications: slack: secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3OmnDF/Yx7FN0sGiTskLYvi7jCzLY1QNqdg52VTsNI=
Revert "Travis Xcode 6.3 support is no longer in beta. - My ass!"
Revert "Travis Xcode 6.3 support is no longer in beta. - My ass!" This reverts commit 7e6178031d3f4a2aa4c6eff38395ebf040dc334a.
YAML
mit
sgrady2/AudioKit,UIKit0/AudioKit,UIKit0/AudioKit,midroid/AudioKit,dotty2883/AudioKit,UIKit0/AudioKit,sgrady2/AudioKit,audiokit/AudioKitArchive,midroid/AudioKit,audiokit/AudioKitArchive,jackywpy/AudioKit,msdgwzhy6/AudioKit,benzguo/AudioKit,audiokit/AudioKitArchive,msdgwzhy6/AudioKit,midroid/AudioKit,jackywpy/AudioKit,msdgwzhy6/AudioKit,UIKit0/AudioKit,sgrady2/AudioKit,sgrady2/AudioKit,midroid/AudioKit,midroid/AudioKit,audiokit/AudioKitArchive,sgrady2/AudioKit,msdgwzhy6/AudioKit,jackywpy/AudioKit,dotty2883/AudioKit,audiokit/AudioKitArchive,benzguo/AudioKit,jackywpy/AudioKit,dotty2883/AudioKit,benzguo/AudioKit,jackywpy/AudioKit,msdgwzhy6/AudioKit,dotty2883/AudioKit,dotty2883/AudioKit,benzguo/AudioKit,UIKit0/AudioKit,benzguo/AudioKit
e506c65911bc4e247a386eb9fb0f369cbb41a59c
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - "4" - "6" - "7" after_success: - npm run coverage - npm i codecov - codecov -f coverage/coverage.json notifications: email: on_success: never
language: node_js sudo: false node_js: - "4" - "6" - "7" - "8" after_success: - npm run coverage - npm i codecov - codecov -f coverage/coverage.json notifications: email: on_success: never
Add Node.js 8 for testing
Add Node.js 8 for testing
YAML
mit
jstransformers/jstransformer-html2jade,jstransformers/jstransformer-opalcss,jstransformers/jstransformer-js-beautify,jstransformers/jstransformer-rework,jstransformers/jstransformer-walrus,jstransformers/jstransformer-html-beautify,jstransformers/consolidate-jstransformer,jstransformers/jstransformer-typescript,jstransformers/jstransformer-handlebars,jstransformers/jstransformer-html-beautify,jstransformers/jstransformer-engine,jstransformers/jstransformer-riotjs,jstransformers/jstransformer-browserify,jstransformers/jstransformer-reshape,jstransformers/jstransformer-loader,jstransformers/jstransformer-supermarked,jstransformers/jstransformer-lodash,jstransformers/jstransformer-html-minifier,jstransformers/jstransformer-jade,jstransformers/jstransformer-eco,jstransformers/jstransformer-qejs,jstransformers/jstransformer-dot,jstransformers/jstransformer-escape-html,jstransformers/jstransformer-cdata,jstransformers/jstransformer-reshape,jstransformers/jstransformer-imba,jstransformers/jstransformer-slm,jstransformers/jstransformer-ect,jstransformers/jstransformer-jsx,jstransformers/jstransformer-highlight,jstransformers/jstransformer-cson,jstransformers/jstransformer-css-beautify,jstransformers/jstransformer-marked,jstransformers/jstransformer-bliss,jstransformers/jstransformer-underscore,jstransformers/jstransformer-lodash,jstransformers/jstransformer-css,jstransformers/jstransformer-megamark,jstransformers/jstransformer-jscss,jstransformers/jstransformer-commonmark,jstransformers/jstransformer-escape-html,jstransformers/jstransformer-ractive,jstransformers/jstransformer-fest,jstransformers/jstransformer-transparency,jstransformers/jstransformer-uglify-js,jstransformers/jstransformer,jstransformers/jstransformer-mdast,jstransformers/jstransformer-consolidate,jstransformers/jstransformer-plates,jstransformers/inputformat-to-jstransformer,jstransformers/jstransformer-earlgrey,jstransformers/jstransformer-plates,jstransformers/jstransformer-cdata-css,jstransformers/jstransformer-xml2js,jstransformers/jstransformer-gray-matter,jstransformers/jstransformer-sweetjs,jstransformers/jstransformer-purifycss,jstransformers/jstransformer-htmling,jstransformers/jstransformer-remarkable,jstransformers/jstransformer-analyze-css,jstransformers/jstransformer-nunjucks,jstransformers/jstransformer-eco,jstransformers/jstransformer-absurd,jstransformers/jstransformer-marked,jstransformers/jstransformer-consolidate,jstransformers/jstransformer-to-markdown,jstransformers/jstransformer-remark,jstransformers/jstransformer-markdown,jstransformers/jstransformer-liquor,jstransformers/jstransformer-mini-handlebars,jstransformers/jstransformer-hamlet,jstransformers/jstransformer-svgo,jstransformers/jstransformer-verbatim,jstransformers/jstransformer-absurd,jstransformers/jstransformer-vash,jstransformers/jstransformer-coffeecup,jstransformers/jstransformer-clean-css,jstransformers/jstransformer-duo,jstransformers/jstransformer-rollup,jstransformers/jstransformer-jstransformer,jstransformers/jstransformer-function,jstransformers/jstransformer-octet,jstransformers/jstransformer-toml,jstransformers/boilerplate,jstransformers/jstransformer-mote,jstransformers/jstransformer-twig,jstransformers/jstransformer-suitcss,jstransformers/jstransformer-bless,jstransformers/jstransformer-mustache,jstransformers/jstransformer-markdown-it,jstransformers/jstransformer-commonmark,jstransformers/jstransformer-swig,jstransformers/jstransformer-hamlet,jstransformers/jstransformer-dot,jstransformers/jstransformer-esformatter,jstransformers/jstransformer-traceur,jstransformers/jstransformer-remark,jstransformers/jstransformer-whiskers,jstransformers/jstransformer-markdown-it,jstransformers/jstransformer-prismjs,jstransformers/jstransformer-gray-matter,jstransformers/jstransformer-gotpl,jstransformers/jstransformer-css-whitespace,jstransformers/jstransformer-ejs,jstransformers/jstransformer-rho,jstransformers/jstransformer-megamark,jstransformers/jstransformer-just,jstransformers/jstransformer-cdata-js,jstransformers/jstransformer-ractive,jstransformers/jstransformer-ejs,jstransformers/jstransformer-walrus,jstransformers/jstransformer-mmd,jstransformers/jstransformer-es6-template-strings,jstransformers/jstransformer-fest,jstransformers/jstransformer-json,jstransformers/jstransformer-stylus,jstransformers/jstransformer-html2jade,jstransformers/jstransformer-mini-handlebars,jstransformers/jstransformer-livescript,jstransformers/jstransformer-supermarked,jstransformers/jstransformer-hogan,jstransformers/jstransformer-scss,jstransformers/jstransformer-ini,jstransformers/jstransformer-mold,jstransformers/jstransformer-hamljs,jstransformers/jstransformer-sass,jstransformers/jstransformer-marko,jstransformers/jstransformer-twig,jstransformers/jstransformer-autoprefixer,jstransformers/jstransformer-jazz,jstransformers/jstransformer-to-markdown,jstransformers/jstransformer-hogan,jstransformers/jstransformer-haml,jstransformers/jstransformer-riotjs,jstransformers/jstransformer-mmd,jstransformers/jstransformer-mustache,jstransformers/jstransformer-coffeekup,jstransformers/jstransformer-dust,jstransformers/jstransformer-prismjs,jstransformers/jstransformer-octet,jstransformers/jstransformer-atpl,jstransformers/jstransformer-htmling,jstransformers/jstransformer-bliss,jstransformers/jstransformer-engine,jstransformers/jstransformer-jscss-lite,jstransformers/jstransformer-resin,jstransformers/jstransformer-toffee,jstransformers/jstransformer-ect,jstransformers/jstransformer-jsrender,jstransformers/jstransformer-marko,jstransformers/jstransformer-cli,jstransformers/jstransformer-rho,jstransformers/jstransformer-mdast,jstransformers/jstransformer-coffee-script,jstransformers/jstransformer-typescript,jstransformers/jstransformer-pug,jstransformers/jstransformer-webpack,jstransformers/jstransformer-purifycss,jstransformers/jstransformer-styl,jstransformers/jstransformer-remarkable,jstransformers/jstransformer-html-minifier,jstransformers/jstransformer-microtemplate,jstransformers/jstransformer-pug,jstransformers/jstransformer-coffeekup,jstransformers/jstransformer-string-template,jstransformers/jstransformer-slm,jstransformers/jstransformer-es6-template,jstransformers/jstransformer-handlebars,jstransformers/jstransformer-jade,jstransformers/jstransformer-transparency,jstransformers/jstransformer-es6-template,jstransformers/jstransformer-pleeease,jstransformers/jstransformer-babel,jstransformers/jstransformer-envy-json,jstransformers/jstransformer-nunjucks,jstransformers/jstransformer-templayed,jstransformers/jstransformer-cli,jstransformers/jstransformer-less,jstransformers/jstransformer-myth,jstransformers/jstransformer-hamljs,jstransformers/jstransformer-stylecow,jstransformers/jstransformer-vash,jstransformers/jstransformer-gotpl,jstransformers/jstransformer-dust,jstransformers/list-of-jstransformers,jstransformers/jstransformer-jstransformer,jstransformers/gulp-jstransformer,jstransformers/jstransformer-esnext,jstransformers/jstransformer-jst,jstransformers/jstransformer-jqtpl,jstransformers/jstransformer-postcss,jstransformers/jstransformer-sheetify,jstransformers/jstransformer-swig,jstransformers/jstransformer-haml-coffee,jstransformers/jstransformer-markdown,jstransformers/jstransformer-haml,jstransformers/jstransformer-toffee
458e9d4faac0320f3704dc2b939a18c07f0ac011
.travis.yml
.travis.yml
language: node_js node_js: - "4" - "6" - "7" install: - npm install script: - npm run lint - npm run compile - npm test
language: node_js node_js: - "4" - "6" - "7" - "8" install: - npm install script: - npm run lint - npm run compile - npm test
Add Travis-CI Node v8 target
Add Travis-CI Node v8 target
YAML
mit
Borewit/music-metadata,Borewit/music-metadata
d37fa4d7d4b3608267d989711ef3e43225a2299c
.travis.yml
.travis.yml
language: node_js node_js: - "stable" branches: - /.*/
language: node_js node_js: - "stable" branches: - /.*/ install: - npm install script: - npm test
Update install & script steps for CI
Update install & script steps for CI
YAML
mit
GLNRO/react-redux-threejs,GLNRO/react-redux-threejs
d9c950c7d0c3aa4ba952e785d219097e9a2267be
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '4' - '6' - '8' branches: only: - master - travis-ci before_install: - npm install - npm install -g istanbul coveralls
sudo: false language: node_js node_js: - '4' - '6' - '8' branches: only: - master - travis-ci install: - npm install -g npm - npm install --no-package-lock --no-save - npm install -g istanbul coveralls
Use NPM 5 on Travis CI.
Use NPM 5 on Travis CI.
YAML
mit
bigeasy/abend
73b0ba371d7cdc8746ccd8d2111a694ac5f61d07
.travis.yml
.travis.yml
language: "node_js" node_js: - "0.11" install: - "npm install" script: - "./_test" branches: only: - master
language: "node_js" node_js: - "0.10" install: - "npm install" script: - "./_test" branches: only: - master
Change node version from 0.11 to 0.10
Change node version from 0.11 to 0.10
YAML
mit
milewdev/TinyMock
ef1cdfbf98641d55f23c3efeb4dec0a8e9e8a11a
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '4' - '5' - '6' after_success: - make coveralls - '[[ -n "$TRAVIS_TAG" ]] && make gh-pages' deploy: provider: npm email: [email protected] api_key: secure: DC89w8xRSEK+lm0ZHq8mnEcubBXKRj3/h9ZvcKL0s8sKUo2gwx6hwpNu1zUNbDJI7+teD8JsE1bun8uGRX6JsUEjIPoejBTDvAPCt4tzFcAPIJhfBSGTcRMyMevSSu75UtduThQv9RVocx3/e4kss/R+f2pyiVgDEUHzagvZ/OU= on: tags: true node: '6' repo: Dreamscapes/semantic-merge all_branches: true env: global: secure: uFp6OOCdUo4KOD6IFmK240pDSLJ1/fn2cAgsuK3wRYLUZ9zQL2l8nE5P7/MkmE+Kfoycf4iWKpv55W55EzQ3EULbah/oE0uSKrYDuRSN1EUL3t5WiiR+XMiKGnAWi4y2cmjxsQ0oRe9JVIgWVENi+tF8mYfU02HCEv71DJ/bsa4=
sudo: false language: node_js node_js: - '4' - '5' - '6' after_success: - make coveralls - '[[ -n "$TRAVIS_TAG" ]] && make gh-pages' deploy: provider: npm email: [email protected] api_key: secure: lkRl7d7WwlI6UEnnNJbfyOsOYQyUsIFXulD8Fff8HSKFgr39Ye5eObS3u69+zdTeYaQfOJ0fl4XD/kAe3coUJHN3fN7GPfz+sxmCYybiYa35ZaX9lMojzeyP4jccfaJldMP+ucpk3+d2zG5iigx493CWKpMZR83zyMBXU8BWEvo= on: tags: true node: '6' repo: Dreamscapes/semantic-merge all_branches: true env: global: secure: uFp6OOCdUo4KOD6IFmK240pDSLJ1/fn2cAgsuK3wRYLUZ9zQL2l8nE5P7/MkmE+Kfoycf4iWKpv55W55EzQ3EULbah/oE0uSKrYDuRSN1EUL3t5WiiR+XMiKGnAWi4y2cmjxsQ0oRe9JVIgWVENi+tF8mYfU02HCEv71DJ/bsa4=
Update API key in Travis config
Update API key in Travis config
YAML
bsd-3-clause
Dreamscapes/semantic-merge
75281795e6bd2b6911215048a86ff0cdf399a925
.travis.yml
.travis.yml
dist: trusty cache: bundler language: ruby rvm: - 2.5.1 env: matrix: - SOLIDUS_BRANCH=v2.4 DB=postgres - SOLIDUS_BRANCH=v2.5 DB=postgres - SOLIDUS_BRANCH=v2.6 DB=postgres - SOLIDUS_BRANCH=v2.7 DB=postgres - SOLIDUS_BRANCH=v2.8 DB=postgres - SOLIDUS_BRANCH=master DB=postgres - SOLIDUS_BRANCH=v2.4 DB=mysql - SOLIDUS_BRANCH=v2.5 DB=mysql - SOLIDUS_BRANCH=v2.6 DB=mysql - SOLIDUS_BRANCH=v2.7 DB=mysql - SOLIDUS_BRANCH=v2.8 DB=mysql - SOLIDUS_BRANCH=master DB=mysql
dist: trusty cache: bundler language: ruby rvm: - 2.5.1 env: matrix: - SOLIDUS_BRANCH=v2.5 DB=postgres - SOLIDUS_BRANCH=v2.6 DB=postgres - SOLIDUS_BRANCH=v2.7 DB=postgres - SOLIDUS_BRANCH=v2.8 DB=postgres - SOLIDUS_BRANCH=master DB=postgres - SOLIDUS_BRANCH=v2.5 DB=mysql - SOLIDUS_BRANCH=v2.6 DB=mysql - SOLIDUS_BRANCH=v2.7 DB=mysql - SOLIDUS_BRANCH=v2.8 DB=mysql - SOLIDUS_BRANCH=master DB=mysql
Update Solidus versions in Travis build matrix
Update Solidus versions in Travis build matrix
YAML
bsd-3-clause
solidusio-contrib/solidus_product_feed,solidusio-contrib/solidus_product_feed
a6c5ab2100894dfcbfc479cced77ff456e999b14
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - hhvm before_script: - composer update --prefer-dist script: # - php ./vendor/phpunit/phpunit/phpunit - php ./vendor/phpunit/phpunit/phpunit --coverage-clover=build/logs/clover.xml after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --access-token="80b65a15a783f3ca91af2635f701052e94179ebf84aad0a031dcc90dddd30394" --format=php-clover build/logs/clover.xml after_sucess: - wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.0/coveralls.phar - travis_retry php coveralls.phar notifications: email: - [email protected] matrix: allow_failures: - php: hhvm branches: only: - develop - master
language: php php: - 5.5 - 5.6 - hhvm before_script: - composer update --prefer-dist script: # - php ./vendor/phpunit/phpunit/phpunit - php ./vendor/phpunit/phpunit/phpunit --coverage-clover=build/logs/clover.xml after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --access-token="80b65a15a783f3ca91af2635f701052e94179ebf84aad0a031dcc90dddd30394" --format=php-clover build/logs/clover.xml after_sucess: - wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.0/coveralls.phar - travis_retry php coveralls.phar notifications: email: - [email protected] matrix: allow_failures: - php: hhvm branches: only: - develop - master
Drop support for PHP 5.4
Drop support for PHP 5.4
YAML
mit
dankempster/axstrad-test
6796bd09397839f2884b1619043fd58b611fb533
.travis.yml
.travis.yml
sudo: required language: ruby rvm: - 2.4.2 services: - docker script: - bundle exec rake rubocop - bundle exec rake after_success: - if [ "$TRAVIS_BRANCH" == "master" ]; then docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"; docker push suhlig/concourse-rss-resource; fi
sudo: required language: ruby rvm: - 2.5.0 services: - docker script: - bundle exec rake rubocop - bundle exec rake after_success: - if [ "$TRAVIS_BRANCH" == "master" ]; then docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"; docker push suhlig/concourse-rss-resource; fi
Update Travis to use Ruby 2.5
Update Travis to use Ruby 2.5
YAML
mit
suhlig/concourse-rss-resource,suhlig/concourse-rss-resource
c3f55288095a0daf0d267bcf68f8f80799dd4e0e
.travis.yml
.travis.yml
language: go go: - 1.4 - 1.5 - 1.6 install: - go get github.com/bwmarrin/flake - go get -v .
language: go go: - 1.11.x - 1.12.x install: - go get -v . script: - diff <(gofmt -d .) <(echo -n) - go vet -x ./... - golint -set_exit_status ./... - go test -v -race ./...
Check more, Check against Go 11.x/12.x
Check more, Check against Go 11.x/12.x
YAML
bsd-2-clause
bwmarrin/snowflake
4cbd222dd0f16706a08b128138a52c5fba26b3b9
.travis.yml
.travis.yml
language: cpp os: - linux - osx matrix: include: - compiler: gcc os: linux addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.9 before_script: - export CXX=g++-4.9 - compiler: gcc os: linux addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-5 before_script: - export CXX=g++-5 script: - cd samples && make
language: cpp matrix: include: - compiler: gcc os: linux addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.9 before_script: - export CXX=g++-4.9 - compiler: gcc os: linux addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-5 before_script: - export CXX=g++-5 - compiler: clang os: osx before_script: - export CXX=clang script: - cd samples && make
Add osx platform to matrix
Add osx platform to matrix
YAML
unlicense
elnormous/ouzel,elnormous/ouzel,Hotspotmar/ouzel,elnormous/ouzel,Hotspotmar/ouzel,elvman/ouzel,elvman/ouzel,Hotspotmar/ouzel
57173ebd53c2c52299a492bf78b9b103c790f0eb
.travis.yml
.travis.yml
language: python install: - pip install -r test-requirements.txt - python setup.py install script: - pytest pydiff - pytest pydiff --pep8 notifications: slack: rooms: - beagleinc:DB8ZeLgjLqjW9Mhn3WmXpbuW#circleci - serf-beagle:StH5vRHmpWcpZ6ryDdPzIkc2#ci email: false
language: python python: - "2.7" - "3.6" install: - python setup.py install - pip install -r test-requirements.txt script: - pytest pydiff - pytest pydiff --pep8 notifications: slack: rooms: - beagleinc:DB8ZeLgjLqjW9Mhn3WmXpbuW#circleci - serf-beagle:StH5vRHmpWcpZ6ryDdPzIkc2#ci email: false
Add Py3 tests to Travis CI
Add Py3 tests to Travis CI
YAML
apache-2.0
BeagleInc/PyReadableDiff
42240ac36dd4b9b7546b73ed88d7aba5411c9797
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12" - "iojs" before_install: - "sudo apt-get install cimg-dev libphash0-dev libmagickcore-dev" script: "npm run-script test-travis" after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
language: node_js node_js: - "0.10" - "0.12" - "iojs" before_install: - "sudo apt-get update" - "sudo apt-get install cimg-dev libphash0-dev libmagickcore-dev" script: "npm run-script test-travis" after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
Add 'apt-get update' to Travis CI
Add 'apt-get update' to Travis CI Should ensure the correct version of libav
YAML
mit
mgmtio/phash-image,mgmtio/phash-image,mgmtio/phash-image
7244f638e671f106056130a08753945bbce5642d
.travis.yml
.travis.yml
language: python sudo: required python: - "2.7" before_install: - sudo apt-get install fabric liblua5.2 liblua5.2-dev pylint install: - pip install -r requirements.txt script: - ./tools/infrastructure/checkstyle.sh - fab test_all
language: python sudo: required python: - "2.7" branches: only: - master - develop before_install: - sudo apt-get install fabric liblua5.2 liblua5.2-dev pylint install: - pip install -r requirements.txt script: - ./tools/infrastructure/checkstyle.sh - fab test_all
Improve Travis build: build only master and develop on push
Improve Travis build: build only master and develop on push
YAML
mit
malirod/pylua,malirod/pylua
db933d973cd200163d111345ca64943e9008237f
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.0 - 2.0.0 - 1.9.3 - rbx-19mode - ruby-head
language: ruby rvm: - 2.1.0 - 2.0.0 - 1.9.3 - ruby-head
Remove Rubinius because Travis can't find binaries
Remove Rubinius because Travis can't find binaries
YAML
mit
tyre/ultra_marathon
20fe5a2ea77a8cf3de5eb0454f162be8a8392504
.travis.yml
.travis.yml
sudo: false language: elixir elixir: - 1.1.0 - 1.2.0 otp_release: - 18.0 - 18.1 - 18.2 env: matrix: - CC=clang - CC=gcc before_install: - kerl list installations - export MIX_ENV=ci after_success: - mix coveralls.travis after_script: - mix inch.report - mix credo --strict - mix hex.outdated
sudo: false language: elixir elixir: - 1.2.6 - 1.3.1 otp_release: - 18.3 - 19.0 env: matrix: - CC=clang - CC=gcc before_install: - kerl list installations - export MIX_ENV=ci after_success: - mix coveralls.travis after_script: - mix inch.report - mix credo --strict - mix hex.outdated
Use only the two most recent lang versions
Use only the two most recent lang versions
YAML
mit
asaaki/cmark.ex,asaaki/cmark.ex
f4e96e0f8078b9ff462991ccde805ce312919d1c
.travis.yml
.travis.yml
sudo: required services: - docker env: global: - PRODUCT=tarantool-cbench matrix: - OS=el DIST=6 PACK=rpm - OS=el DIST=7 PACK=rpm - OS=fedora DIST=23 PACK=rpm - OS=fedora DIST=24 PACK=rpm # - OS=fedora DIST=rawhide PACK=rpm - OS=ubuntu DIST=precise PACK=deb - OS=ubuntu DIST=trusty PACK=deb - OS=ubuntu DIST=wily PACK=deb - OS=ubuntu DIST=xenial PACK=deb - OS=debian DIST=wheezy PACK=deb - OS=debian DIST=jessie PACK=deb - OS=debian DIST=stretch PACK=deb # - OS=debian DIST=sid PACK=deb script: - git clone https://github.com/tarantool/build.git - PACKAGECLOUD_REPO=tarantool/1_6 REPO_PREFIX=1.6 ./build/pack/travis.sh - PACKAGECLOUD_REPO=tarantool/1_7 REPO_PREFIX=1.7 ./build/pack/travis.sh notifications: email: true irc: false
sudo: required services: - docker env: global: - PRODUCT=tarantool-cbench matrix: - OS=el DIST=6 PACK=rpm - OS=el DIST=7 PACK=rpm - OS=fedora DIST=23 PACK=rpm - OS=fedora DIST=24 PACK=rpm # - OS=fedora DIST=rawhide PACK=rpm - OS=ubuntu DIST=precise PACK=deb - OS=ubuntu DIST=trusty PACK=deb - OS=ubuntu DIST=wily PACK=deb - OS=ubuntu DIST=xenial PACK=deb - OS=debian DIST=wheezy PACK=deb - OS=debian DIST=jessie PACK=deb - OS=debian DIST=stretch PACK=deb # - OS=debian DIST=sid PACK=deb script: - git clone https://github.com/tarantool/build.git - PACKAGECLOUD_REPO=tarantool/1_6 REPO_PREFIX=1.6 ./build/pack/travis.sh - PACKAGECLOUD_REPO=tarantool/1_7 REPO_PREFIX=1.7 ./build/pack/travis.sh - PACKAGECLOUD_REPO=tarantool/1_8 REPO_PREFIX=1.8 ./build/pack/travis.sh notifications: email: true irc: false
Enable uploading to 1.8 repository
Enable uploading to 1.8 repository
YAML
bsd-2-clause
tarantool/cbench,tarantool/tarantool-c-bench,tarantool/tarantool-c-bench,tarantool/cbench
518b5eaf99dac368ed398ad68e8a9745c79946e5
.travis.yml
.travis.yml
language: node_js sudo: required # requirement for postgres 9.5 dist: trusty node_js: - "6.10" services: - postgresql - redis-server env: - CXX=g++-4.8 NODE_ENV=development DB_ENV=travis addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - unicode-data postgresql: "9.5" before_script: - psql -c 'create database libertysoil;' -U postgres script: "npm run travis"
language: node_js sudo: required # requirement for postgres 9.5 dist: trusty node_js: - "6.10" - "7.7" services: - postgresql - redis-server env: - CXX=g++-4.8 NODE_ENV=development DB_ENV=travis addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - unicode-data postgresql: "9.5" before_script: - psql -c 'create database libertysoil;' -U postgres script: "npm run travis"
Test using latest NodeJS 7.x too
Test using latest NodeJS 7.x too
YAML
agpl-3.0
Lokiedu/libertysoil-site,Lokiedu/libertysoil-site
2aa65d257248e7106c75c33d846f8b990082efeb
.travis.yml
.travis.yml
language: node_js # Use container-based infrastructure sudo: false node_js: - "6" - "5" - "5.1" - "4" - "4.2" - "4.1" - "4.0" script: - npm run lint - npm run test:cover after_script: - codeclimate-test-reporter < coverage/lcov.info addons: code_climate: repo_token: d46a480972b9542986bef5f14563522aa4ad65a9122fa68158de52d54d044933
language: node_js # Use container-based infrastructure sudo: false node_js: - "6" - "5" - "4" script: - npm run lint - npm run test:cover after_script: - codeclimate-test-reporter < coverage/lcov.info addons: code_climate: repo_token: d46a480972b9542986bef5f14563522aa4ad65a9122fa68158de52d54d044933
Remove specific Node version from Travis config
Remove specific Node version from Travis config
YAML
mit
nordsoftware/redux-fetch-data
fc5a77fbd96f4e825bd052ee9b6b4733e17378ac
.travis.yml
.travis.yml
sudo: required dist: trusty language: python python: - "3.4" - "3.5" before_install: - sudo apt-get update -y - sudo apt-get install clang -y install: - "pip install --process-dependency-links ." script: - "python setup.py test"
sudo: required dist: trusty language: python python: - "3.4" - "3.5" before_install: - sudo apt-get update -y - sudo apt-get install libclang-dev -y install: - "pip install --process-dependency-links ." script: - "python setup.py test"
Install the development libraries of clang, not clang itself.
Install the development libraries of clang, not clang itself.
YAML
bsd-3-clause
pybee/seasnake
d65b7a0445d4f8ed8550597a89b2fd5307b04522
.travis.yml
.travis.yml
--- env: - PUPPET_VERSION=2.7.23 - PUPPET_VERSION=3.3.2 - PUPPET_VERSION=3.4.2 notifications: email: false rvm: - 1.8.7 - 1.9.3 - 2.0.0 matrix: allow_failures: - env: PUPPET_VERSION=2.7.23 - rvm: 2.0.0 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=3.3.2 - PUPPET_VERSION=3.4.2 notifications: email: false rvm: - 1.8.7 - 1.9.3 - 2.0.0 matrix: allow_failures: - rvm: 2.0.0 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
Remove support for Puppet 2.7
Remove support for Puppet 2.7
YAML
apache-2.0
ghoneycutt/puppet-module-skeleton,ghoneycutt/puppet-module-skeleton
8839b855ca16a7670f565d17980246878a534708
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.3 before_install: - | bash -c " # Install MariaDB sudo bash .travis_mariadb.sh " before_script: - mysql -e 'create database portus_test;' script: - 'bundle exec rspec spec' - 'bundle exec rubocop'
language: ruby rvm: - 2.1.3 env: - OBS_REPO=Virtualization:containers:Portus - OBS_BRANCH=master before_install: - | bash -c " # Install MariaDB sudo bash .travis_mariadb.sh " before_script: - mysql -e 'create database portus_test;' script: - 'bundle exec rspec spec' - 'bundle exec rubocop'
Add ENV variables required to build portus package on OBS
Add ENV variables required to build portus package on OBS
YAML
apache-2.0
rhoml/Portus,mauromorales/Portus,vitorarins/Portus,vpereira/Portus,kwk/Portus,krishnak9/Portus,mauromorales/Portus,jloehel/Portus,krishnak9/Portus,bencevans/Portus,liubin/Portus,rhoml/Portus,Gobliip/Portus,angry-tony/Portus-20170827,angry-tony/Portus-20170827,liubin/Portus,Gobliip/Portus,angry-tony/Portus-20170827,mssola/Portus,kwk/Portus,morodin/Portus,angry-tony/Portus-20170827,armbuilds/portus,bencevans/Portus,mssola/Portus,armbuilds/portus,rhoml/Portus,SUSE/Portus,jloehel/Portus,thuongdinh/Portus,vitorarins/Portus,Gobliip/Portus,mauromorales/Portus,jloehel/Portus,morodin/Portus,vpereira/Portus,SUSE/Portus,krishnak9/Portus,SUSE/Portus,SUSE/Portus,thuongdinh/Portus,vpereira/Portus,vitorarins/Portus,morodin/Portus,krishnak9/Portus,mssola/Portus,mssola/Portus,thuongdinh/Portus,bencevans/Portus,kwk/Portus,armbuilds/portus,liubin/Portus
8de26bc7a047877e00ddaca66bb974f458a10349
.travis.yml
.travis.yml
language: android sudo: false jdk: - oraclejdk8 android: components: - tools - build-tools-25.0.2 - android-25 - extra-android-support - extra-android-m2repository licenses: - 'android-sdk-license-.+' - '.*intel.+' before_install: - chmod +x gradlew install: - ./gradlew script: - ./gradlew :library:build --stacktrace - ./gradlew :sample:build --stacktrace
language: android sudo: false jdk: - oraclejdk8 android: components: - tools - build-tools-25.0.2 - android-25 - extra-android-support - extra-android-m2repository licenses: - 'android-sdk-license-.+' - '.*intel.+' before_install: - chmod +x gradlew install: - ./gradlew script: - ./gradlew :library:assembleDebug --stacktrace - ./gradlew :sample:assembleDebug --stacktrace
Switch to assembleDebug for CI
Switch to assembleDebug for CI
YAML
apache-2.0
anthonycr/Grant
7eb26fde5cc58a6c6a262f6b2559b0ca48ec290d
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" script: grunt default
language: node_js node_js: - "0.10" before_script: - npm install -g bower - bower install script: grunt default
Install bower and install necessary libraries.
Install bower and install necessary libraries.
YAML
mit
weblogng/angular-weblogng
d9a0b2b7f9d4ebbb88eb9d3538230fd8f1c35de0
.travis.yml
.travis.yml
language: python env: - REQUIREMENTS=lowest - REQUIREMENTS=current python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "pypy" install: - pip install tox script: - tox -e $(echo py$TRAVIS_PYTHON_VERSION | tr -d . | sed -e 's/pypypy/pypy/')-$REQUIREMENTS notifications: email: false
language: python env: - REQUIREMENTS=lowest - REQUIREMENTS=current python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "pypy" install: - pip install tox script: - tox -e $(echo py$TRAVIS_PYTHON_VERSION | tr -d . | sed -e 's/pypypy/pypy/')-$REQUIREMENTS notifications: email: false deploy: provider: pypi distributions: sdist bdist_wheel user: shopkeep password: secure: mtTo6hENVc4lUluayUGKHnZH8cECdf6WlK2pRadO7vGJzcFAqGoa4EjVRzHErlATgu55CAf4AeaU6z4vtF9SNDs2KMDbGdVcH2J570csBLz78dl5Yv9w3LuGN6vaTKKY96423F0hpEqb3qZ765dNGo9LA8iXSZxQzC5ZcBxkbB7/clBls3h+aetD2K9ia3Dd8xmmr8xU69wFxCRar5kOLEn8nQ/U8RriaoJ5GeJqPCDZLlf0kQKjEotpv5VpLi29skk8nKUweJaca8CHLcKCty4xR5XMccMsRq0VgFOGxZXlX2uD84Kn7G+IhU/wJW6O9Ly84jkJ0i2a+Djh65d4uAgpRHbJyXmjGdAvZGAR+pxvC86ORv6KRK3Otbhqm/oWd2Mxf0fvH5vWBfRiDElvn5lcMHkGecc68Pebwn/0NT0wJGm+Lo6OYquw70B4At7W0BC0rwa9haDS8y2/PeiKnoPwasHhUVizzMRCVCDRBMhBZVY3fl+vPMhIxmxhcZMc+pL663nGuhblU8kOQgMIl8DnwcfhZTv6eejZFofa+gbEF2SuPmIkqwU4VOkG1P0ztMmy3nd4DZBEwTP6DgkX2uvqNO6pi6Dcu/dQi0XYZkgYjNKGmBGxLk3WMhn+q4UjnsfizYgEh11oKH7iGLjHxzivKHaR7jtcfhkA6DaWn9Y= on: python: 2.7 tags: true
Enable auto publish to PyPI with Travis CI
Enable auto publish to PyPI with Travis CI
YAML
mit
shopkeep/shpkpr,shopkeep/shpkpr