Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Use oracle JDK, add head versions of ruby and jruby | language: ruby
rvm:
- 2.1.9
- 2.2.5
- 2.3.1
- jruby-9.0.5.0
- jruby-9.1.5.0
before_install:
- sh sudo add-apt-repository ppa:fontforge/fontforge; sudo apt-get update; sudo apt-get install fontforge
| language: ruby
rvm:
- ruby-head
- 2.1.9
- 2.2.5
- 2.3.1
- jruby-head
- jruby-9.0.5.0
- jruby-9.1.5.0
jdk:
- oraclejdk8
before_install:
- sh sudo add-apt-repository ppa:fontforge/fontforge; sudo apt-get update; sudo apt-get install fontforge
|
Add PHP 7.3 build target. | language: php
php:
- '7.0'
- '7.1'
- '7.2'
install:
- composer install
script:
- mkdir -p build/logs
- vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-clover build/logs/clover.xml
- vendor/bin/phpcs --ignore=vendor --standard=coding_standard.xml .
- vendor/bin/phpstan analyze --level max src/
after_success:
- travis_retry php vendor/bin/php-coveralls -v | language: php
php:
- '7.0'
- '7.1'
- '7.2'
- '7.3'
install:
- composer install
script:
- mkdir -p build/logs
- vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-clover build/logs/clover.xml
- vendor/bin/phpcs --ignore=vendor --standard=coding_standard.xml .
- vendor/bin/phpstan analyze --level max src/
after_success:
- travis_retry php vendor/bin/php-coveralls -v |
Add `gem update bundler` to before_install | language: ruby
cache:
directories:
- bundle
rvm:
- 2.0
- 2.1.3
- 2.3.1
script:
- bundle exec rake spec | language: ruby
cache:
directories:
- bundle
rvm:
- 2.0
- 2.1.3
- 2.3.1
before_install:
- gem update bundler
script:
- bundle exec rake spec
|
Add Ruby 2.6 to the test matrix | language: ruby
services:
- mysql
rvm:
- "2.0"
- "2.1"
- "2.2"
- "2.3"
- "2.4"
- "2.5"
gemfile:
- gemfiles/activerecord_4.1.gemfile
- gemfiles/activerecord_4.2.gemfile
- gemfiles/activerecord_5.0.gemfile
- gemfiles/activerecord_5.1.gemfile
env:
- DB=mysql
- DB=sqlite
matrix:
exclude:
- rvm: "2.0"
gemfile: gemfiles/activerecord_5.0.gemfile
- rvm: "2.0"
gemfile: gemfiles/activerecord_5.1.gemfile
- rvm: "2.1"
gemfile: gemfiles/activerecord_5.0.gemfile
- rvm: "2.1"
gemfile: gemfiles/activerecord_5.1.gemfile
before_script:
- "cp spec/{.travis.,}database.yml"
- "bundle exec rake db:prepare"
script: bundle exec rake spec
sudo: false
| language: ruby
services:
- mysql
rvm:
- "2.0"
- "2.1"
- "2.2"
- "2.3"
- "2.4"
- "2.5"
- "2.6"
gemfile:
- gemfiles/activerecord_4.1.gemfile
- gemfiles/activerecord_4.2.gemfile
- gemfiles/activerecord_5.0.gemfile
- gemfiles/activerecord_5.1.gemfile
env:
- DB=mysql
- DB=sqlite
matrix:
exclude:
- rvm: "2.0"
gemfile: gemfiles/activerecord_5.0.gemfile
- rvm: "2.0"
gemfile: gemfiles/activerecord_5.1.gemfile
- rvm: "2.1"
gemfile: gemfiles/activerecord_5.0.gemfile
- rvm: "2.1"
gemfile: gemfiles/activerecord_5.1.gemfile
before_script:
- "cp spec/{.travis.,}database.yml"
- "bundle exec rake db:prepare"
script: bundle exec rake spec
sudo: false
|
Install with Pkg.clone(pwd()) instead of ln -s | language: cpp
compiler:
- clang
notifications:
email: spencer.f.russell@gmail.com
env:
- JULIAVERSION="julianightlies"
- JULIAVERSION="juliareleases"
before_install:
- sudo add-apt-repository ppa:staticfloat/julia-deps -y
- sudo add-apt-repository ppa:staticfloat/$JULIAVERSION -y
- sudo apt-get update -qq -y
- sudo apt-get install libpcre3-dev julia -y
script:
- julia -e 'Pkg.init()'
- julia -e 'Pkg.add("BinDeps"); Pkg.checkout("BinDeps")' # latest master needed for Pacman support
- julia -e 'run(`ln -s $(pwd()) $(Pkg.dir("AudioIO"))`)'
- julia -e 'Pkg.pin("AudioIO"); Pkg.resolve(); Pkg.build("AudioIO")'
- julia -e 'Pkg.test("AudioIO", coverage=true)'
after_success:
- if [ $JULIAVERSION = "juliareleases" ]; then julia -e 'cd(Pkg.dir("AudioIO")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'; fi
| language: cpp
compiler:
- clang
notifications:
email: spencer.f.russell@gmail.com
env:
- JULIAVERSION="julianightlies"
- JULIAVERSION="juliareleases"
before_install:
- sudo add-apt-repository ppa:staticfloat/julia-deps -y
- sudo add-apt-repository ppa:staticfloat/$JULIAVERSION -y
- sudo apt-get update -qq -y
- sudo apt-get install libpcre3-dev julia -y
script:
- julia -e 'Pkg.init()'
- julia -e 'Pkg.add("BinDeps"); Pkg.checkout("BinDeps")' # latest master needed for Pacman support
- julia -e 'Pkg.clone(pwd()); Pkg.build("AudioIO")'
- julia -e 'Pkg.test("AudioIO", coverage=true)'
after_success:
- if [ $JULIAVERSION = "juliareleases" ]; then julia -e 'cd(Pkg.dir("AudioIO")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'; fi
|
Add Slack to Travis config. | language: ruby
rvm:
- 2.2.4
notifications:
email: false
| language: ruby
rvm:
- 2.2.4
notifications:
email: false
slack: sixtwothree:yATLmjTW15443qR7jbCWr3RO
|
Update AWS deploy to master | language: ruby
rvm:
- 2.6.3
- ruby-head
# gemfile: "gems.rb"
addons:
postgresql: "9.6"
before_install:
- gem install bundler
before_script:
- cp config/.travis.database.yml config/database.yml
- psql -c 'create database travis_test;' -U postgres
matrix:
allow_failures:
- rvm: ruby-head
deploy:
provider: elasticbeanstalk
access_key_id: $AWS_ACCESS_KEY
secret_access_key: $AWS_SECRET_KEY
region: us-east-1
app: slice
env: slice-73-stable
bucket_name: elasticbeanstalk-us-east-1-846666392784
on:
repo: sleepepi/slice
branch: 74-0-stable
rvm: 2.6.3
| language: ruby
rvm:
- 2.6.3
- ruby-head
# gemfile: "gems.rb"
addons:
postgresql: "9.6"
before_install:
- gem install bundler
before_script:
- cp config/.travis.database.yml config/database.yml
- psql -c 'create database travis_test;' -U postgres
matrix:
allow_failures:
- rvm: ruby-head
deploy:
provider: elasticbeanstalk
access_key_id: $AWS_ACCESS_KEY
secret_access_key: $AWS_SECRET_KEY
region: us-east-1
app: slice
env: slice-73-stable
bucket_name: elasticbeanstalk-us-east-1-846666392784
on:
repo: sleepepi/slice
branch: master
rvm: 2.6.3
|
Add new slack notification token | language: node_js
node_js:
- '0.10'
script: gulp test
before_install:
- mkdir -p .npm
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
notifications:
slack:
secure: q2z7sQIuc3sqGnRoHdmbOBcsvvffK3abJRL+qd/7Kh0ET/BtN6QJqM5O2IZwttFiDjVF5+lyIU0VEHBGyGoru5ovyRl7aOW6kq2uxJqdZrZcsQqz2Uug1M0RZG/1wSG7E2MbRdO0UGoJUCWxmXxAIRdg/cD0zEgAPxBjPc4m+aQ=
| language: node_js
node_js:
- '0.10'
script: gulp test
before_install:
- mkdir -p .npm
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
notifications:
slack:
secure: CgXxNEQrQ82EatyF/wSdF0P5rXcWPL+fFZ1lb1aBb8RbVt5gwddJ6xWVD/nYSr6tIJvIYHYhoYsIDPENwezIPsesG7kWXerQhydsEcA34JKxzsStd/TmU6Moxuwy6KTN7yzmL6586nSvoAw9TNPgvRkJFkH07asjGIc9Rlaq7/Y=
|
Test on Ruby 2.7 in Travis | language: ruby
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
gemfile:
- gemfiles/rails_5.2.x.gemfile
- gemfiles/rails_6.0.x.gemfile
- gemfiles/rails_master.gemfile
before_install:
- gem install bundler
after_success:
- bundle exec codeclimate-test-reporter
matrix:
exclude:
- rvm: 2.3
gemfile: gemfiles/rails_5.2.x.gemfile
- rvm: 2.3
gemfile: gemfiles/rails_6.0.x.gemfile
- rvm: 2.3
gemfile: gemfiles/rails_master.gemfile
- rvm: 2.4
gemfile: gemfiles/rails_6.0.x.gemfile
- rvm: 2.4
gemfile: gemfiles/rails_master.gemfile
cache: bundler
| language: ruby
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
gemfile:
- gemfiles/rails_5.2.x.gemfile
- gemfiles/rails_6.0.x.gemfile
- gemfiles/rails_master.gemfile
before_install:
- gem install bundler
after_success:
- bundle exec codeclimate-test-reporter
matrix:
exclude:
- rvm: 2.3
gemfile: gemfiles/rails_5.2.x.gemfile
- rvm: 2.3
gemfile: gemfiles/rails_6.0.x.gemfile
- rvm: 2.3
gemfile: gemfiles/rails_master.gemfile
- rvm: 2.4
gemfile: gemfiles/rails_6.0.x.gemfile
- rvm: 2.4
gemfile: gemfiles/rails_master.gemfile
cache: bundler
|
Use strings for version numbers | language: node_js
node_js:
- 0.6
- 0.8
- 0.10
| language: node_js
node_js:
- "0.6"
- "0.8"
- "0.10"
|
Build and install librdkafka on linux | # Origin: https://github.com/ah-/rdkafka-dotnet
language: csharp
sudo: required
dist: trusty
os:
- osx
- linux
env:
- RUNTIME=mono
- RUNTIME=coreclr
# TODO on linux: install http://docs.confluent.io/2.0.0/installation.html#installation-apt
install:
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo apt-get install libunwind8; fi
- curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_BRANCH=dev sh && source ~/.dnx/dnvm/dnvm.sh
- dnvm upgrade
- dnvm install -r $RUNTIME 1.0.0-rc1-update1
- dnvm use -r $RUNTIME 1.0.0-rc1-update1
- dnu restore
script:
- ./build/copy-runtimes.sh
- if [ "$RUNTIME" == "coreclr" ]; then export FRAMEWORK="--framework dotnet5.4"; fi
- dnu build ./src/RdKafka/project.json $FRAMEWORK
- dnu pack ./src/RdKafka/project.json $FRAMEWORK
- dnx -p ./test/RdKafka.Tests/ test
| # Origin: https://github.com/ah-/rdkafka-dotnet
language: csharp
sudo: required
dist: trusty
os:
- osx
- linux
env:
- RUNTIME=mono
- RUNTIME=coreclr
# TODO on linux: install http://docs.confluent.io/2.0.0/installation.html#installation-apt
install:
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then git glone https://github.com/edenhill/librdkafka; fi
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then pushd librdkafka && ./configure && make && sudo make install && popd; fi
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo apt-get install libunwind8; fi
- curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_BRANCH=dev sh && source ~/.dnx/dnvm/dnvm.sh
- dnvm upgrade
- dnvm install -r $RUNTIME 1.0.0-rc1-update1
- dnvm use -r $RUNTIME 1.0.0-rc1-update1
- dnu restore
script:
- ./build/copy-runtimes.sh
- if [ "$RUNTIME" == "coreclr" ]; then export FRAMEWORK="--framework dotnet5.4"; fi
- dnu build ./src/RdKafka/project.json $FRAMEWORK
- dnu pack ./src/RdKafka/project.json $FRAMEWORK
- dnx -p ./test/RdKafka.Tests/ test
|
Make failures on the OS X builders okay until we figure the builders out. They don't even have python installed on them yet... | sudo: false
os:
- "linux"
- "osx"
language: "python"
python:
- "2.7"
- "3.4"
- "pypy"
- "pypy3"
install:
- "pip install ."
- "pip install virtualenv"
- "pip install coveralls"
script:
- "make test"
after_success: "coveralls"
| sudo: false
os:
- "linux"
- "osx"
language: "python"
python:
- "2.7"
- "3.4"
- "pypy"
- "pypy3"
install:
- "pip install ."
- "pip install virtualenv"
- "pip install coveralls"
script:
- "make test"
after_success: "if [ $TRAVIS_OS_NAME == linux ] ; then coveralls ; fi"
matrix:
allow_failures:
- os: "osx"
|
Test on Node 0.8 using Travis CI. | language: "node_js"
node_js:
- 0.4
- 0.6
| language: "node_js"
node_js:
- 0.4
- 0.6
- 0.8
|
Exclude testing against Django 1.4 with Python >= 3.3 | language: python
env:
- DJANGO_VERSION=https://github.com/django/django/archive/stable/1.4.x.zip
- DJANGO_VERSION=https://github.com/django/django/archive/stable/1.5.x.zip
- DJANGO_VERSION=https://github.com/django/django/archive/stable/1.6.x.zip
- DJANGO_VERSION=https://github.com/django/django/archive/stable/1.7.x.zip
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
matrix:
exclude:
- python: "2.6"
env: DJANGO_VERSION=https://github.com/django/django/archive/stable/1.7.x.zip
install:
- pip install $DJANGO_VERSION --use-mirrors
- pip install . --use-mirrors
script: ./forms_builder/example_project/manage.py test
| language: python
env:
- DJANGO_VERSION=https://github.com/django/django/archive/stable/1.4.x.zip
- DJANGO_VERSION=https://github.com/django/django/archive/stable/1.5.x.zip
- DJANGO_VERSION=https://github.com/django/django/archive/stable/1.6.x.zip
- DJANGO_VERSION=https://github.com/django/django/archive/stable/1.7.x.zip
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
matrix:
exclude:
- python: "2.6"
env: DJANGO_VERSION=https://github.com/django/django/archive/stable/1.7.x.zip
- python: "3.3"
env: DJANGO_VERSION=https://github.com/django/django/archive/stable/1.4.x.zip
- python: "3.4"
env: DJANGO_VERSION=https://github.com/django/django/archive/stable/1.4.x.zip
install:
- pip install $DJANGO_VERSION --use-mirrors
- pip install . --use-mirrors
script: ./forms_builder/example_project/manage.py test
|
Fix Code Climate SSL Certificate error | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit --verbose --coverage-text
- ./vendor/bin/phpcs --standard=PSR1 -p --report=full --report-checkstyle=build/logs/checkstyle.xml src/ tests/
after_script:
- ./vendor/bin/test-reporter
| language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit --verbose --coverage-text
- ./vendor/bin/phpcs --standard=PSR1 -p --report=full --report-checkstyle=build/logs/checkstyle.xml src/ tests/
after_script:
- bin/test-reporter --stdout > codeclimate.json
- curl -X POST -d @codeclimate.json -H 'Content-Type: application/json' -H 'User-Agent: Code Climate (PHP Test Reporter v0.1.1)' https://codeclimate.com/test_reports
|
Test PHP 7 on Travis | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
fast_finish: true
include:
- php: 5.5
env: COVERAGE=true
install:
- composer install
before_script:
- vendor/bin/http_test_server > /dev/null 2>&1 &
- if [[ "$COVERAGE" = true ]]; then PHPUNIT_FLAGS="--coverage-clover build/coverage.xml"; else PHPUNIT_FLAGS=""; fi
script:
- phpunit $PHPUNIT_FLAGS
after_success:
- if [[ "$COVERAGE" = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [[ "$COVERAGE" = true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml; fi
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
fast_finish: true
include:
- php: 5.5
env: COVERAGE=true
install:
- composer install
before_script:
- vendor/bin/http_test_server > /dev/null 2>&1 &
- if [[ "$COVERAGE" = true ]]; then PHPUNIT_FLAGS="--coverage-clover build/coverage.xml"; else PHPUNIT_FLAGS=""; fi
script:
- phpunit $PHPUNIT_FLAGS
after_success:
- if [[ "$COVERAGE" = true ]]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [[ "$COVERAGE" = true ]]; then php ocular.phar code-coverage:upload --format=php-clover build/coverage.xml; fi
|
Remove duplicate "dist" from Travis yaml | dist: trusty
language: java
dist: trusty
sudo: false
# see https://sormuras.github.io/blog/2018-03-20-jdk-matrix.html
matrix:
include:
# 8
- env: JDK='OpenJDK 8'
jdk: openjdk8
# 11
- env: JDK='OpenJDK 11'
# switch to JDK 11 before running tests
before_script: . $TRAVIS_BUILD_DIR/ci/install-jdk.sh -F 11 -L GPL
before_install:
# Require JDK8 for compiling
- jdk_switcher use openjdk8
- ./install-snapshots.sh
install: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
script: mvn test -Djacoco.skip=true -B -V
cache:
directories:
- $HOME/.m2
| language: java
dist: trusty
sudo: false
# see https://sormuras.github.io/blog/2018-03-20-jdk-matrix.html
matrix:
include:
# 8
- env: JDK='OpenJDK 8'
jdk: openjdk8
# 11
- env: JDK='OpenJDK 11'
# switch to JDK 11 before running tests
before_script: . $TRAVIS_BUILD_DIR/ci/install-jdk.sh -F 11 -L GPL
before_install:
# Require JDK8 for compiling
- jdk_switcher use openjdk8
- ./install-snapshots.sh
install: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
script: mvn test -Djacoco.skip=true -B -V
cache:
directories:
- $HOME/.m2
|
Revert "Fix Travis for Atom 1.19 beta" | language: generic
dist: trusty
sudo: false
notifications:
email:
on_success: never
on_failure: change
script:
- curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh
- npm run flow
after_success:
- curl -s https://raw.githubusercontent.com/lgeiger/prettier-greenkeeper/master/travis.sh | sh
env:
matrix:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
| language: generic
dist: trusty
sudo: false
notifications:
email:
on_success: never
on_failure: change
script:
- curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh
- npm run flow
after_success:
- curl -s https://raw.githubusercontent.com/lgeiger/prettier-greenkeeper/master/travis.sh | sh
env:
matrix:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
|
Remove use of the suppression file | language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get -qq update
- sudo apt-get -qq install g++-4.8
- sudo apt-get -qq install libprotobuf-dev
- sudo apt-get -qq install protobuf-compiler
- sudo apt-get -qq install libsnappy-dev
- sudo apt-get -qq install valgrind
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8"; fi
before_script:
- mkdir build
- cd build
- cmake ..
- make
script: env TZ=America/Denver valgrind --suppressions=../test/orc.suppress --error-exitcode=1 test/test-orc
| language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get -qq update
- sudo apt-get -qq install g++-4.8
- sudo apt-get -qq install libprotobuf-dev
- sudo apt-get -qq install protobuf-compiler
- sudo apt-get -qq install libsnappy-dev
- sudo apt-get -qq install valgrind
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8"; fi
before_script:
- mkdir build
- cd build
- cmake ..
- make
script: env TZ=America/Denver valgrind --error-exitcode=1 test/test-orc
|
Add Python 3.4 tests to Travis-CI | language: python
matrix:
include:
- python: 3.2
env:
- NUMPYSPEC===1.8.0
- SCIPYSPEC===0.13.0
- MATPLOTLIBSPEC===1.3.1
- python: 3.3
env:
- NUMPYSPEC=
- SCIPYSPEC=
- MATPLOTLIBSPEC=
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- sudo apt-get update -qq
- sudo apt-get install -qq libatlas-dev libatlas-base-dev liblapack-dev gfortran hdf5-tools libhdf5-serial-dev
- pip install numpy$NUMPYSPEC
- pip install scipy$SCIPYSPEC
- pip install matplotlib$MATPLOTLIBSPEC
- pip install h5py
- pip install coverage coveralls
# command to run tests, e.g. python setup.py test
script: nosetests --with-doctest --with-coverage
# check coverage
after_success:
- coveralls
| language: python
matrix:
include:
- python: 3.2
env:
- NUMPYSPEC===1.8.0
- SCIPYSPEC===0.13.0
- MATPLOTLIBSPEC===1.3.1
- python: 3.3
env:
- NUMPYSPEC=
- SCIPYSPEC=
- MATPLOTLIBSPEC=
- python: 3.4
env:
- NUMPYSPEC=
- SCIPYSPEC=
- MATPLOTLIBSPEC=
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- sudo apt-get update -qq
- sudo apt-get install -qq libatlas-dev libatlas-base-dev liblapack-dev gfortran hdf5-tools libhdf5-serial-dev
- pip install numpy$NUMPYSPEC
- pip install scipy$SCIPYSPEC
- pip install matplotlib$MATPLOTLIBSPEC
- pip install h5py
- pip install coverage coveralls
# command to run tests, e.g. python setup.py test
script: nosetests --with-doctest --with-coverage
# check coverage
after_success:
- coveralls
|
Remove REE, doesn't seem relevant anymore | language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- 1.8.7
- ree
| language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- 1.8.7
|
Remove undeed django test run | language: python
sudo: false
python:
- "2.7"
- "3.4"
services:
- cassandra
- elasticsearch
- postgres
addons:
postgresql: "9.4"
install:
- pip install -r dev-requirements.txt
- pip install coveralls
- cp scrapi/settings/travis-dist.py scrapi/settings/local.py
before_script:
- flake8 .
- psql -c "CREATE DATABASE scrapi;" -U postgres
- python manage.py migrate
script:
- invoke provider_map
- invoke test
- python manage.py test
after_success:
coveralls
| language: python
sudo: false
python:
- "2.7"
- "3.4"
services:
- cassandra
- elasticsearch
- postgres
addons:
postgresql: "9.4"
install:
- pip install -r dev-requirements.txt
- pip install coveralls
- cp scrapi/settings/travis-dist.py scrapi/settings/local.py
before_script:
- flake8 .
- psql -c "CREATE DATABASE scrapi;" -U postgres
- python manage.py migrate
script:
- invoke provider_map
- invoke test
after_success:
coveralls
|
Update rbx config for Travis | language: ruby
script: bundle exec rake
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- ree
- rbx-18mode
- rbx-19mode
- jruby-18mode
- jruby-19mode
- jruby-head
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: jruby-19mode
- rvm: jruby-head
- rvm: ruby-head
| language: ruby
script: bundle exec rake
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- ree
- rbx
- jruby-18mode
- jruby-19mode
- jruby-head
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: jruby-head
- rvm: ruby-head
|
Remove Travis CI config for headless Firefox | language: node_js
node_js:
- "0.10"
before_install:
- npm install -g npm@2
- npm install -g grunt-cli
- "export DISPLAY_PORT=:99"
- "export DISPLAY=$DISPLAY_PORT.0"
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- $DISPLAY_PORT -ac -screen 0 1024x768x16"
before_script:
- phantomjs --version
- grunt install
| language: node_js
node_js:
- "0.10"
before_install:
- npm install -g npm@2
- npm --version
- npm install -g grunt-cli
before_script:
- phantomjs --version
- grunt install
|
Install and use GCC 5 from PPA | language: c
compiler: clang
services:
- rabbitmq
node_js:
- '0.10'
before_install:
- sudo apt-get update -qq
- sudo apt-get install pkg-config cmake
install:
- npm install
before_script:
- make CPP=clang++
script:
- npm test
| language: c
compiler: clang
services:
- rabbitmq
node_js:
- '0.10'
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- sudo apt-get install gcc-5
install:
- npm install
before_script:
- make
script:
- npm test
|
Drop py27-dj17 due django-filters lack of dj17 compatibility | language: python
python: 2.7
cache:
directories:
- $HOME/.cache/pip
env:
global:
- DATABASE_URL="mysql://root:@localhost/test_feder"
- DJANGO_CONFIGURATION="Local"
matrix:
- TOX_ENV=coverage-py27-dj17
- TOX_ENV=flake8
- TOX_ENV=py27-dj18
- TOX_ENV=py27-djmaster
- TOX_ENV=py33-dj18
- TOX_ENV=py33-djmaster
matrix:
allow_failures:
- env: TOX_ENV=flake8
- env: TOX_ENV=py27-djmaster
- env: TOX_ENV=py33-dj18
- env: TOX_ENV=py33-djmaster
install:
- pip install -U pip wheel
- pip install tox
script:
- tox -e $TOX_ENV
notifications:
slack: watchdogpolska:mQq180xGu9UcuJgK73hVWECD
after_script:
- rm $HOME/.cache/pip/log/*
| language: python
python: 2.7
cache:
directories:
- $HOME/.cache/pip
env:
global:
- DATABASE_URL="mysql://root:@localhost/test_feder"
- DJANGO_CONFIGURATION="Local"
matrix:
- TOX_ENV=flake8
- TOX_ENV=coverage-py27-dj18
- TOX_ENV=py27-djmaster
- TOX_ENV=py33-dj18
- TOX_ENV=py33-djmaster
matrix:
allow_failures:
- env: TOX_ENV=flake8
- env: TOX_ENV=py27-djmaster
- env: TOX_ENV=py33-dj18
- env: TOX_ENV=py33-djmaster
install:
- pip install -U pip wheel
- pip install tox
script:
- tox -e $TOX_ENV
notifications:
slack: watchdogpolska:mQq180xGu9UcuJgK73hVWECD
after_script:
- rm $HOME/.cache/pip/log/*
|
Drop testing on Node.js 5 | language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
- "6"
| language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
|
Add Ruby 2.1 to the build. | rvm:
- 1.9.3
- 2.0.0
install:
- gem install bundler
- bundle --version
- bundle install
before_script:
- bundle exec rake appraisal:setup
script:
- bundle exec rake appraisal test
| rvm:
- 1.9.3
- 2.0.0
- 2.1.0
install:
- gem install bundler
- bundle --version
- bundle install
before_script:
- bundle exec rake appraisal:setup
script:
- bundle exec rake appraisal test
|
Migrate to official pycqa/flake8 hooks repo | repos:
- repo: https://github.com/ambv/black
rev: 18.9b0
hooks:
- id: black
language_version: python3.6
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.1.0
hooks:
- id: flake8
additional_dependencies: ["flake8-bugbear==18.8.0; python_version >= '3.5'"]
- repo: https://github.com/asottile/blacken-docs
rev: v0.3.0
hooks:
- id: blacken-docs
additional_dependencies: [black==18.9b0]
| repos:
- repo: https://github.com/ambv/black
rev: 18.9b0
hooks:
- id: black
language_version: python3.6
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.4
hooks:
- id: flake8
additional_dependencies: ["flake8-bugbear==18.8.0; python_version >= '3.5'"]
- repo: https://github.com/asottile/blacken-docs
rev: v0.3.0
hooks:
- id: blacken-docs
additional_dependencies: [black==18.9b0]
|
Test on the latest CentOS bento box | driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-6.8
- name: centos-7.3
- name: debian-7.11
- name: debian-8.7
- name: fedora-25
- name: opensuse-leap-42.2
- name: ubuntu-14.04
- name: ubuntu-16.04
- name: windows-2008r2 # private Chef Software Inc. image
driver_config:
box: chef/windows-server-2008r2-standard
- name: windows-2012r2 # private Chef Software Inc. image
driver_config:
box: chef/windows-server-2012r2-standard
suites:
- name: json_file
run_list: chef_handler::json_file
- name: custom_resource
run_list: test::default
| driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-6.9
- name: centos-7.3
- name: debian-7.11
- name: debian-8.7
- name: fedora-25
- name: opensuse-leap-42.2
- name: ubuntu-14.04
- name: ubuntu-16.04
- name: windows-2008r2 # private Chef Software Inc. image
driver_config:
box: chef/windows-server-2008r2-standard
- name: windows-2012r2 # private Chef Software Inc. image
driver_config:
box: chef/windows-server-2012r2-standard
suites:
- name: json_file
run_list: chef_handler::json_file
- name: custom_resource
run_list: test::default
|
Disable hash each methods style cop | inherit_gem:
rubocop-govuk:
- config/default.yml
- config/rails.yml
inherit_mode:
merge:
- Exclude
AllCops:
Exclude:
- 'bin/**/*'
- 'config.ru'
- 'tmp/**/*'
- 'db/schema.rb'
- 'lib/tasks/cucumber.rake'
Metrics/BlockLength:
Enabled: false
Naming/VariableNumber:
EnforcedStyle: snake_case
Style/FormatStringToken:
Exclude:
- 'config/routes.rb'
- 'lib/tasks/scheduled_publishing.rake'
Rails/FindBy:
Enabled: false
Rails/DynamicFindBy:
Enabled: false
Rails/HttpPositionalArguments:
Enabled: false
Rails/OutputSafety:
Enabled: false
Rails/HelperInstanceVariable:
Enabled: false
Rails/InverseOf:
Enabled: false
Rails/HasManyOrHasOneDependent:
Enabled: false
Rails/LexicallyScopedActionFilter:
Enabled: false
Rails/BulkChangeTable:
Enabled: false
Rails/ReversibleMigration:
Enabled: false
Rails/NotNullColumn:
Enabled: false
Rails/CreateTableWithTimestamps:
Enabled: false
Rails/FilePath:
EnforcedStyle: slashes
| inherit_gem:
rubocop-govuk:
- config/default.yml
- config/rails.yml
inherit_mode:
merge:
- Exclude
AllCops:
Exclude:
- 'bin/**/*'
- 'config.ru'
- 'tmp/**/*'
- 'db/schema.rb'
- 'lib/tasks/cucumber.rake'
Metrics/BlockLength:
Enabled: false
Naming/VariableNumber:
EnforcedStyle: snake_case
Style/FormatStringToken:
Exclude:
- 'config/routes.rb'
- 'lib/tasks/scheduled_publishing.rake'
Rails/FindBy:
Enabled: false
Rails/DynamicFindBy:
Enabled: false
Rails/HttpPositionalArguments:
Enabled: false
Rails/OutputSafety:
Enabled: false
Rails/HelperInstanceVariable:
Enabled: false
Rails/InverseOf:
Enabled: false
Rails/HasManyOrHasOneDependent:
Enabled: false
Rails/LexicallyScopedActionFilter:
Enabled: false
Rails/BulkChangeTable:
Enabled: false
Rails/ReversibleMigration:
Enabled: false
Rails/NotNullColumn:
Enabled: false
Rails/CreateTableWithTimestamps:
Enabled: false
Rails/FilePath:
EnforcedStyle: slashes
# This alerts on methods that aren't introduced until rails 6.0
# it should be removed when we upgrade.
Style/HashEachMethods:
Enabled: false
|
Update to latest Tenant Service | services:
- hash: 055e6e92ff73e33a3966fb8139568d3a5cbeee79
name: f8tenant
path: /OpenShiftTemplate.yml
url: https://github.com/fabric8io/fabric8-init-tenant/
| services:
- hash: 46f6b0782aa8216fc148f286dd764152efaaaa58
name: f8tenant
path: /OpenShiftTemplate.yml
url: https://github.com/fabric8io/fabric8-init-tenant/
|
Update from Hackage at 2019-05-10T03:02:59Z | homepage: https://github.com/fosskers/pipes-random
changelog-type: ''
hash: 490bdae5774d65d95cf4726d9bec72d03c156439f9c3cfed9aa515101d16fc33
test-bench-deps: {}
maintainer: colingw@gmail.com
synopsis: Producers for handling randomness.
changelog: ''
basic-deps:
mwc-random: ! '>=0.13 && <0.15'
base: ! '>=4.8 && <4.12'
pipes: ! '>=4.1 && <4.4'
vector: ! '>=0.11 && <0.13'
all-versions:
- 1.0.0
- 1.0.0.1
- 1.0.0.2
- 1.0.0.3
- 1.0.0.4
author: Colin Woodbury
latest: 1.0.0.4
description-type: haddock
description: Producers for handling randomness.
license-name: BSD-3-Clause
| homepage: https://github.com/fosskers/pipes-random
changelog-type: markdown
hash: a5538849fe6d4a4424718829f1702bae1ecc3e68b03954143d6f3c1c1f730a26
test-bench-deps: {}
maintainer: colin@fosskers.ca
synopsis: Producers for handling randomness.
changelog: |
# 1.0.0.5
- Massaged bounds as future-proofing.
basic-deps:
mwc-random: ! '>=0.13'
base: ! '>=4.8 && <5'
pipes: ! '>=4.1'
vector: ! '>=0.11'
all-versions:
- 1.0.0
- 1.0.0.1
- 1.0.0.2
- 1.0.0.3
- 1.0.0.4
- 1.0.0.5
author: Colin Woodbury
latest: 1.0.0.5
description-type: haddock
description: Producers for handling randomness.
license-name: BSD-3-Clause
|
Fix extra tests in Travis. | language: java
cache:
directories:
- $HOME/.gradle/caches/modules-2/
- $HOME/.gradle/wrapper/
- $HOME/.m2/
- plugin-maven/build/localMavenRepository/
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr plugin-maven/build/localMavenRepository/com/diffplug/spotless/
env:
- NODE_VERSION="6.10.2"
before_install:
- nvm install $NODE_VERSION
install: true
jdk:
- openjdk8
- openjdk11
jobs:
include:
- stage: test
jdk: openjdk8
script: ./gradlew build --build-cache && ./gradlew npmTest --build-cache
- stage: test
jdk: openjdk11
script: ./gradlew build --build-cache && ./gradlew npmTest --build-cache
| language: java
jdk:
- openjdk8
- openjdk11
env:
- NODE_VERSION="6.10.2"
before_install:
- nvm install $NODE_VERSION
- bash -c "$(curl -fsSL https://raw.githubusercontent.com/ZacSweers/check-gradle-checksums/c8dc2ae0756a8041e240cdc6fa6c38c256dfeab0/check-gradle-checksums.sh)"
install: true
script:
- ./gradlew build --build-cache && ./gradlew npmTest --build-cache
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr plugin-maven/build/localMavenRepository/com/diffplug/spotless/
cache:
directories:
- $HOME/.gradle/caches/modules-2/
- $HOME/.gradle/wrapper/
- $HOME/.m2/
- plugin-maven/build/localMavenRepository/
|
Reformat on python 3.6 only | language: python
branches:
only:
- master
- develop
matrix:
include:
- python: "2.7"
env:
- FORMAT_CHECK="1"
- VALIDITY_CHECK="0"
- python: "3.3"
env:
- FORMAT_CHECK="0"
- VALIDITY_CHECK="0"
- python: "3.5"
env:
- FORMAT_CHECK="1"
- VALIDITY_CHECK="0"
- python: "3.6"
env:
- FORMAT_CHECK="1"
- VALIDITY_CHECK="1"
install:
- pip install -r requirements-dev.txt
- pip install coveralls
script:
# check format via yapf
- if [ $FORMAT_CHECK == "1" ]; then
yapf -d -r pyopenapi;
fi
# check common errors via pylint
- if [ $VALIDITY_CHECK == "1" ]; then
pylint pyopenapi;
fi
# unittest
- py.test --cov=pyopenapi --cov-config=.coveragerc pyopenapi/tests
after_success:
- coveralls
| language: python
branches:
only:
- master
- develop
matrix:
include:
- python: "2.7"
env:
- FORMAT_CHECK="0"
- VALIDITY_CHECK="0"
- python: "3.3"
env:
- FORMAT_CHECK="0"
- VALIDITY_CHECK="0"
- python: "3.5"
env:
- FORMAT_CHECK="0"
- VALIDITY_CHECK="0"
- python: "3.6"
env:
- FORMAT_CHECK="1"
- VALIDITY_CHECK="1"
install:
- pip install -r requirements-dev.txt
- pip install coveralls
script:
# check format via yapf
- if [ $FORMAT_CHECK == "1" ]; then
yapf -d -r pyopenapi;
fi
# check common errors via pylint
- if [ $VALIDITY_CHECK == "1" ]; then
pylint pyopenapi;
fi
# unittest
- py.test --cov=pyopenapi --cov-config=.coveragerc pyopenapi/tests
after_success:
- coveralls
|
Remove ruby 2.2.x support and add support for 2.3.x and 2.4.x | language: ruby
# This is going to enable build on VMs instead of containers
sudo: required
dist: trusty
cache:
bundler: true
directories:
- $HOME/.nvm/versions/node
rvm:
- 2.2.5
- 2.3.1
- 2.4.4
env:
- "DB=postgresql"
addons:
firefox: 45.0esr
before_install:
- nvm install v6.7.0
- node -v
- npm -v
- npm install -g phantomjs-prebuilt
- phantomjs -v
before_script:
- cd src/ruby
- bundle install
- mv config/symmetric-encryption.travis config/symmetric-encryption.yml
- mv config/database.yml.postgresql config/database.yml
- bundle exec rails generate symmetric_encryption:new_keys test
- bundle exec rake fulcrum:setup db:setup
- phantomjs -v
- firefox -v
- /sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16
script:
- "bundle exec rake travis"
| language: ruby
# This is going to enable build on VMs instead of containers
sudo: required
dist: trusty
cache:
bundler: true
directories:
- $HOME/.nvm/versions/node
rvm:
- 2.3.8
- 2.4.5
env:
- "DB=postgresql"
addons:
firefox: 45.0esr
before_install:
- nvm install v6.7.0
- node -v
- npm -v
- npm install -g phantomjs-prebuilt
- phantomjs -v
before_script:
- cd src/ruby
- bundle install
- mv config/symmetric-encryption.travis config/symmetric-encryption.yml
- mv config/database.yml.postgresql config/database.yml
- bundle exec rails generate symmetric_encryption:new_keys test
- bundle exec rake fulcrum:setup db:setup
- phantomjs -v
- firefox -v
- /sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16
script:
- "bundle exec rake travis"
|
Add Ruby 2.5 to Travis build | language: ruby
sudo: false
env:
global:
- CC_TEST_REPORTER_ID=9f7f740ac1b6e264e1189fa07a6687a87bcdb9f3c0f4199d4344ab3b538e187e
rvm:
- 2.1
- 2.2
- 2.3
- 2.4
before_install:
- wget http://www.us.apache.org/dist/kafka/1.0.0/kafka_2.12-1.0.0.tgz -O kafka.tgz
- mkdir -p kafka && tar xzf kafka.tgz -C kafka --strip-components 1
- nohup bash -c "cd kafka && bin/zookeeper-server-start.sh config/zookeeper.properties &"
- nohup bash -c "cd kafka && bin/kafka-server-start.sh config/server.properties &"
before_script:
- cd ext && bundle exec rake && cd ..
- bundle exec rake create_topics
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- bundle exec rspec
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
- killall -9 java
| language: ruby
sudo: false
env:
global:
- CC_TEST_REPORTER_ID=9f7f740ac1b6e264e1189fa07a6687a87bcdb9f3c0f4199d4344ab3b538e187e
rvm:
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
before_install:
- gem update --system
- wget http://www.us.apache.org/dist/kafka/1.0.0/kafka_2.12-1.0.0.tgz -O kafka.tgz
- mkdir -p kafka && tar xzf kafka.tgz -C kafka --strip-components 1
- nohup bash -c "cd kafka && bin/zookeeper-server-start.sh config/zookeeper.properties &"
- nohup bash -c "cd kafka && bin/kafka-server-start.sh config/server.properties &"
before_script:
- cd ext && bundle exec rake && cd ..
- bundle exec rake create_topics
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- bundle exec rspec
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
- killall -9 java
|
Use goveralls to report coverage results from Travis. | language: go
go:
- 1.4
- 1.3
install:
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
- ./hack/travis/install-etcd.sh
- ./hack/verify-gofmt.sh
- ./hack/verify-boilerplate.sh
- ./hack/verify-description.sh
- ./hack/travis/install-std-race.sh
- ./hack/build-go.sh
script:
- KUBE_RACE="-race" KUBE_COVER="-cover -covermode=atomic" KUBE_TIMEOUT='-timeout 60s' ./hack/test-go.sh "" -p=4
- PATH=$HOME/gopath/bin:./third_party/etcd:$PATH ./hack/test-cmd.sh
- PATH=$HOME/gopath/bin:./third_party/etcd:$PATH ./hack/verify-gendocs.sh
- PATH=$HOME/gopath/bin:./third_party/etcd:$PATH ./hack/test-integration.sh
notifications:
irc: "chat.freenode.net#google-containers"
| language: go
go:
- 1.4
- 1.3
install:
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
- go get github.com/mattn/goveralls
- ./hack/travis/install-etcd.sh
- ./hack/verify-gofmt.sh
- ./hack/verify-boilerplate.sh
- ./hack/verify-description.sh
- ./hack/travis/install-std-race.sh
- ./hack/build-go.sh
script:
- KUBE_RACE="-race" KUBE_COVER="y" KUBE_GOVERALLS_BIN="$HOME/gopath/bin/goveralls" KUBE_TIMEOUT='-timeout 60s' ./hack/test-go.sh "" -p=4
- PATH=$HOME/gopath/bin:./third_party/etcd:$PATH ./hack/test-cmd.sh
- PATH=$HOME/gopath/bin:./third_party/etcd:$PATH ./hack/verify-gendocs.sh
- PATH=$HOME/gopath/bin:./third_party/etcd:$PATH ./hack/test-integration.sh
notifications:
irc: "chat.freenode.net#google-containers"
|
Install pkgdown for docs deploymnet | language: r
r:
- oldrel
- release
- devel
r_github_packages:
- r-lib/covr
cache: packages
warnings_are_errors: false
after_success:
# Run and upload test coverage to codecov.io
- Rscript -e 'covr::codecov()'
# Build docs
- Rscript -e 'devtools::document(); pkgdown::build_site()'
deploy:
# Deploy documentation to Github Pages
# See https://docs.travis-ci.com/user/deployment/pages/
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN
local-dir: docs
on:
branch: master
| language: r
r:
- oldrel
- release
- devel
r_github_packages:
- r-lib/covr
- r-lib/pkgdown
cache: packages
warnings_are_errors: false
after_success:
# Run and upload test coverage to codecov.io
- Rscript -e 'covr::codecov()'
# Build docs
- Rscript -e 'devtools::document(); pkgdown::build_site()'
deploy:
# Deploy documentation to Github Pages
# See https://docs.travis-ci.com/user/deployment/pages/
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN
local-dir: docs
on:
branch: master
|
Use the container-based infrastructure on Travis | language: php
php:
- 5.6
- hhvm
script:
- ./tests/lint.sh
git:
depth: 5
| language: php
php:
- 5.6
- hhvm
sudo: false
script:
- ./tests/lint.sh
git:
depth: 5
|
Install Readonly in Travis builds | sudo: false
language: perl
perl:
- "blead"
- "dev"
- "5.24"
- "5.24-thr"
- "5.22"
- "5.22-thr"
- "5.20"
- "5.20-thr"
- "5.18.3"
- "5.18.3-thr"
- "5.16"
- "5.16-thr"
- "5.14"
- "5.14-thr"
- "5.12"
- "5.12-thr"
- "5.12"
- "5.12-thr"
- "5.10.0"
- "5.10.0-thr"
- "5.10.1"
- "5.10.1-thr"
- "5.8.4"
- "5.8.4-thr"
- "5.6.2"
- "5.6.2-thr"
matrix:
allow_failures:
- perl: blead
before_install:
- eval $(curl https://travis-perl.github.io/init) --auto
| sudo: false
language: perl
perl:
- "blead"
- "dev"
- "5.24"
- "5.24-thr"
- "5.22"
- "5.22-thr"
- "5.20"
- "5.20-thr"
- "5.18.3"
- "5.18.3-thr"
- "5.16"
- "5.16-thr"
- "5.14"
- "5.14-thr"
- "5.12"
- "5.12-thr"
- "5.12"
- "5.12-thr"
- "5.10.0"
- "5.10.0-thr"
- "5.10.1"
- "5.10.1-thr"
- "5.8.4"
- "5.8.4-thr"
- "5.6.2"
- "5.6.2-thr"
matrix:
allow_failures:
- perl: blead
before_install:
- cpanm Readonly # so t/magic-readonly.t can run
- eval $(curl https://travis-perl.github.io/init) --auto
|
Allow failure for all dev-master | language: php
sudo: false
dist: trusty
php:
- 7.1
- 7.2
- 7.3
- nightly
env:
global:
- setup=basic
matrix:
- laravel=5.7.*
- laravel=dev-master
- setup=lowest laravel=5.7.*
- setup=lowest laravel=dev-master
- setup=stable laravel=5.7.*
- setup=stable laravel=dev-master
# HHVM is no longer supported on Ubuntu Precise. Please consider using Trusty with `dist: trusty`.
dist: trusty
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer require "laravel/framework=${laravel}" --prefer-dist --no-interaction --no-suggest
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --no-suggest --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --no-suggest --prefer-stable --prefer-lowest; fi
script:
- vendor/bin/phpunit -c ./ --verbose
matrix:
allow_failures:
- env: laravel=dev-master
fast_finish: true
| language: php
sudo: false
dist: trusty
php:
- 7.1
- 7.2
- 7.3
- nightly
env:
global:
- setup=basic
matrix:
- laravel=5.7.*
- laravel=dev-master
- setup=lowest laravel=5.7.*
- setup=lowest laravel=dev-master
- setup=stable laravel=5.7.*
- setup=stable laravel=dev-master
# HHVM is no longer supported on Ubuntu Precise. Please consider using Trusty with `dist: trusty`.
dist: trusty
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer require "laravel/framework=${laravel}" --prefer-dist --no-interaction --no-suggest
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --no-suggest --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --no-suggest --prefer-stable --prefer-lowest; fi
script:
- vendor/bin/phpunit -c ./ --verbose
matrix:
allow_failures:
- env: laravel=dev-master
- env: setup=lowest laravel=dev-master
- env: setup=stable laravel=dev-master
fast_finish: true
|
Reduce git clone --depth from 50 to 1 | language: generic
sudo: required
services:
- docker
# LLVM takes awhile to check out and otherwise we'll manage the submodules in
# our configure script, so disable auto submodule management.
git:
submodules: false
before_install:
- docker build -t rust -f src/etc/Dockerfile src/etc
script:
- docker run -v `pwd`:/build rust
sh -c "
./configure --llvm-root=/usr/lib/llvm-3.7 &&
make tidy &&
make check-notidy -j4
"
# Real testing happens on http://buildbot.rust-lang.org/
#
# See https://github.com/rust-lang/rust-buildbot
# CONTRIBUTING.md#pull-requests
notifications:
email: false
branches:
only:
- master
| language: generic
sudo: required
services:
- docker
# LLVM takes awhile to check out and otherwise we'll manage the submodules in
# our configure script, so disable auto submodule management.
git:
submodules: false
depth: 1
before_install:
- docker build -t rust -f src/etc/Dockerfile src/etc
script:
- docker run -v `pwd`:/build rust
sh -c "
./configure --llvm-root=/usr/lib/llvm-3.7 &&
make tidy &&
make check-notidy -j4
"
# Real testing happens on http://buildbot.rust-lang.org/
#
# See https://github.com/rust-lang/rust-buildbot
# CONTRIBUTING.md#pull-requests
notifications:
email: false
branches:
only:
- master
|
Fix running the coverage script | dist: bionic
language: generic
install:
# Install GNAT FSF
- sudo apt-get -y install gnat gprbuild libxmlada-sax7-dev
# Install lcov for coverage
- sudo apt-get -y install lcov
script:
- ./configure --enable-coverage
- make
- ./coverage.sh
after_success:
- bash <(curl -s https://codecov.io/bash) -f util.cov
| dist: bionic
language: generic
install:
# Install GNAT FSF
- sudo apt-get -y install gnat gprbuild libxmlada-sax7-dev
# Install lcov for coverage
- sudo apt-get -y install lcov
script:
- ./configure --enable-coverage
- make
- sh ./coverage.sh
after_success:
- bash <(curl -s https://codecov.io/bash) -f util.cov
|
Drop CI test for 7.0 SDK | language: objective-c
matrix:
include:
- osx_image: xcode7.2
env: SDK=macosx10.11 BUILD_OSX=1
- osx_image: xcode7.2
env: SDK=iphonesimulator9.2
- osx_image: xcode6.1
env: SDK=iphonesimulator8.1
- osx_image: xcode6.1
env: SDK=iphonesimulator7.1
- osx_image: xcode6.1
env: SDK=iphonesimulator7.0
install: make bootstrap
script: make test
| language: objective-c
matrix:
include:
- osx_image: xcode7.2
env: SDK=macosx10.11 BUILD_OSX=1
- osx_image: xcode7.2
env: SDK=iphonesimulator9.2
- osx_image: xcode6.1
env: SDK=iphonesimulator8.1
- osx_image: xcode6.1
env: SDK=iphonesimulator7.1
install: make bootstrap
script: make test
|
Disable pseudo-tty allocation with the -T option | language: Python
dist: xenial
services:
- docker
before_script:
- travis_wait 30 docker build -t fnndsc/chris_dev_backend . #TODO: ravig, Remove this.Tagging local image as fnndsc to avoid confusion in docker compose
- docker-compose up -d
- docker-compose exec chris_dev_db sh -c 'while ! mysqladmin -uroot -prootp status 2> /dev/null; do sleep 5; done;'
- docker-compose exec chris_dev_db mysql -uroot -prootp -e 'GRANT ALL PRIVILEGES ON *.* TO "chris"@"%"'
- docker-compose exec chris_dev python manage.py migrate
# command to run both Unit and Integration tests
script:
- travis_wait 30 docker-compose exec chris_dev python manage.py test --exclude-tag integration
notifications:
slack: fnndsc:gGPIVAOtMikWomA1EKrVYIjO
| language: Python
dist: xenial
services:
- docker
before_script:
- travis_wait 30 docker build -t fnndsc/chris_dev_backend . #TODO: ravig, Remove this.Tagging local image as fnndsc to avoid confusion in docker compose
- docker-compose up -d
- docker-compose exec chris_dev_db sh -c 'while ! mysqladmin -uroot -prootp status 2> /dev/null; do sleep 5; done;'
- docker-compose exec chris_dev_db mysql -uroot -prootp -e 'GRANT ALL PRIVILEGES ON *.* TO "chris"@"%"'
- docker-compose exec chris_dev python manage.py migrate
# command to run both Unit and Integration tests
script:
- travis_wait 30 docker-compose exec -T chris_dev python manage.py test --exclude-tag integration
notifications:
slack: fnndsc:gGPIVAOtMikWomA1EKrVYIjO
|
Remove unnecessary dependencies for the current tests. | {% set name = "omsl" %}
package:
name: {{ name|lower }}
version: {{ mslversion }}
source:
url: {{ mslsourceurl }}
sha256: {{ mslsourcesha256 }}
build:
script_env:
- MSLVERSION={{ mslversion }}
number: 0
skip: true # [not linux]
requirements:
host:
- python
- pip
run:
- python
- omcompiler
test:
requires:
- pytest
- python
- omcompiler
- libiconv # required by omcompiler (if not already present on the host)
- gcc_linux-64 # required by omcompiler (if not already present on the host)
- gxx_linux-64 # required by omcompiler (if not already present on the host)
- gfortran_linux-64 # required by omcompiler (if not already present on the host)
- make # required by omcompiler (if not already present on the host)
- cmake # required by omcompiler (if not already present on the host)
about:
home: https://github.com/OpenModelica/OpenModelica-ModelicaStandardLibrary
summary: 'OpenModelica Patched Version of the Modelica Standard Library'
description: |
The package Modelica is a free library that is developed together with
the Modelica language from the Modelica Association. It is also called
Modelica Standard Library. It provides model components and standard
component interfaces from many engineering domains. Each model comes
with documentation included.
OpenModelica <https://openmodelica.org> is a Modelica simulation
environment. It is required for the usage of this library and is provided
by the conda package omcompiler.
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE.txt
extra:
recipe-maintainers:
- joewa
| {% set name = "omsl" %}
package:
name: {{ name|lower }}
version: {{ mslversion }}
source:
url: {{ mslsourceurl }}
sha256: {{ mslsourcesha256 }}
build:
script_env:
- MSLVERSION={{ mslversion }}
number: 0
skip: true # [not linux]
requirements:
host:
- python
- pip
run:
- python
- omcompiler
test:
requires:
- python
about:
home: https://github.com/OpenModelica/OpenModelica-ModelicaStandardLibrary
summary: 'OpenModelica Patched Version of the Modelica Standard Library'
description: |
The package Modelica is a free library that is developed together with
the Modelica language from the Modelica Association. It is also called
Modelica Standard Library. It provides model components and standard
component interfaces from many engineering domains. Each model comes
with documentation included.
OpenModelica <https://openmodelica.org> is a Modelica simulation
environment. It is required for the usage of this library and is provided
by the conda package omcompiler.
license: BSD-3-Clause
license_family: BSD
license_file: LICENSE.txt
extra:
recipe-maintainers:
- joewa
|
Add code coverage to CI | sudo: false
dist: trusty
language: rust
rust:
- nightly
- stable
matrix:
allow_failures:
- rust: stable
cache: cargo
before_script:
# Rust
# Install tools if not already installed
- cargo install --list | grep clippy || cargo install clippy
- cargo install --list | grep rustfmt || cargo install rustfmt
# Update all tools
- cargo install --list | grep cargo-update || cargo install cargo-update || true # sometimes nightly breaks stuff, that's okay
- cargo install-update -a
# Lint
- cd core
- cargo fmt -- --write-mode=diff
- cargo clippy -- -Z no-trans -D clippy
| sudo: false
dist: trusty
language: rust
rust:
- nightly
- stable
matrix:
allow_failures:
- rust: stable
# Dependencies of kcov, used by coverage
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
- cmake
sources:
- kalakris-cmake
cache: cargo
before_script:
# Install tools if not already installed
- cargo install --list | grep clippy || cargo install clippy
- cargo install --list | grep rustfmt || cargo install rustfmt
- cargo install --list | grep cargo-update || cargo install cargo-update
- cargo install --list | grep argo-travis || cargo install cargo-travis
# Update all tools
- cargo install-update -a || true # sometimes nightly breaks stuff, that's okay
# Lint
- cd core
- cargo fmt -- --write-mode=diff
- cargo clippy -- -Z no-trans -D clippy
after_success:
- cargo coveralls
|
Test if Travis build error is related to the version of Node | language: node_js
node_js:
- "8"
before_script:
- npm install
script: npm run build
| language: node_js
node_js:
- "7"
before_script:
- npm install
script: npm run build
|
Add ext/sodium to build instructions | language: php
sudo: required
dist: trusty
php:
- "7.2"
- "7.3"
- "7.4"
- "8.0"
- "master"
- "nightly"
matrix:
fast_finish: true
allow_failures:
- php: "8.0"
- php: "master"
- php: "nightly"
install:
- travis_retry composer install --no-interaction
- wget -c -nc --retry-connrefused --tries=0 https://github.com/php-coveralls/php-coveralls/releases/download/v2.0.0/php-coveralls.phar
- chmod +x php-coveralls.phar
- php php-coveralls.phar --version
script:
- ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
- ./vendor/bin/psalm
after_success:
- travis_retry php php-coveralls.phar -v
before_script:
- mkdir -p build/logs
- ls -al
cache:
directories:
- vendor
- $HOME/.cache/composer
| language: php
sudo: required
dist: trusty
php:
- "7.2"
- "7.3"
- "7.4"
- "8.0"
- "master"
- "nightly"
matrix:
fast_finish: true
allow_failures:
- php: "8.0"
- php: "master"
- php: "nightly"
install:
- pecl install sodium
- travis_retry composer install --no-interaction
- wget -c -nc --retry-connrefused --tries=0 https://github.com/php-coveralls/php-coveralls/releases/download/v2.0.0/php-coveralls.phar
- chmod +x php-coveralls.phar
- php php-coveralls.phar --version
script:
- ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
- ./vendor/bin/psalm
after_success:
- travis_retry php php-coveralls.phar -v
before_script:
- mkdir -p build/logs
- ls -al
cache:
directories:
- vendor
- $HOME/.cache/composer
|
Move to new Travis Container Engine | language: python
python:
- "2.7"
install:
- pip install tox
- pip install -t django Django==1.8
- pip install coveralls
script:
- tox
notifications:
irc: "chat.freenode.net#bug-assassins"
on_success: always
on_failure: always
after_success:
- coveralls
| language: python
python:
- "2.7"
install:
- pip install tox
- pip install -t django Django==1.8
- pip install coveralls
script:
- tox
cache:
directories:
- django/
sudo: false
notifications:
irc: "chat.freenode.net#bug-assassins"
on_success: always
on_failure: always
after_success:
- coveralls
|
Test on Node.js v6 and use Codecov | language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
after_success:
- npm run coverage
- npm i coveralls
- cat ./coverage/lcov.info | coveralls
notifications:
email:
on_success: never
| language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
after_success:
- npm run coverage
- npm i codecov
- codecov -f ./coverage/lcov.info
notifications:
email:
on_success: never
|
Revert "Add 17.01-rc1 Erlang version to build on Travis-CI" | language: erlang
notifications:
recipients:
- eduardo@gurgel.me
otp_release:
- R16B
- R16B01
- R16B02
- 17.0-rc1
script: mix test
install: mix deps.get
before_install:
- mkdir -p vendor/elixir
- wget -q https://github.com/elixir-lang/elixir/releases/download/v0.12.4/Precompiled.zip && unzip -qq Precompiled.zip -d vendor/elixir
- export PATH="$PATH:$PWD/vendor/elixir/bin"
- export MIX_ENV=test
| language: erlang
notifications:
recipients:
- eduardo@gurgel.me
otp_release:
- R16B
- R16B01
- R16B02
script: mix test
install: mix deps.get
before_install:
- mkdir -p vendor/elixir
- wget -q https://github.com/elixir-lang/elixir/releases/download/v0.12.4/Precompiled.zip && unzip -qq Precompiled.zip -d vendor/elixir
- export PATH="$PATH:$PWD/vendor/elixir/bin"
- export MIX_ENV=test
|
Test with Ruby 2.7 on Travis | language: ruby
cache: bundler
script: "bundle exec rake"
rvm:
- 2.4.6
- 2.5.5
- 2.6.3
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/rails_6.0.gemfile
before_install:
- gem update --system
# Rails 4.2 doesn't support bundler 2.0, so we need to lock bundler to
# v1.17.3. This is just for Ruby 2.5 which ships with bundler 2.x on Travis
# CI while Ruby 2.6 does not.
# TODO: Remove once Rails 4.2 support is dropped and we can use bundler 2.x
- yes | rvm @global do gem uninstall bundler --all
- yes | rvm @global do gem install bundler -v 1.17.3 || true
matrix:
fast_finish: true
exclude:
- gemfile: gemfiles/rails_6.0.gemfile
rvm: 2.4.6
| language: ruby
cache: bundler
script: "bundle exec rake"
rvm:
- 2.4
- 2.5
- 2.6
- 2.7
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/rails_6.0.gemfile
before_install:
- gem update --system
# Rails 4.2 doesn't support bundler 2.0, so we need to lock bundler to
# v1.17.3. This is just for Ruby 2.5 which ships with bundler 2.x on Travis
# CI while Ruby 2.6 does not.
# TODO: Remove once Rails 4.2 support is dropped and we can use bundler 2.x
- yes | rvm @global do gem uninstall bundler --all
- yes | rvm @global do gem install bundler -v 1.17.3 || true
matrix:
fast_finish: true
exclude:
- gemfile: gemfiles/rails_6.0.gemfile
rvm: 2.4
|
Use the NPM on tap. | 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
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
|
Drop 0.8 and 0.11 CI run. | language: node_js
node_js:
- "0.11"
- "0.10"
- 0.8
before_install: "npm link --loglevel error"
script: "bob clean lint test coverage doc"
| language: node_js
node_js:
- "0.10"
before_install: "npm link --loglevel error"
script: "bob clean lint test coverage doc"
|
Update Travis CI build script | # reference: http://www.objc.io/issue-6/travis-ci.html
language: objective-c
script:
- xctool -project SwiftColorsExamples.xcodeproj -scheme SwiftColorsExamples -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
| # reference: http://www.objc.io/issue-6/travis-ci.html
language: objective-c
script:
- xctool test -project SwiftColorsExamples.xcodeproj -scheme SwiftColorsExamples -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
|
Fix Travis CI configuration after remove PHP 7.0 support | language: php
php:
- 7.0
- 7.1
before_script:
# Install composer
- wget http://getcomposer.org/composer.phar
- php composer.phar install
script:
- ./bin/phpunit
| language: php
php:
- 7.1
before_script:
# Install composer
- wget http://getcomposer.org/composer.phar
- php composer.phar install
script:
- ./bin/phpunit
|
Add nvm install to the Travis settings | language: python
python:
- "3.5"
install:
- nvm use 10
- pip install pytest
script:
- npm test
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: python
python:
- "3.5"
install:
- nvm install 10.3.0
- nvm use 10.3.0
- pip install pytest
script:
- npm test
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Update from Hackage at 2022-07-20T05:05:18Z | homepage: https://github.com/purebred-mua/hs-notmuch
changelog-type: ''
hash: 92f1eba7fb675cfb4ce1ca8afbbd5e5761e91edfb70bdbf628edbc6b16a49ddb
test-bench-deps: {}
maintainer: frase@frase.id.au
synopsis: Haskell binding to Notmuch, the mail indexer
changelog: ''
basic-deps:
bytestring: ==0.10.*
base: ! '>=4.9 && <5'
time: -any
text: -any
filepath: ! '>=1.0'
notmuch: -any
tagged: ! '>=0.8 && <1'
containers: -any
mtl: ==2.*
deepseq: ! '>=1.4'
profunctors: ! '>=5 && <6'
all-versions:
- 0.1.0.0
- 0.1.0.1
- 0.2.0.0
- 0.3.0.0
author: Fraser Tweedale
latest: 0.3.0.0
description-type: text
description: |
Binding to the *notmuch* mail indexer, providing a hopefully
somewhat typesafe way to search your email.
Requirements:
- GHC 8.0 or higher
- notmuch v0.26 or higher
Contributions are welcome.
license-name: GPL-3.0-only
| homepage: https://github.com/purebred-mua/hs-notmuch
changelog-type: ''
hash: 76031dbedf2fd3cc95e5e8f34c5cb647d2f34baddaeebfab866d87a71a9dbe4b
test-bench-deps: {}
maintainer: frase@frase.id.au
synopsis: Haskell binding to Notmuch, the mail indexer
changelog: ''
basic-deps:
bytestring: '>=0.10 && <0.12'
base: '>=4.9 && <5'
time: -any
text: -any
filepath: '>=1.0'
notmuch: -any
tagged: '>=0.8 && <1'
containers: -any
mtl: ==2.*
deepseq: '>=1.4'
profunctors: '>=5 && <6'
all-versions:
- 0.1.0.0
- 0.1.0.1
- 0.2.0.0
- 0.3.0.0
- 0.3.0.1
author: Fraser Tweedale
latest: 0.3.0.1
description-type: text
description: |
Binding to the *notmuch* mail indexer, providing a hopefully
somewhat typesafe way to search your email.
Requirements:
- GHC 8.0 or higher
- notmuch v0.26 or higher
Contributions are welcome.
license-name: GPL-3.0-only
|
Use a simulator that's apparently compatible with Travis. | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
language: objective-c
script:
- xcodebuild -workspace Example/YXTUnsatisfiableConstraintsDetector.xcworkspace -scheme YXTUnsatisfiableConstraintsDetector-Example -destination 'platform=iOS Simulator,name=iPhone 6 Plus,OS=9.2' | xcpretty
- pod lib lint
| # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
language: objective-c
script:
- xcodebuild -workspace Example/YXTUnsatisfiableConstraintsDetector.xcworkspace -scheme YXTUnsatisfiableConstraintsDetector-Example -destination 'platform=iOS Simulator,name=iPhone 6,OS=8.1' | xcpretty
- pod lib lint
|
Test support for Ruby versions | language: ruby
bundler_args: --without debug
script: "bundle exec rake ci"
cache: bundler
rvm:
- 2.1.3
sudo: false
services:
- redis-server
addons:
code_climate:
repo_token: 9b8c58a49bdfba5582d6a766fbe198e3720158e5e65c2ae00b1667e5e1bb8769
env: CI=yes
| language: ruby
bundler_args: --without debug
script: "bundle exec rake ci"
cache: false
rvm:
- 2.1.3
- 2.1.6
- 2.2.3
sudo: false
services:
- redis-server
addons:
code_climate:
repo_token: 9b8c58a49bdfba5582d6a766fbe198e3720158e5e65c2ae00b1667e5e1bb8769
env: CI=yes
|
Test Chef 11 as well | language: ruby
sudo: false
cache:
- bundler
rvm:
- 2.1
install: travis_wait bundle install --jobs=3 --retry=3 --deployment --path=${BUNDLE_PATH:-vendor/bundle}
script: bundle exec rake test
matrix:
fast_finish: true
include:
- rvm: 1.9
gemfile: gemfiles/chef-11/Gemfile
script: bundle exec rspec spec
- rvm: 2.1
sudo: required
services:
- docker
env: CHEF_VERSION=12 KITCHEN_YAML=.kitchen.docker.yml
script: bundle exec kitchen test --concurrency=3 --destroy=always
| language: ruby
sudo: required
services:
- docker
cache:
- bundler
rvm:
- 2.1
env:
global:
- KITCHEN_YAML=.kitchen.docker.yml
matrix:
- CHEF_VERSION=11
- CHEF_VERSION=12
install: travis_wait bundle install --jobs=3 --retry=3 --deployment --path=${BUNDLE_PATH:-vendor/bundle}
script: bundle exec kitchen test --concurrency=3 --destroy=always
matrix:
fast_finish: true
include:
- sudo: false
env: []
rvm: 2.1
script: bundle exec rake test
- sudo: false
env: []
rvm: 1.9
gemfile: gemfiles/chef-11/Gemfile
script: bundle exec rspec spec
|
Remove the obsolete 'sudo:' setting | dist: trusty
sudo: false
group: beta
language: node_js
node_js:
- node
addons:
firefox: '49.0.2'
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild --update-binary && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi"
before_script:
- npm install web-component-tester bower@1.7.9 polylint
- $(npm bin)/bower install
- $(npm bin)/polylint --no-recursion
script:
- xvfb-run $(npm bin)/wct
| dist: trusty
group: beta
language: node_js
node_js:
- node
addons:
firefox: '49.0.2'
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild --update-binary && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi"
before_script:
- npm install web-component-tester bower@1.7.9 polylint
- $(npm bin)/bower install
- $(npm bin)/polylint --no-recursion
script:
- xvfb-run $(npm bin)/wct
|
Check policy with 3.8.0 version. | env:
- CF_VERSION=3.7.2
- CF_VERSION=3.6.6
install:
- wget https://cfengine-package-repos.s3.amazonaws.com/community_binaries/cfengine-community_$CF_VERSION-1_amd64.deb
- sudo dpkg -i cfengine-community_$CF_VERSION-1_amd64.deb
- ls
script:
- /var/cfengine/bin/cf-promises -f $TRAVIS_BUILD_DIR/promises.cf
| env:
- CF_VERSION=3.8.0
- CF_VERSION=3.7.2
- CF_VERSION=3.6.6
install:
- wget https://cfengine-package-repos.s3.amazonaws.com/community_binaries/cfengine-community_$CF_VERSION-1_amd64.deb
- sudo dpkg -i cfengine-community_$CF_VERSION-1_amd64.deb
- ls
script:
- /var/cfengine/bin/cf-promises -f $TRAVIS_BUILD_DIR/promises.cf
|
Switch back to NPM until TravisCI build includes Yarn pre-installed. | language: node_js
node_js:
- "7"
install:
- yarn install -g elm
- yarn install -y
- elm-package install -y
| language: node_js
node_js:
- "7"
install:
- npm install -g elm
- npm install -y
- elm-package install -y
|
Add PHP 7.3 to Travis test suite | language: php
php:
- 7.0
- 7.1
- 7.2
install:
- travis_retry composer update
script:
- vendor/bin/phpunit --coverage-text --coverage-clover coverage.xml
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.xml
matrix:
allow_failures:
- php: 7.1
| language: php
php:
- 7.0
- 7.1
- 7.2
- 7.3
install:
- travis_retry composer update
script:
- vendor/bin/phpunit --coverage-text --coverage-clover coverage.xml
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.xml
matrix:
allow_failures:
- php: 7.1
|
Update Node version in Travis config | language: node_js
node_js:
- '4.7.2'
- '6.9.4'
- '7.4.0'
script:
- npm run lint
| language: node_js
node_js:
- '4.8.3'
- '6.10.3'
- '7.10.0'
script:
- npm run lint
|
Stop connect server on Travis CI build completion | language: node_js
node_js:
- "stable"
- "4.3"
- "4.2"
before_script:
- node_modules/gulp/bin/gulp.js startServer &
script: node_modules/gulp/bin/gulp.js clean default
| language: node_js
node_js:
- "stable"
- "4.3"
- "4.2"
before_script:
- node_modules/gulp/bin/gulp.js startServer &
script: node_modules/gulp/bin/gulp.js clean default
after_script:
- kill %1
|
Update node versions to test | dist: xenial
language: node_js
node_js:
- "8"
- "10"
- "11"
os:
- linux
- osx
addons:
apt:
packages:
- lcov
cache: yarn
env:
- npm_config_debug=yes
before_script: yarn lint
after_success:
- yarn global add codacy-coverage
- nyc report --reporter=text-lcov | codacy-coverage -l js
- lcov -c -b src/ -d build/ --no-external | codacy-coverage -l cpp
| dist: xenial
language: node_js
node_js:
- "8"
- "10"
- "11"
- "12"
os:
- linux
- osx
addons:
apt:
packages:
- lcov
cache: yarn
env:
- npm_config_debug=yes
before_script: yarn lint
after_success:
- yarn global add codacy-coverage
- nyc report --reporter=text-lcov | codacy-coverage -l js
- lcov -c -b src/ -d build/ --no-external | codacy-coverage -l cpp
|
Set user as owner for copied playbook | ---
- hosts: localhost
name: bootstrap ArchLinux system
connection: local
vars_prompt:
- name: luks_passphrase
prompt: "Encryption passphrase:"
private: yes
confirm: yes
- name: user_password
prompt: "User password:"
encrypt: "sha512_crypt"
private: yes
confirm: yes
pre_tasks:
- include_vars: "host_vars/{{ machine_aliases[ansible_product_name] }}"
# Make prompted vars available for all plays.
- set_fact:
luks_passphrase: "{{ luks_passphrase }}"
- set_fact:
user_password: "{{ user_password }}"
tasks:
- import_role:
name: arch-bootstrap
- hosts: chroot
name: install minimal ArchLinux system
connection: chroot
pre_tasks:
- include_vars: "host_vars/{{ machine_aliases[ansible_product_name] }}"
roles:
- arch-chroot
- hosts: localhost
connection: local
name: finish up installation
tasks:
- name: copy Ansible playbook to newly installed system
copy:
src: "{{ playbook_dir }}"
dest: "{{ arch_root }}/home/{{ user.name }}/"
mode: 0644
- name: unmount partitions with the new system
command: "umount -Rf {{ arch_root }}"
- name: close LUKS encrypted devices
command: "cryptsetup luksClose /dev/mapper/arch-{{ item.name }}"
with_items: "{{ drive.partitions }}"
when: item.encrypt
- name: reboot
command: reboot
| ---
- hosts: localhost
name: bootstrap ArchLinux system
connection: local
vars_prompt:
- name: luks_passphrase
prompt: "Encryption passphrase:"
private: yes
confirm: yes
- name: user_password
prompt: "User password:"
encrypt: "sha512_crypt"
private: yes
confirm: yes
pre_tasks:
- include_vars: "host_vars/{{ machine_aliases[ansible_product_name] }}"
# Make prompted vars available for all plays.
- set_fact:
luks_passphrase: "{{ luks_passphrase }}"
- set_fact:
user_password: "{{ user_password }}"
tasks:
- import_role:
name: arch-bootstrap
- hosts: chroot
name: install minimal ArchLinux system
connection: chroot
pre_tasks:
- include_vars: "host_vars/{{ machine_aliases[ansible_product_name] }}"
roles:
- arch-chroot
- hosts: localhost
connection: local
name: finish up installation
tasks:
- name: copy Ansible playbook to newly installed system
copy:
src: "{{ playbook_dir }}"
dest: "{{ arch_root }}/home/{{ user.name }}/"
mode: 0644
owner: {{ user.name }}
- name: unmount partitions with the new system
command: "umount -Rf {{ arch_root }}"
- name: close LUKS encrypted devices
command: "cryptsetup luksClose /dev/mapper/arch-{{ item.name }}"
with_items: "{{ drive.partitions }}"
when: item.encrypt
- name: reboot
command: reboot
|
Make sure Supervisor is installed and enabled before running tasks. | ---
- name: Create the Supervisor config file
template: src=supervisor_config.j2
dest=/etc/supervisor/conf.d/{{ application_name }}.conf
backup=yes
- name: Re-read the Supervisor config files
supervisorctl: name={{ application_name }} state=present
- name: Restart Supervisor
supervisorctl: name={{ application_name }}
state=restarted
changed_when: False
| ---
- name: Make sure Supervisor is installed
apt: name=supervisor update_cache={{ update_apt_cache }} state=installed
- name: Ensure supervisor service is started
service: name=supervisor state=started enabled=yes
- name: Create the Supervisor config file
template: src=supervisor_config.j2
dest=/etc/supervisor/conf.d/{{ application_name }}.conf
backup=yes
- name: Re-read the Supervisor config files
supervisorctl: name={{ application_name }} state=present
- name: Restart Supervisor
supervisorctl: name={{ application_name }}
state=restarted
changed_when: False
|
Update CV of EBT New Note to 0.22 (22) | AntiFeatures:
- NonFreeNet
Categories:
- Games
- Internet
- Money
License: GPL-3.0-or-later
SourceCode: https://github.com/marv42/EbtNewNote
IssueTracker: https://github.com/marv42/EbtNewNote/issues
AutoName: EBT New Note
RepoType: git
Repo: https://github.com/marv42/EbtNewNote
Builds:
- versionName: '0.19'
versionCode: 19
commit: v0.19
subdir: app
gradle:
- withoutKey
AutoUpdateMode: None
UpdateCheckMode: Tags v\d+\.\d+(\.\d+)?
CurrentVersion: '0.19'
CurrentVersionCode: 19
| AntiFeatures:
- NonFreeNet
Categories:
- Games
- Internet
- Money
License: GPL-3.0-or-later
SourceCode: https://github.com/marv42/EbtNewNote
IssueTracker: https://github.com/marv42/EbtNewNote/issues
AutoName: EBT New Note
RepoType: git
Repo: https://github.com/marv42/EbtNewNote
Builds:
- versionName: '0.19'
versionCode: 19
commit: v0.19
subdir: app
gradle:
- withoutKey
AutoUpdateMode: None
UpdateCheckMode: Tags v\d+\.\d+(\.\d+)?
CurrentVersion: '0.22'
CurrentVersionCode: 22
|
Update Planisphere to 1.3.0 (4) | Categories:
- Science & Education
License: GPL-3.0-or-later
WebSite: https://github.com/tengel/AndroidPlanisphere#androidplanisphere
SourceCode: https://github.com/tengel/AndroidPlanisphere
IssueTracker: https://github.com/tengel/AndroidPlanisphere/issues
AutoName: Planisphere
RepoType: git
Repo: https://github.com/tengel/AndroidPlanisphere.git
Builds:
- versionName: 1.0.0
versionCode: 1
commit: v1.0.0
subdir: app
gradle:
- yes
- versionName: 1.1.0
versionCode: 2
commit: v1.1.0
subdir: app
gradle:
- yes
- versionName: 1.2.0
versionCode: 3
commit: v1.2.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags v\d+\.\d+\.\d+
CurrentVersion: 1.2.0
CurrentVersionCode: 3
| Categories:
- Science & Education
License: GPL-3.0-or-later
WebSite: https://github.com/tengel/AndroidPlanisphere#androidplanisphere
SourceCode: https://github.com/tengel/AndroidPlanisphere
IssueTracker: https://github.com/tengel/AndroidPlanisphere/issues
AutoName: Planisphere
RepoType: git
Repo: https://github.com/tengel/AndroidPlanisphere.git
Builds:
- versionName: 1.0.0
versionCode: 1
commit: v1.0.0
subdir: app
gradle:
- yes
- versionName: 1.1.0
versionCode: 2
commit: v1.1.0
subdir: app
gradle:
- yes
- versionName: 1.2.0
versionCode: 3
commit: v1.2.0
subdir: app
gradle:
- yes
- versionName: 1.3.0
versionCode: 4
commit: v1.3.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags v\d+\.\d+\.\d+
CurrentVersion: 1.3.0
CurrentVersionCode: 4
|
Allow zfs installation on nodes | networks:
eth0:
address: 192.168.130.80
netmask: 255.255.255.0
gateway: 192.168.130.1
| networks:
eth0:
address: 192.168.130.80
netmask: 255.255.255.0
gateway: 192.168.130.1
swh::apt_config::enable_non_free: true
swh::apt_config::backported_packages:
buster:
- linux-image-amd64
- linux-headers-amd64
- libnvpair1linux
- libuutil1linux
- libzfs2linux
- libzpool2linux
- zfs-dkms
- zfsutils-linux
- zfs-zed
|
Clean up old API keys | ---
username: jfryman
api_key: ca8295b12b80496abf08c7cad21c7997
region: IAD
debug: false
| ---
username: ""
api_key: ""
region: IAD
debug: false
|
Fix reno warning for API DB relnote | ---
prelude: >
Nova now requires a separate API database and manual
intervention is required during an upgrade to Mitaka.
upgrade:
- During an upgrade to Mitaka, operators must create and initialize
a database for the API service. Configure this in
[api_database]/connection, and then run `nova-manage api_db sync'
| ---
prelude: >
Nova now requires a separate API database and manual
intervention is required during an upgrade to Mitaka.
upgrade:
- During an upgrade to Mitaka, operators must create and initialize
a database for the API service. Configure this in
[api_database]/connection, and then run ``nova-manage api_db sync``
|
Update zict recipe to version 0.1.1 | {% set version = "0.1.0" %}
{% set name = "zict" %}
package:
name: {{ name }}
version: "{{ version }}"
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: fa0bb981d5e2a118b5cdd2f303ab8a291be686b302a3832754e690dbcbf035ea
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
- heapdict
test:
imports:
- zict
about:
home: http://github.com/mrocklin/zict
license: BSD 3-Clause
summary: 'Composable Dictionary Classes'
| {% set version = "0.1.1" %}
{% set name = "zict" %}
package:
name: {{ name }}
version: "{{ version }}"
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: e4e2758d8f202a5bb7fd94f45b87cccf2092bfc97786cc0c8321ab35d72e098a
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
- heapdict
test:
imports:
- zict
about:
home: http://github.com/mrocklin/zict
license: BSD 3-Clause
summary: 'Composable Dictionary Classes'
|
Add settings view (and reorder some others) | ################################################
## Packages / Group
################################################
homeassistant:
customize:
################################################
## Node Anchors
################################################
package.node_anchors:
customize: &customize
package: 'group'
################################################
## Group
################################################
group.default_view:
<<: *customize
friendly_name: Start
icon: mdi:rocket
group.automation_view:
<<: *customize
order: 990 # at the end
group.all_automations:
<<: *customize
hidden: false
group.all_scripts:
<<: *customize
hidden: false
################################################
## Group
################################################
group:
default_view:
name: 'Home'
view: yes
entities:
## badges
- alarm_control_panel.home
## cards
- group.main
- group.living_lights
main:
name: Main Entities
control: hidden
entities:
- light.living_lights
- switch.power_garage_door
- input_boolean.on_vacation
automation_view:
name: Automation
icon: mdi:auto-fix
view: yes
entities:
- group.all_automations
- group.all_scripts
| ################################################
## Packages / Group
################################################
homeassistant:
customize:
################################################
## Node Anchors
################################################
package.node_anchors:
customize: &customize
package: 'group'
################################################
## Group
################################################
group.all_automations:
<<: *customize
hidden: false
group.all_scripts:
<<: *customize
hidden: false
group.automation_view:
<<: *customize
order: 990 # at the end
icon: mdi:auto-fix
group.default_view:
<<: *customize
friendly_name: Start
icon: mdi:rocket
group.main:
<<: *customize
friendly_name: Hoofdentiteiten
group.settings_view:
<<: *customize
friendly_name: Instellingen
icon: mdi:settings
################################################
## Group
################################################
group:
default_view:
name: 'Home'
view: yes
entities:
## badges
- alarm_control_panel.home
## cards
- group.main
- group.living_lights
automation_view:
name: Automation
view: yes
entities:
- group.all_automations
- group.all_scripts
settings_view:
name: Settings
view: yes
entities:
- input_select.log_level
main:
name: Main Entities
control: hidden
entities:
- light.living_lights
- switch.power_garage_door
- input_boolean.on_vacation
|
Update source role to Pike | - name: apt_package_pinning
src: https://git.openstack.org/openstack/openstack-ansible-apt_package_pinning
scm: git
version: master
- name: pip_install
src: https://git.openstack.org/openstack/openstack-ansible-pip_install
scm: git
version: master
- name: openstack_hosts
src: https://git.openstack.org/openstack/openstack-ansible-openstack_hosts
scm: git
version: master
- name: lxc_hosts
src: https://git.openstack.org/openstack/openstack-ansible-lxc_hosts
scm: git
version: master
- name: lxc_container_create
src: https://git.openstack.org/openstack/openstack-ansible-lxc_container_create
scm: git
version: master
- name: galera_client
src: https://git.openstack.org/openstack/openstack-ansible-galera_client
scm: git
version: master
- name: previous_galera_server
src: https://git.openstack.org/openstack/openstack-ansible-galera_server
scm: git
version: stable/ocata
| - name: apt_package_pinning
src: https://git.openstack.org/openstack/openstack-ansible-apt_package_pinning
scm: git
version: master
- name: pip_install
src: https://git.openstack.org/openstack/openstack-ansible-pip_install
scm: git
version: master
- name: openstack_hosts
src: https://git.openstack.org/openstack/openstack-ansible-openstack_hosts
scm: git
version: master
- name: lxc_hosts
src: https://git.openstack.org/openstack/openstack-ansible-lxc_hosts
scm: git
version: master
- name: lxc_container_create
src: https://git.openstack.org/openstack/openstack-ansible-lxc_container_create
scm: git
version: master
- name: galera_client
src: https://git.openstack.org/openstack/openstack-ansible-galera_client
scm: git
version: master
- name: previous_galera_server
src: https://git.openstack.org/openstack/openstack-ansible-galera_server
scm: git
version: stable/pike
|
Add Python3 zed unit tests | - job:
name: senlinclient-functional
parent: devstack-tox-functional
required-projects:
- openstack/python-senlinclient
- openstack/senlin
vars:
openrc_enable_export: true
devstack_plugins:
senlin: https://opendev.org/openstack/senlin
devstack_local_conf:
post-config:
$SENLIN_CONF:
DEFAULT:
cloud_backend: openstack_test
default_log_levels: >-
amqp=WARN,amqplib=WARN,sqlalchemy=WARN,oslo_messaging=WARN
,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN
,urllib3.connectionpool=WARN
,requests.packages.urllib3.util.retry=WARN,urllib3.util.retry=WARN
,keystonemiddleware=WARN
,routes.middleware=WARN
,stevedore=WARN
,oslo_messaging._drivers.amqp=WARN
,oslo_messaging._drivers.amqpdriver=WARN
irrelevant-files:
- ^senlinclient/tests/unit/.*$
- ^setup.cfg$
- ^tools/.*$
- project:
templates:
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-yoga-jobs
- openstackclient-plugin-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
- senlinclient-functional:
voting: false
| - job:
name: senlinclient-functional
parent: devstack-tox-functional
required-projects:
- openstack/python-senlinclient
- openstack/senlin
vars:
openrc_enable_export: true
devstack_plugins:
senlin: https://opendev.org/openstack/senlin
devstack_local_conf:
post-config:
$SENLIN_CONF:
DEFAULT:
cloud_backend: openstack_test
default_log_levels: >-
amqp=WARN,amqplib=WARN,sqlalchemy=WARN,oslo_messaging=WARN
,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN
,urllib3.connectionpool=WARN
,requests.packages.urllib3.util.retry=WARN,urllib3.util.retry=WARN
,keystonemiddleware=WARN
,routes.middleware=WARN
,stevedore=WARN
,oslo_messaging._drivers.amqp=WARN
,oslo_messaging._drivers.amqpdriver=WARN
irrelevant-files:
- ^senlinclient/tests/unit/.*$
- ^setup.cfg$
- ^tools/.*$
- project:
templates:
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-zed-jobs
- openstackclient-plugin-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
- senlinclient-functional:
voting: false
|
Add Python3 xena unit tests | - project:
templates:
- check-requirements
- lib-forward-testing-python3
- openstack-python3-wallaby-jobs
- periodic-stable-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
| - project:
templates:
- check-requirements
- lib-forward-testing-python3
- openstack-python3-xena-jobs
- periodic-stable-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
|
Use bitergia/mongodb:2.6 image for mongodb container. | mongodbdata:
image: bitergia/fiware-devguide-restaurant-data:20150721
volumes:
- /var/lib/mongo
restart: no
entrypoint: ["/bin/echo","Data-only container for mongodb"]
mongodb:
image: bitergia/fiware-devguide-restaurant-data:20150721
volumes_from:
- mongodbdata
expose:
- "27017"
orion:
image: bitergia/fiware-orion:0.22.0
links:
- mongodb
expose:
- "10026"
devguide:
image: bitergia/fiware-devguide-app
links:
- orion
# volumes:
# - ~/devel/fiware/fiware-devguide-app:/home/bitergia/fiware-devguide-app
| mongodbdata:
image: bitergia/fiware-devguide-restaurant-data:20150721
volumes:
- /var/lib/mongo
restart: no
entrypoint: ["/bin/echo","Data-only container for mongodb"]
mongodb:
image: bitergia/mongodb:2.6
volumes_from:
- mongodbdata
expose:
- "27017"
orion:
image: bitergia/fiware-orion:0.22.0
links:
- mongodb
expose:
- "10026"
devguide:
image: bitergia/fiware-devguide-app
links:
- orion
# volumes:
# - ~/devel/fiware/fiware-devguide-app:/home/bitergia/fiware-devguide-app
|
Fix osx build of pygslodeiv2 | {% set name = "pygslodeiv2" %}
{% set version = "0.8.1" %}
{% set sha256 = "3b5a77b1ffac036efbdfebd7cc4718be59bcb61eb38c7080736eaab1f34a4354" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
number: 0
skip: True # [win]
requirements:
build:
- python
- setuptools
- numpy
- gsl
run:
- python
- numpy
- gsl
test:
imports:
- {{ name }}
requires:
- pytest
commands:
- python -m pytest --pyargs {{ name }}
about:
home: https://github.com/bjodah/{{ name }}
license: GPL-3.0
license_file: LICENSE
summary: 'Python binding for odeiv2 interface from GNU Scientific Library (GSL)'
doc_url: https://bjodah.github.io/{{ name }}/latest
extra:
recipe-maintainers:
- bjodah
| {% set name = "pygslodeiv2" %}
{% set version = "0.8.1" %}
{% set sha256 = "3b5a77b1ffac036efbdfebd7cc4718be59bcb61eb38c7080736eaab1f34a4354" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: {{ sha256 }}
build:
number: 0
skip: True # [win]
skip: True # [osx and py27]
requirements:
build:
- python
- setuptools
- numpy
- gsl
run:
- python
- numpy
- gsl
test:
imports:
- {{ name }}
requires:
- pytest
commands:
- python -m pytest --pyargs {{ name }}
about:
home: https://github.com/bjodah/{{ name }}
license: GPL-3.0
license_file: LICENSE
summary: 'Python binding for odeiv2 interface from GNU Scientific Library (GSL)'
doc_url: https://bjodah.github.io/{{ name }}/latest
extra:
recipe-maintainers:
- bjodah
|
Add in equivalent mix test.watch functionality but without mix | # ~/.tmuxinator/exercism.yml
<% lang = @args[0] %>
<% exercise = @args[1] %>
name: exercism
# Eg: mux exercism ruby hello-world => exercism/ruby/hello-world
root: ~/exercism/<%= lang %>/<%= exercise %>
on_project_first_start:
<% if lang == "elm" %>
- npm install
<% end %>
# Grip
- open --background http://localhost:6419
pre_window:
# NOTE: uncomment if I find that I need to use language versions
# other than the latest.
# <% if lang == "ruby" %>
# - asdf local ruby 2.6.1
# <% elsif lang == "elixir" %>
# - asdf local elixir 1.7.2-otp-21
# <% elsif lang == "elm" %>
# - asdf local elm 0.18.0
# <% end %>
startup_window: editor
windows:
- editor: vim
<% if lang == "ruby" %>
- tests: guard --guardfile ~/exercism/ruby/Guardfile
- console: irb
<% elsif lang == "elixir" %>
- tests: # placeholder window to run tests
- console: iex
<% elsif lang == "elm" %>
- tests: npm run watch
- console: elm repl
<% end %>
# brew install grip
# https://github.com/joeyespo/grip
- grip: grip
| # ~/.tmuxinator/exercism.yml
<% lang = @args[0] %>
<% exercise = @args[1] %>
name: exercism
# Eg: mux exercism ruby hello-world => exercism/ruby/hello-world
root: ~/exercism/<%= lang %>/<%= exercise %>
on_project_first_start:
<% if lang == "elm" %>
- npm install
<% end %>
# Grip
- open --background http://localhost:6419
pre_window:
# NOTE: uncomment if I find that I need to use language versions
# other than the latest.
# <% if lang == "ruby" %>
# - asdf local ruby 2.6.1
# <% elsif lang == "elixir" %>
# - asdf local elixir 1.7.2-otp-21
# <% elsif lang == "elm" %>
# - asdf local elm 0.18.0
# <% end %>
startup_window: editor
windows:
- editor: vim
<% if lang == "ruby" %>
- tests: guard --guardfile ~/exercism/ruby/Guardfile
- console: irb
<% elsif lang == "elixir" %>
<% filename = exercise.tr("-", "_") %>
- tests: watchexec --watch <%= filename %>.exs --clear elixir <%= filename %>_test.exs
- console: iex
<% elsif lang == "elm" %>
- tests: elm-test --watch
- console: elm repl
<% end %>
# brew install grip
# https://github.com/joeyespo/grip
- grip: grip
|
Update actions to hopefully fix build | name: deploy to s3
on:
push:
branches: master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Build the site in the jekyll/builder container
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"
- name: Deploy the site to Amazon s3
uses:
- actions/checkout@v2
- jakejarvis/s3-sync-action@master
with:
args: --acl public-read --follow-symlinks --delete
env:
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
SOURCE_DIR: "_site"
| name: deploy to s3
on:
push:
branches: master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Build the site in the jekyll/builder container
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"
- name: Deploy the site to Amazon s3
- uses: actions/checkout@v2
- uses: jakejarvis/s3-sync-action@master
with:
args: --acl public-read --follow-symlinks --delete
env:
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
SOURCE_DIR: "_site"
|
Use opendev.org mirror for mtl01.inap region | # This file contains ansible variables that are used by our zuul-executors.
---
# NOTE(ianw): 2019-05 this list of clouds will grow as we provision
# new opendev.org based mirrors, but then eventually be removed once
# all are updated.
zuul_site_mirror_fqdn: >-
{%- if nodepool.region + "." + nodepool.cloud in [ "DFW.rax", "ORD.rax", "regionOne.fortnebula" ] -%}
mirror.{{ nodepool.region | lower }}.{{ nodepool.cloud | lower }}.opendev.org
{%- else -%}
mirror.{{ nodepool.region | lower }}.{{ nodepool.cloud | lower }}.openstack.org
{%- endif -%}
zuul_site_traceroute_host: opendev.org
zuul_site_image_manifest_files:
- /etc/dib-builddate.txt
- /etc/image-hostname.txt
zuul_output_dir: "{{ ansible_user_dir }}/zuul-output"
bindep_command: /usr/bindep-env/bin/bindep
| # This file contains ansible variables that are used by our zuul-executors.
---
# NOTE(ianw): 2019-05 this list of clouds will grow as we provision
# new opendev.org based mirrors, but then eventually be removed once
# all are updated.
zuul_site_mirror_fqdn: >-
{%- if nodepool.region + "." + nodepool.cloud in [ "DFW.rax", "ORD.rax", "regionOne.fortnebula", "mtl01.inap" ] -%}
mirror.{{ nodepool.region | lower }}.{{ nodepool.cloud | lower }}.opendev.org
{%- else -%}
mirror.{{ nodepool.region | lower }}.{{ nodepool.cloud | lower }}.openstack.org
{%- endif -%}
zuul_site_traceroute_host: opendev.org
zuul_site_image_manifest_files:
- /etc/dib-builddate.txt
- /etc/image-hostname.txt
zuul_output_dir: "{{ ansible_user_dir }}/zuul-output"
bindep_command: /usr/bindep-env/bin/bindep
|
Update buildkite plugin docker-compose to v3 | steps:
- name: ":rspec:"
command: "rspec --color specs"
plugins:
docker-compose#v2.6.0:
run: app
| steps:
- name: ":rspec:"
command: "rspec --color specs"
plugins:
docker-compose#v3.0.0:
run: app
|
Add NonFreeNet AntiFeature to Hypezig | Categories:
- Internet
License: GPL-3.0-or-later
AuthorName: Markus Kollotzek
AuthorEmail: markus.kollotzek@posteo.de
WebSite: https://gitlab.com/intergalacticsuperhero/hypezig
SourceCode: https://gitlab.com/intergalacticsuperhero/hypezig/tree/HEAD
IssueTracker: https://gitlab.com/intergalacticsuperhero/hypezig/issues
AutoName: Hypezig
RepoType: git
Repo: https://gitlab.com/intergalacticsuperhero/hypezig.git
Builds:
- versionName: '1.1'
versionCode: 11
commit: v1.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags v\d+\.\d+(\.\d+)?
CurrentVersion: '1.1'
CurrentVersionCode: 11
| AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: GPL-3.0-or-later
AuthorName: Markus Kollotzek
AuthorEmail: markus.kollotzek@posteo.de
WebSite: https://gitlab.com/intergalacticsuperhero/hypezig
SourceCode: https://gitlab.com/intergalacticsuperhero/hypezig/tree/HEAD
IssueTracker: https://gitlab.com/intergalacticsuperhero/hypezig/issues
AutoName: Hypezig
RepoType: git
Repo: https://gitlab.com/intergalacticsuperhero/hypezig.git
Builds:
- versionName: '1.1'
versionCode: 11
commit: v1.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags v\d+\.\d+(\.\d+)?
CurrentVersion: '1.1'
CurrentVersionCode: 11
|
Use Bento version slugs in Kitchen | driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: debian-7.11
- name: debian-8.8
- name: ubuntu-14.04
- name: ubuntu-16.04
suites:
- name: default
run_list:
- recipe[ufw::default]
| driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: debian-7
- name: debian-8.9
- name: ubuntu-14.04
- name: ubuntu-16.04
suites:
- name: default
run_list:
- recipe[ufw::default]
|
Patch version bump for fixes that ensure the root node is yielded. | name: tdiff
version: 0.3.1
summary: Calculates the differences between two tree-like structures.
description:
Calculates the differences between two tree-like structures. Similar to
Rubys built-in TSort module.
license: MIT
authors: Postmodern
email: postmodern.mod3@gmail.com
homepage: http://github.com/postmodern/tdiff
has_yard: true
development_dependencies:
ore-tasks: ~> 0.3.0
rspec: ~> 2.1.0
yard: ~> 0.6.0
| name: tdiff
version: 0.3.2
summary: Calculates the differences between two tree-like structures.
description:
Calculates the differences between two tree-like structures. Similar to
Rubys built-in TSort module.
license: MIT
authors: Postmodern
email: postmodern.mod3@gmail.com
homepage: http://github.com/postmodern/tdiff
has_yard: true
development_dependencies:
ore-tasks: ~> 0.3.0
rspec: ~> 2.1.0
yard: ~> 0.6.0
|
Use rebase as merge strategy for PR | rules:
default:
protection:
required_status_checks:
strict: true
contexts:
- DCO
- "Testing: ceph-ansible PR Pipeline"
required_pull_request_reviews:
required_approving_review_count: 1
merge_strategy:
method: rebase
| rules:
default:
protection:
required_status_checks:
strict: true
contexts:
- DCO
- "Testing: ceph-ansible PR Pipeline"
required_pull_request_reviews:
required_approving_review_count: 1
merge_strategy:
method: rebase
automated_backport_labels:
backport-stable-3.0: stable-3.0
backport-stable-3.1: stable-3.1
disabling_label: DNM
disabling_files:
- .mergify.yml
|
Update numpy recipe to version 1.12.0 | {% set name = "numpy" %}
{% set version = "1.11.3" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.zip
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.zip
sha256: 2e0fc5248246a64628656fe14fcab0a959741a2820e003bd15538226501b82f7
build:
number: 0
requirements:
build:
- cython
- python
- setuptools
- openblas 0.2.19
run:
- python
- openblas 0.2.19
test:
requires:
- nose
commands:
- f2py -h
imports:
- numpy
- numpy.linalg.lapack_lite
about:
home: http://numpy.scipy.org/
license: BSD 3-Clause
license_file: LICENSE.txt
summary: array processing for numbers, strings, records, and objects.
| {% set name = "numpy" %}
{% set version = "1.12.0" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.zip
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.zip
sha256: ff320ecfe41c6581c8981dce892fe6d7e69806459a899e294e4bf8229737b154
build:
number: 0
requirements:
build:
- cython
- python
- setuptools
- openblas 0.2.19
run:
- python
- openblas 0.2.19
test:
requires:
- nose
commands:
- f2py -h
imports:
- numpy
- numpy.linalg.lapack_lite
about:
home: http://numpy.scipy.org/
license: BSD 3-Clause
license_file: LICENSE.txt
summary: array processing for numbers, strings, records, and objects.
|
Update from Hackage at 2018-07-12T18:37:42Z | homepage: https://github.com/metrix-ai/primitive-extras
changelog-type: ''
hash: 154862899f84d3b5ffd7432bc912038dbfcfa484804f1fc2f30a8f085d971c8b
test-bench-deps: {}
maintainer: Metrix Ninjas <ninjas@metrix.ai>
synopsis: Extras for the "primitive" library
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
deferred-folds: ! '>=0.6 && <0.7'
foldl: ! '>=1 && <2'
primitive: ! '>=0.6.4 && <0.7'
profunctors: ! '>=5 && <6'
all-versions:
- '0.1'
- '0.1.1'
- '0.1.2'
- '0.1.2.1'
- '0.1.2.2'
- '0.1.3'
- '0.1.3.1'
- '0.1.4'
- '0.1.5'
- '0.1.6'
author: Metrix Ninjas <ninjas@metrix.ai>
latest: '0.1.6'
description-type: haddock
description: ''
license-name: MIT
| homepage: https://github.com/metrix-ai/primitive-extras
changelog-type: ''
hash: 0fcd60edb662a081bd9e94395329cb58df89e798ef1c4722e049a0fe2edbe1c0
test-bench-deps: {}
maintainer: Metrix Ninjas <ninjas@metrix.ai>
synopsis: Extras for the "primitive" library
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
deferred-folds: ! '>=0.6 && <0.7'
foldl: ! '>=1 && <2'
primitive: ! '>=0.6.4 && <0.7'
profunctors: ! '>=5 && <6'
all-versions:
- '0.1'
- '0.1.1'
- '0.1.2'
- '0.1.2.1'
- '0.1.2.2'
- '0.1.3'
- '0.1.3.1'
- '0.1.4'
- '0.1.5'
- '0.1.6'
- '0.1.7'
author: Metrix Ninjas <ninjas@metrix.ai>
latest: '0.1.7'
description-type: haddock
description: ''
license-name: MIT
|
Add fetch-mock to related libraries | - title: proxyquire β Proxies nodejs require in order to allow overriding dependencies during testing
url: https://github.com/thlorenz/proxyquire
- title: sisyphos β utility to stub modules imported with the System.js module loader
url: https://github.com/codazzo/sisyphos
- title: bogus β utility for mocking dependencies when testing RequireJS based projects
url: https://github.com/mroderick/bogus
- title: Mock Socket β mocking library for websockets and socket.io
url: https://github.com/thoov/mock-socket
- title: wrapple β generic wrapper for browser natives (or other globals) to allow stubbing in unit tests
url: https://github.com/mroderick/wrapple
- title: test double β minimal test double library for TDD with JavaScript
url: https://github.com/testdouble/testdouble.js
| - title: proxyquire β Proxies nodejs require in order to allow overriding dependencies during testing
url: https://github.com/thlorenz/proxyquire
- title: sisyphos β utility to stub modules imported with the System.js module loader
url: https://github.com/codazzo/sisyphos
- title: bogus β utility for mocking dependencies when testing RequireJS based projects
url: https://github.com/mroderick/bogus
- title: fetch-mock β Mock http requests made using fetch
url: http://www.wheresrhys.co.uk/fetch-mock/
- title: Mock Socket β mocking library for websockets and socket.io
url: https://github.com/thoov/mock-socket
- title: wrapple β generic wrapper for browser natives (or other globals) to allow stubbing in unit tests
url: https://github.com/mroderick/wrapple
- title: test double β minimal test double library for TDD with JavaScript
url: https://github.com/testdouble/testdouble.js
|
Fix does not exist message. | homeUrl: www.sanelib.com
welcome: Welcome to Sanelib
server:
error: Internal server error occured. ^0
field:
required: ~0 is required
duplicate: ~0 with ~1 ^0 already exists.
pattern: ~0 format is incorrect. Ex. ^0
notexist: ~0 Id does not exist.
length: ~0 length should not more than ^0 | homeUrl: www.sanelib.com
welcome: Welcome to Sanelib
server:
error: Internal server error occured. ^0
field:
required: ~0 is required
duplicate: ~0 with ~1 ^0 already exists.
pattern: ~0 format is incorrect. Ex. ^0
notexist: ~0 ^0 does not exist.
length: ~0 length should not more than ^0 |
Add ironic type node for uefi profile | #Ironic profile matching for uefi boot_mode
---
uefi:
compute: "compute"
ceph: "ceph-storage"
swift: "swift-storage"
controller: "control"
| #Ironic profile matching for uefi boot_mode
---
uefi:
compute: "compute"
ceph: "ceph-storage"
swift: "swift-storage"
controller: "control"
ironic: "ironic"
|
Add new bundle flags to provision scripts | ---
- name: Create folders for static files
file: path="{{ item }}"
state=directory
owner="{{ ansible_ssh_user }}"
group=mmw
mode=0775
with_items:
- "{{ app_static_root }}"
- "{{ app_media_root }}"
- "{{ app_static_cache }}"
- name: Install application JavaScript dependencies
command: "npm install --unsafe-perm"
args:
chdir: "{{ app_home }}"
sudo: False
- name: Create static files and run collectstatic (staging/production)
command: "./bundle.sh"
args:
chdir: "{{ app_home }}"
environment: app_config
sudo: False
when: "['development'] | is_not_in(group_names)"
- name: Create static files and run collectstatic (development)
command: "./bundle.sh --debug"
args:
chdir: "{{ app_home }}"
environment: app_config
sudo: False
when: "['development'] | is_in(group_names)"
- name: Run Django collectstatic command
django_manage: command=collectstatic app_path="{{ app_home }}"
environment: app_config
sudo: False
- name: Create JavaScript test harness
template: src=testem-harness.html.j2
dest="{{ app_static_root }}/test.html"
sudo: False
when: "['development', 'test'] | some_are_in(group_names)"
| ---
- name: Create folders for static files
file: path="{{ item }}"
state=directory
owner="{{ ansible_ssh_user }}"
group=mmw
mode=0775
with_items:
- "{{ app_static_root }}"
- "{{ app_media_root }}"
- "{{ app_static_cache }}"
- name: Install application JavaScript dependencies
command: "npm install --unsafe-perm"
args:
chdir: "{{ app_home }}"
sudo: False
- name: Create static files and run collectstatic (staging/production)
command: "./bundle.sh --vendor"
args:
chdir: "{{ app_home }}"
environment: app_config
sudo: False
when: "['development'] | is_not_in(group_names)"
- name: Create static files and run collectstatic (development)
command: "./bundle.sh --vendor --tests --debug"
args:
chdir: "{{ app_home }}"
environment: app_config
sudo: False
when: "['development'] | is_in(group_names)"
- name: Run Django collectstatic command
django_manage: command=collectstatic app_path="{{ app_home }}"
environment: app_config
sudo: False
- name: Create JavaScript test harness
template: src=testem-harness.html.j2
dest="{{ app_static_root }}/test.html"
sudo: False
when: "['development', 'test'] | some_are_in(group_names)"
|
Use global language version on pre-commit configuration | repos:
- repo: https://github.com/ambv/black
rev: 19.10b0
hooks:
- id: black
args: [--safe, --quiet]
language_version: python3.6
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- repo: local
hooks:
- id: rst
name: rst
entry: rst-lint --encoding utf-8
files: ^(README.rst|HOWTORELEASE.rst)$
language: python
additional_dependencies: [pygments, restructuredtext_lint]
| default_language_version:
python: python3.6
repos:
- repo: https://github.com/ambv/black
rev: 19.10b0
hooks:
- id: black
args: [--safe, --quiet]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- repo: local
hooks:
- id: rst
name: rst
entry: rst-lint --encoding utf-8
files: ^(README.rst|HOWTORELEASE.rst)$
language: python
additional_dependencies: [pygments, restructuredtext_lint]
|
Update .NET version in git hub action | # Docs for the Azure Web Apps Deploy action: https://go.microsoft.com/fwlink/?linkid=2134798
# More GitHub Actions for Azure: https://go.microsoft.com/fwlink/?linkid=2135048
name: Azure App Service - todoistcalendar(Production), Build and deploy DotnetCore app
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
# checkout the repo
- name: 'Checkout Github Action'
uses: actions/checkout@master
- name: Set up .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.301'
- name: Build with dotnet
run: dotnet build --configuration Release
- name: dotnet publish
run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/myapp
- name: Run Azure webapp deploy action using publish profile credentials
uses: azure/webapps-deploy@v2
with:
app-name: todoistcalendar
slot-name: Production
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_1561FC95F2594279A114B38CF36C15B1 }}
package: ${{env.DOTNET_ROOT}}/myapp
| # Docs for the Azure Web Apps Deploy action: https://go.microsoft.com/fwlink/?linkid=2134798
# More GitHub Actions for Azure: https://go.microsoft.com/fwlink/?linkid=2135048
name: Azure App Service - todoistcalendar(Production), Build and deploy DotnetCore app
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
# checkout the repo
- name: 'Checkout Github Action'
uses: actions/checkout@master
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Build with dotnet
run: dotnet build --configuration Release
- name: dotnet publish
run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/myapp
- name: Run Azure webapp deploy action using publish profile credentials
uses: azure/webapps-deploy@v2
with:
app-name: todoistcalendar
slot-name: Production
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_1561FC95F2594279A114B38CF36C15B1 }}
package: ${{env.DOTNET_ROOT}}/myapp
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.