Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Add caching to make CI runs faster | language: python
python: "2.7"
install:
- pip install -r requirements.txt
- pip install coveralls
script:
coverage run --source='.' --omit='*_test.py' -m unittest discover --pattern='*_test.py'
after_success:
coveralls
| language: python
cache: pip
python: "2.7"
install:
- pip install -r requirements.txt
- pip install coveralls
script:
coverage run --source='.' --omit='*_test.py' -m unittest discover --pattern='*_test.py'
after_success:
coveralls
|
Revert "Remove bundler before_install steps" | language: ruby
cache: bundler
sudo: false
dist: trusty
branches:
only: master
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- ruby-head
before_install:
- eval "$(curl --connect-timeout 30 --retry 3 -Ss https://raw.githubusercontent.com/neovim/bot-ci/master/scripts/travis-setup.sh) nightly-x64"
env: NVIM_RUBY_LOG_LEVEL... | language: ruby
cache: bundler
sudo: false
dist: trusty
branches:
only: master
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- ruby-head
before_install:
- eval "$(curl --connect-timeout 30 --retry 3 -Ss https://raw.githubusercontent.com/neovim/bot-ci/master/scripts/travis-setup.sh) nightly-x64"
- gem update --system
... |
Add PHP 7 on Travis | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
include:
- php: 5.3
env: deps=low
env:
global:
- deps=no
before_install:
- composer self-update
install:
- if [ "$deps" = "no" ]; then composer install; fi... | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
include:
- php: 5.3
env: deps=low
env:
global:
- deps=no
before_install:
- composer self-update
install:
- if [ "$deps" = "no" ]; then composer ins... |
Add autoreconf before we start check | language: python
python:
- "2.7"
before_install:
- sudo apt-get -y install scons
- pushd deps/check-0.9.8
- ./configure
- make
- sudo make install
- sudo ldconfig
- popd
- scons statsite test_runner
install: pip install pytest==2.3.4
script: ./bootstrap.sh && ./configure && make test && py.test integ/... | language: python
python:
- "2.7"
before_install:
- sudo apt-get -y install scons
- pushd deps/check-0.9.8
- autoreconf
- ./configure
- make
- sudo make install
- sudo ldconfig
- popd
- scons statsite test_runner
install: pip install pytest==2.3.4
script: ./bootstrap.sh && ./configure && make test &&... |
Add codecolimate repo token for | language: node_js
node_js:
- "v5.4.1"
script: "npm run-script test-travis"
after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
notifications:
email:
- nico@luxe.com | language: node_js
node_js:
- "v5.4.1"
script: "npm run-script test-travis"
after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
addons:
code_climate:
repo_token: 9111f5477047e3564cd1a30bed8affe48eb781bcfcac857310d13c10cc95700c
notifications:
email:
- nico@luxe.com
|
Fix Travis Go versioning fail | language: go
sudo: required
os:
- linux
- osx
go:
- 1.10
script: sudo -E $(which go) test -v ./...
| language: go
sudo: required
os:
- linux
- osx
go:
- "1.10"
script: sudo -E $(which go) test -v ./...
|
Test on Java 8 & 9 | branches:
only:
- master
jdk:
- openjdk7
- openjdk8
language: clojure
sudo: false
| branches:
only:
- master
jdk:
- openjdk8
- openjdk9
language: clojure
sudo: false
|
Fix build to not try push docs on RUN_TESTS matrix | language: python
python:
- '2.7'
matrix:
include:
- os: linux
env: RUN_TESTS='true'
addons:
postgresql: "9.4"
- os: linux
env: BUILD_DOCS='true'
cache: pip
# Travis team suggested fix for truncated log build failures
filter_secrets: false
install:
- if [ "${RUN_TESTS}" == "true... | language: python
python:
- '2.7'
matrix:
include:
- os: linux
env: RUN_TESTS='true'
addons:
postgresql: "9.4"
- os: linux
env: BUILD_DOCS='true'
cache: pip
# Travis team suggested fix for truncated log build failures
filter_secrets: false
install:
- if [ "${RUN_TESTS}" == "true... |
Remove alpha version of Django 1.11 in tests | branches:
only:
- master
language: python
python:
- '3.4'
- '3.5'
env:
- DJANGO_VERSION=">=1.8,<1.9"
- DJANGO_VERSION=">=1.9,<1.10"
- DJANGO_VERSION=">=1.10,<1.11"
- DJANGO_VERSION=">=1.11a,<1.12"
matrix:
include:
- python: 3.6
env: DJANGO_VERSION=">=1.11a,<1.12"
- python: '3.7-dev'
env: DJA... | branches:
only:
- master
language: python
python:
- '3.4'
- '3.5'
env:
- DJANGO_VERSION=">=1.8,<1.9"
- DJANGO_VERSION=">=1.9,<1.10"
- DJANGO_VERSION=">=1.10,<1.11"
- DJANGO_VERSION=">=1.11,<1.12"
matrix:
include:
- python: 3.6
env: DJANGO_VERSION=">=1.11,<1.12"
- python: '3.7-dev'
env: DJANG... |
Test with JDK 14 on Travis CI | language: java
jdk:
- openjdk8
- openjdk11
env:
- GWT_VERSION=2.8.2
- GWT_VERSION=2.9.0
- GWT_VERSION=HEAD-SNAPSHOT
install: true
script: mvn -U verify -Dinvoker.streamLogs=true -Dinvoker.mavenOpts="-Djava.net.preferIPv4Stack=true" -DgwtVersion=$GWT_VERSION
after_success:
- ci/deploy-snapshot.sh
notifi... | language: java
jdk:
- openjdk8
- openjdk11
- openjdk14
env:
- GWT_VERSION=2.8.2
- GWT_VERSION=2.9.0
- GWT_VERSION=HEAD-SNAPSHOT
install: true
script: mvn -U verify -Dinvoker.streamLogs=true -Dinvoker.mavenOpts="-Djava.net.preferIPv4Stack=true" -DgwtVersion=$GWT_VERSION
after_success:
- ci/deploy-snaps... |
Use the latest macOS/Xcode available on Travis | os:
- osx
language: node_js
sudo: false
node_js: node
script:
- npm run dist
| os:
- osx
osx_image: xcode8
language: node_js
sudo: false
node_js: node
script:
- npm run dist
|
Fix script name in CI config | language: node_js
sudo: false
cache:
directories:
- node_modules
node_js:
- 8
- 10
- 12
- node
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
script: npm run ci
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| language: node_js
sudo: false
cache:
directories:
- node_modules
node_js:
- 8
- 10
- 12
- node
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
script: npm run test:ci
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
|
Fix 'composer install' not called with Travis | language: php
php:
- 5.3.3
- 5.4
- 5.5
- 5.6
- 7.0
script: vendor/bin/phpunit --configuration .phpunit.xml
| language: php
php:
- 5.3.3
- 5.4
- 5.5
- 5.6
- 7.0
install:
- composer install --no-interaction
script: vendor/bin/phpunit --configuration .phpunit.xml
|
Switch to clover coverage format. | language: php
php:
- '7.1'
notifications:
on_success: never
on_failure: always
services:
- mysql
before_script:
- mysql -u root -e "CREATE DATABASE stocktest;"
- mysql -u root -e "CREATE USER 'stocktest'@'localhost' IDENTIFIED BY 'stocktest';"
- mysql -u root -e "GRANT ALL ON stocktest.* TO 'stocktest'@'loc... | language: php
php:
- '7.1'
notifications:
on_success: never
on_failure: always
services:
- mysql
before_script:
- mysql -u root -e "CREATE DATABASE stocktest;"
- mysql -u root -e "CREATE USER 'stocktest'@'localhost' IDENTIFIED BY 'stocktest';"
- mysql -u root -e "GRANT ALL ON stocktest.* TO 'stocktest'@'loc... |
Add example Git user info | language: ruby
install:
- bundle
- bundle exec rake db:migrate RAILS_ENV=test
script:
- cucumber
branches:
only:
- master
| language: ruby
install:
- bundle
- bundle exec rake db:migrate RAILS_ENV=test
- git config --global user.name "Example User"
- git config --global user.email "user@example.com"
script:
- cucumber
branches:
only:
- master
|
Add Gemfile-pure back into build matrix. | language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 2.2
- 2.3
- 2.4
- jruby-9
- rbx-3
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: jruby-9
- rvm: rbx-3
dist: trusty
| language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
gemfile:
- Gemfile
- Gemfile-pure
rvm:
- 2.2
- 2.3
- 2.4
- jruby-9
- rbx-3
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: jruby-9
- rvm: rbx-3
dist: trusty
|
Update bundler before Travis CI builds | language: ruby
services:
- redis-server
rvm:
- 2.3
- 2.2
- 2.1
- 2.0.0
notifications:
email:
recipients:
- gabe@ga.be
gemfile:
- gemfiles/sidekiq_2.gemfile
- gemfiles/sidekiq_master.gemfile
| language: ruby
services:
- redis-server
rvm:
- 2.3
- 2.2
- 2.1
- 2.0.0
notifications:
email:
recipients:
- gabe@ga.be
gemfile:
- gemfiles/sidekiq_2.gemfile
- gemfiles/sidekiq_master.gemfile
before_install:
- gem update bundler
|
Update TravisCI with notifications for Slack | language: python
env:
global:
# This is needed so we don't load Travis-CI's boto config, see:
# https://github.com/boto/boto/issues/3741
- BOTO_CONFIG=/tmp/nowhere
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.7
env: TOXENV=py37
branches:... | language: python
env:
global:
- BOTO_CONFIG=/tmp/nowhere
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.7
env: TOXENV=py37
branches:
only:
- master
install:
- pip install -r requirements.txt
- pip install -e .
script:
- pylint laniakea
- tox
deploy:
provider: pypi
user: mozillasec... |
Add ruby-head to Travis CI | language: ruby
rvm:
- 1.9.3
- 2.0.0
before_install:
- gem install dep
- dep install
script:
ruby -w test/*.rb
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- ruby-head
before_install:
- gem install dep
- dep install
script:
ruby -w test/*.rb
|
Test build on go 1.3 | language: go
# Test on 1.1 and 1.2, our supported versions
go:
- 1.1
- 1.2
# https://github.com/travis-ci/travis-ci/issues/2220
# Tests require ruby
install:
- rvm get stable
- rvm use 2.0 --install --binary --fuzzy
# Make will compile, download bundles and run tests
script:
- make test
| language: go
# Test on 1.1, 1.2 and 1.3, our supported versions
go:
- 1.1
- 1.2
- 1.3
# https://github.com/travis-ci/travis-ci/issues/2220
# Tests require ruby
install:
- rvm get stable
- rvm use 2.0 --install --binary --fuzzy
# Make will compile, download bundles and run tests
script:
- make test
|
Move to Travis's container-based infrastructure | language: ruby
rvm:
- 1.9.3
- 2.1
- 2.2
before_install:
- gem update bundler
script:
- bundle exec rake
branches:
except:
- release
notifications:
email: false
| language: ruby
sudo: false
rvm:
- 1.9.3
- 2.1
- 2.2
script:
- bundle exec rake
branches:
except:
- release
notifications:
email: false
|
Install from python/mypy instead of JukkaL/mypy. | sudo: false
language: python
python:
- "3.5"
# More versions later.
install:
- pip install -U git+git://github.com/JukkaL/mypy
script:
- ./runtests.py -x tornado sqlalchemy 3/enum requests
| sudo: false
language: python
python:
- "3.5"
# More versions later.
install:
- pip install -U git+git://github.com/python/mypy
script:
- ./runtests.py -x tornado sqlalchemy 3/enum requests
|
Use dynamic node versions on Travis CI | sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
| sudo: false
language: node_js
node_js:
- 'node'
- '--lts'
|
Automate launching a release with Travis | language: java
jdk:
- oraclejdk8
before_install:
- chmod +x gradlew
after_success:
- ./gradlew cobertura coveralls
| language: java
jdk:
- oraclejdk8
before_install:
- chmod +x gradlew
after_success:
- ./gradlew cobertura coveralls
deploy:
- provider: script
script: ./gradlew bintrayUpload -PbintrayUser="${BINTRAY_USER}" -PbintrayKey="${BINTRAY_KEY}" -PdryRun=false
skip_cleanup: true
on:
tags: true
|
Disable xdebug for Travis CI builds | language: php
dist: trusty
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
cache:
directories:
- ${HOME}/.composer/cache/files
matrix:
fast_finish: true
include:
- php: 5.3
dist: precise
env: COMPOSER_FLAGS="--prefer-lowest"
before_script:
- composer update --no-interact... | language: php
dist: trusty
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
cache:
directories:
- ${HOME}/.composer/cache/files
matrix:
fast_finish: true
include:
- php: 5.3
dist: precise
env: COMPOSER_FLAGS="--prefer-lowest"
before_script:
- phpenv config-rm xdebug.ini
... |
Add user flag for pip install on Travis | language: node_js
# 4.3.2 is what AWS Lambda currently uses
node_js:
- "5"
- "4.3.2"
python:
- "2.7"
before_install:
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
- pip install pytest
- pip install -r requirements.txt
script:
- npm test
- pytest
# For code coverage:
after_success:
cat ./cover... | language: node_js
# 4.3.2 is what AWS Lambda currently uses
node_js:
- "5"
- "4.3.2"
python:
- "2.7"
before_install:
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
- pip install --user pytest
- pip install --user -r requirements.txt
script:
- npm test
- pytest
# For code coverage:
after_success:
... |
Build with node 10 and 11, drop 9 | language: node_js
sudo: false
node_js:
- "6"
- "8"
- "9"
script: "npm run-script travis"
| language: node_js
sudo: false
node_js:
- "6"
- "8"
- "10"
- "11"
script: "npm run-script travis"
|
Enable testing on Python 3.4 | language: python
python:
- "2.7"
- "pypy"
- "3.2"
- "3.3"
install:
- python setup.py --quiet install
script:
- nosetests
- ./test.bash
| language: python
python:
- "2.7"
- "pypy"
- "3.2"
- "3.3"
- "3.4"
install:
- python setup.py --quiet install
script:
- nosetests
- ./test.bash
|
Disable npm cache on Travis | language: node_js
node_js:
- 10
- 11
- 12
- 13
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- graphicsmagick
- inkscape
script: npm run test:ci
after_success: '<coverage/lcov.info ./node_... | language: node_js
node_js:
- 10
- 11
- 12
- 13
cache:
npm: false
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- graphicsmagick
- inkscape
script: npm run test:ci
after_success: '<covera... |
Improve Travis CI build Performance | language: java
jdk:
- openjdk8
- openjdk11
services:
- redis-server
after_success:
- mvn clean test jacoco:report coveralls:report
| language: java
jdk:
- openjdk8
- openjdk11
services:
- redis-server
after_success:
- mvn clean test jacoco:report coveralls:report
cache:
directories:
- $HOME/.m2
|
Disable Rubinius for Travis CI, enable 1.9.2 | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
|
Add back debug flags to JRUBY_OPTS | language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.9
- 2.2.5
- 2.3.1
- jruby-19mode
- jruby-head
- rbx-2
before_install:
# bundler installation needed for jruby-head
# https://github.com/travis-ci/travis-ci/issues/5861
- gem install bundler
| language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.9
- 2.2.5
- 2.3.1
- jruby-19mode
- jruby-head
- rbx-2
before_install:
# bundler installation needed for jruby-head
# https://github.com/travis-ci/travis-ci/issues/5861
- gem install bundler
env:
- JRUBY_OPTS="-d --server -Dcext.enabled=fal... |
Add Python 3.3 configuration to .travic.yml | language: python
python:
- "2.7"
script: nosetests
notifications:
email:
- curzona@gmail.com
| language: python
python:
- "2.7"
- "3.3"
script: nosetests
notifications:
email:
- curzona@gmail.com
|
Add support for Node.js v0.12.0 | sudo: false
language: node_js
node_js:
- "0.10"
script:
- npm test
- npm run lint
after_success:
- npm run coveralls
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
script:
- npm test
- npm run lint
after_success:
- npm run coveralls
|
Support for generating spress.phar again | language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
- composer install --no-interaction --no-dev
script:
- phpunit
matrix:
allow_failures:
- php: hhvm
fast_finish: true
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/0957171278778ab21da... | language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
- composer install --no-interaction --no-dev
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]] && [[ "$TRAVIS_PHP_VERSION" != "7.0" ]]; then curl -LSs https://box-project.github.io/box2/installer.php | php; fi
script:
- phpun... |
Test on the actually used PHP version | language: php
dist: xenial
branches:
except:
- dependabot/*
php: "7.2"
addons:
apt:
packages:
- etoolbox
- ghostscript
- graphviz
- latex-xcolor
- librsvg2-bin
- lmodern
- make
- nodejs
- npm
- pandoc
- pandoc-citeproc
- python3
- python3-pip
- pyth... | language: php
dist: xenial
branches:
except:
- dependabot/*
php: "7.3"
addons:
apt:
packages:
- etoolbox
- ghostscript
- graphviz
- latex-xcolor
- librsvg2-bin
- lmodern
- make
- nodejs
- npm
- pandoc
- pandoc-citeproc
- python3
- python3-pip
- pyth... |
Set puppet version for tests to 3.7. | rvm: 1.9.3
notifications:
email:
- patrick.schoenfeld@googlemail.com
env:
- PUPPET_VERSION=2.7.11
| rvm: 1.9.3
notifications:
email:
- patrick.schoenfeld@googlemail.com
env:
- PUPPET_VERSION=3.7.2
|
Test on modern versions of Node.js | language: node_js
node_js:
- 0.8
- 0.10
deploy:
provider: npm
email: anthony@chovy.com
api_key:
secure: XoXsuVcSb1a5bxbo3qYffbe4NitoBbAp3xZwdMZsYUUiMKxWzQLGijtnYOZThcnfGnDweU0Lu8mry5yULE8vqZYoqXtvmKmu+Az2bK2MFmpSrGN5+cU46ozYrqY0tJwqCxibcMDUq2CvImbVEuC1FgW2S1B3C0yX1DNdZs+wZG0=
on:
tags: true
repo... | language: node_js
node_js:
- 6
- 8
- 10
deploy:
provider: npm
email: anthony@chovy.com
api_key:
secure: XoXsuVcSb1a5bxbo3qYffbe4NitoBbAp3xZwdMZsYUUiMKxWzQLGijtnYOZThcnfGnDweU0Lu8mry5yULE8vqZYoqXtvmKmu+Az2bK2MFmpSrGN5+cU46ozYrqY0tJwqCxibcMDUq2CvImbVEuC1FgW2S1B3C0yX1DNdZs+wZG0=
on:
tags: true
re... |
Remove trunk build in AppVeyor | ---
version: "{build}"
clone_depth: 100
init:
# To avoid duplicated executables in PATH, see https://github.com/ruby/spec/pull/468
- set PATH=C:\Ruby%ruby_version%\bin;C:\Program Files\7-Zip;C:\Program Files\AppVeyor\BuildAgent;C:\Program Files\Git\cmd;C:\Windows\system32;C:\Program Files;C:\Windows
# Loads trunk... | ---
version: "{build}"
clone_depth: 100
init:
# To avoid duplicated executables in PATH, see https://github.com/ruby/spec/pull/468
- set PATH=C:\Ruby%ruby_version%\bin;C:\Program Files\7-Zip;C:\Program Files\AppVeyor\BuildAgent;C:\Program Files\Git\cmd;C:\Windows\system32;C:\Program Files;C:\Windows
environment:
... |
Revert "Set default charset and collate for Travis CI mysql DB" | #This Travis config template file was taken from https://github.com/FriendsOfCake/travis
language: php
php:
- 5.6
- 7.0
sudo: false
env:
matrix:
- DB=mysql db_dsn='mysql://travis@0.0.0.0/cakephp_test'
global:
- DEFAULT=1
matrix:
fast_finish: true
install:
- composer install --no-interaction --n... | #This Travis config template file was taken from https://github.com/FriendsOfCake/travis
language: php
php:
- 5.6
- 7.0
sudo: false
env:
matrix:
- DB=mysql db_dsn='mysql://travis@0.0.0.0/cakephp_test'
global:
- DEFAULT=1
matrix:
fast_finish: true
install:
- composer install --no-interaction --n... |
Install windows-build-tools before attempting build on Windows | environment:
matrix:
- node_version: '6'
- node_version: '8'
install:
- ps: 'Install-Product node $env:node_version'
- npm install
test_script:
- npm test
build: off
| environment:
matrix:
- node_version: '6'
- node_version: '8'
install:
- ps: 'Install-Product node $env:node_version'
- ps: 'npm install --global --production windows-build-tools'
- npm install
test_script:
- npm test
build: off
|
Add config to cache bundler | language: ruby
before_install:
- gem install bundler -v '>= 1.5.1'
install: bundle install
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
before_script:
- rake app:db:create
- rake app:db:test:load
script:
- "cd spec/dummy && bundle exec rspec spec"
services:
- elasticsearch | language: ruby
cache: bundler
before_install:
- gem install bundler -v '>= 1.5.1'
install: bundle install
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
before_script:
- rake app:db:create
- rake app:db:test:load
script:
- "cd spec/dummy && bundle exec rspec spec"
services:
- elasticsearch |
Add nuget restore Change path tests files | version: 1.0.0.{build}
branches:
only:
- master
test:
# assemblies to test - optional
assemblies:
- Wox.Skype.Test\bin\$(configuration)\Wox.Skype.Test.dll
| version: 1.0.0.{build}
branches:
only:
- master
before_build:
- nuget restore
test:
# assemblies to test - optional
assemblies:
- **\Wox.Skype.Test\bin\$(configuration)\Wox.Skype.Test.dll
|
Bring back Xvfb for Travis | sudo: false
language: python
matrix:
include:
- os: linux
python: 2.7
- os: linux
python: 3.3
- os: linux
python: 3.4
- os: linux
python: 3.5
# - os: osx
# language: generic
addons:
firefox: "54.0"
apt:
packages:
- oracle-java8-set-default
install:
- nvm install 4.2
- nvm ... | sudo: false
language: python
matrix:
include:
- os: linux
python: 2.7
- os: linux
python: 3.3
- os: linux
python: 3.4
- os: linux
python: 3.5
# - os: osx
# language: generic
addons:
firefox: "54.0"
apt:
packages:
- oracle-java8-set-default
before_install: |
if [[ $TRAVIS... |
Add configure to Travis CI build. | language: c
compiler:
- gcc
- clang
script:
- make clean
- make
| language: c
compiler:
- gcc
- clang
before_script:
- ./configure
script:
- make clean
- make
|
Update Travis CI to work with new test layout. | language: python
python:
- 2.7
- 3.2
virtualenv:
system_site_packages: true
before_install:
- if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then sudo apt-get install python-numpy; fi
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then sudo apt-get install python3-numpy; fi
install:
- if [[ $TRAVIS_PYTHON_VERSION == 2* ]... | language: python
python:
- 2.7
- 3.2
virtualenv:
system_site_packages: true
before_install:
- if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then sudo apt-get install python-numpy; fi
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then sudo apt-get install python3-numpy; fi
install:
- if [[ $TRAVIS_PYTHON_VERSION == 2* ]... |
Add Ruby 2.0.0 and Ruby 2.1.2 to Travis build matrix | language: ruby
rvm:
- 1.9.3
- 1.9.2
- 1.8.7
- jruby-19mode
- jruby-18mode
- rbx-19mode
| language: ruby
rvm:
- 2.1
- 2.0.0
- 1.9.3
- jruby-19mode
- rbx-2
|
Update Travis testing to 2.1 | language: ruby
rvm:
- 2.0.0-p247
before_install:
- "cd Isengard"
before_script:
- "RAILS_ENV=test bundle exec rake db:setup"
notifications:
email:
recipients:
- gandalf@zeus.ugent.be
on_success: change
on_failure: always
irc:
channels:
- "wina.ugent.be#hydra"
on_success: c... | language: ruby
rvm:
- 2.1.0
before_install:
- "cd Isengard"
before_script:
- "RAILS_ENV=test bundle exec rake db:setup"
notifications:
email:
recipients:
- gandalf@zeus.ugent.be
on_success: change
on_failure: always
irc:
channels:
- "wina.ugent.be#hydra"
on_success: change... |
Fix CI: have to to use trusty for openjdk8 | language: java
jdk:
- openjdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/ | language: java
dist: trusty
jdk:
- openjdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/ |
Test with stable JRuby 9k in Travis | # Use container-based infrastructure
sudo: false
language: ruby
# Travis bug, see https://github.com/bundler/bundler/pull/3559
before_install: gem update bundler
cache: bundler
rvm:
- ruby-head
- 2.3.3 # Travis lacking 2.3 alias, see https://github.com/travis-ci/travis-ci/issues/5361
- 2.2
- 2.1
- 2.0.0
- 1... | # Use container-based infrastructure
sudo: false
language: ruby
# Travis bug, see https://github.com/bundler/bundler/pull/3559
before_install: gem update bundler
cache: bundler
rvm:
- ruby-head
- 2.3.3 # Travis lacking 2.3 alias, see https://github.com/travis-ci/travis-ci/issues/5361
- 2.2
- 2.1
- 2.0.0
- 1... |
Fix tvOS Simulator destination parameter in the Travis CI configuration | # Configuration for Travis (https://travis-ci.com)
language: objective-c
osx_image: xcode10.1
xcode_project: Bases.xcodeproj
matrix:
include:
- xcode_scheme: "Base16 (iOS)"
xcode_destination: platform=iOS Simulator,OS=12.1,name=iPhone XS
- xcode_scheme: "Base16 (macOS)"
- xcode_scheme: "Base16 (tv... | # Configuration for Travis (https://travis-ci.com)
language: objective-c
osx_image: xcode10.1
xcode_project: Bases.xcodeproj
matrix:
include:
- xcode_scheme: "Base16 (iOS)"
xcode_destination: platform=iOS Simulator,OS=12.1,name=iPhone XS
- xcode_scheme: "Base16 (macOS)"
- xcode_scheme: "Base16 (tv... |
Update circleci/python:3.7.0 Docker digest to e24a1db | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.0@sha256:6de1b4677b7f37f413b64a043cbb5df435eb4356d4b4f86c34aa8f0b6e31cd76
working_directory: ~/repo
steps:
- checko... | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.0@sha256:e24a1db944cfe185fcc888ba043eadf385012f91325c92ab6065674eef815415
working_directory: ~/repo
steps:
- checko... |
Use g++ 6 when compiling addon | version: 2
jobs:
build:
docker:
- image: circleci/node:8.4.0
steps:
- checkout
- run:
name: install
command: |
sudo bash -c 'echo "deb http://ftp.us.debian.org/debian unstable main contrib non-free" >> /etc/apt/sources.list.d/unstable.list'
sudo ap... | version: 2
jobs:
build:
docker:
- image: circleci/node:8.4.0
steps:
- checkout
- run:
name: install
command: |
sudo bash -c 'echo "deb http://ftp.us.debian.org/debian unstable main contrib non-free" >> /etc/apt/sources.list.d/unstable.list'
sudo ap... |
Add a new job to run with py3 | version: 2
jobs:
build:
docker:
- image: circleci/python:2.7
steps:
- checkout
- run: pip install poetry --user
- run: poetry install
- run: poetry run python setup.py install
- run: poetry run nosetests -v
| version: 2
jobs:
build-py2:
docker:
- image: circleci/python:2.7
steps:
- checkout
- run: pip install poetry --user
- run: poetry install
- run: poetry run python setup.py install
- run: poetry run nosetests -v
build-py3:
docker:
- image: circleci/python
st... |
Add to the gh-pages commits | version: 2
jobs:
build:
working_directory: ~/build
docker:
- image: circleci/node:latest
branches:
only:
- master
steps:
- checkout
- restore_cache:
keys:
- 'v1-{{ checksum "book.json" }}'
- 'v1-'
- run:
name: "Install G... | version: 2
jobs:
build:
working_directory: ~/build
docker:
- image: circleci/node:latest
branches:
only:
- master
steps:
- checkout
- restore_cache:
keys:
- 'v1-{{ checksum "book.json" }}'
- 'v1-'
- run:
name: "Install G... |
Update file config to add collection | # Setup
title: Rock Night
tagline: 'Tudo da night Rock n Roll'
description: 'Blog sobre a Night Rock'
url: http://rocknight.github.io
author: 'Marquinhus Gonçalves'
email: eu@marquinhusgoncalves.com
# google_analytics:
account: UA-104483135-1
# Build... | # Setup
title: Rock Night
tagline: 'Tudo da night Rock n Roll'
description: 'Blog sobre a Night Rock'
baseurl: ''
url: http://rocknight.github.io
author: 'Marquinhus Gonçalves'
email: eu@marquinhusgoncalves.com
# google_analytics:
account: UA... |
Comment out markdown & highlighter config | markdown: redcarpet
highlighter: pygments # or rouge or null
exclude:
- node_modules
- gulpfile.js
- gulpconfig.json
- package.json
- config.rb
- npm-debug.log
- README.md
title: DojoCon Japan 2016
description: DojoCon Japan 2016
url: http://dojocon.coderdojo.jp
baseurl: / | # markdown: redcarpet
# highlighter: pygments # or rouge or null
exclude:
- node_modules
- gulpfile.js
- gulpconfig.json
- package.json
- config.rb
- npm-debug.log
- README.md
title: DojoCon Japan 2016
description: DojoCon Japan 2016
url: http://dojocon.coderdojo.jp
baseurl: / |
Change tmp folder location and nvm dir | ---
tmp_dir: "{{ ansible_env.HOME }}/ansible-tmp"
fonts:
archive_url: https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/1.050R-it.tar.gz
archive_dir: source-code-pro-2.030R-ro-1.050R-it/OTF
install_dir: "{{ ansible_env.HOME }}/.local/share/fonts/source-code-pro"
nvm:
script_url: https://raw.git... | ---
tmp_dir: "{{ ansible_env.HOME }}/.ansible/ansible-tmp"
fonts:
archive_url: https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/1.050R-it.tar.gz
archive_dir: source-code-pro-2.030R-ro-1.050R-it/OTF
install_dir: "{{ ansible_env.HOME }}/.local/share/fonts/source-code-pro"
nvm:
script_url: https:... |
Exclude enc files from copying to _site | name: "Mac Operations"
url: "https://macops.ca"
baseurl: ""
permalink: "/:title"
timezone: "America/Montreal"
date_format: "%B %-d, %Y"
# Conversion
# markdown: kramdown
# kramdown:
# input: GFM
# syntax_highlighter: rouge
markdown: ... | name: "Mac Operations"
url: "https://macops.ca"
baseurl: ""
permalink: "/:title"
timezone: "America/Montreal"
date_format: "%B %-d, %Y"
# Conversion
# markdown: kramdown
# kramdown:
# input: GFM
# syntax_highlighter: rouge
markdown: ... |
Use projects as root dir. | auto: true
server: true
permalink: none
baseurl: ""
exclude:
- .gitignore
- README.md
prose:
rooturl: "_posts"
metadata:
"_posts/projects":
- name: "subjects"
field:
element: "multiselect"
label: "Subjects"
placeholder: "Select an Item"
options:
... | auto: true
server: true
permalink: none
baseurl: ""
exclude:
- .gitignore
- README.md
prose:
rooturl: "_posts/projects"
metadata:
"_posts/projects":
- name: "subjects"
field:
element: "multiselect"
label: "Subjects"
placeholder: "Select an Item"
options:
... |
Make sure RabbitMQ is running. | ---
- name: Add the RabbitMQ public GPG key to the apt repo
apt_key: url=http://www.rabbitmq.com/rabbitmq-signing-key-public.asc
state=present
- name: Add RabbitMQ to the sources list
apt_repository: repo='deb http://www.rabbitmq.com/debian/ testing main'
update_cache={{ update_apt_ca... | ---
- name: Add the RabbitMQ public GPG key to the apt repo
apt_key: url=http://www.rabbitmq.com/rabbitmq-signing-key-public.asc
state=present
- name: Add RabbitMQ to the sources list
apt_repository: repo='deb http://www.rabbitmq.com/debian/ testing main'
update_cache={{ update_apt_ca... |
Update SMS Messenger to 5.1.2 (5) | Categories:
- System
License: Apache-2.0
AuthorName: Tibor Kaputa
AuthorEmail: hello@simplemobiletools.com
WebSite: https://simplemobiletools.com
SourceCode: https://github.com/SimpleMobileTools/Simple-SMS-Messenger
IssueTracker: https://github.com/SimpleMobileTools/Simple-SMS-Messenger/issues
Changelog: https://gith... | Categories:
- System
License: Apache-2.0
AuthorName: Tibor Kaputa
AuthorEmail: hello@simplemobiletools.com
WebSite: https://simplemobiletools.com
SourceCode: https://github.com/SimpleMobileTools/Simple-SMS-Messenger
IssueTracker: https://github.com/SimpleMobileTools/Simple-SMS-Messenger/issues
Changelog: https://gith... |
Revert "[agent] update producer test config" | input:
plugins:
- type: json
protocol:
type: tcp
- type: json
protocol:
type: udp
- type: protobuf
protocol:
type: udp
- type: protobuf
protocol:
type: tcp
- type: riemann
protocol:
type: tcp
- type: riemann
protocol:
... | input:
plugins:
- type: json
protocol:
type: tcp
- type: json
protocol:
type: udp
- type: protobuf
protocol:
type: udp
- type: protobuf
protocol:
type: tcp
- type: riemann
protocol:
type: tcp
- type: riemann
protocol:
... |
Update from Hackage at 2019-08-30T16:16:40Z | homepage: https://github.com/phadej/functor-classes-compat#readme
changelog-type: ''
hash: b3a6b28327752d0a32a3909adf9d22cd1a5ae0e9b5d8468af0f9b1e758656194
test-bench-deps: {}
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
synopsis: Data.Functor.Classes instances for core packages
changelog: ''
basic-deps:
base: ! '>... | homepage: https://github.com/phadej/functor-classes-compat#readme
changelog-type: ''
hash: 87cbe71cc1beb44b759c9485deae086dd35cf52bfcb9525dddbcfdadc01e0259
test-bench-deps: {}
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
synopsis: Data.Functor.Classes instances for core packages
changelog: ''
basic-deps:
base: ! '>... |
Add nodejs10 jobs on bionic. | - job:
name: vitrage-dashboard-integration-tests
parent: horizon-integration-tests
required-projects:
- name: openstack/horizon
- name: openstack/vitrage
- name: openstack/python-vitrageclient
- name: openstack/vitrage-dashboard
roles:
- zuul: openstack-infra/devstack
... | - job:
name: vitrage-dashboard-integration-tests
parent: horizon-integration-tests
required-projects:
- name: openstack/horizon
- name: openstack/vitrage
- name: openstack/python-vitrageclient
- name: openstack/vitrage-dashboard
roles:
- zuul: openstack-infra/devstack
... |
Update from Hackage at 2020-12-15T07:39:45Z | homepage: https://github.com/haskell/haskell-language-server/hls-plugin-api
changelog-type: ''
hash: f1919f0dcad29e4c3b2c07ccf38979706e0cd182d3282760a37cc0129ec618a6
test-bench-deps: {}
maintainer: alan.zimm@gmail.com (for now)
synopsis: Haskell Language Server API for plugin communication
changelog: ''
basic-deps:
s... | homepage: https://github.com/haskell/haskell-language-server/hls-plugin-api
changelog-type: ''
hash: 3db1c1c617685ff450a13ada9ae2ac3b684ce492ccd16ece2d4fd4fcff2acadb
test-bench-deps: {}
maintainer: alan.zimm@gmail.com (for now)
synopsis: Haskell Language Server API for plugin communication
changelog: ''
basic-deps:
s... |
Update from Hackage at 2020-11-10T19:10:44Z | homepage: ''
changelog-type: markdown
hash: 0803ca281830e5dfa27704c6b1eb53c13cfc1139db0004e0840d90ccb1a2095a
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Extra transformations functions for polysemy.
changelog: |
# Changelog for polysemy-extra
## v0.1.0.0
* Add several `Input`, `Output` an... | homepage: ''
changelog-type: markdown
hash: 3af10a3cf0afd79e1cff2faac013837321b442c85c5ddb8fb23adc75d7cc7b54
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Extra Input and Output functions for polysemy..
changelog: |
# Changelog for polysemy-extra
## v0.1.1.0
* Add `reinterpretUnder`, `reint... |
Update from Hackage at 2018-04-21T22:37:30Z | homepage: https://github.com/anton-k/temporal-media
changelog-type: ''
hash: 315c091cdd6921e92efbdb7dd64e2cb4282f8537b0dd3cfc354e0c93b56a2fa6
test-bench-deps: {}
maintainer: <anton.kholomiov@gmail.com>
synopsis: data types for temporal media
changelog: ''
basic-deps:
base: ==4.*
Boolean: ! '>=0.2.3'
all-versions:
-... | homepage: https://github.com/anton-k/temporal-media
changelog-type: ''
hash: 7a27d711a786c3dc9163433627e51efcc4b3fce3a947b71c29f3e388f37cae59
test-bench-deps: {}
maintainer: <anton.kholomiov@gmail.com>
synopsis: data types for temporal media
changelog: ''
basic-deps:
base: ==4.*
Boolean: ! '>=0.2.3'
all-versions:
-... |
Fix image naming conventions of packer | aws:
name: "{{target `name`}}"
type: "amazon-ebs"
access_key: "{{cloud `key`}}"
secret_key: "{{cloud `secret`}}"
region: "{{cloud `entry_point`}}"
instance_type: "c3.large"
ssh_username: "{{target `ssh_username`}}"
source_ami: "{{target `source_image`}}"
ami_name: "{{operating_system `name`}}-{{user `... | aws:
name: "{{target `name`}}"
type: "amazon-ebs"
access_key: "{{cloud `key`}}"
secret_key: "{{cloud `secret`}}"
region: "{{cloud `entry_point`}}"
instance_type: "c3.large"
ssh_username: "{{target `ssh_username`}}"
source_ami: "{{target `source_image`}}"
ami_name: "{{user `pattern_name`}}-{{user `imag... |
Update from Hackage at 2016-07-26T14:21:59+0000 | homepage: https://github.com/jcristovao/altcomposition
changelog-type: ''
hash: 16dbfddeb21b633550965757d263396275c7e47eab12bd5d98a309380a34e2cc
test-bench-deps: {}
maintainer: jmacristovao@gmail.com
synopsis: Alternative combinators for unorthodox function composition
changelog: ''
basic-deps:
base: ! '>=4.0 && <4.9... | homepage: https://github.com/jcristovao/altcomposition
changelog-type: ''
hash: 67cb9f4a7f199ee96a7e00a09be752828d43e9a8e0c1255745fcdd4c0a3377fc
test-bench-deps: {}
maintainer: jmacristovao@gmail.com
synopsis: Alternative combinators for unorthodox function composition
changelog: ''
basic-deps:
base: ! '>=4.0 && <4.1... |
Fix submodule checkout in CI | name: CI
on:
schedule:
- cron: '0 14 * * *'
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: Environment Variables
run: |
echo "LABEL=$(date +%Y%m%d)-${GITHUB_SHA::8}" >> $GITHUB_ENV
- name: Build
env:
... | name: CI
on:
schedule:
- cron: '0 14 * * *'
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Environment Variables
run: |
echo "LABEL=$(date +%Y%m%d)-${GITHUB_SHA::8}" >> $GITHUB... |
Fix error in import statement | {% set name = "focal-stats" %}
{% set version = "0.0.2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/focal_stats-{{ version }}.tar.gz
sha256: ed0024a8346fa7dd40e6cd702981d485714d8a74491abf3bd2b04c9bc3db2523
build:
script: {{... | {% set name = "focal-stats" %}
{% set version = "0.0.2" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/focal_stats-{{ version }}.tar.gz
sha256: ed0024a8346fa7dd40e6cd702981d485714d8a74491abf3bd2b04c9bc3db2523
build:
script: {{... |
Revert "add versions and constraints for packages and samples" | name: mime
version: 0.9.0
author: Dart Team <misc@dartlang.org>
description: Helper-package for working with MIME.
homepage: http://www.dartlang.org
dev_dependencies:
unittest: ">=0.9.0 <0.10.0"
environment:
sdk: ">=1.0.0 <2.0.0"
| name: mime
author: Dart Team <misc@dartlang.org>
description: Helper-package for working with MIME.
homepage: http://www.dartlang.org
dev_dependencies:
unittest: any
|
Revert "Moving installation of requirements to a sooner step in the documentation build process" | # .readthedocs.yml
version: 2
python:
version: 3.7
before_install:
- requirements: docs/requirements.txt
- method: pip
path: . | # .readthedocs.yml
version: 2
python:
version: 3.7
install:
- requirements: docs/requirements.txt
- method: pip
path: . |
Update the com.google.code.findbugs dependency coordinates. | repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_servlet: org.apache.geronimo.specs:geronimo-servlet_3.0_spec:jar:1.0
javax_annotation: com.google.code.findbugs:jsr305:jar:3.0.1
gwt_user: com.google.gwt:gwt-user:jar:2.8.2
gwt_dev: com.google.gwt:gwt-dev:jar:2.8.2
javax_validation: ... | repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_servlet: org.apache.geronimo.specs:geronimo-servlet_3.0_spec:jar:1.0
javax_annotation: org.realityforge.javax.annotation:javax.annotation:jar:1.0.0
gwt_user: com.google.gwt:gwt-user:jar:2.8.2
gwt_dev: com.google.gwt:gwt-dev:jar:2.8.2
... |
Increase mem per staging requirements | name: converter
framework:
type: python
mem: 64M
requirements:
pypm:
- bottle
- redis
min_version:
client: 1.4.3
services:
${name}-db: redis
| name: converter
framework:
type: python
mem: 128M
requirements:
pypm:
- bottle
- redis
min_version:
client: 1.4.3
services:
${name}-db: redis
|
Remove --rm flag from docker-compose commands | machine:
services:
- docker
dependencies:
override:
- sudo pip install --upgrade docker-compose==1.5.0rc2
test:
pre:
- docker-compose -f docker/base.yml -f docker/dev.yml run --rm agent
override:
- docker-compose -f docker/base.yml -f docker/dev.yml run --rm app
| machine:
services:
- docker
dependencies:
override:
- sudo pip install --upgrade docker-compose==1.5.0rc2
test:
pre:
- docker-compose -f docker/base.yml -f docker/dev.yml run agent
override:
- docker-compose -f docker/base.yml -f docker/dev.yml run app
|
Install python 2 for bare ubuntu | ---
- hosts: all
remote_user: root
roles:
- common
- users
- swap
- hosts: docker
remote_user: root
roles:
- docker
| ---
- hosts: all
remote_user: root
gather_facts: False
pre_tasks:
- raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal)
- setup: # aka gather_facts
roles:
- common
- users
- swap
- hosts: docker
remote_user: root
roles:
- docker
|
Test Python 3.7 on Appveyor | build: false
services:
- postgresql96
environment:
global:
PGUSER: postgres
PGHOST: localhost
PGPORT: 5432
PGPASSWORD: Password12!
matrix:
- PYTHON_VERSION: 3.6
MINICONDA: C:\Miniconda3-x64
init:
- "ECHO %PYTHON_VERSION% %MINICONDA%"
install:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scri... | build: false
services:
- postgresql96
environment:
global:
PGUSER: postgres
PGHOST: localhost
PGPORT: 5432
PGPASSWORD: Password12!
matrix:
- PYTHON_VERSION: 3.7
MINICONDA: C:\Miniconda3-x64
init:
- "ECHO %PYTHON_VERSION% %MINICONDA%"
install:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scri... |
Update from Hackage at 2017-04-08T19:52:03Z | homepage: https://github.com/nikita-volkov/bug
changelog-type: ''
hash: 5990916e1d791a528bbcc9b043715d7fb3dd4bbc6efdb494a513b07d2d0af3f4
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Better alternatives to the "error" function
changelog: ''
basic-deps:
base: ! '>=4 && <5'
templat... | homepage: https://github.com/nikita-volkov/bug
changelog-type: ''
hash: a516df91c7330d350480a7d338af645f173d1e767450c5f94295020f11c8432c
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Better alternatives to the "error" function
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
templ... |
Update from Hackage at 2018-12-12T14:57:28Z | homepage: https://github.com/minad/ihs
changelog-type: ''
hash: bad6cbaa6bd4ac620e46042f3581acbc6b39d247ac8876aefe26bd7adbcd8672
test-bench-deps: {}
maintainer: Daniel Mendler <mail@daniel-mendler.de>
synopsis: Interpolated Haskell
changelog: ''
basic-deps:
base: ! '>=4.8 && <5'
process: ! '>=1 && <1.7'
all-version... | homepage: https://github.com/minad/ihs
changelog-type: ''
hash: 74456ff62f974855694af53827a87c143f3078f7804f345831e4fce09ebc1ecb
test-bench-deps: {}
maintainer: Daniel Mendler <mail@daniel-mendler.de>
synopsis: Interpolated Haskell
changelog: ''
basic-deps:
base: ! '>=4.8 && <5'
process: ! '>=1 && <1.7'
all-version... |
Update Kotatsu to 2.0 (372) | AntiFeatures:
- NonFreeNet
Categories:
- Reading
- Multimedia
License: GPL-3.0-or-later
AuthorName: Koitharu
SourceCode: https://github.com/nv95/Kotatsu
IssueTracker: https://github.com/nv95/Kotatsu/issues
Name: Kotatsu
AutoName: Kotatsu
RepoType: git
Repo: https://github.com/nv95/Kotatsu.git
Builds:
- versi... | AntiFeatures:
- NonFreeNet
Categories:
- Reading
- Multimedia
License: GPL-3.0-or-later
AuthorName: Koitharu
SourceCode: https://github.com/nv95/Kotatsu
IssueTracker: https://github.com/nv95/Kotatsu/issues
Name: Kotatsu
AutoName: Kotatsu
RepoType: git
Repo: https://github.com/nv95/Kotatsu.git
Builds:
- versi... |
Test against Faraday 2.x minor versions in CI | name: 'Test against supported Faraday minor versions'
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
faraday_version: ['1.0.1', '1.1.0', '1.2.0', '1.3.1', '1.4.1', '1.5.1', '1.6.0', '1.7.2', '1.8.0', '1.9.3', '1... | name: 'Test against supported Faraday minor versions'
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
# Normally, we only test the most recent patch version for any given minor version.
# For v2.0.x, we t... |
Cut jcstress tough run back to every other week | name: JCStress Testing - stress testing
on:
schedule:
- cron: "0 0 * * WED"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11 ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- name: Set up java
uses: actio... | name: JCStress Testing - stress testing
on:
schedule:
- cron: "0 0 1,15 * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11 ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- name: Set up java
uses: acti... |
Document new 'PACKED' file format | # deploy.option.yaml
# Example of a deployment options file using YAML format.
# See http://axonivy.github.io/project-build-plugin/release/deploy-to-engine-mojo.html for
# more information about deployment options parameters.
# All parameters are set to their default values and listed in [brackets].
# Flag indic... | # deploy.option.yaml
# Example of a deployment options file using YAML format.
# See http://axonivy.github.io/project-build-plugin/release/deploy-to-engine-mojo.html for
# more information about deployment options parameters.
# All parameters are set to their default values and listed in [brackets].
# Flag indic... |
Apply MariaDB configuration before user creation | ---
# Now install MariaDB Server and setup a testing database
- name: install the latest version of MariaDB
dnf: name=mariadb-server state=latest
tags:
- mariadb
- name: install the Python extensions for MariaDB
dnf: name=MySQL-python state=latest
tags:
- mariadb
- name: Ensure MariaDB is started now... | ---
# Now install MariaDB Server and setup a testing database
- name: install the latest version of MariaDB
dnf: name=mariadb-server state=latest
tags:
- mariadb
- name: install the Python extensions for MariaDB
dnf: name=MySQL-python state=latest
tags:
- mariadb
- name: Ensure MariaDB is started now... |
Update rust version -> 1.54 in github | name: CI
on:
push:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.48.0
- name: Validate Code
... | name: CI
on:
push:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.54.0
- name: Validate Code
... |
Add default parameter for chef operation | environments:
HOME: /root
PATH: $PATH:/opt/chefdk/embedded/bin:/opt/chef/embedded/bin:/usr/bin
ROLE: '{{config.role}}'
CONSUL_SECRET_KEY: '{{config.token}}'
default:
timeout: 1800
events:
setup:
description: Execute setup
task: setup
configure:
description: Execute configure chef
task: ... | environments:
HOME: /root
PATH: $PATH:/opt/chefdk/embedded/bin:/opt/chef/embedded/bin:/usr/bin
ROLE: '{{config.role}}'
CONSUL_SECRET_KEY: '{{config.token}}'
default:
timeout: 1800
chef:
attribute_keys:
- cloudconductor
events:
setup:
description: Execute setup
task: setup
configure:... |
Add more information to the ovs flows dump | - name: Print statistics for network devices associated with "{{ item }}"
command: ovs-ofctl --protocols OpenFlow13 dump-ports "{{ item|quote }}"
become: true
- name: Print detailed information about network devices associated with "{{ item }}"
command: ovs-ofctl --protocols OpenFlow13 dump-ports-desc "{{ item|q... | - name: Print information on "{{ item }}"
command: ovs-ofctl --protocols OpenFlow13 show "{{ item|quote }}"
become: true
- name: Print statistics for network devices associated with "{{ item }}"
command: ovs-ofctl --protocols OpenFlow13 dump-ports "{{ item|quote }}"
become: true
- name: Print detailed informa... |
Add missing DNS records to example warehouse | net:
dns:
mx:
-
priority: 10
server: mail.example.com
-
priority: 20
server: mail2.example.com
ns:
- 192.168.0.1
- 192.168.0.2
| net:
dns:
mx:
-
priority: 10
server: mail.example.com
-
priority: 20
server: mail2.example.com
ns:
- 192.168.0.1
- 192.168.0.2
soa-ns: ns1.example.com
soa-contact: hostmaster@example.com
|
Update Spring Boot CLI to version 1.+ | # Cloud Foundry Java Buildpack
# Copyright (c) 2013 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... | # Cloud Foundry Java Buildpack
# Copyright (c) 2013 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unl... |
Update CTemplar to 1.2.8 (6) | AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: Apache-2.0
WebSite: https://ctemplar.com
SourceCode: https://github.com/CTemplar/android/tree/fdroid
IssueTracker: https://github.com/CTemplar/android/issues
AutoName: CTemplar
RepoType: git
Repo: https://github.com/CTemplar/android.git
Builds:
- versi... | AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: Apache-2.0
WebSite: https://ctemplar.com
SourceCode: https://github.com/CTemplar/android/tree/fdroid
IssueTracker: https://github.com/CTemplar/android/issues
AutoName: CTemplar
RepoType: git
Repo: https://github.com/CTemplar/android.git
Builds:
- versi... |
Reduce the pod count to pass the load test | POD_COUNT: 80
CONTAINER_IMAGE: gcr.io/gke-release/pause-win:1.0.0
POD_STARTUP_LATENCY_THRESHOLD: 20m
| POD_COUNT: 10
CONTAINER_IMAGE: gcr.io/gke-release/pause-win:1.0.0
POD_STARTUP_LATENCY_THRESHOLD: 20m
|
Use verbose form in example yaml | ssh_groups: - foobar
- credativ
ssh_users:
- { name: "psc", gecos: "Patrick Schoenfeld", group: "credativ", shell: "/bin/zsh", pwhash: "$5$g2ShvVtSoNiISzpI$w9gHo1vtH1uIS1diJTnCDNr4oFPjtHvPqjsFN6T8jWC" ssh_key: {type: "ssh-rsa", key: "AAAAB3NzaC1yc2EAAAABIwAAAQEAqnrrjV9ge602ChzGnhNCJDWKp1rI0Zwb64yr8evY5ozI... | ssh_groups: - foobar
- credativ
ssh_users:
- name: "psc"
gecos: "Patrick Schoenfeld"
group: "credativ"
shell: "/bin/zsh"
pwhash: "$5$g2ShvVtSoNiISzpI$w9gHo1vtH1uIS1diJTnCDNr4oFPjtHvPqjsFN6T8jWC"
ssh_key:
type: "ssh-rsa"
key: "AAAAB3NzaC1yc2EAAAABIwAAAQEAqnrrjV9ge602ChzGnhNCJDWKp1rI... |
Install g++ 4.8 so that native compilation works in Node >= 4 | language: node_js
sudo: false
node_js:
- '0.12'
- '4'
- '5'
before_install:
# Log HTTP requests
- npm config set loglevel http
install:
- time npm install
| language: node_js
sudo: false
node_js:
- '0.12'
- '4'
- '5'
env:
global:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
# Log HTTP requests
- npm config set loglevel http
install:
- time npm install
|
Send coverage profiles to coveralls.io | language: go
go:
- 1.2.2
- 1.3
install:
- go get code.google.com/p/go.tools/cmd/vet
- go get -t -v ./...
- go install -a -race std
script:
- go tool vet -all .
- go build ./...
- go test -race -v ./...
| language: go
go:
- 1.3.1
- tip
matrix:
fast_finish: true
env:
global:
- PATH=$HOME/gopath/bin:$PATH
- secure: "SmBBCn0QhOvlbP/sESKmTeVyFQR4hdsXKBXAP7/6AnsLZ/PhoWIkHkRFkH97nHtwLJwklZ8JyyhXUeXuDuE36DHLV0NDvw3Z9j543XC8mgI40BnMnqobf39aA9pl8s+6fWTyO7Sbjzv8AueEZv+K1r2JeFK+ReGZuwoVc7fxnhI="
install:
- go ge... |
Drop support for Node 0.x series | language: node_js
node_js:
- '4.3'
- '0.12'
- '0.11'
- '0.10'
script: npm test
after_script: npm run test-coverage && cat ./coverage/lcov.info | coveralls
| language: node_js
node_js:
- '4.3'
script: npm test
after_script: npm run test-coverage && cat ./coverage/lcov.info | coveralls
|
Update Node.js version to 4.1 | language: node_js
node_js:
- 0.12
notifications:
slack: armvisualizer:${slack_notification_key}
before_script:
- npm install -g gulp bower tsd typescript
- bower install
- tsd install
- patch typings/backbone/backbone.d.ts backbonefix.patch
script: gulp
branches:
only:
- master
deploy:
sk... | language: node_js
node_js:
- 4.1
notifications:
slack: armvisualizer:${slack_notification_key}
before_script:
- npm install -g gulp bower tsd typescript
- bower install
- tsd install
- patch typings/backbone/backbone.d.ts backbonefix.patch
script: gulp
branches:
only:
- master
deploy:
ski... |
Exclude Rails 5.0 tests from old ruby versions | ---
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- 2.3.0
gemfile:
- gemfiles/Gemfile.rails-3.2
- gemfiles/Gemfile.rails-4.0
- gemfiles/Gemfile.rails-4.1
- gemfiles/Gemfile.rails-5.0
| ---
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- 2.3.0
gemfile:
- gemfiles/Gemfile.rails-3.2
- gemfiles/Gemfile.rails-4.0
- gemfiles/Gemfile.rails-4.1
- gemfiles/Gemfile.rails-5.0
matrix:
exclude:
- rvm: 1.9.3
gemfile: gemfiles/Gemfile.rails-5.0
- rvm: 2.0.0
gemfile: gemfiles/Gemf... |
Update Go version in Travis CI. | sudo: false
language: go
go:
- 1.5.4
- 1.6.3
- 1.7
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- make tools
install:
- make deps
before_script:
- make clean
sc... | sudo: false
language: go
go:
- 1.5.4
- 1.6.3
- 1.7.3
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- make tools
install:
- make deps
before_script:
- make clean
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.