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... | 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 analy... |
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... | 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... |
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... | 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... |
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: elastic... | 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: elastic... |
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/1wSG7E2MbRdO0UGoJUCWx... | 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/TmU6Moxuwy6KTN7yzmL6586nSvoAw9... |
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/... | 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: g... |
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 ap... | # 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 glo... |
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:
... |
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/... | 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/... |
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/ph... | 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/ph... |
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/cove... | 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 bu... |
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/i... | 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... |
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/t... | 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/t... |
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
-... | 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
-... |
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.... | 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=
- SCIPYSPE... |
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 .
- ps... | 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 .
- ps... |
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 ... | 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-dj1... | 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-djm... |
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/asott... | 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... |
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_c... | 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_c... |
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... | 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... |
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.1... | 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:
... |
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... | 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:
- ./gradle... |
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"
... | 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"
... |
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
-... | 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
... |
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 ka... | 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 ... |
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/b... | 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/t... |
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... | 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()'
... |
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"
... | 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"
... |
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 ... | 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 ... |
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 `... | 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:
- dock... |
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) -... | 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... |
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
... | 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
... |
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 -pro... | 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 -pro... |
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
-... | {% 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
-... |
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 rustf... | 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-cma... |
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 ... | 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 --... |
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 Precom... | 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 ... |
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... | 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... |
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'... | 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... |
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
languag... | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
languag... |
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 ... | 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 kitc... |
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... | 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 --u... |
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/promis... |
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:
allo... | 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:
... |
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 ... | 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
-... |
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:... | ---
- 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:... |
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
supervisorc... | ---
- 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=/... |
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... | 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... |
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... | 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... |
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... |
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 ... | ---
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-manag... |
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: fa0bb981d5e2a118b5cdd2f303ab8a291be686b302a3832754e690dbcbf... | {% 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: e4e2758d8f202a5bb7fd94f45b87cccf2092bfc97786cc0c8321ab35d72... |
Add settings view (and reorder some others) | ################################################
## Packages / Group
################################################
homeassistant:
customize:
################################################
## Node Anchors
################################################
package.node_anchors:
customize: &c... | ################################################
## Packages / Group
################################################
homeassistant:
customize:
################################################
## Node Anchors
################################################
package.node_anchors:
customize: &c... |
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/ope... | - 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/ope... |
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:
po... | - 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:
po... |
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:
... | 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... |
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 }}/{{ n... | {% 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 }}/{{ n... |
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://... | # ~/.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://... |
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 \
... | 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 \
... |
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.... | # 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.... |
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/issue... | 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/interga... |
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/postmoder... | 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/postmoder... |
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:
... |
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
... | {% 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
... |
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-fol... | 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-fol... |
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 depe... | - 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 depe... |
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 depende... | ---
- 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 depende... |
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: loc... | 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
... |
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:... | # 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:... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.