Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Uninstall homebrew-cask before running Travis tests | language: objective-c
rvm: system
osx_image: xcode7
install:
- sudo gem install bundler --no-ri --no-rdoc
- sudo bundle install
script:
- soloist
| language: objective-c
rvm: system
osx_image: xcode7
install:
- sudo gem install bundler --no-ri --no-rdoc
- sudo bundle install
- brew uninstall --force brew-cask
script:
- soloist
|
Use the latest Ruby patch versions for TravisCI and drop Rubinius support | language: ruby
cache: bundler
rvm:
- ruby-head
- 2.3.0
- 2.2.4
- 2.1.8
- 2.0.0
- 1.9.3
- jruby-head
- jruby-9
- jruby-19mode
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
addons:
code_climate:
repo_token: 97a54878f464b101386de95de0863407520593d817bbaa8e6f851cdb70d30e97 | language: ruby
cache: bundler
rvm:
- ruby-head
- 2.3.1
- 2.2.5
- 2.1.9
- 2.0.0
- 1.9.3
- jruby-9.1.2.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-9.1.2.0
- rvm: jruby-head
addons:
code_climate:
repo_token: 97a54878f464b101386de95de0863407520593d817bbaa8e6f851cdb70d30e97 |
Revert "Allow build the project using PHP 5.3 and 5.4" | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
before_script:
- composer self-update
- composer install
script:
- vendor/phpspec/phpspec/bin/phpspec run --no-interaction
| language: php
php:
- 5.5
- 5.6
- 7.0
before_script:
- composer self-update
- composer install
script:
- vendor/phpspec/phpspec/bin/phpspec run --no-interaction
|
Add OpenJDK 11 to the test matrix | language: java
after_success:
- mvn jacoco:report coveralls:jacoco
jdk:
- openjdk8
| language: java
after_success:
- mvn jacoco:report coveralls:jacoco
jdk:
- openjdk8
- openjdk11
|
Allow failures JRuby on Travis | language: ruby
rvm:
- 1.9.3
- rbx-19mode
- jruby-19mode
matrix:
exclude:
- rvm: jruby-19mode
env: DB=sqlite
- rvm: rbx-19mode
env: DB=sqlite
branches:
only:
- master
script: "bundle exec rake test"
env:
- DB=postgres
- DB=mysql
- DB=sqlite
before_script:
- psql -c 'create database data_store_test;' -U postgres
- mysql -e 'create database data_store_test'
| language: ruby
rvm:
- 1.9.3
- rbx-19mode
- jruby-19mode
matrix:
exclude:
- rvm: jruby-19mode
env: DB=sqlite
- rvm: rbx-19mode
env: DB=sqlite
allow_failures:
- jruby-19mode
branches:
only:
- master
script: "bundle exec rake test"
env:
- DB=postgres
- DB=mysql
- DB=sqlite
before_script:
- psql -c 'create database data_store_test;' -U postgres
- mysql -e 'create database data_store_test'
|
Disable tests with Python 2.6 and 3.3 | # Python project, check against all supported things.
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
matrix:
include:
- python: 3.7
dist: xenial # required for Python 3.7 (travis-ci/travis-ci#9069)
sudo: required # required for Python 3.7 (travis-ci/travis-ci#9069)
# disable submodules from git
git:
submodules: false
# commands to install dependencies
install:
- "sudo apt-get install scons chrpath"
# This will install PyLint but not where it does not work. It will fail
# to install 2.6 and be buggy for 3.3
- "pip install -r requirements-devel.txt"
- "pip install ."
# commands to run tests
script:
- ./tests/run-tests --no-other-python --skip-reflection-test --skip-all-cpython-tests
- ./bin/check-nuitka-with-pylint --not-installed-is-no-error
| # Python project, check against all supported things.
language: python
python:
# - "2.6"
- "2.7"
# - "3.3"
- "3.4"
- "3.5"
- "3.6"
matrix:
include:
- python: 3.7
dist: xenial # required for Python 3.7 (travis-ci/travis-ci#9069)
sudo: required # required for Python 3.7 (travis-ci/travis-ci#9069)
# disable submodules from git
git:
submodules: false
# commands to install dependencies
install:
- "sudo apt-get install scons chrpath"
# This will install PyLint but not where it does not work. It will fail
# to install 2.6 and be buggy for 3.3
- "pip install -r requirements-devel.txt"
- "pip install ."
# commands to run tests
script:
- ./tests/run-tests --no-other-python --skip-reflection-test --skip-all-cpython-tests
- ./bin/check-nuitka-with-pylint --not-installed-is-no-error
|
Update Travis config for new rubies | sudo: false
language: ruby
cache: bundler
matrix:
include:
- rvm: 2.3.7
- rvm: 2.4.4
- rvm: 2.5.3
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
branches:
only:
- master
bundler_args: --jobs 7 --without docs debug
script: bundle exec rspec --color --format progress
| sudo: false
language: ruby
cache: bundler
distro: xenial
matrix:
include:
- rvm: 2.3.8
- rvm: 2.4.5
- rvm: 2.5.3
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
branches:
only:
- master
bundler_args: --jobs 7 --without docs debug
script: bundle exec rspec --color --format progress
|
Use latest DITA-OT version (3.0.3) for CI builds | sudo: false
language: java
jdk:
- oraclejdk8
env:
global:
- DITA_OT_VERSION=3.0.2
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
| sudo: false
language: java
jdk:
- oraclejdk8
env:
global:
- DITA_OT_VERSION=3.0.3
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
|
Enable Travis go -race tests | language: go
go:
- 1.3
- 1.2
- tip
install: true
script:
- echo "Done"
| language: go
go:
- 1.3
- 1.2
- tip
install:
- go build -race -v ./
script:
- go test -race ./tests/...
|
Add ruby 2.0.0 to versions tested in Travis CI | language: ruby
bundler_args: --without development
rvm:
- 1.9.3
- 1.9.2
- 1.8.7
- ree
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode | language: ruby
bundler_args: --without development
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
- ree
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
|
Install bower and bower install | language: node_js
node_js:
- "0.10"
| language: node_js
node_js:
- "0.10"
before_script:
- npm install -g bower
- bower install
|
Add prism directory via Travis | language: go
go:
- '1.6'
before_script:
- "curl https://raw.githubusercontent.com/sendgrid/sendgrid-python/master/test/prism.sh | sh"
notifications:
hipchat:
rooms:
secure: ebEe+SoHExe1JALPXIutdtWNUYRR1ic9rB9oda+9oYsr+BNnPy50eqKjzAskcULbdmZqhgmHSoTgegiE5IOGZpAi6sumBA422K860x3VoS2cqm2sBSb1o85uoSiVJQ+AMS6lEZH/w7V3wAq+ukCK0Xs3rlxEsz9Byb6I/woU8lE=
template:
- '<a href="https://travis-ci.org/%{repository}/builds/%{build_id}">%{repository}
Build %{build_number}</a> on branch <i>%{branch}</i> by %{author}: <strong>%{message}</strong>
<a href="https://github.com/sendgrid/%{repository}/commits/%{commit}">View on GitHub</a>'
format: html
notify: true
| language: go
go:
- '1.6'
before_script:
- mkdir prism
- mkdir prism/bin
- export PATH=$PATH:$PWD/prism/bin/
- "curl https://raw.githubusercontent.com/sendgrid/sendgrid-python/master/test/prism.sh | sh"
notifications:
hipchat:
rooms:
secure: ebEe+SoHExe1JALPXIutdtWNUYRR1ic9rB9oda+9oYsr+BNnPy50eqKjzAskcULbdmZqhgmHSoTgegiE5IOGZpAi6sumBA422K860x3VoS2cqm2sBSb1o85uoSiVJQ+AMS6lEZH/w7V3wAq+ukCK0Xs3rlxEsz9Byb6I/woU8lE=
template:
- '<a href="https://travis-ci.org/%{repository}/builds/%{build_id}">%{repository}
Build %{build_number}</a> on branch <i>%{branch}</i> by %{author}: <strong>%{message}</strong>
<a href="https://github.com/sendgrid/%{repository}/commits/%{commit}">View on GitHub</a>'
format: html
notify: true
|
Allow failures on PHP 7.4snapshot | language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
- master
matrix:
allow_failures:
- php: master
sudo: false
install:
- composer install
script:
- ./vendor/bin/phpunit
notifications:
email: false
| language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
- master
matrix:
allow_failures:
- php: 7.4snapshot
sudo: false
install:
- composer install
script:
- ./vendor/bin/phpunit
notifications:
email: false
|
Add acknowledgements to the end of _config.yml before deploy. | # Use new container infrastructure to enable caching
sudo: false
language: ruby
# Caching so the next build will be fast too.
cache:
bundler: true
timeout: 1500
directories:
- out/
- $HOME/.stack
- $HOME/.agda
- $HOME/.local
- $HOME/agda-master
- $HOME/agda-stdlib-master
- $HOME/agda2html-master
- $HOME/acknowledgements-master
# Ensure necessary system libraries are present
addons:
apt:
packages:
- libgmp-dev
- libicu-dev
before_install:
# Download and unpack the stack executable
- mkdir -p ~/.local/bin
- export PATH=$HOME/.local/bin:$PATH
- travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
# Download and install agda, agda-stdlib, and agda2html
- make travis-setup
script:
- agda --version
- agda2html --version
- acknowledgements --version
- make test
before_deploy:
- make clean
- rm -rf .bundle/ vendor/ hs/ src/ extra/ .gitignore .travis.yml Gemfile Gemfile.lock Makefile Notes.md
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN
target-branch: master
edge: true
on:
branch: dev
| # Use new container infrastructure to enable caching
sudo: false
language: ruby
# Caching so the next build will be fast too.
cache:
bundler: true
timeout: 1500
directories:
- out/
- $HOME/.stack
- $HOME/.agda
- $HOME/.local
- $HOME/agda-master
- $HOME/agda-stdlib-master
- $HOME/agda2html-master
- $HOME/acknowledgements-master
# Ensure necessary system libraries are present
addons:
apt:
packages:
- libgmp-dev
- libicu-dev
before_install:
# Download and unpack the stack executable
- mkdir -p ~/.local/bin
- export PATH=$HOME/.local/bin:$PATH
- travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
# Download and install agda, agda-stdlib, and agda2html
- make travis-setup
script:
- agda --version
- agda2html --version
- acknowledgements --version
- make test
before_deploy:
- acknowledgements _config.yml >> _config.yml
- make clean
- rm -rf .bundle/ vendor/ hs/ src/ extra/ .gitignore .travis.yml Gemfile Gemfile.lock Makefile Notes.md
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN
target-branch: master
edge: true
on:
branch: dev
|
Test against Go 1.4, too. | language: go
go:
- 1.3
- tip
notifications:
email:
on_success: change
on_failure: always
| language: go
go:
- 1.3
- 1.4
- tip
notifications:
email:
on_success: change
on_failure: always
|
Enforce 5.6 support, but deprecate 5.3 | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
env:
- MAGENTO_VERSION=1.7.0.2
- MAGENTO_VERSION=1.8.1.0
- MAGENTO_VERSION=1.9.1.0
matrix:
fast_finish: true
allow_failures:
- php: 5.6
- php: hhvm
before_script:
- mysql -uroot -e "CREATE USER 'meanbee_core'@'localhost' IDENTIFIED BY 'meanbee_core';"
- mysql -uroot -e "GRANT ALL ON meanbee_core.* TO 'meanbee_core'@'localhost';"
- mysql -uroot -e "GRANT ALL ON meanbee_core_test.* TO 'meanbee_core'@'localhost';"
- mysql -uroot -e "FLUSH PRIVILEGES;"
- composer selfupdate
- composer install --dev --no-interaction
- wget http://www.phing.info/get/phing-latest.phar
- mv phing-latest.phar phing.phar
- chmod +x phing.phar
- mkdir bin && cd bin && wget https://raw.githubusercontent.com/colinmollenhour/modman/master/modman && cd ..
- chmod +x bin/modman
script:
- php phing.phar -Ddb.pass='meanbee_core' -Ddb.user='meanbee_core' -Ddb.name='meanbee_core' -Dmagento.version=$MAGENTO_VERSION test
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
env:
- MAGENTO_VERSION=1.7.0.2
- MAGENTO_VERSION=1.8.1.0
- MAGENTO_VERSION=1.9.1.0
matrix:
fast_finish: true
allow_failures:
- php: 5.3
- php: hhvm
before_script:
- mysql -uroot -e "CREATE USER 'meanbee_core'@'localhost' IDENTIFIED BY 'meanbee_core';"
- mysql -uroot -e "GRANT ALL ON meanbee_core.* TO 'meanbee_core'@'localhost';"
- mysql -uroot -e "GRANT ALL ON meanbee_core_test.* TO 'meanbee_core'@'localhost';"
- mysql -uroot -e "FLUSH PRIVILEGES;"
- composer selfupdate
- composer install --dev --no-interaction
- wget http://www.phing.info/get/phing-latest.phar
- mv phing-latest.phar phing.phar
- chmod +x phing.phar
- mkdir bin && cd bin && wget https://raw.githubusercontent.com/colinmollenhour/modman/master/modman && cd ..
- chmod +x bin/modman
script:
- php phing.phar -Ddb.pass='meanbee_core' -Ddb.user='meanbee_core' -Ddb.name='meanbee_core' -Dmagento.version=$MAGENTO_VERSION test
|
Install bundler before TravisCI run | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2 | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
install:
- "gem install bundler"
- "bundle install --jobs=3 --retry=3"
|
Drop support for old python versions | language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "nightly"
install:
- pip install -r requirements.txt
script:
- cd scattergun && python3 manage.py test
matrix:
allowed_failures:
- python: "nightly" | language: python
python:
- 3.4
- 3.5
- nightly
install:
- pip install -r requirements.txt
script:
- cd scattergun && python3 manage.py test
matrix:
allowed_failures:
- python: nightly |
Add Coverity Scan to Travis configuration | language: c
compiler:
- gcc
- clang
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq --no-install-recommends check valgrind
script:
- autoreconf -i
- ./configure
- make -j2 memcheck
- make distcheck
| language: c
compiler:
- gcc
- clang
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq --no-install-recommends check valgrind
script:
- autoreconf -i
- ./configure
- make -j2 memcheck
- make distcheck
env:
global:
- secure: "FCsDw8O0O29KWWuuVmOY2FuJ0/8ij3YU5QqCV2M35Mfw8QQuOoNX0KcQFXRMuYLnWUuzDFNyPi8Gui8r//X1hh9DAjt3RQmMMqueF0fq5Pi8Pyetw3AAf7dpyswXD3G8XhjM0cZSVwa2tQRZVvFa6MIL5bPfvNWQqchSJwAfapw="
addons:
coverity_scan:
project:
name: "msteinert/bstring"
notification_email: mike.steinert@gmail.com
build_command_prepend: autoreconf -if && ./configure
build_command: make -j4
branch_pattern: coverity_scan
|
Use just OpenJDK in Travis CI | language: java
jdk:
- oraclejdk8
- openjdk11
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/
- $HOME/.m2/repository/webdriver/
| language: java
jdk:
- openjdk8
- openjdk11
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/
- $HOME/.m2/repository/webdriver/
|
Create tables within test db | language: node_js
node_js:
- 0.10
- 0.8
services:
- redis-server
before_script:
- psql -c 'create database "tomatar-test";' -U postgres
- psql -f ./config/tables.sql -U postgres
- npm install --quiet -g karma
- npm install -g grunt-cli
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 1
script:
- karma start config/karma.conf.js --no-auto-watch --single-run --reporters=dots --browsers=Firefox
- NODE_ENV=test grunt cafemocha
| language: node_js
node_js:
- 0.10
- 0.8
services:
- redis-server
before_script:
- psql -c 'create database "tomatar-test";' -U postgres
- psql -f ./config/tables.sql -U postgres -d tomatar-test
- npm install --quiet -g karma
- npm install -g grunt-cli
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 1
script:
- karma start config/karma.conf.js --no-auto-watch --single-run --reporters=dots --browsers=Firefox
- NODE_ENV=test grunt cafemocha
|
Move to the latest stable node version. | sudo: false
language: node_js
node_js:
- "0.10"
before_script:
- npm install grunt-cli -g
| sudo: false
language: node_js
node_js:
- "node"
before_script:
- npm install grunt-cli -g
|
Remove jdk9 from the list of JDK envs | language: clojure
lein: 2.8.1
script: "lein do clean, test"
jdk:
- oraclejdk8
- oraclejdk9
- openjdk8
| language: clojure
lein: 2.8.1
script: "lein do clean, test"
jdk:
- oraclejdk8
- openjdk8
|
Use 'composer update' instead of 'composer install' | language: php
php:
- 5.5
- 5.6
- 7.0
- nightly
cache:
directories:
- vendor
install:
- phpenv config-rm xdebug.ini || true
- composer config --global discard-changes true
- composer install
- composer require satooshi/php-coveralls dev-master --dev
- composer show --installed
script:
- find -name "*.php" -not -path "./vendor/*" -print0 | xargs -n 1 -0 php -l
- $(php -r 'if (PHP_MAJOR_VERSION >= 7) echo "phpdbg -qrr"; else echo "php";') vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml
- php vendor/bin/php-cs-fixer --diff --dry-run -v fix
after_script:
- php vendor/bin/coveralls -v
| language: php
php:
- 5.5
- 5.6
- 7.0
- nightly
cache:
directories:
- vendor
install:
- phpenv config-rm xdebug.ini || true
- composer config --global discard-changes true
- composer update
- composer require satooshi/php-coveralls dev-master --dev
- composer show --installed
script:
- find -name "*.php" -not -path "./vendor/*" -print0 | xargs -n 1 -0 php -l
- $(php -r 'if (PHP_MAJOR_VERSION >= 7) echo "phpdbg -qrr"; else echo "php";') vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml
- php vendor/bin/php-cs-fixer --diff --dry-run -v fix
after_script:
- php vendor/bin/coveralls -v
|
Use TravisCI cache for maven | language: java
jdk:
- oraclejdk7
- openjdk7
after_success:
- mvn clean cobertura:cobertura coveralls:cobertura | language: java
jdk:
- oraclejdk7
- openjdk7
after_success:
- mvn clean cobertura:cobertura coveralls:cobertura
sudo: false
cache:
directories:
- $HOME/.m2
|
Disable Python 3.2 / Numpy testing | language: python
python:
- 2.5
- 2.6
- 2.7
- 3.2
- pypy
env:
- NUMPY="true"
- NUMPY="false"
matrix:
exclude:
- python: pypy
env: NUMPY="true"
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.5' ]]; then pip install --use-mirrors unittest2; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors unittest2; fi
- if [[ $NUMPY == "true" ]]; then pip install numpy; fi
- pip install . --use-mirrors
- python setup.py build --build-lib=build/lib
script:
# Must cd somewhere else so python3 doesn't get confused and run
# the python2 code from the current directory instead of the installed
# 2to3 version.
- nosetests -v -w build/lib hamcrest_unit_test
| language: python
python:
- 2.5
- 2.6
- 2.7
- 3.2
- pypy
env:
- NUMPY="true"
- NUMPY="false"
matrix:
exclude:
- python: pypy
env: NUMPY="true"
- python: 3.2
env: NUMPY="true"
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.5' ]]; then pip install --use-mirrors unittest2; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors unittest2; fi
- if [[ $NUMPY == "true" ]]; then pip install numpy; fi
- pip install . --use-mirrors
- python setup.py build --build-lib=build/lib
script:
# Must cd somewhere else so python3 doesn't get confused and run
# the python2 code from the current directory instead of the installed
# 2to3 version.
- nosetests -v -w build/lib hamcrest_unit_test
|
Add nightly builds on Travis | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- nightly
- hhvm
|
Change scala version for Travis CI | language: scala
jdk: oraclejdk8
sudo: false
addons:
apt:
packages:
- imagemagick
scala:
- 2.11.7
services:
- docker
branches:
only:
- master
script: sbt test && sbt integrate && sbt assembly && bash publish.sh
| language: scala
jdk: oraclejdk8
sudo: false
addons:
apt:
packages:
- imagemagick
scala:
- 2.11.8
services:
- docker
branches:
only:
- master
script: sbt test && sbt integrate && sbt assembly && bash publish.sh
|
Enable -race detector for tests on Travis |
language: go
sudo: false
go:
- 1.4
- 1.5
- tip
script:
- go test -v ./...
|
language: go
sudo: false
go:
- 1.4
- 1.5
- tip
script:
- go test -v -race ./...
|
Switch Travis to container-based infrastructure. | language: python
python:
- "2.7"
- "3.4"
- "pypy"
install:
- pip install .
- pip install codecov
script: coverage run -m pcapfile.test
after_success: codecov
| sudo: false
language: python
python:
- "2.7"
- "3.4"
- "pypy"
install:
- pip install .
- pip install codecov
script: coverage run -m pcapfile.test
after_success: codecov
|
Test against more rust versions. | sudo: required
language: rust
rust:
- nightly
- beta
- 1.0.0
addons:
apt:
packages:
- python3
env:
matrix:
- PIP=pip2
- PIP=pip3
global:
secure: "JBbvav6WVyWekbpmfhct+/ZnGXbHlk47iev/dQOtjVjcwA+NModsNgaNk2TIyPAKe/jNCXAok+i7Fw0FMQKi3kLthixl9sz2wa4Dv2DkzocHtIxKuwySvxeQsfuOpFzc2tlSI4NHCoACLLW4kyPGW5QOxlox472z8j5F7mvqeQY="
before_script:
- |
if [ "$PIP" = pip3 ]; then
sudo apt-get update
sudo apt-get install python3-setuptools
sudo easy_install3 pip
fi
script:
- bash ./run-tests.sh
| sudo: required
language: rust
rust:
- nightly
- beta
- 1.0.0
- 1.1.0
- 1.2.0
- 1.3.0
- stable
addons:
apt:
packages:
- python3
env:
matrix:
- PIP=pip2
- PIP=pip3
global:
secure: "JBbvav6WVyWekbpmfhct+/ZnGXbHlk47iev/dQOtjVjcwA+NModsNgaNk2TIyPAKe/jNCXAok+i7Fw0FMQKi3kLthixl9sz2wa4Dv2DkzocHtIxKuwySvxeQsfuOpFzc2tlSI4NHCoACLLW4kyPGW5QOxlox472z8j5F7mvqeQY="
before_script:
- |
if [ "$PIP" = pip3 ]; then
sudo apt-get update
sudo apt-get install python3-setuptools
sudo easy_install3 pip
fi
script:
- bash ./run-tests.sh
|
Make uploads to pypi automatic on tagged versions of master | sudo: false
language: python
env:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=docs
- TOX_ENV=pep8
install:
- "pip install --use-mirrors tox coveralls"
script:
- tox -e $TOX_ENV
after_success:
coveralls
| sudo: false
language: python
env:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=docs
- TOX_ENV=pep8
install:
- pip install --use-mirrors tox coveralls
script:
- tox -e $TOX_ENV
after_success: coveralls
deploy:
provider: pypi
user: striglia
password:
secure: cNExm/7XrxdF8c/m+EpXDVObR5h4FJnGCVhE0sMKR6VbjUQU/WAYPdy3r2mfF1xeJH9aOxzOa1eBb60B8965GRgJu1lzQB6NwjDDEw0mVHRRxEEpnpQdKi2DOCMmP2W/aFuPYtd2DlZA3ddd1EOvNbgJeUisgy1dLFcl4KbACn8=
on:
tags: true
repo: striglia/pyramid_swagger
branch: master
distributions: "sdist bdist_wheel"
|
Build with Node.js 12 on Travis CI. | sudo: false
language: node_js
node_js:
- '10'
branches:
only:
- master
- travis-ci
install:
- for dir in prolific.*; do (cd $dir && npm install --no-save --no-package-lock); done
- npm install --no-save --no-package-lock
- npm install -g nyc
- git checkout .
script:
- nyc npm test
| sudo: false
language: node_js
node_js:
- '10'
- '12'
branches:
only:
- master
- travis-ci
install:
- for dir in prolific.*; do (cd $dir && npm install --no-save --no-package-lock); done
- npm install --no-save --no-package-lock
- npm install -g nyc
- git checkout .
script:
- nyc npm test
|
Add notification to slack channel. | language: ruby
sudo: false
bundler_args: --retry=3 --jobs=3
rvm:
- 2.0
- 2.1
- 2.2
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
| language: ruby
sudo: false
bundler_args: "--retry=3 --jobs=3"
rvm:
- 2.0
- 2.1
- 2.2
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
notifications:
slack:
secure: wZ1UPEcH/Zf/wSPvpR1q76vpUQvAEGuwR5500ML8C+shW7PedvuSZaiZYAOZxhyD17RXzXYroON0ArEk3NUcKD8supPzYjUWzCeWDIFaYxEb7dOm7tpRBf4GuQ/oy8HGsBi947ZTX3WytGWZU0q0aRu2EirPcoY05vzley/hYTI=
|
Install a more recent version of `npm` if running node 0.8. | language: node_js
node_js:
- 0.8
- 0.10
- 0.12
- "stable"
script: npm run test-spec
sudo: false
| language: node_js
node_js:
- 0.8
- 0.10
- 0.12
- "stable"
before_install:
- NODE_VERSION=$(node -e 'console.log(process.version.replace(/[.][0-9]+$/, ""))')
- if [ "v0.8" = "$NODE_VERSION" ]; then npm install -g npm@2.7.3 ; fi
script: npm run test-spec
sudo: false
|
Make Travis only run the unit tests | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: phpunit
| language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: phpunit --group unit
|
Enable Docker builds & caching on Travis | language: java
addons:
hosts:
- test-bucket.localhost
env:
- PATH=$PATH:$HOME/.s3cmd SECOR_LOCAL_S3=true S3CMD=1.0.1
jdk:
- openjdk7
before_install:
- wget https://github.com/s3tools/s3cmd/archive/v$S3CMD.tar.gz -O /tmp/s3cmd.tar.gz
- tar -xzf /tmp/s3cmd.tar.gz -C $HOME
- mv $HOME/s3cmd-$S3CMD $HOME/.s3cmd
- cd $HOME/.s3cmd && python setup.py install --user && cd -
- gem install fakes3 -v 0.1.7
script:
- make unit
- make integration
| language: java
sudo: false
cache:
directories:
- $HOME/.m2
addons:
hosts:
- test-bucket.localhost
env:
- PATH=$PATH:$HOME/.s3cmd SECOR_LOCAL_S3=true S3CMD=1.0.1
jdk:
- openjdk7
before_install:
- wget https://github.com/s3tools/s3cmd/archive/v$S3CMD.tar.gz -O /tmp/s3cmd.tar.gz
- tar -xzf /tmp/s3cmd.tar.gz -C $HOME
- mv $HOME/s3cmd-$S3CMD $HOME/.s3cmd
- cd $HOME/.s3cmd && python setup.py install --user && cd -
- gem install fakes3 -v 0.1.7
script:
- make unit
- make integration
|
Remove node 6 from the test matrix | ---
language: node_js
node_js:
- 4
- 6
- stable
cache:
yarn: true
directories:
- node_modules
env:
- NODE_ENV=development
- NODE_ENV=production
matrix:
allow_failures:
- env: NODE_ENV=production
fast_finish: true
install:
- yarn install --production=false
before_script:
- if [ "${NODE_ENV}" = "production" ]; then yarn build; fi
script:
- yarn lint
- AST_COMPARE=1 yarn test -- --runInBand
| ---
language: node_js
node_js:
- 4
- stable
cache:
yarn: true
directories:
- node_modules
env:
- NODE_ENV=development
- NODE_ENV=production
matrix:
allow_failures:
- env: NODE_ENV=production
fast_finish: true
install:
- yarn install --production=false
before_script:
- if [ "${NODE_ENV}" = "production" ]; then yarn build; fi
script:
- yarn lint
- AST_COMPARE=1 yarn test -- --runInBand
|
Use coveralls parallel build webhook | sudo: required
dist: xenial
language: python
python:
- "3.5"
- "3.6"
- "3.7"
addons:
apt:
packages:
- gfortran
- mpich
- libmpich-dev
- libhdf5-serial-dev
- libhdf5-mpich-dev
cache:
directories:
- $HOME/nndc_hdf5
- $HOME/endf-b-vii.1
env:
global:
- FC=gfortran
- MPI_DIR=/usr
- HDF5_ROOT=/usr
- OMP_NUM_THREADS=2
- OPENMC_CROSS_SECTIONS=$HOME/nndc_hdf5/cross_sections.xml
- OPENMC_ENDF_DATA=$HOME/endf-b-vii.1
- OPENMC_MULTIPOLE_LIBRARY=$HOME/multipole_lib
- PATH=$PATH:$HOME/NJOY2016/build
- DISPLAY=:99.0
matrix:
- OMP=n MPI=n PHDF5=n
- OMP=y MPI=n PHDF5=n
- OMP=n MPI=y PHDF5=n
- OMP=n MPI=y PHDF5=y
install:
- ./tools/ci/travis-install.sh
before_script:
- ./tools/ci/travis-before-script.sh
script:
- ./tools/ci/travis-script.sh
after_success:
- coveralls
| sudo: required
dist: xenial
language: python
python:
- "3.5"
- "3.6"
- "3.7"
addons:
apt:
packages:
- gfortran
- mpich
- libmpich-dev
- libhdf5-serial-dev
- libhdf5-mpich-dev
cache:
directories:
- $HOME/nndc_hdf5
- $HOME/endf-b-vii.1
env:
global:
- FC=gfortran
- MPI_DIR=/usr
- HDF5_ROOT=/usr
- OMP_NUM_THREADS=2
- OPENMC_CROSS_SECTIONS=$HOME/nndc_hdf5/cross_sections.xml
- OPENMC_ENDF_DATA=$HOME/endf-b-vii.1
- OPENMC_MULTIPOLE_LIBRARY=$HOME/multipole_lib
- PATH=$PATH:$HOME/NJOY2016/build
- DISPLAY=:99.0
- COVERALLS_PARALLEL=true
matrix:
- OMP=n MPI=n PHDF5=n
- OMP=y MPI=n PHDF5=n
- OMP=n MPI=y PHDF5=n
- OMP=n MPI=y PHDF5=y
notifications:
webhooks: https://coveralls.io/webhook?repo_token=$COVERALLS_REPO_TOKEN
install:
- ./tools/ci/travis-install.sh
before_script:
- ./tools/ci/travis-before-script.sh
script:
- ./tools/ci/travis-script.sh
after_success:
- coveralls
|
Update Ruby versions on Travis CI | language: ruby
sudo: false
cache: bundler
rvm:
- "2.2.7"
- "2.3.4"
- "2.4.1"
- jruby
before_install:
- gem update bundler
env:
matrix:
- EMBER_SOURCE_VERSION="~> 1.0.0" # Uses handlebars-source 1.0.12
- EMBER_SOURCE_VERSION="~> 1.8.0" # Uses handlebars-source 1.3.0
- EMBER_SOURCE_VERSION="~> 1.9.0" # Uses handlebars-source 2.0.0
- EMBER_SOURCE_VERSION="~> 1.10.0" # Uses HTMLBars
- EMBER_SOURCE_VERSION="~> 1.13.0" # The latest Ember.js 1.x
- EMBER_SOURCE_VERSION="~> 2.15.0" # The latest Ember.js 2.x
- EMBER_SOURCE_VERSION="~> 2.0"
HANDLEBARS_SOURCE_VERSION="~> 3.0.0" # Uses handlebars-source 3.0.x
- EMBER_SOURCE_VERSION="~> 2.0"
HANDLEBARS_SOURCE_VERSION="~> 4.0.0" # Uses handlebars-source 4.0.x
| language: ruby
sudo: false
cache: bundler
rvm:
- "2.2.8"
- "2.3.5"
- "2.4.2"
- jruby
before_install:
- gem update bundler
env:
matrix:
- EMBER_SOURCE_VERSION="~> 1.0.0" # Uses handlebars-source 1.0.12
- EMBER_SOURCE_VERSION="~> 1.8.0" # Uses handlebars-source 1.3.0
- EMBER_SOURCE_VERSION="~> 1.9.0" # Uses handlebars-source 2.0.0
- EMBER_SOURCE_VERSION="~> 1.10.0" # Uses HTMLBars
- EMBER_SOURCE_VERSION="~> 1.13.0" # The latest Ember.js 1.x
- EMBER_SOURCE_VERSION="~> 2.15.0" # The latest Ember.js 2.x
- EMBER_SOURCE_VERSION="~> 2.0"
HANDLEBARS_SOURCE_VERSION="~> 3.0.0" # Uses handlebars-source 3.0.x
- EMBER_SOURCE_VERSION="~> 2.0"
HANDLEBARS_SOURCE_VERSION="~> 4.0.0" # Uses handlebars-source 4.0.x
|
Use 3.1 releases for core (5.3 pgsql & 5.4 mysql) | # See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
language: php
php:
- 5.3
env:
- DB=MYSQL CORE_RELEASE=3.1
- DB=PGSQL CORE_RELEASE=master
matrix:
include:
- php: 5.4
env: DB=MYSQL CORE_RELEASE=master
before_script:
- git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss --require silverstripe/cms
- cd ~/builds/ss
script:
- phpunit staticpublisher/tests/ | # See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
language: php
php:
- 5.3
env:
- DB=MYSQL CORE_RELEASE=3.1
- DB=PGSQL CORE_RELEASE=3.1
matrix:
include:
- php: 5.4
env: DB=MYSQL CORE_RELEASE=3.1
before_script:
- git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss --require silverstripe/cms
- cd ~/builds/ss
script:
- phpunit staticpublisher/tests/
|
Fix yarn for npm list | language: node_js
node_js:
- "6.5"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
cache:
directories:
- $HOME/.npm
- $HOME/.yarn-cache
install:
- "npm install -g yarn"
- "yarn install --prefer-offline"
script: npm run travis
after_success: npm run coverage
branches:
only:
- master
sudo: false
| language: node_js
node_js:
- "6.5"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
cache:
directories:
- $HOME/.npm
- $HOME/.yarn-cache
install:
- "npm install -g yarn"
- "yarn install && yarn install"
script: npm run travis
after_success: npm run coverage
branches:
only:
- master
sudo: false
|
Test under PHP 5.5, 5.6 and 7 | language: php
script: phpunit
php:
- 5.3
- 5.4 | language: php
script: phpunit
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
matrix:
fast_finish: true
allow_failures:
- php: 7
|
Revert "Revert "Migrate CI to container-based infrastructure"" | language: python
python: 2.7
env:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=pypy
- TOX_ENV=flake8
install: pip install tox
script:
- tox -e $TOX_ENV
services:
- mongodb
- redis-server
before_script:
# timer is needed in order to get mongo to properly initialize on travis-ci
# See https://github.com/travis-ci/travis-ci/issues/1967#issuecomment-42008605
- sleep 15
- mongo eve_test --eval 'db.addUser("test_user", "test_pw");'
branches:
only:
- master
- develop
| language: python
sudo: false
cache: pip
python: 2.7
env:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=pypy
- TOX_ENV=flake8
install: pip install tox
script:
- tox -e $TOX_ENV
services:
- mongodb
- redis-server
before_script:
# timer is needed in order to get mongo to properly initialize on travis-ci
# See https://github.com/travis-ci/travis-ci/issues/1967#issuecomment-42008605
- sleep 15
- mongo eve_test --eval 'db.addUser("test_user", "test_pw");'
branches:
only:
- master
- develop
|
Add sudo as a test | language: node_js
node_js:
- "6.9"
cache:
yarn: true
directories:
- node_modules
script:
- yarn run ami
notifications:
slack: fnndsc:UohaXDsjFDVqZj5IfdC88XRa
| language: node_js
node_js:
- "6.9"
sudo: required
cache:
yarn: true
directories:
- node_modules
script:
- yarn run ami
notifications:
slack: fnndsc:UohaXDsjFDVqZj5IfdC88XRa
|
Allow failures on PHP nightly. | language: php
php:
- 7.0
- 7.1
- nightly
before_script:
- composer install --dev --no-interaction
- composer dump-autoload
script:
- mkdir -p build/logs
- phpdbg -qrr ./vendor/bin/phpunit
after_script:
- php vendor/bin/coveralls -v
| language: php
php:
- 7.0
- 7.1
- nightly
before_script:
- composer install --dev --no-interaction
- composer dump-autoload
matrix:
allow_failures:
- php: nightly
script:
- mkdir -p build/logs
- phpdbg -qrr ./vendor/bin/phpunit
after_script:
- php vendor/bin/coveralls -v
|
Update Travis script to install Apache properly | language: ruby
rvm:
- 1.8.7
- 1.9.3
before_install:
- sudo apt-get install apache2-prefork-mpm apache2-threaded-dev
- rake test:install_deps
script: ./dev/run_travis.sh
| language: ruby
rvm:
- 1.8.7
- 1.9.3
before_install:
- sudo apt-get install apache2-mpm-worker apache2-threaded-dev
- rake test:install_deps
script: ./dev/run_travis.sh
|
Remove checking the docker runs.. it is missing configuration and will not pass. | sudo: required
language: go
go: master
services:
- docker
- redis-server
- mysql
install:
- go get -d -v .
- docker build -t evedata .
- docker run -d -p 127.0.0.1:80:3000 --name evedata evedata
script:
- docker ps | grep -q evedata
- go install -v ./
- go test -v ./
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
docker push antihax/evedata;
fi | sudo: required
language: go
go: master
services:
- docker
- redis-server
- mysql
install:
- go get -d -v .
- docker build -t evedata .
- docker run -d -p 127.0.0.1:80:3000 --name evedata evedata
script:
- go install -v ./
- go test -v ./
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
docker push antihax/evedata;
fi |
Test on Node.js 4, 5, 6 | language: node_js
sudo: false
node_js:
- "0.12"
- "4"
notifications:
email:
on_success: never
| language: node_js
sudo: false
node_js:
- "4"
- "5"
- "6"
notifications:
email:
on_success: never
|
Use JDK 8 during Travis CI build | language: java
os:
- linux
notifications:
email:
on_success: change
on_failure: always
| language: java
os:
- linux
jdk:
- oraclejdk8
notifications:
email:
on_success: change
on_failure: always
|
Add go 1.9 to test matrix. | language: go
go:
- 1.6
- 1.7
- 1.8
sudo: false
os:
- linux
- osx
script:
make travis | language: go
go:
- 1.6
- 1.7
- 1.8
- 1.9
sudo: false
os:
- linux
- osx
script:
make travis
|
Check pkgin on Travis CI. | language: c
os:
- linux
- osx
compiler:
- clang
- gcc
matrix:
allow_failures:
- compiler: gcc
sudo: false
script:
- python minipkg.py
- source ~/.bash_profile
after_success:
- pkg_info
after_failure:
- cat *-log.txt
| language: c
os:
- linux
- osx
compiler:
- clang
- gcc
matrix:
allow_failures:
- compiler: gcc
sudo: false
script:
- python minipkg.py
- source ~/.bash_profile
after_success:
- pkgin list
after_failure:
- cat *-log.txt
|
Test more versions of node. | language: node_js
node_js:
- v7
script:
- npm test
| language: node_js
node_js:
- v7
- v6
- v4
script:
- npm test
|
Update Travis CI to test against PHP v5.6 | language: php
php:
- 5.5
- 7.0
before_install:
- cp phpunit.xml.sample phpunit.xml
- composer install
script:
- ./vendor/bin/phpunit
| language: php
php:
- 5.6
- 7.0
before_install:
- cp phpunit.xml.sample phpunit.xml
- composer install
script:
- ./vendor/bin/phpunit
|
Add nightly to the availables versions. | language: rust
rust:
- stable
matrix:
allow_failures:
- rust:
- nightly
- beta
cache: cargo
before_script:
- export PATH="$PATH:$HOME/.cargo/bin"
- which rustfmt || cargo install rustfmt
- which cargo-audit || cargo install cargo-audit
- which cargo-clippy ||rustup run nightly cargo install clippy
script:
- cargo fmt -- --write-mode=diff
- cargo build
- cargo test
- rustup run nightly cargo clippy
| language: rust
rust:
- stable
- nightly
matrix:
allow_failures:
- rust:
- nightly
- beta
cache: cargo
before_script:
- export PATH="$PATH:$HOME/.cargo/bin"
- which rustfmt || cargo install rustfmt
- which cargo-audit || cargo install cargo-audit
- which cargo-clippy ||rustup run nightly cargo install clippy
script:
- cargo fmt -- --write-mode=diff
- cargo build
- cargo test
- rustup run nightly cargo clippy
|
Test with latest Ruby versions | dist: trusty
language: ruby
sudo: false
cache: bundler
before_install: travis_retry gem update --system
rvm:
- 2.5.0
- 2.4.3
- 2.3.6
- 2.2.9
- jruby-9.1.15.0
| dist: trusty
language: ruby
sudo: false
cache: bundler
before_install: travis_retry gem update --system
rvm:
- 2.5.1
- 2.4.4
- 2.3.7
- 2.2.10
- jruby-9.1.17.0
|
Build only on node 0.10 | language: node_js
node_js:
- '0.11'
- '0.10'
script: "npm run travis"
after_success: "npm install coveralls@2.11.1 && cat ./coverage/lcov.info | coveralls"
deploy:
provider: npm
email: tarmolov@gmail.com
api_key:
secure: LfLG35921234nZk3Me9Z3G3qy5NxJvZ5mLwJE3iTIloJlbDLgmaXlClYMVtO0JHD7/nLxZA1EE9lFJ1JexDNMCnH/eLqWDGui0YdAAAzysrNwlpoQNuRChxRL8lLaNAxilIDv/rQxCoKZCzT7apjU7nV1Of4SgJOYhOZ2kkmub0=
on:
tags: true
all_branches: true
| language: node_js
node_js:
- '0.10'
script: "npm run travis"
after_success: "npm install coveralls@2.11.1 && cat ./coverage/lcov.info | coveralls"
deploy:
provider: npm
email: tarmolov@gmail.com
api_key:
secure: LfLG35921234nZk3Me9Z3G3qy5NxJvZ5mLwJE3iTIloJlbDLgmaXlClYMVtO0JHD7/nLxZA1EE9lFJ1JexDNMCnH/eLqWDGui0YdAAAzysrNwlpoQNuRChxRL8lLaNAxilIDv/rQxCoKZCzT7apjU7nV1Of4SgJOYhOZ2kkmub0=
on:
tags: true
all_branches: true
|
Update Travis Linux config to non-ancient Xenial. | sudo: required
dist: trusty
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install libeigen3-dev libglew-dev libc++-dev libwayland-dev libxkbcommon-dev libegl1-mesa-dev; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then pyenv versions && pyenv global system 3.6; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install eigen glew ; fi
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
# install newer libstdc++ (from ubuntu-toolchain-r/test PPA), since otherwise clang fails with old libstdc++-4.8
- libstdc++-5-dev
language: cpp
compiler:
- gcc
- clang
os:
- linux
- osx
env:
- BUILD_TYPE=Release
# - BUILD_TYPE=Debug
script:
- mkdir build
- cd build
- cmake -D CMAKE_BUILD_TYPE=$BUILD_TYPE ..
- make -j4
| sudo: required
dist: xenial
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install libeigen3-dev libglew-dev libc++-dev libwayland-dev libxkbcommon-dev libegl1-mesa-dev; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then pyenv versions && pyenv global system 3.7; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install eigen glew ; fi
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
# install newer libstdc++ (from ubuntu-toolchain-r/test PPA), since otherwise clang fails with old libstdc++-4.8
- libstdc++-5-dev
language: cpp
compiler:
- gcc
- clang
os:
- linux
- osx
env:
- BUILD_TYPE=Release
script:
- mkdir build
- cd build
- cmake -D CMAKE_BUILD_TYPE=$BUILD_TYPE ..
- make -j4
|
Drop testing for old Ruby versions | bundler_args: ""
script: "bundle exec rake spec"
rvm:
- ree
- 1.9.3
- 2.0.0
gemfile:
- gemfiles/activerecord_3.2.gemfile
| bundler_args: ""
script: "bundle exec rake spec"
rvm:
- 2.0.0
gemfile:
- gemfiles/activerecord_3.2.gemfile
|
Update jQuarks to 1.0-4 (4) | Categories:
- Internet
- Navigation
- Reading
License: Apache-2.0
SourceCode: https://gitlab.com/oF2pks/jelly
IssueTracker: https://gitlab.com/oF2pks/jelly/issues
AutoName: jQuarks
RepoType: git
Repo: https://gitlab.com/oF2pks/jelly.git
Builds:
- versionName: 1.0-2
versionCode: 2
commit: v1.0-2
subdir: app
gradle:
- yes
- versionName: 1.0-3
versionCode: 3
commit: v1.0-3
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0-3
CurrentVersionCode: 3
| Categories:
- Internet
- Navigation
- Reading
License: Apache-2.0
SourceCode: https://gitlab.com/oF2pks/jelly
IssueTracker: https://gitlab.com/oF2pks/jelly/issues
AutoName: jQuarks
RepoType: git
Repo: https://gitlab.com/oF2pks/jelly.git
Builds:
- versionName: 1.0-2
versionCode: 2
commit: v1.0-2
subdir: app
gradle:
- yes
- versionName: 1.0-3
versionCode: 3
commit: v1.0-3
subdir: app
gradle:
- yes
- versionName: 1.0-4
versionCode: 4
commit: v1.0-4
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0-4
CurrentVersionCode: 4
|
Remove ruby 3 from the matrix | name: Ruby
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
fail-fast: false
matrix:
ruby:
- '2.6.10'
- '2.7.6'
- '3.0.4'
- '3.1.2'
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run the default task
run: bundle exec rake
| name: Ruby
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
fail-fast: false
matrix:
ruby:
- '2.6.10'
- '2.7.6'
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run the default task
run: bundle exec rake
|
Install OpenJDK 6 for Travis | language: java
jdk:
- openjdk6
- oraclejdk8
install:
- jdk_switcher use openjdk6 && export JAVA6_HOME=$JAVA_HOME
- jdk_switcher use oraclejdk8 && export JAVA8_HOME=$JAVA_HOME
- ./gradlew check | language: java
addons:
apt:
packages:
- openjdk-6-jdk
jdk:
- oraclejdk8
install:
- jdk_switcher use openjdk6 && export JAVA6_HOME=$JAVA_HOME
- jdk_switcher use oraclejdk8 && export JAVA8_HOME=$JAVA_HOME
- ./gradlew check |
Fix (?) Python 3.6 build | name: ib_insync
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install flake8 mypy dataclasses.
- name: Flake8 static code analysis
run:
flake8 ib_insync
- name: MyPy static code analysis
run: |
mypy -p ib_insync
| name: ib_insync
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install flake8 mypy types-dataclasses .
- name: Flake8 static code analysis
run:
flake8 ib_insync
- name: MyPy static code analysis
run: |
mypy -p ib_insync
|
Allow region change or database reconfiguration from the console | ---
en:
product:
name: ManageIQ
advanced_settings:
menu_order:
- dhcp
- static
- testnet
- hostname
- datetime
- dbrestore
- httpdauth
- key_gen
- evmstop
- evmstart
- restart
- shutdown
- summary
- quit
dhcp: Set DHCP Network Configuration
static: Set Static Network Configuration
testnet: Test Network Configuration
hostname: Set Hostname
datetime: Set Timezone, Date, and Time
dbrestore: Restore Database From Backup
httpdauth: Configure External Authentication (httpd)
evmstop: Stop EVM Server Processes
key_gen: Generate Custom Encryption Key
evmstart: Start EVM Server Processes
restart: Restart Appliance
shutdown: Shut Down Appliance
summary: Summary Information
quit: Quit
| ---
en:
product:
name: ManageIQ
advanced_settings:
menu_order:
- dhcp
- static
- testnet
- hostname
- datetime
- dbrestore
- dbregion_setup
- db_config
- httpdauth
- key_gen
- evmstop
- evmstart
- restart
- shutdown
- summary
- quit
dhcp: Set DHCP Network Configuration
static: Set Static Network Configuration
testnet: Test Network Configuration
hostname: Set Hostname
datetime: Set Timezone, Date, and Time
dbrestore: Restore Database From Backup
dbregion_setup: Setup Database Region
db_config: Configure Database
httpdauth: Configure External Authentication (httpd)
evmstop: Stop EVM Server Processes
key_gen: Generate Custom Encryption Key
evmstart: Start EVM Server Processes
restart: Restart Appliance
shutdown: Shut Down Appliance
summary: Summary Information
quit: Quit
|
Use shared GH action v3 | # Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
name: Verify
on:
push:
pull_request:
jobs:
build:
name: Verify
uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v2
| # Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
name: Verify
on:
push:
pull_request:
jobs:
build:
name: Verify
uses: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml@v3
|
Update cocoapod version to 1.1.1 | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode8
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
script:
- set -o pipefail
- xcodebuild -version
- xcodebuild -showsdks
- set -o pipefail && xcodebuild test -workspace Example/HexaColor.xcworkspace -scheme HexaColor-Example ONLY_ACTIVE_ARCH=NO -destination 'platform=iOS Simulator,name=iPhone SE,OS=10.0'
| xcpretty
- pod lib lint
| # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode8
# cache: cocoapods
# podfile: Example/Podfile
before_install:
- gem install cocoapods -v '1.1.1'
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
script:
- set -o pipefail
- xcodebuild -version
- xcodebuild -showsdks
- set -o pipefail && xcodebuild test -workspace Example/HexaColor.xcworkspace -scheme HexaColor-Example ONLY_ACTIVE_ARCH=NO -destination 'platform=iOS Simulator,name=iPhone SE,OS=10.0'
| xcpretty
- pod lib lint
|
Fix Xvfb setup on TravisCI | sudo: required
dist: trusty
services:
- docker
language: java
jdk:
- oraclejdk8
install:
- export MAVEN_SKIP_RC=true
- export MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=512m"
- "export PATH=`pwd`/bin:$PATH"
- echo $HOME
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- mvn -Pdocker clean verify
| sudo: required
dist: trusty
services:
- docker
language: java
jdk:
- oraclejdk8
script:
- export MAVEN_SKIP_RC=true
- export MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=512m"
- "export PATH=`pwd`/bin:$PATH"
- echo $HOME
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- mvn -Pdocker clean verify
|
Switch back to codecov with sub-projects jacoco report | language: java
before_install:
- chmod +x gradlew
after_success:
- ./gradlew codeCoverageReport coveralls
| language: java
before_install:
- chmod +x gradlew
after_success:
- if [ -e ./gradlew ]; then ./gradlew codeCoverageReport;else gradle codeCoverageReport;fi
- bash <(curl -s https://codecov.io/bash)
|
Move CI database setup to before_script | language: ruby
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- bundle exec rake db:migrate RAILS_ENV=test
- bundle exec rake
rvm:
- 1.9.3
- 2.0.0
- 2.1
env:
- RAILS_VERSION="~> 4.0.0"
- RAILS_VERSION="~> 4.1.0"
| language: ruby
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- bundle exec rake db:setup
rvm:
- 1.9.3
- 2.0.0
- 2.1
env:
- RAILS_VERSION="~> 4.0.0"
- RAILS_VERSION="~> 4.1.0"
|
Update Helmet version to 3.21.1 | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
title: Helmet
short_description: Express.js security with HTTP headers
description: Helmet helps you secure your Express.js apps by setting various HTTP headers. It's not a silver bullet, but it can help!
helmet_version: "3.21.0"
baseurl: ""
url: "https://helmetjs.github.io" # the base hostname & protocol for your site
# Build settings
markdown: kramdown
| # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
title: Helmet
short_description: Express.js security with HTTP headers
description: Helmet helps you secure your Express.js apps by setting various HTTP headers. It's not a silver bullet, but it can help!
helmet_version: "3.21.1"
baseurl: ""
url: "https://helmetjs.github.io" # the base hostname & protocol for your site
# Build settings
markdown: kramdown
|
Move into college_landing sub dir | # Site settings
title: Matt DePero
header-img: img/home-bg.jpg
email: deperomd@gmail.com
description: "Projects, ideas, and resume by Matthew DePero, a computer science student at Miami University from the hometown of Wadsworth, Ohio."
baseurl: ""
url: "https://mattdepero.com"
twitter_username: mattdepero
github_username: mdepero
facebook_username:
# Build settings
markdown: kramdown
highlighter: rouge
permalink: pretty
paginate: 5
paginate_path: "projects/page:num"
exclude: ["less","node_modules","Gruntfile.js","package.json","README.md"]
plugins: [jekyll-paginate]
| # Site settings
title: Matt DePero
header-img: img/home-bg.jpg
email: deperomd@gmail.com
description: "Projects, ideas, and resume by Matthew DePero, a computer science student at Miami University from the hometown of Wadsworth, Ohio."
baseurl: "/college"
url: "https://mattdepero.com"
twitter_username: mattdepero
github_username: mdepero
facebook_username:
# Build settings
markdown: kramdown
highlighter: rouge
permalink: pretty
paginate: 5
paginate_path: "projects/page:num"
exclude: ["less","node_modules","Gruntfile.js","package.json","README.md"]
plugins: [jekyll-paginate]
|
Change permalinks to be as on the old site | # Site settings
title: dgms code
email: dgmstuart@gmail.com
description: >
This is the dev blog of Duncan Graeme Macdonald Stuart - a Technical
Architect living in London. The focus is mostly Ruby on Rails
with a little WordPress
url: "http://dgmstuart.github.io"
twitter_username: dgmstuart
github_username: dgmstuart
disqus_shortname: dgmscode
# Build settings
markdown: kramdown
| # Site settings
title: dgms code
email: dgmstuart@gmail.com
description: >
This is the dev blog of Duncan Graeme Macdonald Stuart - a Technical
Architect living in London. The focus is mostly Ruby on Rails
with a little WordPress
url: "http://dgmstuart.github.io"
twitter_username: dgmstuart
github_username: dgmstuart
disqus_shortname: dgmscode
# Build settings
markdown: kramdown
# Octopress 2-style permalink:
permalink: /blog/:year/:month/:day/:title/
|
Add lsof to server dependencies | ---
- hosts: kv:index:n1ql
tasks:
- yum: state=latest name=epel-release
- yum: state=latest name={{item}}
with_items:
- atop
- fio
- gdb
- htop
- iotop
- iperf
- iptraf
- moreutils
- net-tools
- numactl
- psmisc
- rsync
- sysstat
- tree
- vim
- wget
- hosts: kv:index:n1ql
tasks:
- shell: iptables -F
- hosts: kv:index:n1ql
tasks:
- group: name=couchbase
- user: name=couchbase group=couchbase
- hosts: kv:index:n1ql
tasks:
- file: path=/data owner=couchbase group=couchbase
- hosts: kv
tasks:
- stat: path=/index
register: index
- file: path=/index owner=couchbase group=couchbase
when: index.stat.exists
| ---
- hosts: kv:index:n1ql
tasks:
- yum: state=latest name=epel-release
- yum: state=latest name={{item}}
with_items:
- atop
- fio
- gdb
- htop
- iotop
- iperf
- iptraf
- lsof
- moreutils
- net-tools
- numactl
- psmisc
- rsync
- sysstat
- tree
- vim
- wget
- hosts: kv:index:n1ql
tasks:
- shell: iptables -F
- hosts: kv:index:n1ql
tasks:
- group: name=couchbase
- user: name=couchbase group=couchbase
- hosts: kv:index:n1ql
tasks:
- file: path=/data owner=couchbase group=couchbase
- hosts: kv
tasks:
- stat: path=/index
register: index
- file: path=/index owner=couchbase group=couchbase
when: index.stat.exists
|
Configure Codecov to send Slack notifications | coverage:
status:
project:
default:
threshold: 1
patch: off
| coverage:
status:
project:
default:
threshold: 1
patch: off
notify:
slack:
default:
url: "secret:F3tyY8zm4BW8W1KD5t4X7atr6OTDT7FNo+UatckerMIidQIWAkO8dJdc7bnNLNSBNIvIPR+3apf+9MMoSrNuscNgHjgAwR7N2PxP5Qpr0O0UNW/ys/ZkG3xiXWg5uAsovDJ137bYM7KgDhguZTQ+vp5RIeaok9FaXkvfjRHz4PM="
only_pulls: false
branches: null
|
Add GEC code for Norway | ---
'NO':
continent: Europe
address_format: |-
{{recipient}}
{{street}}
{{postalcode}} {{city}}
{{country}}
alpha2: 'NO'
alpha3: NOR
country_code: '47'
currency: NOK
international_prefix: '00'
ioc: NOR
gec:
latitude: 62 00 N
longitude: 10 00 E
name: Norway
names:
- Norway
- Norwegen
- Norvège
- Noruega
- "ノルウェー"
- Noorwegen
national_destination_code_lengths:
- 2
national_number_lengths:
- 8
national_prefix: None
number: '578'
region: Europe
subregion: Northern Europe
world_region: EMEA
un_locode: NO
languages:
- 'nb'
- 'nn'
nationality: Norwegian
postal_code: true
min_longitude: '3.033333'
min_latitude: '56.15'
max_longitude: '31.166667'
max_latitude: '71.181944'
latitude_dec: '66.76667022705078'
longitude_dec: '14.899925231933594'
| ---
'NO':
continent: Europe
address_format: |-
{{recipient}}
{{street}}
{{postalcode}} {{city}}
{{country}}
alpha2: 'NO'
alpha3: NOR
country_code: '47'
currency: NOK
international_prefix: '00'
ioc: NOR
gec: 'NO'
latitude: 62 00 N
longitude: 10 00 E
name: Norway
names:
- Norway
- Norwegen
- Norvège
- Noruega
- "ノルウェー"
- Noorwegen
national_destination_code_lengths:
- 2
national_number_lengths:
- 8
national_prefix: None
number: '578'
region: Europe
subregion: Northern Europe
world_region: EMEA
un_locode: NO
languages:
- 'nb'
- 'nn'
nationality: Norwegian
postal_code: true
min_longitude: '3.033333'
min_latitude: '56.15'
max_longitude: '31.166667'
max_latitude: '71.181944'
latitude_dec: '66.76667022705078'
longitude_dec: '14.899925231933594'
|
Add node.js 5 to Travis CI | sudo: false
language: node_js
node_js:
- "0.12"
- "4"
- "stable"
| sudo: false
language: node_js
node_js:
- "0.12"
- "4"
- "5"
|
Drop the circle ruby orb | version: 2.1
orbs:
# orbs are basically bundles of pre-written build scripts that work for common cases
# https://github.com/CircleCI-Public/ruby-orb
ruby: circleci/ruby@1.1
jobs:
# skipping build step because Gemfile.lock is not included in the source
# this makes the bundler caching step a noop
test:
parameters:
ruby-image:
type: string
docker:
- image: << parameters.ruby-image >>
steps:
- run:
command: sudo apt-get update
- run:
message: Install ZeroMQ and Protobuf Compiler
command: sudo apt-get -y install libzmq3-dev protobuf-compiler
- checkout
- run:
command: gem install bundler
- run:
command: bundle install
- run:
command: bundle exec rake
workflows:
build_and_test:
jobs:
- test:
matrix:
parameters:
ruby-image:
# - circleci/jruby:9.2.6.0-jdk
# - circleci/jruby:9.1.17.0-jdk
# - circleci/jruby:9.2-jdk8
# - circleci/ruby:2.4
# - circleci/ruby:2.5
- circleci/ruby:2.7
| version: 2.1
jobs:
# skipping build step because Gemfile.lock is not included in the source
# this makes the bundler caching step a noop
test:
parameters:
ruby-image:
type: string
docker:
- image: << parameters.ruby-image >>
steps:
- run:
command: sudo apt-get update
- run:
message: Install ZeroMQ and Protobuf Compiler
command: sudo apt-get -y install libzmq3-dev protobuf-compiler
- checkout
- run:
command: gem install bundler
- run:
command: bundle install
- run:
command: bundle exec rake
workflows:
build_and_test:
jobs:
- test:
matrix:
parameters:
ruby-image:
# - circleci/jruby:9.2.6.0-jdk
# - circleci/jruby:9.1.17.0-jdk
# - circleci/jruby:9.2-jdk8
# - circleci/ruby:2.4
# - circleci/ruby:2.5
- circleci/ruby:2.7
|
Reduce instances from 10 to 6 | duration: 10
threads: 4
n_db_nodes: 10
# I have to solve a problem with SSH connection parallelism, until then
# keep n_loaders: 1
n_loaders: 1
regions: !mux
us_west_2:
region_name: 'us-west-2'
ami_id_db: 'ami-20776841'
instance_type_db: 'c4.xlarge'
ami_id_loader: 'ami-05f4ed35'
instance_type_loader: 'c4.xlarge'
security_group_ids: 'sg-81703ae4'
subnet_id: 'subnet-5207ee37'
us_east_1:
region_name: 'us-east-1'
ami_id_db: 'ami-972863fd'
instance_type_db: 'c4.xlarge'
ami_id_loader: 'ami-a51564c0'
instance_type_loader: 'c4.xlarge'
security_group_ids: 'sg-c5e1f7a0'
subnet_id: 'subnet-ec4a72c4' | duration: 10
threads: 4
n_db_nodes: 6
# I have to solve a problem with SSH connection parallelism, until then
# keep n_loaders: 1
n_loaders: 1
regions: !mux
us_west_2:
region_name: 'us-west-2'
ami_id_db: 'ami-20776841'
instance_type_db: 'c4.xlarge'
ami_id_loader: 'ami-05f4ed35'
instance_type_loader: 'c4.xlarge'
security_group_ids: 'sg-81703ae4'
subnet_id: 'subnet-5207ee37'
us_east_1:
region_name: 'us-east-1'
ami_id_db: 'ami-972863fd'
instance_type_db: 'c4.xlarge'
ami_id_loader: 'ami-a51564c0'
instance_type_loader: 'c4.xlarge'
security_group_ids: 'sg-c5e1f7a0'
subnet_id: 'subnet-ec4a72c4' |
Update from Hackage at 2018-06-08T09:07:09Z | homepage: https://github.com/paramander/mollie-api-haskell
changelog-type: ''
hash: a04dd29907ffa31ea4328afb1917c0d21a20174836a5aa0fca79f1e284ccad06
test-bench-deps:
base: -any
mollie-api-haskell: -any
maintainer: mats@paramander.com
synopsis: Mollie API client for Haskell http://www.mollie.com
changelog: ''
basic-deps:
http-client: ! '>=0.5 && <0.6'
bytestring: ! '>=0.10 && <1'
base: ! '>=4.7 && <5'
time: ! '>=1.5 && <2'
text: ! '>=1.2 && <2'
mtl: ! '>=2.2 && <3'
HsOpenSSL: ! '>=0.11 && <0.12'
http-types: ! '>=0.9 && <1'
aeson: ! '>=1.0 && <1.1'
http-client-openssl: ! '>=0.2 && <0.3'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.2.0.0'
author: Paramander
latest: '0.2.0.0'
description-type: haddock
description: Please see README.md
license-name: BSD3
| homepage: https://github.com/paramander/mollie-api-haskell
changelog-type: ''
hash: d3b2ade1af87125ba17cf7a8bc60e0cc1df0c89a55d03273859b74b1161b9f99
test-bench-deps:
base: -any
mollie-api-haskell: -any
maintainer: mats@paramander.com
synopsis: Mollie API client for Haskell http://www.mollie.com
changelog: ''
basic-deps:
http-client: ! '>=0.5 && <0.6'
bytestring: ! '>=0.10 && <1'
base: ! '>=4.7 && <5'
time: ! '>=1.5 && <2'
text: ! '>=1.2 && <2'
mtl: ! '>=2.2 && <3'
HsOpenSSL: ! '>=0.11 && <0.12'
http-types: ! '>=0.9 && <1'
aeson: ! '>=1.0 && <1.4'
http-client-openssl: ! '>=0.2 && <0.3'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.2.0.0'
- '0.2.0.1'
author: Paramander
latest: '0.2.0.1'
description-type: haddock
description: Please see README.md
license-name: BSD3
|
Configure default user/group for the volume | sync:
defaults:
ignore:
vcs: true
paths:
- .DS_Store
- .history
- .idea
permissions:
defaultFileMode: 644
defaultDirectoryMode: 755
mutagen:
alpha: "."
beta: "docker://mutagen/var/www/html"
mode: "two-way-resolved"
# # Example of optimisation (not required)
# ignore:
# paths:
# - "/vendor/"
# - "/web/core/"
# - "/web/modules/contrib/"
# - "/web/themes/contrib/"
# - "/web/sites/*/files/"
| sync:
defaults:
ignore:
vcs: true
paths:
- .DS_Store
- .history
- .idea
mutagen:
alpha: "."
beta: "docker://mutagen/var/www/html"
mode: "two-way-resolved"
configurationBeta:
permissions:
defaultFileMode: 644
defaultDirectoryMode: 755
defaultOwner: "wodby"
defaultGroup: "wodby"
# # Example of optimisation (not required by default)
# ignore:
# paths:
# - "/vendor/"
# - "/web/core/"
# - "/web/modules/contrib/"
# - "/web/themes/contrib/"
# - "/web/sites/*/files/"
|
Disable the missing_docs lint rule temporarily | # Configuration for SwiftLint (https://github.com/realm/SwiftLint)
excluded:
- Carthage
enabled_rules:
- empty_count
- missing_docs
disabled_rules:
- comma
- conditional_binding_cascade
- cyclomatic_complexity
- function_body_length
- line_length
- opening_brace
- valid_docs
| # Configuration for SwiftLint (https://github.com/realm/SwiftLint)
excluded:
- Carthage
enabled_rules:
- empty_count
# - missing_docs
disabled_rules:
- comma
- conditional_binding_cascade
- cyclomatic_complexity
- function_body_length
- line_length
- opening_brace
- valid_docs
|
Add ClusterIP as type as proposed to avoid that OpenShift Online switches to LoadBalancer which is not allowed on AWS. OBST-28 | apiVersion: v1
kind: Service
metadata:
name: vertx-rest
spec:
ports:
- protocol: TCP
port: 8080
targetPort: 8080
| apiVersion: v1
kind: Service
metadata:
name: vertx-rest
spec:
ports:
- protocol: TCP
port: 8080
targetPort: 8080
type: ClusterIP
|
Tidy ports for web container | web:
restart: always
build: ./
ports:
- "8000:8000"
- "5000:5000"
volumes:
- /usr/src/app/static
links:
- postgres:postgres
environment:
- PYTHONPATH=/usr/src/app/
- GROWSER_CONFIG=/usr/src/app/growser.cfg
command: gunicorn -b :8000 growser.web:app
nginx:
restart: always
build: ./deploy/nginx/
ports:
- "80:80"
- "443:443"
volumes_from:
- web
links:
- web:web
data:
restart: always
build: ./deploy/postgres/
volumes:
- /var/lib/postgresql
- ./data:/data
command: "true"
postgres:
restart: always
build: ./deploy/postgres/
volumes_from:
- data
ports:
- "5432:5432"
| web:
restart: always
build: ./
expose:
- "8000"
volumes:
- /usr/src/app/static
links:
- postgres:postgres
environment:
- PYTHONPATH=/usr/src/app/
- GROWSER_CONFIG=/usr/src/app/growser.cfg
command: gunicorn -b :8000 growser.web:app
nginx:
restart: always
build: ./deploy/nginx/
ports:
- "80:80"
- "443:443"
volumes_from:
- web
links:
- web:web
data:
restart: always
build: ./deploy/postgres/
volumes:
- /var/lib/postgresql
- ./data:/data
command: "true"
postgres:
restart: always
build: ./deploy/postgres/
volumes_from:
- data
ports:
- "5432:5432"
|
Change alt text on Sakura theme | name: Sakura
base: colour_schemes/base_light
colours:
background0: "#FFECF7"
background1: "#FFF0F9"
backgroundLogo: "#FFE8F5"
ui_controlNormal: "#DD6CB6"
ui_controlDown: "#C4398F"
ui_controlHover: "#E796CA"
ui_controlDisabled: "#D7AAC6"
ui_buttonNormal: "#FFC6E7"
ui_buttonDown: "#E281C0"
ui_buttonHover: "#FFD9EF"
ui_buttonDisabled: "#D7AAC6"
ui_listBackground: "#EEB5DA"
ui_listSelected: "#FFFFFF"
ui_listHover: "#FFC6E7"
ui_listDrag: "#FFC6E780"
ui_inputBox: "#DD6CB6"
ui_disabledText: "#8B747E"
ui_scrollBackground: "#F8E0EF"
ui_backgroundBox: "#F8E0EF"
ui_popupWindow: "#FFC6E7"
ui_staticBox: "#FFC6E7"
ui_staticBoxSubdue: "#F9ACD5"
ui_debugConsole: "#DD6CB6C0"
| name: Sakura
base: colour_schemes/base_light
colours:
background0: "#FFECF7"
background1: "#FFF0F9"
backgroundLogo: "#FFE8F5"
ui_controlNormal: "#DD6CB6"
ui_controlDown: "#C4398F"
ui_controlHover: "#E796CA"
ui_controlDisabled: "#D7AAC6"
ui_buttonNormal: "#FFC6E7"
ui_buttonDown: "#E281C0"
ui_buttonHover: "#FFD9EF"
ui_buttonDisabled: "#D7AAC6"
ui_listBackground: "#EEB5DA"
ui_listSelected: "#FFFFFF"
ui_listHover: "#FFC6E7"
ui_listDrag: "#FFC6E780"
ui_inputBox: "#DD6CB6"
ui_disabledText: "#8B747E"
ui_scrollBackground: "#F8E0EF"
ui_backgroundBox: "#F8E0EF"
ui_popupWindow: "#FFC6E7"
ui_staticBox: "#FFC6E7"
ui_staticBoxSubdue: "#F9ACD5"
ui_debugConsole: "#DD6CB6C0"
ui_selectedTextAlt: "#9C2E94"
ui_unselectedTextAlt: "#9C2E94"
ui_disabledTextAlt: "#774077"
|
Add CA to test composition and configure for testing | orderer:
image: hyperledger/fabric-orderer
environment:
- ORDERER_GENERAL_LEDGERTYPE=ram
- ORDERER_GENERAL_BATCHTIMEOUT=10s
- ORDERER_GENERAL_BATCHSIZE_MAXMESSAGECOUNT=10
- ORDERER_GENERAL_MAXWINDOWSIZE=1000
- ORDERER_GENERAL_ORDERERTYPE=solo
- ORDERER_GENERAL_LISTENADDRESS=0.0.0.0
- ORDERER_GENERAL_LISTENPORT=7050
- ORDERER_RAMLEDGER_HISTORY_SIZE=100
expose:
- 7050
vp:
image: hyperledger/fabric-peer
links:
- orderer
ports:
- 7051:7051
- 7053:7053
- 7054:7054
environment:
- CORE_PEER_ADDRESSAUTODETECT=true
- CORE_PEER_COMMITTER_LEDGER_ORDERER=orderer:7050
volumes:
- /var/run/docker.sock:/var/run/docker.sock
| ca:
image: hyperledger/fabric-ca
ports:
- 7054:7054
orderer:
image: hyperledger/fabric-orderer
environment:
- ORDERER_GENERAL_LEDGERTYPE=ram
- ORDERER_GENERAL_BATCHTIMEOUT=10s
- ORDERER_GENERAL_BATCHSIZE_MAXMESSAGECOUNT=10
- ORDERER_GENERAL_MAXWINDOWSIZE=1000
- ORDERER_GENERAL_ORDERERTYPE=solo
- ORDERER_GENERAL_LISTENADDRESS=0.0.0.0
- ORDERER_GENERAL_LISTENPORT=7050
- ORDERER_RAMLEDGER_HISTORY_SIZE=100
ports:
- 7050:7050
vp:
image: hyperledger/fabric-peer
links:
- orderer
ports:
- 7051:7051
- 7053:7053
environment:
- CORE_PEER_ADDRESSAUTODETECT=true
- CORE_PEER_COMMITTER_LEDGER_ORDERER=orderer:7050
volumes:
- /var/run/docker.sock:/var/run/docker.sock
command: peer node start --peer-chaincodedev
|
Update 6.4 AMIs with swagger_aem 2.0.0 beta 2. | aem:
version: '6.4'
library:
# TODO: which Oak version is compatible with AEM 6.4
oak_run_version: 1.8.3
# Generated by Packer AEM
# AMI IDs for AEM profile aem64 on OS type rhel7
ami_ids:
author: ami-785f821a
author_dispatcher: ami-de5c81bc
author_publish_dispatcher: ami-1b0ed279
chaos_monkey: ami-695e830b
orchestrator: ami-695e830b
publish: ami-7e5f821c
publish_dispatcher: ami-de5c81bc
| aem:
version: '6.4'
library:
# TODO: which Oak version is compatible with AEM 6.4
oak_run_version: 1.8.3
# Generated by Packer AEM
# AMI IDs for AEM profile aem64 on OS type rhel7
ami_ids:
author: ami-4a29f628
author_dispatcher: ami-de5c81bc
author_publish_dispatcher: ami-3b28f759
chaos_monkey: ami-695e830b
orchestrator: ami-695e830b
publish: ami-d025fab2
publish_dispatcher: ami-de5c81bc
|
Increase build to trigger travis | package:
name: pout2mzid
version: '0.3.03'
source:
git_url: https://github.com/percolator/pout2mzid.git
git_rev: 5e390a7be408a2eee13b24aabb964c2a82b31933
build:
number: 1
string: boost_1.62{{PKG_BUILDNUM}}
skip: True # [osx]
requirements:
build:
- cmake ==2.8.10.2
- gcc
- boost ==1.62 # Specify version to ensure install from conda-forge and get static libs
- xerces-c ==3.1.2
- xsd
run:
- libgcc
- xerces-c ==3.1.2
- boost ==1.62 # Specify version to ensure install from conda-forge and get static libs
- xsd
test:
commands:
- pout2mzid -h > /dev/null
about:
home: https://github.com/percolator/pout2mzid
summary: Adds percolator statistics to mzIdentML files that were used as input to percolator
| package:
name: pout2mzid
version: '0.3.03'
source:
git_url: https://github.com/percolator/pout2mzid.git
git_rev: 5e390a7be408a2eee13b24aabb964c2a82b31933
build:
number: 2
string: boost_1.62{{PKG_BUILDNUM}}
skip: True # [osx]
requirements:
build:
- cmake ==2.8.10.2
- gcc
- boost ==1.62 # Specify version to ensure install from conda-forge and get static libs
- xerces-c ==3.1.2
- xsd
run:
- libgcc
- xerces-c ==3.1.2
- boost ==1.62 # Specify version to ensure install from conda-forge and get static libs
- xsd
test:
commands:
- pout2mzid -h > /dev/null
about:
home: https://github.com/percolator/pout2mzid
summary: Adds percolator statistics to mzIdentML files that were used as input to percolator
|
Test with gcc and not llvm as dependency for OSX | {% set name = "velvet-sc" %}
{% set version = "0.7.62" %}
{% set md5 = "e94c5631c5d83015a99382eb2ce1b26d" %}
source:
fn: velvet-sc.tar.gz
md5: {{ md5 }}
url: http://bix.ucsd.edu/projects/singlecell/velvet-sc.tar.gz
build:
number: 0
skip: False
package:
name: {{ name }}
version: {{ version }}
requirements:
build:
- gcc # [not osx]
- llvm # [osx]
run:
- libgcc # [not osx]
- perl
test:
commands:
- velvetg --help
- velveth --help
- shuffleSequences_fasta.pl
- shuffleSequences_fastq.pl
about:
home: 'http://bix.ucsd.edu/projects/singlecell/'
license: GPL2
summary: "Efficient de novo assembly of single-cell bacterial genomes from short-read data sets"
| {% set name = "velvet-sc" %}
{% set version = "0.7.62" %}
{% set md5 = "e94c5631c5d83015a99382eb2ce1b26d" %}
source:
fn: velvet-sc.tar.gz
md5: {{ md5 }}
url: http://bix.ucsd.edu/projects/singlecell/velvet-sc.tar.gz
build:
number: 0
skip: False
package:
name: {{ name }}
version: {{ version }}
requirements:
build:
- gcc
run:
- libgcc
- perl
test:
commands:
- velvetg --help
- velveth --help
- shuffleSequences_fasta.pl
- shuffleSequences_fastq.pl
about:
home: 'http://bix.ucsd.edu/projects/singlecell/'
license: GPL2
summary: "Efficient de novo assembly of single-cell bacterial genomes from short-read data sets"
|
Remove package no longer available | ---
- name: Install GTop
apt:
name: gir1.2-gtop-2.0
state: latest
- name: Install Hamster Indicator
apt:
name: hamster-indicator
state: latest
- name: Configure file watching
sysctl:
name: fs.inotify.max_user_watches
value: 524288
state: present
| ---
- name: Install GTop
apt:
name: gir1.2-gtop-2.0
state: latest
- name: Configure file watching
sysctl:
name: fs.inotify.max_user_watches
value: 524288
state: present
|
Use correct Python version for Stickler | files:
ignore:
- '*.min.js'
- '**/_design/**/*.js'
- '*.xml'
linters:
flake8:
python: 3.9
config: .flake8
eslint:
config: ./.eslintrc.js
# pytype: # failing due to timeout
# config: ./.pytype.cfg
| files:
ignore:
- '*.min.js'
- '**/_design/**/*.js'
- '*.xml'
linters:
flake8:
python: 3
config: .flake8
eslint:
config: ./.eslintrc.js
# pytype: # failing due to timeout
# config: ./.pytype.cfg
|
Add simple test that 4 containers are up | name: lovelace-website CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
cd src/
pip install --upgrade pip
pip install -r requirements.txt
- name: Build Docker container
run: |
cd src/
docker-compose build
- name: Run Docker container
run: |
cd src/
docker-compose up
| name: lovelace-website CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
cd src/
pip install --upgrade pip
pip install -r requirements.txt
- name: Build Docker container
run: |
cd src/
docker-compose build
- name: Run Docker container
run: |
cd src/
docker-compose up --detach
- name: Test that 4 containers are up
run: [[ $(docker ps | tail -n +2 | wc -l) == 4 ]]
|
Use single quoted in YAML. | darvin_image_archive_build:
path: /build
defaults: { _controller: Darvin\ImageBundle\Controller\ArchiveController::buildAction }
methods: [ post ]
darvin_image_archive_download:
path: /download/{filename}
defaults: { _controller: Darvin\ImageBundle\Controller\ArchiveController::downloadAction }
requirements: { filename: '\\w+%darvin_image.archive.filename_suffix%_\\d{4}-\\d{2}-\\d{2}_\\d{2}-\\d{2}.zip' }
methods: [ get ]
| darvin_image_archive_build:
path: /build
defaults: { _controller: Darvin\ImageBundle\Controller\ArchiveController::buildAction }
methods: [ post ]
darvin_image_archive_download:
path: /download/{filename}
defaults: { _controller: Darvin\ImageBundle\Controller\ArchiveController::downloadAction }
requirements: { filename: '\w+%darvin_image.archive.filename_suffix%_\d{4}-\d{2}-\d{2}_\d{2}-\d{2}.zip' }
methods: [ get ]
|
Clone correct repo for doc update | name: Build docs and upload to gh-pages
on:
push:
branches:
- master
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: ammaraskar/sphinx-action@master
with:
pre-build-command: "pip install sphinx-rtd-theme"
docs-folder: "docs/"
- name: Commit documentation changes
run: |
git clone https://github.com/ammaraskar/sphinx-action-test.git --branch gh-pages --single-branch gh-pages
cp -r docs/_build/html/* gh-pages/
cd gh-pages
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add .
git commit -m "Update documentation" -a || true
# The above command will fail if no changes were present, so we ignore
# the return code.
- name: Push changes
uses: ad-m/github-push-action@master
with:
branch: gh-pages
directory: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }} | name: Build docs and upload to gh-pages
on:
push:
branches:
- master
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: ammaraskar/sphinx-action@master
with:
pre-build-command: "pip install sphinx-rtd-theme"
docs-folder: "docs/"
- name: Commit documentation changes
run: |
git clone https://github.com/PsychoinformaticsLab/pliers.git --branch gh-pages --single-branch gh-pages
cp -r docs/_build/html/* gh-pages/
cd gh-pages
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add .
git commit -m "Update documentation" -a || true
# The above command will fail if no changes were present, so we ignore
# the return code.
- name: Push changes
uses: ad-m/github-push-action@master
with:
branch: gh-pages
directory: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }} |
Prepare to publish analyzer for DDC | name: analyzer
version: 0.27.1+2
author: Dart Team <misc@dartlang.org>
description: Static analyzer for Dart.
homepage: http://www.dartlang.org
environment:
sdk: '>=1.12.0 <2.0.0'
dependencies:
args: '>=0.12.1 <0.14.0'
glob: ^1.0.3
html: ^0.12.0
package_config: ^0.1.1
path: '>=0.9.0 <2.0.0'
plugin: ^0.1.0
watcher: '>=0.9.6 <0.10.0'
yaml: ^2.1.2
dev_dependencies:
typed_mock: '>=0.0.4 <1.0.0'
unittest: '>=0.9.0 <0.12.0'
| name: analyzer
version: 0.27.2-alpha.0
author: Dart Team <misc@dartlang.org>
description: Static analyzer for Dart.
homepage: http://www.dartlang.org
environment:
sdk: '>=1.12.0 <2.0.0'
dependencies:
args: '>=0.12.1 <0.14.0'
glob: ^1.0.3
html: ^0.12.0
package_config: ^0.1.1
path: '>=0.9.0 <2.0.0'
plugin: ^0.1.0
watcher: '>=0.9.6 <0.10.0'
yaml: ^2.1.2
dev_dependencies:
typed_mock: '>=0.0.4 <1.0.0'
unittest: '>=0.9.0 <0.12.0'
|
Use sudo for NPM, because reasons. | box: blisteringherb/scholarship@0.0.6
# Build definition
build:
steps:
- script:
name: install bundler
code: sudo gem install bundler
- npm-install
- script:
name: Build theme
code: npm run build
deploy:
steps:
- bundle-install
- script:
name: write env var
code: |-
export CAP_PRIVATE_KEY=`mktemp`
echo -e $WERCKER_APP_KEY_PRIVATE > $CAP_PRIVATE_KEY
- cap
after-steps:
- hipchat-notify:
token: $HIPCHAT_TOKEN
room-id: $HIPCHAT_ROOM_ID
from-name: wercker
| box: blisteringherb/scholarship@0.0.6
# Build definition
build:
steps:
- script:
name: install bundler
code: sudo gem install bundler
- script:
name: npm install
code: |-
sudo npm install -g npm
npm -v
mkdir -p $WERCKER_CACHE_DIR/wercker/npm
npm config set cache $WERCKER_CACHE_DIR/wercker/npm
sudo npm install
- script:
name: Build theme
code: npm run build
deploy:
steps:
- bundle-install
- script:
name: write env var
code: |-
export CAP_PRIVATE_KEY=`mktemp`
echo -e $WERCKER_APP_KEY_PRIVATE > $CAP_PRIVATE_KEY
- cap
after-steps:
- hipchat-notify:
token: $HIPCHAT_TOKEN
room-id: $HIPCHAT_ROOM_ID
from-name: wercker
|
Update from Hackage at 2017-04-14T15:31:51Z | homepage: ''
changelog-type: ''
hash: b47858cf533ae8d72bd422106bcb9e075ae477ab2e537f59ffe437277840bcef
test-bench-deps: {}
maintainer: Simon Marlow <marlowsd@gmail.com>
synopsis: Knowledge of GHC's installation directories
changelog: ''
basic-deps:
base: ! '>=3 && <5'
all-versions:
- '0.1'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.0.4'
- '0.1.0.5'
- '0.1.0.6'
- '0.1.0.7'
- '0.1.0.8'
- '0.1.0.9'
author: Simon Marlow
latest: '0.1.0.9'
description-type: haddock
description: Knowledge of GHC's installation directories
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: d3f3470c7bd13b765891fb56b28d809cb7aeda0a78050679ae6f29b6705c46bf
test-bench-deps: {}
maintainer: Simon Marlow <marlowsd@gmail.com>
synopsis: Knowledge of GHC's installation directories
changelog: ''
basic-deps:
base: ! '>=3 && <5'
all-versions:
- '0.1'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.0.4'
- '0.1.0.5'
- '0.1.0.6'
- '0.1.0.7'
- '0.1.0.8'
- '0.1.0.9'
author: Simon Marlow
latest: '0.1.0.9'
description-type: haddock
description: Knowledge of GHC's installation directories
license-name: BSD3
|
Exclude the rule that breaks the cookbook | # rubocop todo
#
Lint/AmbiguousRegexpLiteral:
Exclude:
- 'test/integration/mysql/serverspec/mysql_spec.rb'
Style/MultilineTernaryOperator:
Exclude:
- 'libraries/provider_database_postgresql.rb'
| # rubocop todo and an exclusion for a bug it introduces
#
Lint/AmbiguousRegexpLiteral:
Exclude:
- 'test/integration/mysql/serverspec/mysql_spec.rb'
Style/MultilineTernaryOperator:
Exclude:
- 'libraries/provider_database_postgresql.rb'
# rubocop will introduce a bug if you allow it to fix this
Style/ZeroLengthPredicate:
Exclude:
- 'libraries/provider_database_mysql_user.rb'
|
Add gpg to brew packages. | ---
downloads: ~/.ansible-downloads/
dotfiles_repo: https://github.com/geerlingguy/dotfiles.git
dotfiles_repo_local_destination: ~/Dropbox/Development/GitHub/dotfiles
dotfiles_files:
- .bash_profile
- .gitconfig
- .gitignore
- .inputrc
- .osx
- .vimrc
homebrew_installed_packages:
- ansible
- autoconf
- boot2docker
- docker
- gettext
- go
- libevent
- packer
- python
- sqlite
- mysql
- php56
- php56-xdebug
- ssh-copy-id
- cowsay
- ios-sim
- readline
- subversion
- kdiff3
- openssl
- pv
- drush
- wget
- brew-cask
homebrew_taps:
- caskroom/cask
- homebrew/binary
- homebrew/dupes
- homebrew/php
- homebrew/versions
homebrew_cask_appdir: /Applications
homebrew_cask_apps:
- adium
- bettertouchtool
- google-chrome
- dropbox
- firefox
- handbrake
- karabiner
- licecap
- macvim
- menumeters
- nvalt
- sequel-pro
- skype
- skitch
- seil
- sublime-text # Note - Sublime Text 2 only, at this time...
- textmate
- timemachineeditor
- tower
- transmit
- vagrant
- vagrant-manager
- vlc
- virtualbox
| ---
downloads: ~/.ansible-downloads/
dotfiles_repo: https://github.com/geerlingguy/dotfiles.git
dotfiles_repo_local_destination: ~/Dropbox/Development/GitHub/dotfiles
dotfiles_files:
- .bash_profile
- .gitconfig
- .gitignore
- .inputrc
- .osx
- .vimrc
homebrew_installed_packages:
- ansible
- autoconf
- boot2docker
- docker
- gettext
- go
- gpg
- libevent
- packer
- python
- sqlite
- mysql
- php56
- php56-xdebug
- ssh-copy-id
- cowsay
- ios-sim
- readline
- subversion
- kdiff3
- openssl
- pv
- drush
- wget
- brew-cask
homebrew_taps:
- caskroom/cask
- homebrew/binary
- homebrew/dupes
- homebrew/php
- homebrew/versions
homebrew_cask_appdir: /Applications
homebrew_cask_apps:
- adium
- bettertouchtool
- google-chrome
- dropbox
- firefox
- handbrake
- karabiner
- licecap
- macvim
- menumeters
- nvalt
- sequel-pro
- skype
- skitch
- seil
- sublime-text # Note - Sublime Text 2 only, at this time...
- textmate
- timemachineeditor
- tower
- transmit
- vagrant
- vagrant-manager
- vlc
- virtualbox
|
Set autoname of Otobi Keyboard | Categories:
- System
License: GPL-3.0-only
AuthorName: Otobi Keyboard
AuthorEmail: otobi.kb@gmail.com
AuthorWebSite: https://rhjihan.github.io/
WebSite: https://otobikb.github.io/android/
SourceCode: https://github.com/OtobiKB/OtobiKeyboard
IssueTracker: https://github.com/OtobiKB/OtobiKeyboard/issues
RepoType: git
Repo: https://github.com/OtobiKB/OtobiKeyboard.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: v1.0
subdir: app
gradle:
- yes
ndk: r21d
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '1.0'
CurrentVersionCode: 1
| Categories:
- System
License: GPL-3.0-only
AuthorName: Otobi Keyboard
AuthorEmail: otobi.kb@gmail.com
AuthorWebSite: https://rhjihan.github.io/
WebSite: https://otobikb.github.io/android/
SourceCode: https://github.com/OtobiKB/OtobiKeyboard
IssueTracker: https://github.com/OtobiKB/OtobiKeyboard/issues
AutoName: Otobi Keyboard
RepoType: git
Repo: https://github.com/OtobiKB/OtobiKeyboard.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: v1.0
subdir: app
gradle:
- yes
ndk: r21d
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '1.0'
CurrentVersionCode: 1
|
Correct translation from english to spanish | # Sample localization file for English. Add more files in this directory for other locales.
# See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
es:
contact_us:
contact_mailer:
contact_email:
sent_by_contact_form: "Enviado por el formulario de contacto. %{email}"
sent_by_name: "Sent by %{name} from %{email}"
subject: "Contact Us message from %{email}"
contacts:
new: &new
contact_us: "Contactanos"
email: "Email"
message: "Mensaje"
name: "Name"
subject: "Subject"
submit: "Enviar"
new_formtastic:
<<: *new
new_simple_form:
<<: *new
notices:
error: "Debes de ingresar ambos campos."
success: "El correo electrónico de contacto fue enviado con éxito."
| # Sample localization file for Spanish. Add more files in this directory for other locales.
# See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
es:
contact_us:
contact_mailer:
contact_email:
sent_by_contact_form: "Enviado por el formulario de contacto desde %{email}"
sent_by_name: "Enviado por %{name} con la dirección %{email}"
subject: "Mensaje de contacto de %{email}"
contacts:
new: &new
contact_us: "Contactanos"
email: "Correo electrónico"
message: "Mensaje"
name: "Nombre"
subject: "Tema"
submit: "Enviar"
new_formtastic:
<<: *new
new_simple_form:
<<: *new
notices:
error: "Debes de ingresar ambos campos."
success: "El correo electrónico de contacto fue enviado con éxito."
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.