Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Use C++11 on Travis CI | branches:
only:
- python
language: python
python:
- pypy
- pypy3
- 2.6
- 2.7
- 3.3
- 3.4
install:
- pip install -e . "Werkzeug >= 0.9" coverage coveralls
script:
- coverage run --source sass,sassc,sassutils setup.py test
after_success:
- coveralls
notifications:
irc:
channels:
- "irc.ozinger.org:8080#hong... | branches:
only:
- python
language: python
python:
- pypy
- pypy3
- 2.6
- 2.7
- 3.3
- 3.4
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
- sudo apt-get install -qq g++-4.8 libstdc++-4.8-dev
- export CC="gcc-4.8" CXX="g++-4.8"
- pip install -e . "Werkzeug >... |
Update Travis to latest stable Node. | language:
node_js
node_js:
- 0.8
before_script:
# install dependencies
- gem update --system
- gem install compass
- npm install -g grunt-cli bower
- bower install
script:
- grunt test | language:
node_js
node_js:
- 0.10
before_script:
# install dependencies
- gem update --system
- gem install compass
- npm install -g grunt-cli bower
- bower install
script:
- grunt test |
Update node versions used for testing, replacing 13 with 14 to match LST | language: node_js
node_js:
- "node"
- "10"
- "12"
- "13"
script: "npm test"
after_success: npm run coverage
| language: node_js
node_js:
- "node"
- "10"
- "12"
- "14"
script: "npm test"
after_success: npm run coverage
|
Use same way as in command above to get current php version | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
matrix:
allow_failures:
- php: 5.3
env:
matrix:
- ES_COMPOSER_NODEV=no
- ES_COMPOSER_NODEV=yes
install:
- /bin/bash ansible/provision.sh
before_script:
- mkdir -p build/logs
- echo "extension=memcache.so" >> ~/.phpenv/versions/$(phpenv ... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
matrix:
allow_failures:
- php: 5.3
env:
matrix:
- ES_COMPOSER_NODEV=no
- ES_COMPOSER_NODEV=yes
install:
- /bin/bash ansible/provision.sh
before_script:
- mkdir -p build/logs
- echo "extension=memcache.so" >> ~/.phpenv/versions/$(phpenv ... |
Support for PHP 5.5 phased out. | language: php
php:
- 5.5
- 5.6
- 7.0
- nightly
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-dist --no-interaction
script: phpunit
| language: php
php:
- 5.6
- 7.0
- nightly
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-dist --no-interaction
script: phpunit
|
Allow failure with PHP master | language: php
php:
- 7.0
- 7.1
- 7.2
- master
before_script:
- composer self-update
- composer install
script:
- composer validate
- vendor/bin/parallel-lint src/ tests/
- vendor/bin/phpunit
- vendor/bin/phpstan analyze src tests --level=7
- vendor/bin/php-cs-fixer fix --rules=@PSR2 -v --dry-run --stop-on... | language: php
php:
- 7.0
- 7.1
- 7.2
- master
matrix:
allow_failures:
- php: master
before_script:
- composer self-update
- composer install
script:
- composer validate
- vendor/bin/parallel-lint src/ tests/
- vendor/bin/phpunit
- vendor/bin/phpstan analyze src tests --level=7
- vendor/bin/php-cs-f... |
Test with Node.js 5.1 on Travis CI. | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- ... | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5.1'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_ins... |
Remove ruby 1.8.7 from ci config | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mode
- jruby-19mode
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mode
- jruby-19mode
|
Compress whole phar instead of individual files | --- # Poggit-CI Manifest. Open the CI at https://poggit.pmmp.io/ci/Sandertv/BlockPets
branches:
- master
projects:
BlockPets:
path: ""
icon: resources/BlockPetsLogo.png
libs:
- src: Falkirks/spoondetector/spoondetector
version: ^0
- src: poggit/libasynql/libasynql
version: ^3.0... | --- # Poggit-CI Manifest. Open the CI at https://poggit.pmmp.io/ci/Sandertv/BlockPets
branches:
- master
projects:
BlockPets:
path: ""
icon: resources/BlockPetsLogo.png
compressBuilds: false
fullGzip: 9
libs:
- src: Falkirks/spoondetector/spoondetector
version: ^0
- src: poggit... |
Implement the pip cache for the CI build | name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: |
sudo make dev-install-no-model
sudo pip3 install pytest-faulthandler
sudo apt install xvfb
- name: Lint with flake8
run: |
... | name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Get pip cache
id: pip-cache
run: |
python -c "from pip._internal.locations import USER_CACHE_DIR; print('::set-output name=dir::' + USER_CACHE_DIR)"
- uses: actions/cache@v1
with:
path: ${{... |
Enable Cabal package tests on AppVeyor | install:
- choco install HaskellPlatform -version 2014.2.0.0
- SET PATH=C:\Program Files\Haskell Platform\2014.2.0.0\bin;C:\Program Files\Haskell Platform\2014.2.0.0\mingw\bin;C:\Program Files\Haskell Platform\2014.2.0.0\lib\extralibs\bin;%PATH%
- cabal update
build_script:
- cd Cabal
- ghc --make -threaded ... | install:
- choco install HaskellPlatform -version 2014.2.0.0
- SET PATH=C:\Program Files\Haskell Platform\2014.2.0.0\bin;C:\Program Files\Haskell Platform\2014.2.0.0\mingw\bin;C:\Program Files\Haskell Platform\2014.2.0.0\lib\extralibs\bin;%PATH%
- cabal update
build_script:
- cd Cabal
- ghc --make -threaded ... |
Use Visual Studio 2017 with Appveyor. | version: '{build}'
environment:
COVERALLSAPIKEY:
secure: w6ojRE0he/6J2qd8sgq1kwSl3YlgLXaGJbiLvWfAdf8KtWAfSobZwSFwu3nCBLWJ
build_script:
- ps: .\build.ps1 -target=CoveragePublish -configuration=Debug "-coverallsApiKey=$env:COVERALLSAPIKEY"
test: off
| version: '{build}'
image: Visual Studio 2017
environment:
COVERALLSAPIKEY:
secure: w6ojRE0he/6J2qd8sgq1kwSl3YlgLXaGJbiLvWfAdf8KtWAfSobZwSFwu3nCBLWJ
build_script:
- ps: .\build.ps1 -target=CoveragePublish -configuration=Debug "-coverallsApiKey=$env:COVERALLSAPIKEY"
test: off
|
Add go-systemd dep for CI testing | language: go
go:
- 1.10.x
- 1.11.x
- tip
install:
- mkdir -p $GOPATH/src/github.com/prometheus $GOPATH/src/github.com/opencontainers
- cd $GOPATH/src/github.com/opencontainers && git clone https://github.com/opencontainers/runtime-spec && cd runtime-spec && git checkout fa4b36aa9c99e00c2ef7b5c0013c... | language: go
go:
- 1.10.x
- 1.11.x
install:
- mkdir -p $GOPATH/src/github.com/prometheus $GOPATH/src/github.com/opencontainers $GOPATH/src/github.com/coreos $GOPATH/src/github.com/godbus
- cd $GOPATH/src/github.com/opencontainers && git clone https://github.com/opencontainers/runtime-spec && cd runtime... |
Add Firefox in Travis CI. | language: node_js
node_js:
- "6"
- "5"
- "4"
before_script:
- npm install -g gulp karma-cli
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
branches:
only:
- master
| language: node_js
node_js:
- "6"
- "5"
- "4"
addons:
firefox: "latest"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
branches:
only:
- master
|
Add CodeClimate repo token, for test coverage reports | language: ruby
notifications:
email: false
rvm:
- 2.0.0
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
| language: ruby
addons:
code_climate:
repo_token: 2df66540ac895ba609ec19665a233e73dc7b4d3f3e0c788c4b99ed974765d4bf
notifications:
email: false
rvm:
- 2.0.0
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
|
Decrease the number of Travis build and use latest version of Pillow | language: python
cache: pip
env:
global:
- PILLOW_VERSION=3.2.0
matrix:
include:
- python: 2.7
env: PILLOW_VERSION=2.9.0
- python: 2.7
env: PILLOW_VERSION=3.0.0
- python: 2.7
- python: 3.3
- python: 3.4
- python: 3.5
- python: 3.6
before_install:
# Dependencies to ... | language: python
cache: pip
env:
global:
- PILLOW="Pillow"
matrix:
include:
- python: 2.7
- python: 3.4
env: PILLOW="Pillow==2.9.0"
- python: 3.5
env: PILLOW="Pillow==3.0.0"
- python: 3.6
before_install:
# Dependencies to build PIL
- sudo apt-get update -qq
- sudo apt-... |
Test under multiple go versions | language: go
services:
- rabbitmq
env:
- AMQP_URL=amqp://guest:guest@127.0.0.1:5672/ GOMAXPROCS=2
script: go test -v -tags integration ./...
before_script:
- sh -c "sleep 120 && killall -QUIT amqp.test" &
| language: go
go:
- 1.0
- 1.1
- tip
services:
- rabbitmq
env:
- AMQP_URL=amqp://guest:guest@127.0.0.1:5672/ GOMAXPROCS=2
script: go test -v -tags integration ./...
before_script:
- sh -c "sleep 120 && killall -QUIT amqp.test" &
|
Make sure to get the right version for this Python...? | language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
sudo: false
addons:
apt:
packages:
- python-numpy
- python-sphinx
install:
- pip install nose-cov python-coveralls
- pip install -r requirements.txt
# Run test
script:
- nosetests --with-cov --cov properties --cov-config .coveragerc -v ... | language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
sudo: false
addons:
apt:
packages:
- python-numpy
install:
- pip install nose-cov python-coveralls sphinx
- pip install -r requirements.txt
# Run test
script:
- nosetests --with-cov --cov properties --cov-config .coveragerc -v -s
# Calculate... |
Update Travis to only test for PHP >= 7.1 | 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 |
Add `--production=false` to installation step | 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
|
Update Travis to test newer Node versions | language: node_js
node_js:
- "0.10"
- "0.12"
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4.2"
- "5"
|
Update for Chef 15 license agreement and Chef Workstation | 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-... | 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
- INSTAN... |
Exclude `filecheck` plugin on FreeBSD 12 | 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 `PLUGI... | 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 `PLUGI... |
Add build script to init task |
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 |
Build with ruby on TravisCI too | 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
|
Test Symfony 4.0 and remove HHVM check | 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/... | 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
... |
Drop the -v for go get/test | 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 ./... |
Add sudo to apt command | 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 Py3 tests to Travis CI | 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... |
Enable uploading to 1.8 repository | 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... | 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... |
Use the latest Firefox in Travis | language: node_js
node_js:
- "0.10"
- "0.12"
- "4.2"
- "5.0"
# Use container-based Travis infrastructure.
sudo: false
branches:
only:
- master
before_install:
# GUI for real browsers.
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- 'npm install -g npm@3'
script:
- npm --version
-... | language: node_js
node_js:
- "0.10"
- "0.12"
- "4.2"
- "5.0"
# Use container-based Travis infrastructure.
sudo: false
branches:
only:
- master
addons:
firefox: "latest"
before_install:
# GUI for real browsers.
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- 'npm install -g npm@3'
... |
Revert "Run "git submodule update". | language: ruby
rvm:
- 1.9.3
before_install:
- git submodule update --init --recursive
- sudo apt-get update -qq
- sudo apt-get install python-software-properties python g++ make
- echo 'yes' | sudo add-apt-repository ppa:chris-lea/node.js
- sudo apt-get update -qq
- sudo apt-get install nodejs sqlite3
... | language: ruby
rvm:
- 1.9.3
before_install:
- sudo apt-get update -qq
- sudo apt-get install python-software-properties python g++ make
- echo 'yes' | sudo add-apt-repository ppa:chris-lea/node.js
- sudo apt-get update -qq
- sudo apt-get install nodejs sqlite3
- sudo apt-get install libicu-dev build-esse... |
Test Python 3.7 on Travis | sudo: false
language: python
cache: pip
python:
- 2.7
- 3.6
cache:
- pip
install:
- pip install -r requirements.txt
script:
- make test
after_success:
- coveralls
| sudo: false
language: python
cache: pip
python:
- 2.7
- 3.6
- 3.7-dev
cache:
- pip
install:
- pip install -r requirements.txt
script:
- make test
after_success:
- coveralls
|
Remove 3.3 and test 3.6. | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install: "pip install -r requirements-travis.txt"
script: nosetests
| language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install: "pip install -r requirements-travis.txt"
script: nosetests
|
Install Pillow in Travis env. | language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=django==1.4.3
- DJANGO=https://github.com/django/django/archive/stable/1.5.x.zip
install:
- "pip install $DJANGO --use-mirrors"
- "pip install -r requirements.txt --use-mirrors"
- "touch bluebottle/settings/local.py"
- "touch bluebottle/settings/... | language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=django==1.4.3
- DJANGO=https://github.com/django/django/archive/stable/1.5.x.zip
install:
- "pip install $DJANGO --use-mirrors"
- "pip install -r requirements.txt --use-mirrors"
- "pip install Pillow --use-mirrors"
- "touch bluebottle/settings/lo... |
Disable auto installation of dependencies | sudo: required
services:
- docker
language: go
go:
- "1.8"
script:
- ./docker-build-all.sh
| sudo: required
services:
- docker
language: go
go:
- "1.8"
install:
# do nothing
script:
- ./docker-build-all.sh
|
Add `BEAKER_debug=true` to acceptance tests | ---
bundler_args: '--without system_tests'
cache: 'bundler'
language: 'ruby'
script: 'bundle exec rake spec'
env:
- PUPPET_GEM_VERSION='~> 4.9.0'
- PUPPET_GEM_VERSION='~> 4.10.0'
rvm:
- 2.1
- 2.2
- 2.3.4
- 2.4.1
matrix:
fast_finish: true
include:
- env: ''
rvm: 2.4.1
script: 'bundle ex... | ---
bundler_args: '--without system_tests'
cache: 'bundler'
language: 'ruby'
script: 'bundle exec rake spec'
env:
- PUPPET_GEM_VERSION='~> 4.9.0'
- PUPPET_GEM_VERSION='~> 4.10.0'
rvm:
- 2.1
- 2.2
- 2.3.4
- 2.4.1
matrix:
fast_finish: true
include:
- env: ''
rvm: 2.4.1
script: 'bundle ex... |
Remove pod install step for build | osx_image: xcode7.3
language: objective-c
before_install:
- pod install
script:
- xctool -project PurchaseHelper.xcodeproj -scheme PurchaseHelper -sdk iphonesimulator clean build test
| osx_image: xcode7.3
language: objective-c
script:
- xctool -project PurchaseHelper.xcodeproj -scheme PurchaseHelper -sdk iphonesimulator clean build test
|
Remove no longer supported node version | addons:
browserstack:
username: ${BROWSERSTACK_USERNAME}
access_key: ${BROWSERSTACK_ACCESS_KEY}
forcelocal: true
language: node_js
node_js:
- '8'
- '10'
- '12'
cache:
directories:
- node_modules
stages:
- test
- name: browserstack
if: fork IS false
jobs:
include:
- stage: browser... | addons:
browserstack:
username: ${BROWSERSTACK_USERNAME}
access_key: ${BROWSERSTACK_ACCESS_KEY}
forcelocal: true
language: node_js
node_js:
- '10'
- '12'
cache:
directories:
- node_modules
stages:
- test
- name: browserstack
if: fork IS false
jobs:
include:
- stage: browserstack
... |
Use node 4.3 with Travis | sudo: false
language: node_js
node_js:
- "0.12"
# Send coverage data to Coveralls
after_success: "cat ./test_reports/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
| sudo: false
language: node_js
node_js:
- "4.3"
# Send coverage data to Coveralls
after_success: "cat ./test_reports/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
|
Test separate to resolve hang | language: python
python:
- "3.6"
cache: pip
email:
- seanc@seancotech.com
install:
- curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
- source /etc/lsb-release
- echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxd... | language: python
python:
- "3.6"
cache: pip
email:
- seanc@seancotech.com
install:
- curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
- source /etc/lsb-release
- echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxd... |
Disable prefer-lowest build until fixed | language: php
sudo: false
matrix:
include:
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.0
env: COMPOSER_FLAGS="--prefer-lowest"
- php: hhvm-3.9
dist: trusty
before_script:
- curl --version
- composer self-update
- composer update --no-interaction --n... | language: php
sudo: false
matrix:
include:
- php: 5.6
- php: 7.0
- php: 7.1
# - php: 7.0
# env: COMPOSER_FLAGS="--prefer-lowest"
- php: hhvm-3.9
dist: trusty
before_script:
- curl --version
- composer self-update
- composer update --no-interaction -... |
Test with latest Node.js 5 on Travis CI. | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
Remove auto-deploy as this is handled by Jenkins now. | language: node_js
sudo: false
node_js:
- '0.10'
- '0.12'
deploy:
provider: npm
email: npmjs@appcelerator.com
api_key:
secure: JiXCmFOCnhQ/XxIty077stQRNDzBnK68oJrTO5DvJxL+ztwLQLP///0sUiJbQL0y++dC+G2GbyhQi/mGj0p2cN3bWgNb+0RL6YBxaF+HBaw1COBBvBlEwF5fFpDXWpVVf5p3dT/+KHM5gQhnFFOZeaObH5AIDkR0Y56ayHLhO08=
on:
t... | language: node_js
sudo: false
node_js:
- '0.10'
- '0.12'
|
Add Node.js version 8.* to Travis CI builds. | language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
- iojs
script: "npm run-script test-cover"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls"
sudo: false
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
- "8"
- iojs
script: "npm run-script test-cover"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls"
sudo: false
|
Remove token for Travis because repo is public. | language: go
# Versions of go that are explicitly supported.
go:
- 1.4.3
- 1.5.4
- 1.6.3
- 1.7.1
- tip
# Required for coverage.
before_install:
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
script:
- go build -a -v ./...
- diff <(gofmt -d .) <("")
- go test -v -covermode=count ... | language: go
# Versions of go that are explicitly supported.
go:
- 1.4.3
- 1.5.4
- 1.6.3
- 1.7.1
- tip
# Required for coverage.
before_install:
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
script:
- go build -a -v ./...
- diff <(gofmt -d .) <("")
- go test -v -covermode=count ... |
Add GCC 4.8 in Travis VM | language: node_js
node_js:
- "4"
cache:
bundler: true
directories:
- travis-phantomjs
- node_modules
before_install:
- "if [ $(phantomjs --version) != '2.1.1' ]; then rm -rf $PWD/travis-phantomjs; mkdir -p $PWD/travis-phantomjs; fi"
- "if [ $(phantomjs --version) != '2.1.1' ]; then wget https://git... | language: node_js
node_js:
- "4"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
cache:
bundler: true
directories:
- travis-phantomjs
- node_modules
before_install:
- "if [ $(phantomjs --version) != '2.1.1' ]; then rm -rf $PWD/travis-pha... |
Enable linting and caching in Travis | language: node_js
node_js:
- "5"
- "4"
- "0.12"
- "0.10"
| language: node_js
node_js:
- "5"
- "4"
- "0.12"
- "0.10"
matrix:
env:
global:
- CI_TEST=no-lint
include:
- node_js: "5"
script: npm run lint
env:
- CI_TEST=lint-only
cache:
directories:
- node_modules
|
Test on recent Ruby releases | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: ruby-head
notifications:
irc: "irc.freenode.org#adhearsion"
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: ruby-head
notifications:
irc: "irc.freenode.org#adhearsion"
|
Remove directory from pod repo update | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode8.0
podfile: Example/Podfile
xcode_workspace: Example/SMWRealm.xcworkspace/
xcode_scheme: SMWRealm-Example
xcode_sdk: iphonesimulator10.0
podfile: Example/Podfile
bef... | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode8.0
podfile: Example/Podfile
xcode_workspace: Example/SMWRealm.xcworkspace/
xcode_scheme: SMWRealm-Example
xcode_sdk: iphonesimulator10.0
podfile: Example/Podfile
bef... |
Remove HHVM from the Travis-CI matrix, do not add modern PHP versions to 2.x | language: php
php:
- 7.1
- 7.2
- hhvm
before_script:
- composer install
script:
- vendor/bin/phpunit --verbose --coverage-text --coverage-clover=clover.xml --colors
after_script:
- sh .travis.coverage.sh
matrix:
allow_failures:
- php: hhvm
| language: php
php:
- 7.1
- 7.2
- 7.3
before_script:
- composer install
script:
- vendor/bin/phpunit --verbose --coverage-text --coverage-clover=clover.xml --colors
after_script:
- sh .travis.coverage.sh
|
Add supported version of Sylpheed | language: c
compiler:
- gcc
- clang
notifications:
recipients:
- kenhys@gmail.com
branches:
only:
- master
- develop
before_script:
- curl --location https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh
- git submodule update --init --recursive
- ./autogen.sh
... | language: c
compiler:
- gcc
- clang
notifications:
recipients:
- kenhys@gmail.com
branches:
only:
- master
- develop
env:
- SYLPHEED_STAGE=master
- SYLPHEED_STAGE=3.5
- SYLPHEED_STAGE=3.4
before_script:
- curl --location https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup... |
Fix for postgres on Travis. | language: ruby
rvm:
- 1.9.3
notifications:
recipients:
- jari.bakken@gmail.com
irc: "irc.freenode.net#holderdeord"
script: "RAILS_ENV=test bundle exec rake travis"
before_script:
- "sh -e /etc/init.d/xvfb start"
- "npm install -g buster autolint"
env:
- DISPLAY=:99.0 COVERAGE_THRESHOLD=60
| language: ruby
rvm:
- 1.9.3
notifications:
recipients:
- jari.bakken@gmail.com
irc: "irc.freenode.net#holderdeord"
script: "RAILS_ENV=test bundle exec rake travis"
before_script:
- psql -c 'create database hdo_test;' -U postgres
- "ruby -ryaml -e 'c = YAML.load_file(%{config/database.yml}); c[%{test}][%{u... |
Remove Node 4 build target | language: node_js
node_js:
- "4"
- "6"
- "7"
- "8"
- "9"
- "10"
install:
- yarn install
- yarn run compile
script:
- yarn run lint
- yarn run test
jobs:
include:
- stage: after_success
script: yarn run coveralls
node_js: 9
| language: node_js
node_js:
- "6"
- "7"
- "8"
- "9"
- "10"
install:
- yarn install
- yarn run compile
script:
- yarn run lint
- yarn run test
jobs:
include:
- stage: after_success
script: yarn run coveralls
node_js: 9
|
Add 0.10 and 0.11 to CI run. | language: node_js
node_js:
- 0.8
before_install: "npm install -g bob"
script: "bob build"
| language: node_js
node_js:
- "0.11"
- "0.10"
- 0.8
before_install: "npm install -g bob"
script: "bob build"
|
Bring Travis up to date with Makefile improvements | # Make sure we run in the docker container
sudo: false
language: c
dist: trusty
addons:
apt:
packages:
# Libraries needed to build cross compiler
- libgmp-dev
- libmpfr-dev
- python-virtualenv
- libclang1-3.4
- clang
- yasm
... | # Make sure we run in the docker container
sudo: false
language: c
dist: trusty
addons:
apt:
packages:
# Libraries needed to build cross compiler
- libgmp-dev
- libmpfr-dev
- python-virtualenv
- libclang1-3.4
- clang
- yasm
... |
Fix incorrect xcode_project and xcode_scheme in Travis config | language: objective-c
xcode_project: ProgressView.xcworkspace
xcode_scheme: ProgressViewTests
before_install:
- gem install cocoapods
- cd Example\ Project | language: objective-c
xcode_project: PWProgressView.xcworkspace
xcode_scheme: PWProgressViewTests
before_install:
- gem install cocoapods
- cd Example\ Project |
Revert "Disable CI on JRuby for now. amqp & amq-client CI is still run against JRuby, so" | # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
bundler_args: --without development
script: "bundle exec rspec spec"
rvm:
- 1.8.7
- 1.8.7-p249
- 1.9.2
- rbx-2.0
- ree
- ruby-head
notifications:
recipients:
- jakub@rabbitmq.com
- michaelklishin@me.com
- markizko@gmail.com
| # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
bundler_args: --without development
script: "bundle exec rspec spec"
rvm:
- 1.8.7
- 1.8.7-p249
- 1.9.2
- jruby
- rbx-2.0
- ree
- ruby-head
notifications:
recipients:
- jakub@rabbitmq.com
- michaelklishin@me.com
- markizko@gmai... |
Test only on PHP 7.2+ | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
services: postgresql
before_script:
- psql -c 'create database pgwrapper_test' -U postgres -h 127.0.0.1
- cp tests/config.php.travis tests/config.php
install: composer install
script: vendor/bin/phpunit --configuration tests/phpunit.xml
| language: php
php:
- 7.2
- 7.3
- 7.4snapshot
matrix:
fast_finish: true
allow_failures:
- php: 7.4snapshot
services: postgresql
before_script:
- psql -c 'create database pgwrapper_test' -U postgres -h 127.0.0.1
- cp tests/config.php.travis tests/config.php
install: composer install
script: vendor/bin... |
Adjust .trayis.yml to test on trunk and 5.1 only | language: smalltalk
sudo: false
# Select operating system(s)
os:
- linux
- osx
# Select compatible Smalltalk image(s)
smalltalk:
- Squeak-trunk
- Squeak-5.0
- Squeak-4.6
- Squeak-4.5
| language: smalltalk
sudo: false
# Select operating system(s)
os:
- linux
- osx
# Select compatible Smalltalk image(s)
smalltalk:
- Squeak-trunk
- Squeak-5.1
|
Fix JRuby versions tested on Travis. | language: ruby
cache: bundler
rvm:
- 2.0.0
- 2.1.0
- 2.1.1
- rbx-2
- ruby-head
matrix:
include:
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: tr... | language: ruby
cache: bundler
rvm:
- 2.0.0
- 2.1.0
- rbx-2
- ruby-head
matrix:
include:
- rvm: jruby
env: JRUBY_OPTS="--2.0 --debug"
- rvm: jruby-head
env: JRUBY_OPTS="--2.1 --debug"
- rvm: jruby-head
env: JRUBY_OPTS="--debug"
allow_failures:
- rvm: ruby-head
- rvm: jru... |
Add PHP 5.5 to Travis | language: php
php:
- 5.2
- 5.3
- 5.4
- hhvm
script: phpunit tests
| language: php
php:
- 5.2
- 5.3
- 5.4
- 5.5
- hhvm
script: phpunit tests
|
Test against multiple versions of dependencies | language: python
python:
- "2.7"
- "3.4"
- "3.5"
before_script:
- pip install codecov
# command to install dependencies
install:
- pip install --upgrade pip
- pip install requests
- pip install nose-parameterized
- pip install -r requirements.txt
# command to run tests
script: nosetests --with-cove... | language: python
python:
- "2.7"
- "3.4"
- "3.5"
env:
- PANDAS_VERSION=0.17.1
- PANDAS_VERSION=0.18.1
- PANDAS_VERSION=0.19.1
before_script:
- pip install codecov
- pip install nose-parameterized
# command to install dependencies
install:
- pip install --upgrade pip
- pip install requests
- pip... |
Drop unused Travis CI option | language: ruby
script: bundle exec rake
sudo: false
rvm:
- "2.2"
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- ruby-head
- jruby-19mode
matrix:
allow_failures:
- rvm: ruby-head
| language: ruby
script: bundle exec rake
rvm:
- "2.2"
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- ruby-head
- jruby-19mode
matrix:
allow_failures:
- rvm: ruby-head
|
Install mysqlclient so Django can access MySQL database. | language: python
python:
- "2.7"
- "3.4"
install:
- pip install -r requirements.txt
- pip install coveralls
env:
- DB=sqlite
- DB=mysql
- DB=postgres
addons:
postgresql: "9.4"
script:
- coverage run --source=hc manage.py test
after_success: coveralls
| language: python
python:
- "2.7"
- "3.4"
install:
- pip install -r requirements.txt
- pip install coveralls mysqlclient
env:
- DB=sqlite
- DB=mysql
- DB=postgres
addons:
postgresql: "9.4"
script:
- coverage run --source=hc manage.py test
after_success: coveralls
|
Add mesos to test VM | language: java
env:
- TEST_DIR=scheduler TOOL=lein
- TEST_DIR=jobclient TOOL=mvn
script: cd $TEST_DIR && $TOOL test
| language: java
before_install:
- sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF
- echo "deb http://repos.mesosphere.io/ubuntu/ precise varnish-3.0" | sudo tee /etc/apt/sources.list.d/mesosphere.list
- sudo apt-get update -qq
- sudo apt-get install mesos
sudo: required
env:
global:
- MES... |
Make a test run with just nosetests -v -a '!slow' | sudo: false
# We are using our own python
language: c
addons:
apt:
packages:
- wget
before_install:
- wget http://ftp.openquake.org/travis/openquake-env-setup-py3-precise64.run
- chmod +x openquake-env-setup-py3-precise64.run
env:
LD_LIBRARY_PATH=$HOME/openquake/lib
PATH=$HOME/openquake/bin:$P... | sudo: false
# We are using our own python
language: c
addons:
apt:
packages:
- wget
before_install:
- wget http://ftp.openquake.org/travis/openquake-env-setup-py3-precise64.run
- chmod +x openquake-env-setup-py3-precise64.run
env:
LD_LIBRARY_PATH=$HOME/openquake/lib
PATH=$HOME/openquake/bin:$P... |
Make it work with example sketches that have multiple files | language: python
cache:
directories:
- "~/.platformio"
install:
- pip install -U platformio
env:
- BOARD=leonardo
- BOARD=micro
- BOARD=megaatmega2560
- BOARD=due
- BOARD=uno
- BOARD=yun
script:
- for e in $(find examples -name \*.ino); do
platformio ci --board=$BOARD --lib=. $e;
done
| language: python
cache:
directories:
- "~/.platformio"
install:
- pip install -U platformio
env:
- BOARD=leonardo
- BOARD=micro
- BOARD=megaatmega2560
- BOARD=due
- BOARD=uno
- BOARD=yun
script:
- for e in examples/*; do
platformio ci --board=$BOARD --lib=. $e/*;
done
|
Make Travis available for all branches | language: java
jdk:
- oraclejdk8
before_script: "[[ $TRAVIS_PULL_REQUEST == \"false\" ]] && ./make_credentials.py"
script:
- find $HOME/.m2 -name "_remote.repositories" | xargs rm
- find $HOME/.m2 -name "resolver-status.properties" | xargs rm -f
# If building master, Publish to Sonatype
after_success: "[[ $TR... | language: java
jdk:
- oraclejdk8
before_script: |
if ([ $TRAVIS_PULL_REQUEST = "false" ] && [ $TRAVIS_BRANCH = "master" ]); then
./make_credentials.py
fi
script:
- find $HOME/.m2 -name "_remote.repositories" | xargs rm
- find $HOME/.m2 -name "resolver-status.properties" | xargs rm -f
# If building ma... |
Add in and out scripts to Travis build | language: go
go:
- 1.6
- 1.7
- tip
install: go get github.com/onsi/ginkgo/ginkgo
script:
- ginkgo -v calendar/
- go build cmd/check/main.go
| language: go
go:
- 1.6
- 1.7
- tip
install: go get github.com/onsi/ginkgo/ginkgo
script:
- ginkgo -v calendar/
- go build cmd/check/main.go
- go build cmd/in/main.go
- go build cmd/out/main.go
|
Add hhvm-nightly as a testing environment on Travis CI. | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
branches:
except:
- v0.5
- v0.6
- php5.2_backport
- documentation
services: redis-server
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit -c phpunit.xml.travisc... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
branches:
except:
- v0.5
- v0.6
- php5.2_backport
- documentation
services: redis-server
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit -c ph... |
Update Travis CI config to use the latest Ruby patch version of each Ruby minor version. | language: ruby
cache: bundler
rvm:
- ruby-head
- 2.2.1
- 2.1.5
- 2.0.0
- 1.9.3
- jruby-head
- jruby-9
- jruby-19mode
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
addons:
code_climate:
repo_token: 97a54878f464b101386de95de0863407520593d817bbaa8e6f851cdb70d30e97 | language: ruby
cache: bundler
rvm:
- ruby-head
- 2.2.2
- 2.1.6
- 2.0.0
- 1.9.3
- jruby-head
- jruby-9
- jruby-19mode
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
addons:
code_climate:
repo_token: 97a54878f464b101386de95de0863407520593d817bbaa8e6f851cdb70d30e97 |
Disable Coveralls integration due to another downtime on their end | notifications:
email: false
language: java
jdk: openjdk7
cache:
directories:
- $HOME/.m2
script:
- mvn -DTRAVIS_JOB_ID=$TRAVIS_JOB_ID test jacoco:report coveralls:report
- mvn clean compile assembly:single
- ./src/test/scripts/console/output/verify_3_0_0.sh
- ./src/test/scripts/console/output/verify_1_1_1.sh
... | notifications:
email: false
language: java
jdk: openjdk7
cache:
directories:
- $HOME/.m2
script:
# - mvn -DTRAVIS_JOB_ID=$TRAVIS_JOB_ID test jacoco:report coveralls:report
- mvn test
- mvn clean compile assembly:single
- ./src/test/scripts/console/output/verify_3_0_0.sh
- ./src/test/scripts/console/output/ver... |
Add prospector into Travis builds | language: python
python:
- "3.5"
- "3.6"
notifications:
email: false
install:
- pip3 install -r requirements.txt
- pip3 install coveralls
cache:
directories:
- $HOME/.cache/pip
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log
script:
- python3 -m pytest tests --cov meetup_facebook_bot
after_su... | language: python
python:
- "3.5"
- "3.6"
notifications:
email: false
install:
- pip3 install -r requirements.txt
- pip3 install coveralls
- pip3 install prospector
cache:
directories:
- $HOME/.cache/pip
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log
script:
- python3 -m pytest tests --cov ... |
Test in node 0.11 too | language: node_js
node_js:
- "0.10"
- "0.8"
- "0.6"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] && npm conf set strict-ssl false || true'
| language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] && npm conf set strict-ssl false || true'
|
Build with Go version 1.3 only | language: go
go:
- 1.3
- release
# - tip
script:
- go test -v ./...
| language: go
go:
- 1.3
# - release
# - tip
script:
- go test -v ./...
|
Include cmake to resolve heroku build fail | language: ruby
cache: bundler
sudo: required
dist: trusty
rvm:
- 2.4.1
services: mongodb
addons:
apt:
sources:
- ubuntu-sdk-team
packages:
- libqt5webkit5-dev
- qtdeclarative5-dev
script: xvfb-run bundle exec rake
env:
global:
- METRICS_API_USERNAME="username"
- METRICS_API_PASSW... | language: ruby
cache: bundler
sudo: required
dist: trusty
rvm:
- 2.4.1
services: mongodb
addons:
apt:
sources:
- ubuntu-sdk-team
packages:
- libqt5webkit5-dev
- qtdeclarative5-dev
- cmake
script: xvfb-run bundle exec rake
env:
global:
- METRICS_API_USERNAME="username"
- MET... |
Fix link to deploy script | sudo: false
language: java
jdk:
- oraclejdk8
- oraclejdk9
- oraclejdk10
jobs:
include:
- stage: deploy
jdk: oraclejdk8
script:
- "./scripts/travis_deploy.sh"
script: make default
env:
global:
- secure: agxFqlp+zYAqPnNlc43+hYUIuMkruj2yyawD3K+5ObhgXQWHeFbGL2SWrir0sx/ZBEwa8FnSXz80Gox1wEmUKvjzlPiIkyvThm... | sudo: false
language: java
jdk:
- oraclejdk8
- oraclejdk9
- oraclejdk10
jobs:
include:
- stage: deploy
jdk: oraclejdk8
script:
- "./scripts/mvn_deploy.sh"
script: make default
env:
global:
- secure: agxFqlp+zYAqPnNlc43+hYUIuMkruj2yyawD3K+5ObhgXQWHeFbGL2SWrir0sx/ZBEwa8FnSXz80Gox1wEmUKvjzlPiIkyvThmsDv... |
Update Travis CI configuration file | language: go
go:
- 1.2.2
- 1.3
install:
- go get code.google.com/p/go.tools/cmd/vet
- go get -t -v ./...
- export GOBIN=~/bin
- export PATH=$GOBIN:$PATH
- go install github.com/rjeczalik/ungocheck/cmd/ungocheck
script:
- go tool vet -all .
- go build ./...
- go test -race -v ./...
- ungocheck -race -v ./.... | language: go
go:
- 1.3.1
- tip
matrix:
fast_finish: true
env:
global:
- PATH=$HOME/gopath/bin:$PATH
install:
- go get code.google.com/p/go.tools/cmd/vet
- go get -t -v ./...
- go install github.com/rjeczalik/ungocheck/cmd/ungocheck
script:
- go tool vet -all .
- go build ./...
- go test -race -v ./... |
Use node-gyp and node-pre-gyp versions that phantom wants | language: node_js
node_js:
- "node"
before_install:
- npm -g install node-gyp node-pre-gyp
before_deploy:
- npm run-script predeploy
- LAST_COMMIT=$(git log -1 --pretty=format:'%h <%an> - %s')
- echo "Deploying changes from $LAST_COMMIT"
- node_modules/gh-pages/bin/gh-pages -d dist/ -m "Updates from $LAST... | language: node_js
node_js:
- "node"
before_install:
- npm -g install node-gyp@3.4.0 node-pre-gyp@0.6.32
before_deploy:
- npm run-script predeploy
- LAST_COMMIT=$(git log -1 --pretty=format:'%h <%an> - %s')
- echo "Deploying changes from $LAST_COMMIT"
- node_modules/gh-pages/bin/gh-pages -d dist/ -m "Updat... |
Fix Travis CI build for forks | language: go
go:
- 1.2.2
- 1.3
- tip
env:
- GOARCH=amd64
before_install:
- sudo apt-get update -qq > apt-get.out 2>&1 || (cat apt-get.out && exit 1)
- sudo apt-get install bzr mercurial git -qq > apt-get.out 2>&1 || (cat apt-get.out && exit 1)
install:
- export PATH="$HOME/gopath/bin:$PATH"
- make get
... | language: go
go:
- 1.2.2
- 1.3
- tip
env:
- GOARCH=amd64
before_install:
- sudo apt-get update -qq > apt-get.out 2>&1 || (cat apt-get.out && exit 1)
- sudo apt-get install bzr mercurial git -qq > apt-get.out 2>&1 || (cat apt-get.out && exit 1)
install:
- export PATH="$HOME/gopath/bin:$PATH"
- make get
... |
Update Travis to use containers | language: ruby
rvm:
- 2.1
script: bundle exec rake
before_install:
- gem update --system
services:
- redis-server
| language: ruby
rvm:
- 2.1
services:
- redis-server
sudo: false
cache: bundler
|
Update CI build system credentials | language: java
sudo: false
notifications:
hipchat:
rooms:
secure: OlIO4DA0xfqdHqS2ytSfDucjIoncHBgLDFjDi1u+qsLOPBeYpYuNJOZkW531yKPFS/na8BjS5WzjrdZW1Wa2I41X2KdNEqOBPxCNsDlvRzEsMUXGCekTEkIaVKgyD8LsAqku+I0CFRsYCQCxRz6yufEenDf7VwdhbM/345mopkI=
deploy:
provider: releases
api_key:
secure: aoVXZyLOBmB4Q2lLK... | language: java
sudo: false
notifications:
hipchat:
rooms:
secure: OlIO4DA0xfqdHqS2ytSfDucjIoncHBgLDFjDi1u+qsLOPBeYpYuNJOZkW531yKPFS/na8BjS5WzjrdZW1Wa2I41X2KdNEqOBPxCNsDlvRzEsMUXGCekTEkIaVKgyD8LsAqku+I0CFRsYCQCxRz6yufEenDf7VwdhbM/345mopkI=
deploy:
provider: releases
api_key:
secure: dOR1qtgrZag95Ah3w... |
Bump Go version to 1.8.0. | language: go
go:
- 1.6.2
sudo: false
install:
- go get -d -v ./...
- go get github.com/mattn/goveralls
script:
- GOOS=darwin go build
- GOOS=windows go build
- GOOS=linux go build
- $HOME/gopath/bin/goveralls -service=travis-ci | language: go
go:
- 1.8
sudo: false
install:
- go get -d -v ./...
- go get github.com/mattn/goveralls
script:
- GOOS=darwin go build
- GOOS=windows go build
- GOOS=linux go build
- $HOME/gopath/bin/goveralls -service=travis-ci |
Fix NPM script execution of integration testing via Travis | language: node_js
node_js:
- "5.1"
sudo: required
services:
- docker
script:
- npm test
- npm test:integration
| language: node_js
node_js:
- "5.1"
sudo: required
services:
- docker
script:
- npm test
- npm run test:integration
|
Remove service arg for goveralls | language: go
go:
- 1.2.2
- 1.3.3
- 1.4.2
- 1.5.1
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
install:
- go get github.com/stretchr/testify/assert
- go get github.com/edsrzf/mmap-go
script:
- $HOME/gopath/bin/goveral... | language: go
go:
- 1.2.2
- 1.3.3
- 1.4.2
- 1.5.1
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
install:
- go get github.com/stretchr/testify/assert
- go get github.com/edsrzf/mmap-go
script:
- $HOME/gopath/bin/goveral... |
Update Ruby version used on Travis | ---
language: ruby
rvm:
- 2.0.0
script:
- bundle exec rspec --no-drb --format progress | ---
language: ruby
rvm:
- 2.1.2
script:
- bundle exec rspec --no-drb --format progress |
Disable compress_html for development environment | # Site settings
language: ""
title: "Site Title"
description: "Site description"
google-verification: ""
# Handling Reading
include:
- ".htaccess"
- "_pages"
exclude:
- "/assets/"
- "bower.json"
- "composer.json"
- "composer.lock"
- "DOC.md"
- "Gemfile"
-... | # Site settings
language: ""
title: "Site Title"
description: "Site description"
google-verification: ""
# Handling Reading
include:
- ".htaccess"
- "_pages"
exclude:
- "/assets/"
- "bower.json"
- "composer.json"
- "composer.lock"
- "DOC.md"
- "Gemfile"
-... |
Correct url. (http > https) | language: "en-us"
name: "Euro Team Outreach"
url: "http://euroteamoutreach.org"
human_url: "euroteamoutreach.org"
title: "Euro Team Outreach - Missionaries serving Christ in Ukraine"
description: >
Euro Team Outreach is a Christian organization dedicated to the
advancement of the Gospel of Jesus Christ. We believe ... | language: "en-us"
name: "Euro Team Outreach"
url: "https://euroteamoutreach.org"
human_url: "euroteamoutreach.org"
title: "Euro Team Outreach - Missionaries serving Christ in Ukraine"
description: >
Euro Team Outreach is a Christian organization dedicated to the
advancement of the Gospel of Jesus Christ. We believe... |
Add gnu-wget as runtime dependency | about:
home: http://ccb.jhu.edu/software/stringtie/
license: Artistic License 2.0
summary: Transcriptome assembly and quantification for RNA-seq
build:
number: 1
package:
name: stringtie
version: 1.3.3
requirements:
build:
- gcc # [linux]
- llvm # [osx]
- zlib
run:
- libgcc # [l... | about:
home: http://ccb.jhu.edu/software/stringtie/
license: Artistic License 2.0
summary: Transcriptome assembly and quantification for RNA-seq
build:
number: 1
package:
name: stringtie
version: 1.3.3
requirements:
build:
- gcc # [linux]
- llvm # [osx]
- zlib
- gnu-wget
run:
-... |
Add /usr/local/bin to path as openshift binaries are installed there now | ---
- name: Setup installation pre-requisites
include: prereqs.yml
- name: Run main OpenShift Ansible installation playbook
include: install.yml
- name: Post installation bespoking
include: postinstall.yml
| ---
- block:
- name: Setup installation pre-requisites
include: prereqs.yml
- name: Run main OpenShift Ansible installation playbook
include: install.yml
- name: Post installation bespoking
include: postinstall.yml
environment:
PATH: "{{ ansible_env.PATH }}:/usr/local/bin/"
|
Revert "Updating release command so that central profile is added last" | releaser.maven.build-command: ./scripts/integration-tests.sh
releaser.maven.deploy-command: ./mvnw dockerfile:push -pl :spring-cloud-kubernetes-configuration-watcher -Pdockerpush && ./mvnw deploy -DskipTests -B -Pfast,deploy {{systemProps}}
| releaser.maven.build-command: ./scripts/integration-tests.sh
releaser.maven.deploy-command: ./mvnw deploy -DskipTests -B -Pfast,deploy {{systemProps}} && ./mvnw dockerfile:push -pl :spring-cloud-kubernetes-configuration-watcher -Pdockerpush
|
Fix 404 for github url | defaults: &defaults
# Strano's public SSH key with which it will attempt to clone Github repos via.
public_ssh_key: MYPUBLICKEY
# Strano's Github application client ID. See https://github.com/account/applications
github_key: github-application-client-id
# Strano's Github application secret. See https://git... | defaults: &defaults
# Strano's public SSH key with which it will attempt to clone Github repos via.
public_ssh_key: MYPUBLICKEY
# Strano's Github application client ID. See https://github.com/settings/applications
github_key: github-application-client-id
# Strano's Github application secret. See https://gi... |
Change dependencies to see if docker will build | package:
name: perses-dev
version: !!str 0.0.0
source:
path: ../../
build:
preserve_egg_dir: True
number: 0
requirements:
build:
- python
- setuptools
- numpy
- scipy
- numexpr
- autograd
- pymbar
- cuda92
- openmm >=7.3.0
- parmed
- openmoltools
- alchemy ... | package:
name: perses-dev
version: !!str 0.0.0
source:
path: ../../
build:
preserve_egg_dir: True
number: 0
requirements:
build:
- python
- setuptools
- numpy
- scipy
- numexpr
- autograd
- pymbar
- cuda92
- openmm >=7.3.0
- parmed
- openmoltools
- openmmto... |
Use venv on py3 and preinstalled virtualenv on py2 | version: 2
workflows:
version: 2
test:
jobs:
- test-3.6
- test-3.5
- test-2.7
jobs:
test-3.6: &test-template
docker:
- image: circleci/python:3.6
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum... | version: 2
workflows:
version: 2
test:
jobs:
- test-3.6
- test-3.5
- test-2.7
jobs:
test-3.6: &test-template
docker:
- image: circleci/python:3.6
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum... |
Update path and predo command | version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:8.9.1
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circ... | version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:8.9.1
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circ... |
Update from Hackage at 2016-10-21T13:39:11Z | homepage: http://github.com/lyokha/nginx-haskell-module
changelog-type: ''
hash: bf0555c18a20a35d43c8fa0545beea0735dbdaf3cdbc8c64ee4c1b7a1c49ee5d
test-bench-deps: {}
maintainer: Alexey Radkov <alexey.radkov@gmail.com>
synopsis: Helper module for Nginx haskell module
changelog: ''
basic-deps:
bytestring: ! '>=0.10.0.0... | homepage: http://github.com/lyokha/nginx-haskell-module
changelog-type: ''
hash: 8c60702c006ac7c868c46c932373c7390d1f83d6083e516db39ccb68dcee6390
test-bench-deps: {}
maintainer: Alexey Radkov <alexey.radkov@gmail.com>
synopsis: Helper module for Nginx haskell module
changelog: ''
basic-deps:
bytestring: ! '>=0.10.0.0... |
Apply suggested fix to Codecov | codecov:
max_report_age: off
notify:
require_ci_to_pass: no
coverage:
precision: 2
round: down
range: "30...100"
status:
project: yes
patch: yes
changes: no
notify:
gitter:
default:
url: https://webhooks.gitter.im/e/c70e4d2749931f601747
threshold: 1%
p... | codecov:
max_report_age: off
notify:
require_ci_to_pass: no
coverage:
precision: 2
round: down
range: "30...100"
status:
project: yes
patch: yes
changes: no
notify:
gitter:
default:
url: https://webhooks.gitter.im/e/c70e4d2749931f601747
threshold: 1%
p... |
Update from Hackage at 2020-11-25T13:55:39Z | homepage: https://github.com/plow-technologies/hspec-hashable#readme
changelog-type: ''
hash: 0c68effe2b2c3c141fd8f130682673d0649e91ad9d289496f5573c0132d26395
test-bench-deps:
base: -any
hspec: -any
hspec-hashable: -any
hspec-core: -any
silently: -any
hashable: -any
QuickCheck: -any
maintainer: mchaver@gm... | homepage: https://github.com/plow-technologies/hspec-hashable#readme
changelog-type: ''
hash: c09d56ed3dccc805df80667653c101932f138b3df1d6b0aca2cbfd04a339dbbe
test-bench-deps:
base: -any
hspec: -any
hspec-hashable: -any
hspec-core: -any
silently: -any
hashable: -any
QuickCheck: -any
maintainer: mchaver@gm... |
Use Alpine base box for deployment. | dev:
# The container definition we want to use for developing our app
box: golang:1.7.3
steps:
- internal/watch:
code: |
CGO_ENABLED=0 go build -o cloud-native-go
./cloud-native-go
reload: true
build:
# The container definition we want to use for building our app
box: ... | dev:
# The container definition we want to use for developing our app
box: golang:1.7.3
steps:
- internal/watch:
code: |
CGO_ENABLED=0 go build -o cloud-native-go
./cloud-native-go
reload: true
build:
# The container definition we want to use for building our app
box: ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.