commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
9ed061b97d3e2b1466eb04bcb9ef96dea5b0c716 | .travis.yml | .travis.yml | language: php
sudo: required
services:
- docker
php:
- 5.5
install:
- php composer.phar install
before_script:
- git config --global user.email "builds@travis-ci.com"
- git config --global user.name "Travis CI"
script:
- php build.php
- docker build .
- git commit Dockerfile -m "TravisCI build $TRAVIS_BUILD_NUMBER on $(date -u "+%Y-%m-%d-%H-%M-%S")"
after_success:
- export GIT_TAG=build-$TRAVIS_BUILD_NUMBER
- git tag $GIT_TAG -a -m "TravisCI build $TRAVIS_BUILD_NUMBER"
- git push origin $GIT_TAG
| language: php
sudo: required
services:
- docker
php:
- 5.6
install:
- php composer.phar install
before_script:
- git config --global user.email "builds@travis-ci.com"
- git config --global user.name "Travis CI"
script:
- php build.php
- docker build .
- git commit Dockerfile -m "TravisCI build $TRAVIS_BUILD_NUMBER on $(date -u "+%Y-%m-%d-%H-%M-%S")"
after_success:
- export GIT_TAG=build-$TRAVIS_BUILD_NUMBER
- git tag $GIT_TAG -a -m "TravisCI build $TRAVIS_BUILD_NUMBER"
- git push origin $GIT_TAG
| Revert "Trying PHP 5.5 to see if it's more stable." | Revert "Trying PHP 5.5 to see if it's more stable."
This reverts commit c537b96aac4c422cdebd6e41cdb5373f65d50f25.
| YAML | mit | brodkinca/docker-jira-software,brodkinca/docker-jira-software |
d8ae276f53a686ef9fccb9b6c266ee73a7f25235 | .travis.yml | .travis.yml | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
before_install:
- if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-rm xdebug.ini; fi;
install:
- composer install --prefer-dist
| language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
fast_finish: true
before_install:
- if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-rm xdebug.ini; fi;
install:
- composer install --prefer-dist
| Remove PHP 7.0 and HHVM from allowed failures and enable fast finish | Remove PHP 7.0 and HHVM from allowed failures and enable fast finish
| YAML | mit | dosten/disposable-email-checker |
517cbeeb1eb860a27917ce0f0e8b04d74e6d4030 | .travis.yml | .travis.yml | dist: trusty
sudo: false
group: beta
language: node_js
node_js:
- node
addons:
firefox: latest-esr
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild --update-binary && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi"
before_script:
- npm install web-component-tester bower polymer-cli
- $(npm bin)/bower install
- $(npm bin)/polymer lint --rules polymer-2
script:
- xvfb-run $(npm bin)/wct
| dist: trusty
group: beta
language: node_js
node_js:
- node
addons:
firefox: latest-esr
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild --update-binary && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi"
before_script:
- npm install web-component-tester bower polymer-cli
- $(npm bin)/bower install
- $(npm bin)/polymer lint --rules polymer-2
script:
- xvfb-run $(npm bin)/wct
| Remove the obsolete 'sudo:' setting | Remove the obsolete 'sudo:' setting
| YAML | apache-2.0 | Collaborne/iron-file-icons |
782de357d2a2d15e033471408674b08e0489400a | .travis.yml | .travis.yml | ---
sudo: required
language: node_js
install:
- sudo pip install -r requirements.txt
- npm install
node_js:
- node
services:
- docker
script:
- yamllint --strict $(git ls-files '*.yaml' '*.yml') || exit 1
- >
find -name "*.md" -not -path "*/node_modules/*"
| xargs markdownlint
|| exit 1
- find . -type f -iname "*.sh" | while read -r line; do echo "Linting $line"; docker run -v "$(pwd)":/mnt --rm koalaman/shellcheck:v0.7.0 "$line" || exit 1; done;
matrix:
fast_finish: true
| ---
sudo: required
language: node_js
install:
- sudo pip install -r requirements.txt
- npm install
node_js:
- node
services:
- docker
script:
- yamllint --strict $(git ls-files '*.yaml' '*.yml') || exit 1
- >
find -name "*.md" -not -path "*/node_modules/*"
| xargs markdownlint
|| exit 1
- >
find . -type f -iname "*.sh"
| while read -r line; do
echo "Linting $line";
docker run -v "$(pwd)":/mnt --rm koalaman/shellcheck:v0.7.0 "$line"
|| exit 1;
done;
matrix:
fast_finish: true
| Split shellcheck command on multiple lines | Split shellcheck command on multiple lines
| YAML | mit | ferrarimarco/home-lab,ferrarimarco/home-lab |
fc49514c33d817a76ec669bd468465bf5e916e00 | .travis.yml | .travis.yml | # Use Docker environment
sudo: false
# Setup build matrix
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
matrix:
- PREFER_LOWEST="--prefer-lowest"
- PREFER_LOWEST=""
# Dependencies
before_install:
- composer self-update
install:
- travis_retry composer update --no-interaction --prefer-source $PREFER_LOWEST
script: composer test
# Cache dependencies
cache:
directories:
# - vendor
- $HOME/.composer/cache
# Gitter notifications
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/c7e5d662086972567218
on_success: change
on_failure: always
on_start: false
| # Use Docker environment
sudo: false
# Setup build matrix
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
env:
matrix:
- PREFER_LOWEST="--prefer-lowest"
- PREFER_LOWEST=""
# Dependencies
before_install:
- composer self-update
install:
- travis_retry composer update --no-interaction --prefer-source $PREFER_LOWEST
script: composer test
# Cache dependencies
cache:
directories:
# - vendor
- $HOME/.composer/cache
# Gitter notifications
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/c7e5d662086972567218
on_success: change
on_failure: always
on_start: false
| Allow failures on 7 until box is updated | Allow failures on 7 until box is updated
| YAML | mit | rocketeers/rocketeer |
a130817adcd12028e53ffd3e52cc523d513f8911 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.2
- ruby-head
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/rails_6.0.gemfile
matrix:
allow_failures:
- rvm: ruby-head
gemfile: gemfiles/rails_4.2.gemfile
script:
- bundle exec rake rubocop
- bundle exec rspec
| language: ruby
rvm:
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.2
- ruby-head
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/rails_6.0.gemfile
matrix:
allow_failures:
- rvm: ruby-head
gemfile: gemfiles/rails_4.2.gemfile
exclude:
- rvm: 2.3.8
gemfile: gemfiles/rails_6.0.gemfile
- rvm: 2.4.5
gemfile: gemfiles/rails_6.0.gemfile
script:
- bundle exec rake rubocop
- bundle exec rspec
| Exclude tests for Rails 6.0 for Ruby versions below 2.5.0 | Exclude tests for Rails 6.0 for Ruby versions below 2.5.0
| YAML | mit | lbeder/health-monitor-rails,lbeder/health-monitor-rails,lbeder/health-monitor-rails |
69f7f5bedd750c2cea58f6006b9d339c88d5a66e | .travis.yml | .travis.yml | sudo: false
language: rust
# necessary for `travis-cargo coveralls --no-sudo`
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev # optional: only required for the --verify flag of coveralls
# run builds for all the trains (and more)
rust:
- nightly
- beta
- stable
# load travis-cargo
before_script:
- |
pip install 'travis-cargo<0.2' --user &&
export PATH=$HOME/.local/bin:$PATH
# the main build
script:
- |
travis-cargo build &&
travis-cargo test &&
travis-cargo bench &&
travis-cargo --only stable doc
#after_success:
# # upload the documentation from the build with stable (automatically only actually
# # runs on the master branch, not individual PRs)
# - travis-cargo --only stable doc-upload
# # measure code coverage and upload to coveralls.io (the verify
# # argument mitigates kcov crashes due to malformed debuginfo, at the
# # cost of some speed <https://github.com/huonw/travis-cargo/issues/12>)
# - travis-cargo coveralls --no-sudo --verify
env:
global:
# override the default `--features unstable` used for the nightly branch (optional)
- TRAVIS_CARGO_NIGHTLY_FEATURE=nightly
# encrypted github token for doc upload (see `GH_TOKEN` link above)
- secure: "..."
| sudo: false
language: rust
# necessary for `travis-cargo coveralls --no-sudo`
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev # optional: only required for the --verify flag of coveralls
# run builds for all the trains (and more)
rust:
- nightly
- beta
- stable
# load travis-cargo
before_script:
- |
pip install 'travis-cargo<0.2' --user &&
export PATH=$HOME/.local/bin:$PATH
# the main build
script:
- |
travis-cargo build &&
travis-cargo test &&
travis-cargo bench &&
travis-cargo --only stable doc
#after_success:
# # upload the documentation from the build with stable (automatically only actually
# # runs on the master branch, not individual PRs)
# - travis-cargo --only stable doc-upload
# # measure code coverage and upload to coveralls.io (the verify
# # argument mitigates kcov crashes due to malformed debuginfo, at the
# # cost of some speed <https://github.com/huonw/travis-cargo/issues/12>)
# - travis-cargo coveralls --no-sudo --verify
env:
global:
# encrypted github token for doc upload (see `GH_TOKEN` link above)
- secure: "..."
| Remove invalid reference to nightly feature for now... | Remove invalid reference to nightly feature for now...
| YAML | mit | jbrd/glium_shapes |
26c47f4c335b59f298a54a742be8cc3c0057abc3 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- iojs
- "0.12"
| sudo: false
language: node_js
node_js:
- stable
- "0.12"
| Add latest node.js to Travis CI | Add latest node.js to Travis CI
| YAML | mit | mdix/browserslist,ai/browserslist |
0a499b8d0ced43a1434a138974d0e268382d9f09 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Test with latest Node.js 5 on Travis CI. | Test with latest Node.js 5 on Travis CI.
| YAML | mit | bigeasy/kibitz,bigeasy/kibitz |
c57963f55010f62cab659d03b1affe06ae2388ba | .travis.yml | .travis.yml | dist: xenial
language: python
branches:
only:
# This is where pull requests from "bors r+" are built.
- staging
# This is where pull requests from "bors try" are built.
- trying
# Uncomment this to enable building pull requests.
- master
cache:
directories:
- $HOME/.cache/pip
matrix:
include:
- python: 3.4
env:
- TOXENV=py34
- python: 3.5
env:
- TOXENV=py35
- python: 3.6
env:
- TOXENV=py36
- python: 3.7
env:
- TOXENV=py37
- python: 3.7
env:
- TOXENV=flake8
- python: 3.7
env:
- TOXENV=pylint
- python: 3.7
env:
- TOXENV=docs
- python: 3.7
env:
- TOXENV=doctest
- python: 3.7
env:
- TOXENV=check-manifest
- python: 3.7
env:
- TOXENV=checkreadme
before_install:
- pip install codecov # for coverage
install:
- pip install tox
script:
- tox
after_success:
- codecov
| dist: xenial
language: python
branches:
except:
- staging.tmp
- trying.tmp
cache:
directories:
- $HOME/.cache/pip
matrix:
include:
- python: 3.4
env:
- TOXENV=py34
- python: 3.5
env:
- TOXENV=py35
- python: 3.6
env:
- TOXENV=py36
- python: 3.7
env:
- TOXENV=py37
- python: 3.7
env:
- TOXENV=flake8
- python: 3.7
env:
- TOXENV=pylint
- python: 3.7
env:
- TOXENV=docs
- python: 3.7
env:
- TOXENV=doctest
- python: 3.7
env:
- TOXENV=check-manifest
- python: 3.7
env:
- TOXENV=checkreadme
before_install:
- pip install codecov # for coverage
install:
- pip install tox
script:
- tox
after_success:
- codecov
| Build all branches except those which bors requires not to | ENH: Build all branches except those which bors requires not to
| YAML | bsd-3-clause | h5preserve/h5preserve,aragilar/h5preserve |
d6e70f1bc07137366fb7e225c998457b6fea2562 | .travis.yml | .travis.yml | language: ruby
bundler_args: --path vendor/bundle
script: bundle exec rake
before_install:
- gem install bundler
- bundle config --local without local_development
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
matrix:
allow_failures:
- rvm: ruby-head # green, but unstable
- rvm: jruby-head # green, but unstable
- rvm: rbx-18mode # seems to be running 1.9 mode instead!?
- rvm: rbx-19mode # segfaulting in String#ascii_only?
| language: ruby
bundler_args: --path vendor/bundle
script: bundle exec rake
before_install:
- gem install bundler
- bundle config --local without local_development
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby
- jruby-head
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head # green, but unstable
- rvm: jruby-head # green, but unstable
- rvm: rbx-2 # segfaulting in String#ascii_only?
fast_finish: true
| Update TravisCI configs to current format | Update TravisCI configs to current format
| YAML | mit | 0x00evil/mail,jonkgrimes/mail,planio-gmbh/mail,schneems/mail,kert-io/mail,0x00evil/mail,jeremy/mail,smallspark/mail,agaridata/mail,carsonreinke/mail,kert-io/mail,schepedw/mail,zacholauson/mail,EdwardPantoja/mail,missive/mail,jeremy/mail,owenr/mail,kaineer/mail,pjskennedy/mail,pjskennedy/mail,wktk/mail,EdwardPantoja/mail,schneems/mail,pushrax/mail,kjg/mail,jonkgrimes/mail,zacholauson/mail,carsonreinke/mail,pushrax/mail,wktk/mail,kaineer/mail,smallspark/mail,kjg/mail,mikel/mail,schepedw/mail,agaridata/mail,benmmurphy/mail,jeremyevans/mail,benmmurphy/mail,jeremyevans/mail |
1ace4eeb89a76ed850c0216bced22cd2f6050f54 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# command to install dependencies
install:
- pip install -r requirements_dev.txt
- pip install .
# command to run tests
script: "python setup.py test"
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# command to install dependencies
install:
- pip install -r requirements_dev.txt
- pip install .
# command to run tests
script: "python setup.py test"
| Remove Travis testing of Python 3.2 | Remove Travis testing of Python 3.2
| YAML | mit | nudomarinero/wquantiles |
c015a4a7abe4842bdbcddf1fd2f57cdcd95baf2e | .travis.yml | .travis.yml | language: python
python:
- 3.4
notifications:
email: false
before_install:
# Setup Miniconda - a lightweight anaconda
# This allows us to get pre-build binaries from numpy etc. from binstar
# This is quicker and more reliable than compiling from source every build
# See https://gist.githubusercontent.com/dan-blanchard/7045057/raw/8ca5a4abcd0c65ab05217dd92119001f8454c369/.travis.yml
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update --yes conda
install:
# Download numpy and matplotlib binaries from binstar
- conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib pandas
# Setup coverage for converage measurement
- pip install coverage
- pip install coveralls
- python setup.py install
script:
# Run tests
- coverage run --source=blueice setup.py test
after_success:
# Calculate coverage
- coveralls | language: python
python:
- 3.4
notifications:
email: false
before_install:
# Setup Miniconda - a lightweight anaconda
# This allows us to get pre-build binaries from numpy etc. from binstar
# This is quicker and more reliable than compiling from source every build
# See https://gist.githubusercontent.com/dan-blanchard/7045057/raw/8ca5a4abcd0c65ab05217dd92119001f8454c369/.travis.yml
- wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update --yes conda
install:
# Download numpy and matplotlib binaries from binstar
- conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib pandas
# Setup coverage for converage measurement
- pip install coverage
- pip install coveralls
- python setup.py install
script:
# Run tests
- coverage run --source=blueice setup.py test
after_success:
# Calculate coverage
- coveralls
| Change default miniconda version to python 3 | Change default miniconda version to python 3
| YAML | bsd-3-clause | JelleAalbers/blueice |
f149952e32a93286ba26c9a3bcd9bee3f338ea37 | .travis.yml | .travis.yml | language: node_js
matrix:
include:
- node_js: "node"
- node_js: "7"
sudo: false
cache:
directories:
- node_modules
- chrome
addons: # needed to run Chrome beta
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libstdc++-4.9-dev
before_script:
# fetch and extract Chrome if not cached
- if [ ! -x chrome/opt/google/chrome/chrome ]; then
wget https://dl.google.com/linux/direct/google-chrome-beta_current_amd64.deb &&
dpkg -x google-chrome-beta_current_amd64.deb chrome &&
rm -f google-chrome-beta_current_amd64.deb
else
echo 'Using cached Google Chrome';
fi
# dump the current versions
- chrome/opt/google/chrome-beta/chrome --version
- npm list
# start a fresh new Chrome instance
- chrome/opt/google/chrome-beta/chrome
--user-data-dir=$(mktemp -d)
--no-sandbox --no-first-run --disable-extensions
--remote-debugging-port=9222 --headless --disable-gpu
about:blank &
# wait for Chrome to start up
- while ! curl http://localhost:9222 >/dev/null; do sleep 1; done
| language: node_js
matrix:
include:
- node_js: "node"
- node_js: "7"
sudo: false
cache:
directories:
- node_modules
- chrome
addons: # needed to run Chrome beta
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libstdc++-4.9-dev
before_script:
# fetch and extract Chrome if not cached
- if [ ! -x chrome/opt/google/chrome/chrome ]; then
wget https://dl.google.com/linux/direct/google-chrome-beta_current_amd64.deb &&
dpkg -x google-chrome-beta_current_amd64.deb chrome &&
rm -f google-chrome-beta_current_amd64.deb
else
echo 'Using cached Google Chrome';
fi
# dump the current versions
- chrome/opt/google/chrome-beta/chrome --version
- npm list
# start a fresh new Chrome instance
- chrome/opt/google/chrome-beta/chrome
--user-data-dir=$(mktemp -d)
--no-sandbox --no-first-run --disable-extensions
--remote-debugging-port=9222 --headless --disable-gpu
about:blank &>/dev/null &
# wait for Chrome to start up
- while ! curl http://localhost:9222 &>/dev/null; do sleep 1; done
| Hide useless messages from Travis CI output | Hide useless messages from Travis CI output
| YAML | mit | cyrus-and/chrome-har-capturer |
ae05edf1b80e851f4878fe2747f4f13722951fad | .travis.yml | .travis.yml | dist: trusty
language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.2
- 2.3.5
- 2.2.8
- jruby-1.7.26
- jruby-9.1.14.0
env:
global:
- JRUBY_OPTS="--debug"
after_success:
- bundle exec codeclimate-test-reporter
| dist: trusty
language: ruby
sudo: false
cache: bundler
rvm:
- 2.5.3
- 2.4.5
- 2.3.8
- 2.2.10
- jruby-1.7.26
- jruby-9.2.4.0
env:
global:
- JRUBY_OPTS="--debug"
after_success:
- bundle exec codeclimate-test-reporter
| Test with latest Ruby versions | Test with latest Ruby versions
| YAML | mit | jbox-web/job-database-manager |
14a545baccc5e93a75f348a798faf6592fb79114 | .travis.yml | .travis.yml | script: "if [ $PERFORMANCE_SPECS ];then bundle exec rake performance_specs --trace; else bundle exec rake --trace; fi"
install:
- bundle install --retry=3
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.1"
- "jruby"
- "rbx-2"
env:
- "RAILS_VERSION=rails3"
- "RAILS_VERSION=rails4"
- "RAILS_VERSION=pojs"
matrix:
include:
- rvm: "2.0.0"
env: "PERFORMANCE_SPECS=true"
exclude:
- rvm: "rbx"
env: "RAILS_VERSION=pojs"
- rvm: "jruby"
env: "RAILS_VERSION=pojs"
before_install:
- gem install bundler -v "= 1.5.1"
| language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.1"
- "jruby"
- "rbx-2"
env:
- "RAILS_VERSION=rails3"
- "RAILS_VERSION=rails4"
- "RAILS_VERSION=pojs"
sudo: false
script: "if [ $PERFORMANCE_SPECS ];then bundle exec rake performance_specs --trace; else bundle exec rake --trace; fi"
install:
- bundle install --retry=3
matrix:
include:
- rvm: "2.0.0"
env: "PERFORMANCE_SPECS=true"
exclude:
- rvm: "rbx"
env: "RAILS_VERSION=pojs"
- rvm: "jruby"
env: "RAILS_VERSION=pojs"
before_install:
- gem install bundler -v "= 1.5.1"
| Use the new build env on Travis | Use the new build env on Travis
faster vms, better network, more cpu, more ram
docs coming soon | YAML | mit | mavenlink/jasmine-gem,amandamholl/jasmine-gem,amandamholl/jasmine-gem,mavenlink/jasmine-gem,brigade/jasmine-gem,mavenlink/jasmine-gem,brigade/jasmine-gem,amandamholl/jasmine-gem,brigade/jasmine-gem |
f4f80b24a1ed215e3320d2acb0fcf2fe3143ecc1 | .travis.yml | .travis.yml | language: python
python:
- "2.5"
- "2.6"
- "2.7"
- "3.2"
- "3.3"
script:
- python setup.py build_ext --inplace
- python setup.py test
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
script:
- python setup.py build_ext --inplace
- python setup.py test
| Drop support for Python 2.5 | Drop support for Python 2.5
It would require using unidiomatic exception handling.
| YAML | bsd-3-clause | cigroup-ol/metaopt,cigroup-ol/metaopt,cigroup-ol/metaopt |
9d1202617d48045ead7ce13272e255797d39b37d | .travis.yml | .travis.yml | before_install:
- sudo add-apt-repository ppa:directhex/monoxide -y
- sudo apt-get update -qq -y
- sudo apt-get install mono-devel -qq -y
script: ./build /p:Configuration=Release /p:Framework=$Framework "/t:DumpSettings;CleanAll;BuildFramework;TestFramework"
env:
matrix:
- Framework="net-2.0"
- Framework="net-3.5"
- Framework="net-4.0"
- Framework="net-4.5"
| before_install:
- sudo add-apt-repository ppa:directhex/monoxide -y
- sudo apt-get update -qq -y
- sudo apt-get install mono-devel -qq -y
before_script:
./build /p:Configuration=Release /p:Framework=$Framework "/t:DumpSettings;CleanAll"
script:
./build /p:Configuration=Release /p:Framework=$Framework "/t:Build;Test"
env:
matrix:
- Framework="net-2.0"
- Framework="net-3.5"
- Framework="net-4.0"
- Framework="net-4.5"
| Test workaround for xbuild problem | Test workaround for xbuild problem
| YAML | mit | agray/nunit,akoeplinger/nunit,acco32/nunit,jhamm/nunit,NarohLoyahl/nunit,dicko2/nunit,Therzok/nunit,NarohLoyahl/nunit,Therzok/nunit,mikkelbu/nunit,JohanO/nunit,Green-Bug/nunit,cPetru/nunit-params,pcalin/nunit,acco32/nunit,ChrisMaddock/nunit,JustinRChou/nunit,modulexcite/nunit,Suremaker/nunit,acco32/nunit,jhamm/nunit,Therzok/nunit,nunit/nunit,dicko2/nunit,Green-Bug/nunit,elbaloo/nunit,nunit/nunit,zmaruo/nunit,pflugs30/nunit,danielmarbach/nunit,dicko2/nunit,mjedrzejek/nunit,jhamm/nunit,Suremaker/nunit,JohanO/nunit,jnm2/nunit,nivanov1984/nunit,jnm2/nunit,appel1/nunit,mikkelbu/nunit,modulexcite/nunit,ChrisMaddock/nunit,ArsenShnurkov/nunit,Green-Bug/nunit,modulexcite/nunit,jadarnel27/nunit,danielmarbach/nunit,elbaloo/nunit,passaro/nunit,OmicronPersei/nunit,ggeurts/nunit,mjedrzejek/nunit,passaro/nunit,JustinRChou/nunit,passaro/nunit,agray/nunit,elbaloo/nunit,pflugs30/nunit,cPetru/nunit-params,NikolayPianikov/nunit,agray/nunit,ggeurts/nunit,ArsenShnurkov/nunit,zmaruo/nunit,OmicronPersei/nunit,akoeplinger/nunit,jadarnel27/nunit,ArsenShnurkov/nunit,pcalin/nunit,NarohLoyahl/nunit,zmaruo/nunit,michal-franc/nunit,jeremymeng/nunit,nivanov1984/nunit,michal-franc/nunit,pcalin/nunit,NikolayPianikov/nunit,appel1/nunit,danielmarbach/nunit,jeremymeng/nunit,jeremymeng/nunit,JohanO/nunit,michal-franc/nunit,akoeplinger/nunit |
da0382714289a14e6e187fc3f658a2fe151d6c53 | .travis.yml | .travis.yml | language: rust
env:
global:
- secure: MaupJEtmxoIh2UY2N6O3U5x+kverikrG6k66UlMO7pd1SLdFfB4pmhYje/TO3gCEMFIJtJEK0NhD2QMHyveUd0o86wOhiMNfrO7PBCI0+3rXuE0HdkLXGcd1Lhk+iT7IFwuOzdH60ONfBHHGfkVnFLwcBaAT9rBaKkKMYbcASuU=
script:
- cargo build
- cargo test
- cargo doc
after_script:
- cp -r target/doc doc
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
| language: rust
after_success: |
cargo doc \
&& echo '<meta http-equiv=refresh content=0;url=reminisce/index.html>' > target/doc/index.html && \
sudo pip install ghp-import && \
ghp-import -n target/doc && \
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
| Use new build script doc system | Use new build script doc system
| YAML | mit | TomBebbington/reminisce |
4de91906c10f4cfaedb6581b55bf8f96f36ccadb | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.6
- 0.8
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
| language: node_js
node_js:
- 0.8
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
| Remove Node.js 0.6 from Travis CI build. | Remove Node.js 0.6 from Travis CI build.
Closes #75.
| YAML | mit | bigeasy/stencil,bigeasy/stencil,bigeasy/stencil |
14a86ef8d43dfe07c30e23f056789fe0ae40ebbb | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.0
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.0
matrix:
allow_failures:
- rvm: 2.2.0
| Allow failure on 2.2.0 for now | Allow failure on 2.2.0 for now
| YAML | mit | SilverCG/mailcatcher,iFixit/mailcatcher,okinaka/mailcatcher,TuffLuck/mailcatcher,MacroMackie/mailcatcher,Noxa/mailcatcher,TuffLuck/mailcatcher,iFixit/mailcatcher,saisai/mailcatcher,okinaka/mailcatcher,saisai/mailcatcher,Noxa/mailcatcher,MacroMackie/mailcatcher,sj26/mailcatcher,SilverCG/mailcatcher,sj26/mailcatcher |
38bcfb0d156cb0f936661d3acb92175baf5a17c0 | .travis.yml | .travis.yml | dist: xenial
language: python
sudo: false
matrix:
include:
- python: 3.6
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37
- python: 3.7
env: TOXENV=py37-flake8
install:
- pip install tox
script:
- tox
| dist: xenial
language: python
jobs:
include:
- python: 3.6
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37
- python: 3.7
env: TOXENV=py37-flake8
install:
- pip install tox
script:
- tox
| Remove deprecated sudo tag, renamed matrix tag to jobs. | Remove deprecated sudo tag, renamed matrix tag to jobs.
| YAML | bsd-3-clause | unt-libraries/pyuntl |
61761968b3c58cd3904827b417917a6f1a57c832 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
rvm:
- 2.1
- 2.2
- 2.3.0
| sudo: required
before_install: gem update --system
dist: trusty
language: ruby
rvm:
- 2.1
- 2.2
- 2.3.0
| Use latest Rubygems in Travis | Use latest Rubygems in Travis
A bug in Rubgems < 2.6.9 prevents the rainbow gem from being installed.
See: sickill/rainbow#44
| YAML | mit | mvz/pronto-reek,mmozuras/pronto-reek |
85d32ddd9a861785d4a3d8becf4677bb840a0158 | .travis.yml | .travis.yml | language: go
go:
- release
before_install:
- . $HOME/.nvm/nvm.sh
- nvm install stable
- nvm use stable
install:
- npm install --global yarn
script:
- make
| language: go
go:
- master
before_install:
- . $HOME/.nvm/nvm.sh
- nvm install stable
- nvm use stable
install:
- npm install --global yarn
script:
- make
| Set the Travis CI golang version to master | Set the Travis CI golang version to master
| YAML | apache-2.0 | decaf-emu/huehuetenango,decaf-emu/huehuetenango,decaf-emu/huehuetenango |
0713d9fe8f7ccaf207d9dc4dfd80dbddaf41abf7 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install
script: phpunit
| language: php
php:
- 5.3
- 5.4
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev
script: vendor/bin/phpunit
| Reset back to the way it was. | Reset back to the way it was.
| YAML | bsd-2-clause | Codeusa/pastebin,ryanc/pastebin,Codeusa/pastebin,ryanc/pastebin,ryanc/pastebin,ryanc/pastebin |
ef9d013261717734bee1da74aa70010671bc21e4 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- pypy
install:
- pip install --use-mirrors -q unittest2
- python setup.py -q install
script:
- python --version
- py.test tests
| language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- pypy
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors unittest2; fi
- python setup.py -q install
script:
- py.test tests
| Install unittest2 only for py26. | TRAVIS: Install unittest2 only for py26.
| YAML | bsd-3-clause | benthomasson/parse_type,jenisys/parse_type,jenisys/parse_type,benthomasson/parse_type |
4e920a008a147ab3745ff1339d083aad10523551 | .travis.yml | .travis.yml | branches:
only:
- develop
- master
sudo: false
language: go
go:
- 1.2
- 1.3
- 1.4
- tip
matrix:
allow_failures:
- go: 1.2
- go: 1.3
before_install:
- 'if [[ "${TRAVIS_GO_VERSION}" =~ 1.[2-3] ]]; then go get code.google.com/p/go.tools/cmd/cover; else go get golang.org/x/tools/cmd/cover; fi'
- go get -v github.com/tools/godep
- go get -v github.com/onsi/ginkgo/ginkgo
- go get -v github.com/mattn/goveralls
after_success:
- pushd ltc
- 'echo "mode: set" > coverage.out'
- 'find . -name "*.coverprofile" -exec grep -v mode: {} >> coverage.out \;'
- PATH=$HOME/gopath/bin:$PATH goveralls -coverprofile=coverage.out -repotoken=$COVERALLS_TOKEN
- popd
install:
- pushd ltc
- PATH=$HOME/gopath/bin:$PATH godep restore
- popd
script:
- pushd ltc
- PATH=$HOME/gopath/bin:$PATH ginkgo -r --race --randomizeAllSpecs --failOnPending --skipMeasurements --cover
- test -z "$(go fmt ./...)"
- popd
| branches:
only:
- develop
- master
language: go
go:
- 1.2
- 1.3
- 1.4
- tip
matrix:
allow_failures:
- go: 1.2
- go: 1.3
- go: tip
before_install:
- 'if [[ "${TRAVIS_GO_VERSION}" =~ 1.[2-3] ]]; then go get code.google.com/p/go.tools/cmd/cover; else go get golang.org/x/tools/cmd/cover; fi'
- go get -v github.com/tools/godep
- go get -v github.com/onsi/ginkgo/ginkgo
- go get -v github.com/mattn/goveralls
after_success:
- pushd ltc
- 'echo "mode: set" > coverage.out'
- 'find . -name "*.coverprofile" -exec grep -v mode: {} >> coverage.out \;'
- PATH=$HOME/gopath/bin:$PATH goveralls -coverprofile=coverage.out -repotoken=$COVERALLS_TOKEN
- popd
install:
- pushd ltc
- PATH=$HOME/gopath/bin:$PATH godep restore
- popd
script:
- pushd ltc
- PATH=$HOME/gopath/bin:$PATH ginkgo -r --race --randomizeAllSpecs --failOnPending --skipMeasurements --cover
- test -z "$(go fmt ./...)"
- popd
| Remove sudo directive and allow failures on tip for Travis-CI. | Remove sudo directive and allow failures on tip for Travis-CI.
[#92977146]
Signed-off-by: David Wadden <ff4ebafbe4a7d77cde45f9afefafd7a5dfa94f36@pivotal.io>
| YAML | apache-2.0 | SrinivasChilveri/lattice,datachand/lattice,Klaudit/lattice,Klaudit/lattice,datachand/lattice,svrc-pivotal/lattice,davidwadden/lattice,felipeg48/lattice,cloudfoundry-incubator/ltc,SrinivasChilveri/lattice,datachand/lattice,davidwadden/lattice,cloudfoundry-incubator/ltc,Klaudit/lattice,datachand/lattice,davidwadden/lattice-release,svrc-pivotal/lattice,Klaudit/lattice,SrinivasChilveri/lattice,davidwadden/lattice-release,felipeg48/lattice,SrinivasChilveri/lattice,svrc-pivotal/lattice,svrc-pivotal/lattice |
0dcc056cda16fa6a3854b902cb3fffd9eecbd203 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- sudo add-apt-repository ppa:biometrics/bob
- sudo apt-get update -qq
- sudo apt-get install -qq bob-dev
install:
- "python bootstrap.py"
- "./bin/buildout"
script:
- "./bin/nosetests -sv"
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- sudo add-apt-repository -qq ppa:biometrics/bob
- sudo apt-get update -qq
- sudo apt-get install -qq bob-dev
install:
- "python bootstrap.py"
- "./bin/buildout"
script:
- "./bin/nosetests -sv"
| Add -qq flag to silence apt-add | Add -qq flag to silence apt-add
| YAML | bsd-3-clause | tiagofrepereira2012/bob.extension,tiagofrepereira2012/bob.extension,tiagofrepereira2012/bob.extension,tiagofrepereira2012/bob.extension |
cf8904d57312460d1967c29039463038634c0f45 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode10.2
xcode_project: Aware.xcodeproj
xcode_scheme: Aware
script: xcodebuild -project Aware.xcodeproj -scheme Aware test
| language: objective-c
osx_image: xcode10.2
xcode_project: Aware.xcodeproj
xcode_scheme: Aware
script: xcodebuild -project Aware.xcodeproj -scheme Aware test ENABLE_HARDENED_RUNTIME=NO CODE_SIGN_STYLE=Manual CODE_SIGN_IDENTITY=
| Build CI in old code sign style | Build CI in old code sign style
| YAML | mit | josh/Aware |
a1f8d852e06fb20f139d04914e2364bb55aee863 | .travis.yml | .travis.yml | language: java
cache:
directories:
- $HOME/.m2
| language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
cache:
directories:
- $HOME/.m2
| Build on multiple JDK's (OpenJDK and Oracle). | CI: Build on multiple JDK's (OpenJDK and Oracle).
| YAML | mit | angcyo/jsoup,offa/jsoup,offa/jsoup,angcyo/jsoup,jhy/jsoup,jhy/jsoup |
660f38959770dd15122cf7eed15f393714b99bee | .travis.yml | .travis.yml | language: elixir
elixir:
- 1.3.4
- 1.4.2
otp_release:
- 18.3
- 19.2
before_script:
- MIX_ENV=test mix compile --warnings-as-errors
- travis_wait mix dialyzer --plt
script:
- mix coveralls.travis
- # skip dialyzer for elixir 1.4 and erlang 18 as it produces weird errors, see #69
- if ! ([[ "$TRAVIS_ELIXIR_VERSION" == "1.4"* ]] && [[ "$TRAVIS_OTP_RELEASE" == "18"* ]]); then mix dialyzer --halt-exit-status; fi
cache:
directories:
- _build
- deps
| language: elixir
elixir:
- 1.3.4
- 1.4.5
- 1.5.0
otp_release:
- 18.3
- 19.3
- 20.0
before_script:
- MIX_ENV=test mix compile --warnings-as-errors
- travis_wait mix dialyzer --plt
script:
- mix coveralls.travis
# skip dialyzer for elixir 1.4 and erlang 18 as it produces weird errors, see #69
- if ! ([[ "$TRAVIS_ELIXIR_VERSION" == "1.4"* ]] && [[ "$TRAVIS_OTP_RELEASE" == "18"* ]]); then mix dialyzer --halt-exit-status; fi
cache:
directories:
- _build
- deps
| Test all the new things | Test all the new things | YAML | mit | PragTob/benchee_json |
f8e65089f61d471324a5c8a70bdc345110cd70ba | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.8.7
| language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.8.7
python:
- "2.7"
node_js:
- "0.6"
install:
- pip install git+git://github.com/ipython/ipython.git
| Add python and nodejs dependencies. | Add python and nodejs dependencies.
| YAML | mit | kunxi/nanoc-nbconvert |
c58987e7843eccf0add533ae4569ef777ea445c1 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
| sudo: false
language: node_js
node_js:
- 'node'
- '--lts'
| Use dynamic node versions on Travis CI | Test(config): Use dynamic node versions on Travis CI | YAML | unlicense | fvdm/nodejs-cloudsight |
4a051c12e4b0bd0f5e319090ac898dd3939d972c | .travis.yml | .travis.yml | language: ruby
before_install:
- "find /home/travis/.rvm/rubies -wholename '*default/bundler-*.gemspec' -delete"
- gem install bundler -v 1.15.1
rvm:
- 2.0.0
- 2.1.5
- 2.2.0
- 2.3.3
| language: ruby
before_install:
- "find /home/travis/.rvm/rubies -wholename '*default/bundler-*.gemspec' -delete"
- gem install bundler -v 1.15.1
rvm:
- 2.1.5
- 2.2.0
- 2.3.1
- 2.3.8
- 2.4.5
- 2.5.3
| Update Ruby versions to build against | Update Ruby versions to build against
| YAML | mit | teamsnap/teamsnap_rb |
7632d3af57f4d807f8358db4b9b5c3bedf54359f | .travis.yml | .travis.yml | language: scala
scala:
- "2.11.7"
jdk:
- openjdk8
| language: scala
scala:
- "2.11.7"
jdk:
- oraclejdk8
| Update to CI config. Now targeting Lift 3.0 with java 8 and scala 2.11.7 | Update to CI config. Now targeting Lift 3.0 with java 8 and scala 2.11.7 | YAML | apache-2.0 | karma4u101/FoBo,karma4u101/FoBo |
ebe0f3e5df61d91ca3b125077c78f87618eb8d0d | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
bundler_args: --jobs 7 --without docs
install: bundle install --without integration
script: bundle exec rake
| #
# Copyright © 2014 Cask Data, Inc.
#
# 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
#
# 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.
#
language: ruby
rvm:
- 1.9.3
cache: bundler
sudo: false
bundler_args: --jobs 7 --without docs integration
script: bundle exec rake
| Switch to new container-based Travis CI infrastructure | Switch to new container-based Travis CI infrastructure
| YAML | apache-2.0 | caskdata/hadoop_cookbook,caskdata/hadoop_cookbook,cdapio/hadoop_cookbook,cdapio/hadoop_cookbook,caskdata/hadoop_cookbook,cdapio/hadoop_cookbook |
11c15d081172eb15ea071895bc1ab8baef62cdfe | .travis.yml | .travis.yml | dist: trusty
language: java
jdk:
- openjdk8
install: true
script: '[ "$TRAVIS_REPO_SLUG" == apache/rampart ] && [ "$TRAVIS_BRANCH" == trunk ] && [ "$TRAVIS_PULL_REQUEST" == false ] && goal=deploy || goal=verify ; mvn -B -s .travis-settings.xml -Papache-release -Dgpg.skip=true $goal'
cache:
directories:
- $HOME/.m2
notifications:
email:
# java-dev@axis.apache.org doesn't work here because it's not an address registered on GitHub.
- veithen@apache.org
| dist: trusty
language: java
jdk:
- openjdk8
install: true
script: '[ "$TRAVIS_REPO_SLUG" == apache/rampart ] && [ "$TRAVIS_BRANCH" == trunk ] && [ "$TRAVIS_PULL_REQUEST" == false ] && goal=deploy || goal=verify ; mvn -B -s .travis-settings.xml -Papache-release -Dgpg.skip=true $goal'
env:
global:
- secure: "EdhUKPgSqlyvV1WTzEhe91zTiTFzcQCG4FcdgN73j5VRYYU08hDuv7NeOTR7ks2iIhhVRBsKVJ6HdHlr5x7KDLKxelhP9J1zE+wHwQToQoL+pGSHS12h5pTRHwioy9nzCvCcZNM0nkN2w6M3Lbql8UOOjGjzdsOzWhVqYhpDc8c="
- secure: "G0DkdCmLgsnwqDsHexziUWiDQ33wvUreMLCl4tQYmp25AGDi5YtVaqzlZrQbZGI6KiaH3Ud2DO3oBaxi553H/LeJMqalDIwQcQPs+xjBru4HfPV3umuIMz+A9DRQ6x/274E9n25H7AwA49JLGmqpcL94vVbwE7ZgQ81Jh4txzWw="
cache:
directories:
- $HOME/.m2
notifications:
email:
# java-dev@axis.apache.org doesn't work here because it's not an address registered on GitHub.
- veithen@apache.org
| Add credentials to upload snapshots. | Add credentials to upload snapshots.
git-svn-id: 3a0daac14c5e6bfdff62a55945ca5e1dd585acf7@1838386 13f79535-47bb-0310-9956-ffa450edef68
| YAML | apache-2.0 | apache/rampart,apache/rampart |
151891af2cde73ee817dd6416fc2f19085954c0b | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "4"
- "6"
- "stable"
| sudo: false
language: node_js
node_js:
- "4"
- "6"
- "stable"
deploy:
provider: npm
email: stefan.penner+ember-cli@gmail.com
api_key:
secure: Vfs9LIJtu0GGQqEk74aypqUGk0925/41ioOkAoHxWQwZGkhvZsVDJsfe2Two47uJGGoq17vScorrhiXFZXRvKpdwFl1uHyeIMPQj66DG1cksw972z3mtKMLrxmwSuRk9LNgnow5kUPZfoNuHl0u/9Fjp0ieicwYJMi0ojxUEZvM=
on:
tags: true
repo: ember-cli/broccoli-lint-eslint
| Enable automatic NPM deployment for tags | CI: Enable automatic NPM deployment for tags
| YAML | mit | jonathanKingston/broccoli-lint-eslint |
f4b1d56490e7616d1dd194e1e6c621b8edff7caf | .travis.yml | .travis.yml | language: go
go:
- 1.5
- 1.6
- tip
before_install:
- go get golang.org/x/tools/cmd/vet
- go get github.com/golang/lint/golint
- go get github.com/stretchr/testify
install:
- go get -v ./oauth1
- go get -v ./oauth2
- go get -v ./twitter
- go get -v ./digits
- go get -v ./github
- go get -v ./tumblr
- go get -v ./bitbucket
- go get -v ./google
- go get -v ./facebook
script:
- go test -v ./oauth1
- go test -v ./oauth2
- go test -v ./twitter
- go test -v ./digits
- go test -v ./github
- go test -v ./tumblr
- go test -v ./bitbucket
- go test -v ./google
- go test -v ./facebook
- go vet ./...
- golint ./... | language: go
go:
- 1.5.3
- 1.6
- tip
before_install:
- go get github.com/golang/lint/golint
- go get github.com/stretchr/testify
install:
- go get -v ./oauth1
- go get -v ./oauth2
- go get -v ./twitter
- go get -v ./digits
- go get -v ./github
- go get -v ./tumblr
- go get -v ./bitbucket
- go get -v ./google
- go get -v ./facebook
script:
- go test -v ./oauth1
- go test -v ./oauth2
- go test -v ./twitter
- go test -v ./digits
- go test -v ./github
- go test -v ./tumblr
- go test -v ./bitbucket
- go test -v ./google
- go test -v ./facebook
- go vet ./...
- golint ./...
| Update test matrix from Go 1.5 to 1.5.3 | Update test matrix from Go 1.5 to 1.5.3
* Go vet no longer needs to be installed separately
| YAML | mit | dghubble/gologin |
7cce151539f6cadfaaf5872015451e4f226656ef | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "iojs"
after_success:
- npm run coverage
- npm i coveralls
- cat ./coverage/lcov.info | coveralls
notifications:
email:
on_success: never
| language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4.0"
- "iojs"
after_success:
- npm run coverage
- npm i coveralls
- cat ./coverage/lcov.info | coveralls
notifications:
email:
on_success: never
| Add Node.js 4.0.0 to Travis testing | Add Node.js 4.0.0 to Travis testing
Does this work yet? | YAML | mit | jstransformers/jstransformer-jscss,jstransformers/jstransformer-liquor,jstransformers/jstransformer-html-beautify,jstransformers/jstransformer-engine,jstransformers/jstransformer-postcss,jstransformers/jstransformer-scss,jstransformers/jstransformer-handlebars,jstransformers/jstransformer-sweetjs,jstransformers/jstransformer-walrus,jstransformers/jstransformer,jstransformers/jstransformer-cdata,jstransformers/jstransformer-jade,jstransformers/jstransformer-pug,jstransformers/jstransformer-dust,jstransformers/jstransformer-swig,jstransformers/jstransformer-just,jstransformers/jstransformer-commonmark,jstransformers/jstransformer-sheetify,jstransformers/jstransformer-prismjs,jstransformers/jstransformer-markdown,jstransformers/jstransformer-typescript,jstransformers/jstransformer-mini-handlebars,jstransformers/jstransformer-hamljs,jstransformers/jstransformer-hogan,jstransformers/jstransformer-templayed,jstransformers/jstransformer-esformatter,jstransformers/jstransformer-riotjs,jstransformers/jstransformer-markdown,jstransformers/jstransformer-fest,jstransformers/jstransformer-underscore,jstransformers/jstransformer-consolidate,jstransformers/jstransformer-to-markdown,jstransformers/jstransformer-absurd,jstransformers/jstransformer-duo,jstransformers/jstransformer-cson,jstransformers/jstransformer-mmd,jstransformers/jstransformer-string-template,jstransformers/jstransformer-plates,jstransformers/jstransformer-webpack,jstransformers/jstransformer-remark,jstransformers/jstransformer-cli,jstransformers/jstransformer-myth,jstransformers/jstransformer-supermarked,jstransformers/jstransformer-styl,jstransformers/jstransformer-html-minifier,jstransformers/jstransformer-jazz,jstransformers/jstransformer-css-beautify,jstransformers/jstransformer-absurd,jstransformers/jstransformer-htmling,jstransformers/jstransformer-coffee-script,jstransformers/jstransformer-toffee,jstransformers/jstransformer-atpl,jstransformers/jstransformer-typescript,jstransformers/jstransformer-mdast,jstransformers/jstransformer-css,jstransformers/jstransformer-remarkable,jstransformers/jstransformer-eco,jstransformers/jstransformer-analyze-css,jstransformers/jstransformer-html-beautify,jstransformers/jstransformer-hogan,jstransformers/jstransformer-rework,jstransformers/jstransformer-twig,jstransformers/jstransformer-ect,jstransformers/jstransformer-mote,jstransformers/jstransformer-html2jade,jstransformers/jstransformer-supermarked,jstransformers/jstransformer-dot,jstransformers/jstransformer-html2jade,jstransformers/jstransformer-transparency,jstransformers/jstransformer-coffeecup,jstransformers/list-of-jstransformers,jstransformers/jstransformer-gotpl,jstransformers/jstransformer-purifycss,jstransformers/jstransformer-octet,jstransformers/jstransformer-rho,jstransformers/jstransformer-mini-handlebars,jstransformers/jstransformer-commonmark,jstransformers/jstransformer-pug,jstransformers/jstransformer-qejs,jstransformers/jstransformer-megamark,jstransformers/jstransformer-walrus,jstransformers/jstransformer-vash,jstransformers/jstransformer-opalcss,jstransformers/jstransformer-reshape,jstransformers/jstransformer-purifycss,jstransformers/jstransformer-escape-html,jstransformers/jstransformer-suitcss,jstransformers/jstransformer-imba,jstransformers/jstransformer-es6-template-strings,jstransformers/jstransformer-riotjs,jstransformers/jstransformer-sass,jstransformers/jstransformer-haml-coffee,jstransformers/jstransformer-mdast,jstransformers/jstransformer-toml,jstransformers/jstransformer-loader,jstransformers/jstransformer-mold,jstransformers/jstransformer-coffeekup,jstransformers/jstransformer-css-whitespace,jstransformers/jstransformer-stylecow,jstransformers/jstransformer-ini,jstransformers/jstransformer-nunjucks,jstransformers/jstransformer-consolidate,jstransformers/jstransformer-gray-matter,jstransformers/jstransformer-swig,jstransformers/jstransformer-cdata-js,jstransformers/jstransformer-mmd,jstransformers/jstransformer-svgo,jstransformers/jstransformer-ractive,jstransformers/jstransformer-twig,jstransformers/jstransformer-gotpl,jstransformers/jstransformer-ect,jstransformers/jstransformer-prismjs,jstransformers/jstransformer-html-minifier,jstransformers/jstransformer-whiskers,jstransformers/jstransformer-octet,jstransformers/jstransformer-hamlet,jstransformers/jstransformer-bless,jstransformers/jstransformer-handlebars,jstransformers/jstransformer-haml,jstransformers/jstransformer-earlgrey,jstransformers/jstransformer-to-markdown,jstransformers/jstransformer-mustache,jstransformers/jstransformer-highlight,jstransformers/gulp-jstransformer,jstransformers/jstransformer-json,jstransformers/jstransformer-reshape,jstransformers/jstransformer-coffeekup,jstransformers/jstransformer-verbatim,jstransformers/jstransformer-hamljs,jstransformers/jstransformer-transparency,jstransformers/jstransformer-browserify,jstransformers/jstransformer-rollup,jstransformers/jstransformer-uglify-js,jstransformers/inputformat-to-jstransformer,jstransformers/jstransformer-es6-template,jstransformers/jstransformer-jscss-lite,jstransformers/jstransformer-cdata-css,jstransformers/jstransformer-jade,jstransformers/jstransformer-babel,jstransformers/jstransformer-megamark,jstransformers/jstransformer-marko,jstransformers/jstransformer-clean-css,jstransformers/jstransformer-jsx,jstransformers/boilerplate,jstransformers/jstransformer-fest,jstransformers/jstransformer-vash,jstransformers/jstransformer-marko,jstransformers/jstransformer-less,jstransformers/jstransformer-marked,jstransformers/jstransformer-plates,jstransformers/jstransformer-remark,jstransformers/jstransformer-resin,jstransformers/jstransformer-markdown-it,jstransformers/jstransformer-jst,jstransformers/jstransformer-autoprefixer,jstransformers/jstransformer-cli,jstransformers/jstransformer-ejs,jstransformers/jstransformer-function,jstransformers/jstransformer-gray-matter,jstransformers/jstransformer-htmling,jstransformers/jstransformer-traceur,jstransformers/jstransformer-dot,jstransformers/jstransformer-escape-html,jstransformers/jstransformer-slm,jstransformers/jstransformer-esnext,jstransformers/jstransformer-lodash,jstransformers/jstransformer-dust,jstransformers/jstransformer-stylus,jstransformers/jstransformer-markdown-it,jstransformers/jstransformer-jstransformer,jstransformers/jstransformer-ejs,jstransformers/jstransformer-remarkable,jstransformers/consolidate-jstransformer,jstransformers/jstransformer-js-beautify,jstransformers/jstransformer-marked,jstransformers/jstransformer-engine,jstransformers/jstransformer-bliss,jstransformers/jstransformer-nunjucks,jstransformers/jstransformer-xml2js,jstransformers/jstransformer-jqtpl,jstransformers/jstransformer-hamlet,jstransformers/jstransformer-lodash,jstransformers/jstransformer-eco,jstransformers/jstransformer-livescript,jstransformers/jstransformer-jsrender,jstransformers/jstransformer-jstransformer,jstransformers/jstransformer-bliss,jstransformers/jstransformer-rho,jstransformers/jstransformer-mustache,jstransformers/jstransformer-es6-template,jstransformers/jstransformer-haml,jstransformers/jstransformer-slm,jstransformers/jstransformer-toffee,jstransformers/jstransformer-ractive,jstransformers/jstransformer-microtemplate,jstransformers/jstransformer-envy-json,jstransformers/jstransformer-pleeease |
6216cd4149de8fbc618894e2a391a4054295d5df | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
before_script:
- sudo add-apt-repository ppa:eyecreate/haxe -y
- sudo apt-get update
- sudo apt-get install haxe -y
- mkdir ~/haxelib
- haxelib setup ~/haxelib
- haxelib install hxjava
- haxelib git debugger https://github.com/TiVo/debugger.git
- mkdir build
- mkdir report
script: make ANT_TARGET=$ANT_TARGET test
env:
- IDEA_VERSION=14.0.5 ANT_TARGET=test
- IDEA_VERSION=14.1.7 ANT_TARGET=test
- IDEA_VERSION=15.0.6 ANT_TARGET=compile_test
- IDEA_VERSION=2016.1.4 ANT_TARGET=compile_test
- IDEA_VERSION=2016.2.4 ANT_TARGET=test
notifications:
email: false | language: java
jdk:
- oraclejdk8
before_script:
- sudo add-apt-repository ppa:eyecreate/haxe -y
- sudo apt-get update
- sudo apt-get install haxe -y
- mkdir ~/haxelib
- haxelib setup ~/haxelib
- haxelib install hxjava
- haxelib git debugger https://github.com/TiVo/debugger.git
- mkdir build
- mkdir report
script: make ANT_TARGET=$ANT_TARGET test
env:
- IDEA_VERSION=14.0.5 ANT_TARGET=test
- IDEA_VERSION=14.1.7 ANT_TARGET=test
- IDEA_VERSION=15.0.6 ANT_TARGET=compile_test
- IDEA_VERSION=2016.1.4 ANT_TARGET=compile_test
- IDEA_VERSION=2016.2.5 ANT_TARGET=test
notifications:
email: false | Update TravisCI build to use 2016.2.5. | Update TravisCI build to use 2016.2.5.
| YAML | apache-2.0 | EricBishton/intellij-haxe,TiVo/intellij-haxe,HaxeFoundation/intellij-haxe,eliasku/intellij-haxe,eliasku/intellij-haxe,EricBishton/intellij-haxe,TiVo/intellij-haxe,HaxeFoundation/intellij-haxe,EricBishton/intellij-haxe,winmain/intellij-haxe,winmain/intellij-haxe,eliasku/intellij-haxe,TiVo/intellij-haxe,winmain/intellij-haxe,HaxeFoundation/intellij-haxe |
c034e6e7c66536552fe540a4bd44edd6ae819167 | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- oraclejdk10
- oraclejdk9
- oraclejdk8
cache:
directories:
- "$HOME/.m2/repository"
before_cache:
- rm -rf $HOME/.m2/repository/org/threeten
install:
- mvn --version
script:
- mvn install site -e -B
- if [[ $TRAVIS_TAG =~ ^website.*$ ]] && [ "$TRAVIS_JDK_VERSION" == "oraclejdk10" ]; then chmod +x ./.github/website.sh; .github/website.sh; fi
- if [[ $TRAVIS_TAG =~ ^v.*$ ]] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_JDK_VERSION" == "oraclejdk10" ]; then chmod +x ./.github/website.sh; .github/website.sh; fi
# secure keys for GITHUB_TOKEN
env:
global:
- secure: FaC3K5L6pGdJgvPcttpq8kV5i+UUsj5FWvETqm82BZWzLTYlQsCL4fl2XfssATiH7hIVioRffYoZP8rQbkNatVV+Pok6wZePSM9kOf7/AUOn0dvwXH718sbWlohOf3R3886/l5rjyJDDmauMABXzLrXxsTlbiQ85QNA0mCbqXJ4=
| sudo: false
language: java
jdk:
- openjdk11
- oraclejdk9
- oraclejdk8
cache:
directories:
- "$HOME/.m2/repository"
before_cache:
- rm -rf $HOME/.m2/repository/org/threeten
install:
- mvn --version
script:
- mvn install site -e -B
- if [[ $TRAVIS_TAG =~ ^website.*$ ]] && [ "$TRAVIS_JDK_VERSION" == "openjdk11" ]; then chmod +x ./.github/website.sh; .github/website.sh; fi
- if [[ $TRAVIS_TAG =~ ^v.*$ ]] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_JDK_VERSION" == "openjdk11" ]; then chmod +x ./.github/website.sh; .github/website.sh; fi
# secure keys for GITHUB_TOKEN
env:
global:
- secure: FaC3K5L6pGdJgvPcttpq8kV5i+UUsj5FWvETqm82BZWzLTYlQsCL4fl2XfssATiH7hIVioRffYoZP8rQbkNatVV+Pok6wZePSM9kOf7/AUOn0dvwXH718sbWlohOf3R3886/l5rjyJDDmauMABXzLrXxsTlbiQ85QNA0mCbqXJ4=
| Fix CI now Java 11 is out | Fix CI now Java 11 is out
| YAML | bsd-3-clause | catull/threeten-extra,ThreeTen/threeten-extra |
bfd810b39287edb8156aa53c6b9d801a2841e296 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
after_success:
- npm run coverage
- npm i coveralls
- cat ./coverage/lcov.info | coveralls
notifications:
email:
on_success: never
| language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
after_success:
- npm run coverage
- npm i coveralls
- cat ./coverage/lcov.info | coveralls
notifications:
email:
on_success: never
| Add Node.js v6 to Travis CI matrix | Add Node.js v6 to Travis CI matrix
| YAML | mit | jadejs/jade-linker,pugjs/jade-linker,pugjs/jade-linker,jadejs/jade-linker |
13406d2fbbc599b0bdcbc74ed25d4bf0b234d8d2 | .travis.yml | .travis.yml | sudo: required
language: java
jdk:
- oraclejdk8
- oraclejdk9
matrix:
exclude:
- jdk: oraclejdk9
env: RUNTIME=ol RUNTIME_VERSION=18.0.0.3
- jdk: oraclejdk9
env: RUNTIME=wlp RUNTIME_VERSION=18.0.0.3
env:
- RUNTIME=wlp RUNTIME_VERSION=18.0.0.2
- RUNTIME=wlp RUNTIME_VERSION=18.0.0.3
- RUNTIME=ol RUNTIME_VERSION=18.0.0.2
- RUNTIME=ol RUNTIME_VERSION=18.0.0.3
before_install:
- echo 'Installing ci.common lib ....'
- git clone https://github.com/wasdev/ci.common.git ./ci.common
- cd ./ci.common
- mvn clean install
- cd ..
script:
- export GRADLE_OPTS="-Dorg.gradle.daemon=true -Dorg.gradle.jvmargs='-XX:MaxPermSize=1024m -XX:+CMSClassUnloadingEnabled -XX:+HeapDumpOnOutOfMemoryError -Xmx2048m'"
- travis_wait ./gradlew install integrationTest -Druntime=$RUNTIME -DruntimeVersion=$RUNTIME_VERSION --stacktrace --info --no-daemon
dist: trusty
| sudo: required
language: java
os:
- windows
- linux
- osx
jdk:
- oraclejdk8
- oraclejdk9
matrix:
exclude:
- jdk: oraclejdk9
env: RUNTIME=ol RUNTIME_VERSION=18.0.0.3
- jdk: oraclejdk9
env: RUNTIME=wlp RUNTIME_VERSION=18.0.0.3
env:
- RUNTIME=wlp RUNTIME_VERSION=18.0.0.2
- RUNTIME=wlp RUNTIME_VERSION=18.0.0.3
- RUNTIME=ol RUNTIME_VERSION=18.0.0.2
- RUNTIME=ol RUNTIME_VERSION=18.0.0.3
before_install:
- echo 'Installing ci.common lib ....'
- git clone https://github.com/wasdev/ci.common.git ./ci.common
- cd ./ci.common
- mvn clean install
- cd ..
script:
- export GRADLE_OPTS="-Dorg.gradle.daemon=true -Dorg.gradle.jvmargs='-XX:MaxPermSize=1024m -XX:+CMSClassUnloadingEnabled -XX:+HeapDumpOnOutOfMemoryError -Xmx2048m'"
- travis_wait ./gradlew install integrationTest -Druntime=$RUNTIME -DruntimeVersion=$RUNTIME_VERSION --stacktrace --info --no-daemon
dist: trusty
| Test on Windows and Mac | Test on Windows and Mac
| YAML | apache-2.0 | WASdev/ci.gradle,jjvilleg/ci.gradle,WASdev/ci.gradle,jjvilleg/ci.gradle |
f994f08e46b04c5c7c25b780e6d1306dab3d4e93 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
# install required system libraries
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
# use miniconda to install numpy/scipy, to avoid lengthy build from source
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda-3.4.2-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Miniconda3-3.4.2-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda install --yes python=$TRAVIS_PYTHON_VERSION conda-build pip coverage
- conda config --add channels http://conda.binstar.org/cwrowley
- conda info -a
# Install packages
install:
- conda build conda-recipe
- conda install control --use-local
- conda install slycot
- pip install coveralls
# command to run tests
script:
- coverage run setup.py test
after_success:
- coveralls
| sudo: false
language: python
cache:
apt: true
pip: true
directories:
- $HOME/.cache/pip
- $HOME/.local
python:
- "2.7"
- "3.3"
- "3.4"
# install required system libraries
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
# use miniconda to install numpy/scipy, to avoid lengthy build from source
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda-3.4.2-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Miniconda3-3.4.2-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda install --yes python=$TRAVIS_PYTHON_VERSION conda-build pip coverage
- conda config --add channels http://conda.binstar.org/cwrowley
- conda info -a
# Install packages
install:
- conda install slycot
- conda build conda-recipe
- conda install control --use-local
- pip install coveralls
# command to run tests
script:
- coverage run setup.py test
after_success:
- coveralls
| Install slycot before control in Travis build | Install slycot before control in Travis build
Travis build was failing because of a version mismatch between
numpy version used to build control and that used to build slycot
| YAML | bsd-3-clause | roryyorke/python-control,murrayrm/python-control,python-control/python-control |
88a48b280fd8ca085e79dee336c40c704980ad40 | .travis.yml | .travis.yml | # 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.
language: java
sudo: false
jdk:
- openjdk7
- oraclejdk8
- openjdk11
after_success:
- mvn clean cobertura:cobertura coveralls:report
| # 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.
language: java
dist: trusty
sudo: false
jdk:
- openjdk7
- oraclejdk8
- openjdk11
after_success:
- mvn clean cobertura:cobertura coveralls:report
| Use `dist: trusty` for Travis CI | Use `dist: trusty` for Travis CI
| YAML | apache-2.0 | apache/httpcomponents-client |
2c99297625a992678845b64ce9d46a85e5f06404 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- mysql -e 'create database myapp_test;' | language: php
php:
- 5.3
- 5.4
- 5.5
- hhvm
before_script:
- mysql -e 'create database myapp_test;'
| Add HHVM to TravisCI tests | Add HHVM to TravisCI tests | YAML | mit | crgwbr/php-alchemy |
ed6b0878a53f20bf83466884095c13cbc01c1046 | .travis.yml | .travis.yml | script: "bundle exec rspec spec && bundle exec cucumber"
rvm:
- jruby-18mode
- jruby-19mode
- jruby-head
| script: "bundle exec rspec spec && bundle exec cucumber"
rvm:
- jruby-18mode
- jruby-19mode
| Revert "Run CI against jruby-head" | Revert "Run CI against jruby-head"
This reverts commit 359a8edc51c9f31395d53ee3b23b66b105e6d6e9.
See JRUBY-6401. Fixed in master but it will only become available
on travis-ci.org after the next Ruby VMs upgrade (in the next few days).
| YAML | mit | kidaa/travis-build,gavioto/travis-build,akoeplinger/travis-build,saucelabs/travis-build,andyli/travis-build,final-ci/travis-build,dirk/travis-build,lrowe/travis-build,will/travis-build,craigcitro/travis-build,final-ci/travis-build,will/travis-build,aceofspades/travis-build,wereHamster/travis-build,vinaykaradia/travisBuild-clone,jhass/travis-build,JuliaCI/travis-build,Distelli/travis-build,paultcochrane/travis-build,vlamanna/travis-build,luoqii/travis-build,tmccombs/travis-build,final-ci/travis-build,Tiger66639/travis-build,vlamanna/travis-build,lrowe/travis-build,will/travis-build,whip112/travis-build,vinaykaradia/travisBuild-clone,whip112/travis-build,JuliaCI/travis-build,Distelli/travis-build,wereHamster/travis-build,Joshua-Anderson/travis-build,aceofspades/travis-build,akoeplinger/travis-build,saucelabs/travis-build,paultcochrane/travis-build,gavioto/travis-build,Tiger66639/travis-build,tianon/travis-build,tmccombs/travis-build,aceofspades/travis-build,wereHamster/travis-build,paultcochrane/travis-build,tianon/travis-build,kevmoo/travis-build,Acidburn0zzz/travis-build,luoqii/travis-build,jhass/travis-build,craigcitro/travis-build,kidaa/travis-build,a14n/travis-build,Acidburn0zzz/travis-build,Joshua-Anderson/travis-build,kevmoo/travis-build,vlamanna/travis-build,a14n/travis-build,andyli/travis-build,dirk/travis-build,Joshua-Anderson/travis-build,vinaykaradia/travisBuild-clone |
766789dafa4aec0c7ce3599f4026ae6dc7fc81b0 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
cache:
directories:
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini || true
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: vendor/bin/phpspec run --format=pretty
notifications:
slack:
secure: MT5eWBoLLafyRTdFVyig9A/kw68UuKxSiFwFfsd7RaJwJlnR31rfw3oTS6/74Fkr7UQNOclUGSxbX10iIkR9I0ktMayMSDrnDZXNLs3Zn5ciGRjo9zIQ+gw0eqmU1hHyVXvG7pSwoLjqihlkO9J6K/1bUhTaHT+OXvKXZOqJ3Os=
| language: php
php:
- 5.6
- 7.0
- hhvm
cache:
directories:
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini || true
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: vendor/bin/phpspec run --format=pretty
notifications:
slack:
secure: MT5eWBoLLafyRTdFVyig9A/kw68UuKxSiFwFfsd7RaJwJlnR31rfw3oTS6/74Fkr7UQNOclUGSxbX10iIkR9I0ktMayMSDrnDZXNLs3Zn5ciGRjo9zIQ+gw0eqmU1hHyVXvG7pSwoLjqihlkO9J6K/1bUhTaHT+OXvKXZOqJ3Os=
| Remove test runners for PHP 5.4 + 5.5 | Remove test runners for PHP 5.4 + 5.5
phpspec 3 is only compatible with PHP >= 5.6
| YAML | mit | felixkiss/uniquewith-validator |
3b4bf9f206190bba4ea87678730bc5525c150f4c | .travis.yml | .travis.yml | language: go
go:
- 1.1
- tip
install: make deps
script: make test
notifications:
flowdock:
secure: fZrcf9rlh2IrQrlch1sHkn3YI7SKvjGnAl/zyV5D6NROe1Bbr6d3QRMuCXWWdhJHzjKmXk5rIzbqJhUc0PNF7YjxGNKSzqWMQ56KcvN1k8DzlqxpqkcA3Jbs6fXCWo2fssRtZ7hj/wOP1f5n6cc7kzHDt9dgaYJ6nO2fqNPJiTc=
irc:
channels:
- "chat.freenode.net#packer-tool"
on_success: change
on_failure: always
| language: go
go:
- 1.1
- tip
install: make deps
script: make test
notifications:
flowdock:
secure: fZrcf9rlh2IrQrlch1sHkn3YI7SKvjGnAl/zyV5D6NROe1Bbr6d3QRMuCXWWdhJHzjKmXk5rIzbqJhUc0PNF7YjxGNKSzqWMQ56KcvN1k8DzlqxpqkcA3Jbs6fXCWo2fssRtZ7hj/wOP1f5n6cc7kzHDt9dgaYJ6nO2fqNPJiTc=
irc:
channels:
- "chat.freenode.net#packer-tool"
on_success: change
on_failure: always
matrix:
allow_failures:
- go: tip
| Allow failures on tip for Travis | Allow failures on tip for Travis
| YAML | mpl-2.0 | patricklucas/packer,patricklucas/packer,suma/packer,Kaixiang/packer,TranscendComputing/packer,patricklucas/packer,suma/packer,Kaixiang/packer,TranscendComputing/packer,TranscendComputing/packer,patricklucas/packer,Kaixiang/packer,suma/packer,Kaixiang/packer,TranscendComputing/packer,suma/packer |
da701fb7f267115c63bd221ae3a1b35614b4457c | .travis.yml | .travis.yml | env:
global:
- AWS_ACCESS_KEY_ID=foo
- AWS_SECRET_ACCESS_KEY=bar
- CC_TEST_REPORTER_ID=738ee95086106a9011b10dd006ac5e0d74541774c8bb6d9e5ceb705c01115afa
- JRUBY_OPTS="$JRUBY_OPTS --debug"
language: ruby
before_install:
- gem update --system
- gem install bundler
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
after_script:
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT; fi
rvm:
- 2.3
- 2.4
- 2.5
- jruby-9000
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
exclude:
- rvm: jruby-9000
gemfile: gemfiles/ox.gemfile
bundler_args: --without development
gemfile:
- gemfiles/libxml.gemfile
- gemfiles/ox.gemfile
- gemfiles/nokogiri.gemfile
- gemfiles/rexml.gemfile
sudo: false
| env:
global:
- AWS_ACCESS_KEY_ID=foo
- AWS_SECRET_ACCESS_KEY=bar
- CC_TEST_REPORTER_ID=738ee95086106a9011b10dd006ac5e0d74541774c8bb6d9e5ceb705c01115afa
- JRUBY_OPTS="$JRUBY_OPTS --debug"
language: ruby
before_install:
- gem update --system
- gem install bundler
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
after_script:
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT; fi
rvm:
- 2.3
- 2.4
- 2.5
- jruby-9000
- ruby-head
matrix:
allow_failures:
- rvm: jruby-9000
- rvm: ruby-head
exclude:
- rvm: jruby-9000
gemfile: gemfiles/ox.gemfile
bundler_args: --without development
gemfile:
- gemfiles/libxml.gemfile
- gemfiles/ox.gemfile
- gemfiles/nokogiri.gemfile
- gemfiles/rexml.gemfile
sudo: false
| Allow JRuby builds to fail | Allow JRuby builds to fail
See travis-ci/travis-ci#9826
| YAML | mit | hakanensari/peddler |
182e6dd6f5c1c06b1fb06aec977862d4116624ed | _config.yml | _config.yml | url: https://ascendpotential.ca
repository: heatheranderson/heatheranderson.github.io
# Site settings
title: Ascend Potential
email: heather@ascendpotential.ca
description: "Executive coaching and life coaching services by Heather Anderson, Certified Integral Master Coach(tm). Reach your goals not your limits."
# Heather collections
collections:
offerings:
output: false
testimonials:
output: false
about:
output: false
coaching:
output: false
# Social networks usernames (many more available: google-plus, flickr, dribbble, pinterest, instagram, tumblr, linkedin, etc.)
social:
- title: twitter
url: http://twitter.com/ascendpotential
- title: facebook
url:
- title: instagram
url: https://www.instagram.com/ascendpotential/
- title: linkedin
url: https://www.linkedin.com/in/heathernoelleanderson/
# Postal address (add as many lines as necessary)
address:
- line: 3481 Melrose Place
- line: Beverly Hills, CA 90210
# Build settings
markdown: kramdown
permalink: pretty
| url: https://ascendpotential.ca
repository: heatheranderson/heatheranderson.github.io
# Site settings
title: Ascend Potential
email: heather@ascendpotential.ca
description: "Executive coaching and life coaching services by Heather Anderson, Certified Integral Master Coach(tm). Reach your goals not your limits."
# Heather collections
collections:
offerings:
output: false
testimonials:
output: false
about:
output: false
coaching:
output: false
# Social networks usernames (many more available: google-plus, flickr, dribbble, pinterest, instagram, tumblr, linkedin, etc.)
social:
- title: twitter
url: http://twitter.com/ascendpotential
- title: facebook
url: https://www.facebook.com/ascendpotential/
- title: instagram
url: https://www.instagram.com/ascendpotential/
- title: linkedin
url: https://www.linkedin.com/in/heathernoelleanderson/
# Postal address (add as many lines as necessary)
address:
- line: 3481 Melrose Place
- line: Beverly Hills, CA 90210
# Build settings
markdown: kramdown
permalink: pretty
| Fix link to facebook page | Fix link to facebook page
| YAML | apache-2.0 | heatheranderson/heatheranderson.github.io,heatheranderson/heatheranderson.github.io,heatheranderson/heatheranderson.github.io,heatheranderson/heatheranderson.github.io |
231bdfd3c11dd173543fdc63444bf9bc0800c2bc | helm/app/templates/certificate.yml | helm/app/templates/certificate.yml | {{- if .Values.ingress.tls -}}
{{- $values := .Values }}
{{- range .Values.ingress.tls -}}
apiVersion: cert-manager.io/v1alpha2
kind: Certificate
metadata:
name: {{ include "app.fullname" $ }}
{{- if hasKey $values "namespace" }}
namespace: {{ $values.namespace }}
{{- end }}
labels:
helm.sh/chart: {{ include "app.chart" $ }}
app.kubernetes.io/name: {{ include "app.name" $ }}
app.kubernetes.io/instance: {{ $.Release.Name }}
app.kubernetes.io/managed-by: {{ $.Release.Service }}
spec:
secretName: {{ .secretName }}
{{- with .hosts }}
dnsNames:
{{- toYaml . | nindent 4 }}
{{- end }}
issuerRef:
name: {{ $values.ingress.issuerName }}
kind: {{ $values.ingress.issuerKind }}
# DCOS-60297 Update certificate to comply with Apple security requirements
# https://support.apple.com/en-us/HT210176
usages:
- digital signature
- key encipherment
- server auth
- code signing
---
{{- end }}
{{- end }}
| {{- if .Values.ingress.tls -}}
{{- $values := .Values }}
{{- range .Values.ingress.tls -}}
apiVersion: cert-manager.io/v1alpha2
kind: Certificate
metadata:
name: {{ include "app.fullname" $ }}
{{- if hasKey $values "namespace" }}
namespace: {{ $values.namespace }}
{{- end }}
labels:
helm.sh/chart: {{ include "app.chart" $ }}
app.kubernetes.io/name: {{ include "app.name" $ }}
app.kubernetes.io/instance: {{ $.Release.Name }}
app.kubernetes.io/managed-by: {{ $.Release.Service }}
spec:
secretName: {{ .secretName }}
{{- with .hosts }}
dnsNames:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- if $values.issuer.selfSigned }}
# @TODO: how to do if not ?
{{- else }}
acme:
config:
- http01:
ingressClass: {{ $values.ingress.class }}
{{- with .hosts }}
domains:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end }}
issuerRef:
name: {{ $values.ingress.issuerName }}
kind: {{ $values.ingress.issuerKind }}
# DCOS-60297 Update certificate to comply with Apple security requirements
# https://support.apple.com/en-us/HT210176
usages:
- digital signature
- key encipherment
- server auth
- code signing
---
{{- end }}
{{- end }}
| Add acme settings when not using self-signed cert | Add acme settings when not using self-signed cert
| YAML | mit | vardius/go-api-boilerplate,vardius/go-api-boilerplate,vardius/go-api-boilerplate |
998ef09f0399d2a1f1003e70e390394f74841751 | .drone.yml | .drone.yml | image: 'arob/drone-nonstop-browser'
script:
- 'ns --verbose'
cache:
mount:
- node_modules
- .git
deploy:
bash:
command: 'ns upload --latest --index 10.0.0.4 --port 4444 --token lkdevtoken'
notify:
slack:
webhook_url: 'https://hooks.slack.com/services/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'
username: 'azurebuild'
channel: '#hackbot'
on_started: true
on_success: true
on_failure: true
| image: 'arob/drone-nonstop-browser'
script:
- 'ns --verbose'
cache:
mount:
- node_modules
- .git
deploy:
bash:
command: 'ns upload --latest --index 10.0.0.4 --url /index/api --port 4444 --token lkdevtoken'
notify:
slack:
webhook_url: 'https://hooks.slack.com/services/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'
username: 'azurebuild'
channel: '#hackbot'
on_started: true
on_success: true
on_failure: true
| Use new url command to add index prefix to upload command | Use new url command to add index prefix to upload command
| YAML | mit | LeanKit-Labs/nonstop-index-ui,LeanKit-Labs/nonstop-index-ui |
7b4af008be6287fdff545df5f0889d407d92249a | .drone.yml | .drone.yml | build:
image: teaci/msys32
pull: true
shell: msys32
commands:
- export RUNTEST=$$runtest
- ./ci-build.sh
notify:
irc:
prefix: build
nick: MSYS2-packages
channel: msys2-ci
server:
host: irc.oftc.net
port: 6667
matrix:
runtest:
- false
# Temprorary disable matrix build to workaround irc plugin bug on wine-ci.org, see https://github.com/drone/drone/issues/1459
# - true # allow failures
| build:
image: teaci/msys$$arch
pull: true
shell: msys$$arch
commands:
- export RUNTEST=$$runtest
- ./ci-build.sh
notify:
irc:
prefix: build
nick: MSYS2-packages
channel: msys2-ci
server:
host: irc.oftc.net
port: 6667
matrix:
runtest:
- false
arch:
- 64
- 32
# Temprorary disable matrix build to workaround irc plugin bug on wine-ci.org, see https://github.com/drone/drone/issues/1459
# - true # allow failures
| Test both 64 bit and 32 bit. | Test both 64 bit and 32 bit.
| YAML | bsd-3-clause | fracting/MSYS2-packages,fracting/MSYS2-packages,fracting/MSYS2-packages,fracting/MSYS2-packages,fracting/MSYS2-packages |
cee7e2ae84ee7ec6adf6c73cb6003b2d712300c3 | .zuul.yaml | .zuul.yaml | - project:
templates:
- horizon-non-primary-django-jobs
- check-requirements
- openstack-python3-zed-jobs
| - project:
templates:
- horizon-non-primary-django-jobs
- check-requirements
- openstack-python3-jobs
| Switch to 2023.1 Python3 unit tests and generic template name | Switch to 2023.1 Python3 unit tests and generic template name
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for antelope. Also,
updating the template name to generic one.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: Ie4b3100688d0716fd7a9f7c4dc0d555f3bd4df10
| YAML | apache-2.0 | openstack/mistral-dashboard,openstack/mistral-dashboard,openstack/mistral-dashboard |
38ae23faa81ef578d54b39c738dcc31d5c7b2735 | buildsys-tags/cloud7-openstack-ussuri-candidate.yml | buildsys-tags/cloud7-openstack-ussuri-candidate.yml | packages:
- project: ndisc6
buildsys-tags:
cloud7-openstack-ussuri-candidate: ndisc6-1.0.3-9.el7
- project: openvswitch
buildsys-tags:
cloud7-openstack-ussuri-candidate: openvswitch-2.12.0-1.el7
- project: ovn
buildsys-tags:
cloud7-openstack-ussuri-candidate: ovn-2.12.0-9.el7
- project: python-amqp
buildsys-tags:
cloud7-openstack-ussuri-candidate: python-amqp-2.5.2-2.el7
- project: python-ansible-runner
buildsys-tags:
cloud7-openstack-ussuri-candidate: python-ansible-runner-1.4.4-1.el7
| packages:
- project: ndisc6
buildsys-tags:
cloud7-openstack-ussuri-candidate: ndisc6-1.0.3-9.el7
- project: openvswitch
buildsys-tags:
cloud7-openstack-ussuri-candidate: openvswitch-2.12.0-1.el7
- project: ovn
buildsys-tags:
cloud7-openstack-ussuri-candidate: ovn-2.12.0-9.el7
- project: python-amqp
buildsys-tags:
cloud7-openstack-ussuri-candidate: python-amqp-2.5.2-2.el7
- project: python-ansible-runner
buildsys-tags:
cloud7-openstack-ussuri-candidate: python-ansible-runner-1.4.4-1.el7
- project: python-kombu
buildsys-tags:
cloud7-openstack-ussuri-candidate: python-kombu-4.6.6-2.el7
| Rebuild python-kombu 4.6.6 from Fedora | Rebuild python-kombu 4.6.6 from Fedora
https://review.opendev.org/#/c/694083/ updated
both kombu and amqp, amqp already updated in RDO,
let's update kombu too.
Change-Id: I169a1f9f50a9b19e19ff7ddb720329084abdfbbd
| YAML | apache-2.0 | redhat-openstack/rdoinfo |
a456c2805b7623a9c241294fc09d2a65479b6ea5 | operations/use-offline-windows2016fs.yml | operations/use-offline-windows2016fs.yml | - type: replace
path: /releases/name=windows2016fs?
value:
name: windows2016fs
version: 1.8.0
| - type: replace
path: /releases/name=windows2016fs
value:
name: windows2016fs
version: 1.8.0
| Make `bosh int` fail without required `windows2016-cell.yml` | Make `bosh int` fail without required `windows2016-cell.yml` | YAML | apache-2.0 | cloudfoundry/cf-deployment,cloudfoundry/cf-deployment |
5a42dca666fa46366bfdc58e84962e29ffdab120 | .github/workflows/deploy-ci-stack.yml | .github/workflows/deploy-ci-stack.yml | name: Deploy CI CloudFormation stack
on:
push:
branches:
- main
paths:
- ci/**
concurrency:
group: ${{ github.workflow }}
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: aws-actions/setup-sam@v1
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-region: us-east-1
role-to-assume: arn:aws:iam::561178107736:role/DevOps-GitHubOidcFederatedRole
role-session-name: GitHubActions-DeployCiStack
- name: Deploy CloudFormation stack
working-directory: ci
run: |
bucket_name=$(aws cloudformation describe-stacks --region us-east-1 --stack-name aws-sam-cli-managed-default | jq -r ".Stacks[0].Outputs[0].OutputValue")
stack_name="infrastructure-ci"
sam deploy --region us-east-1 --no-confirm-changeset --no-fail-on-empty-changeset --stack-name "$stack_name" --s3-bucket "$bucket_name" --s3-prefix "$stack_name" --capabilities CAPABILITY_IAM
| name: Deploy CI CloudFormation stack
on:
push:
branches:
- main
paths:
- ci/**
concurrency:
group: ${{ github.workflow }}
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
strategy:
matrix:
include:
- region: us-east-1
stack: infrastructure-ci
- region: us-west-2
stack: infrastructure-ci
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: aws-actions/setup-sam@v1
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-region: us-east-1
role-to-assume: arn:aws:iam::561178107736:role/DevOps-GitHubOidcFederatedRole
role-session-name: GitHubActions-DeployCiStack
- name: Deploy CloudFormation stack
working-directory: ci
run: |
bucket_name=$(aws cloudformation describe-stacks --region ${{ matrix.region }} --stack-name aws-sam-cli-managed-default | jq -r ".Stacks[0].Outputs[0].OutputValue")
sam deploy --region ${{ matrix.region }} --no-confirm-changeset --no-fail-on-empty-changeset --stack-name "${{ matrix.stack }}" --s3-bucket "$bucket_name" --s3-prefix "${{ matrix.stack }}" --capabilities CAPABILITY_IAM
| Update CI deploy workflow for multi-region | Update CI deploy workflow for multi-region
| YAML | mit | PRX/Infrastructure,PRX/Infrastructure,PRX/Infrastructure,PRX/Infrastructure,PRX/Infrastructure |
9b69b6191c70652e03c5d4176aabbd72c46fe403 | playbook.yml | playbook.yml | ---
- name: Prepare the enviorment of remote host for ansible
hoats: all
gather_factes: False
pre_tasks:
- name: Install python for Ansible
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-simplejson)
changed_when: False
- name: Set up the development system by vagrant ansible provision
hosts: all
roles:
- base
- development
| ---
- name: Prepare the enviorment of remote host for ansible
hosts: all
gather_facts: False
pre_tasks:
- name: Install python for Ansible
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-simplejson)
changed_when: False
- name: Set up the development system by vagrant ansible provision
hosts: all
roles:
- base
- development
| Check and install python on the remote host | [FEATURE] Check and install python on the remote host
| YAML | mit | 3vjuyuan-ltd/vagrant-esxi-ansible |
ed005535efece2880b7d893a0348489df06d700e | packages/fu/fuzzy-time.yaml | packages/fu/fuzzy-time.yaml | homepage: https://github.com/NorfairKing/fuzzy-time
changelog-type: markdown
hash: d25c93db2ea9ec79a102bc378213b0e199f92d6f3234e48ca1fd4f2d831d2de1
test-bench-deps: {}
maintainer: syd@cs-syd.eu
synopsis: ''
changelog: |
# Changelog
## [0.2.0.0] - 2021-11-21
### Changed
- Got rid of CPP: Now requires `time >=1.9`
basic-deps:
base: '>=4.9 && <=5'
time: '>=1.9'
text: -any
megaparsec: -any
containers: -any
validity-time: -any
validity: -any
deepseq: -any
all-versions:
- 0.0.0.0
- 0.1.0.0
- 0.2.0.0
author: Tom Sydney Kerckhove
latest: 0.2.0.0
description-type: haddock
description: Fuzzy time types, parsing and resolution
license-name: MIT
| homepage: https://github.com/NorfairKing/fuzzy-time
changelog-type: markdown
hash: bd2eba0448be8c36441dbe34daa05b5825bc7afdc6252ffc3e9f731ee79e4d8e
test-bench-deps: {}
maintainer: syd@cs-syd.eu
synopsis: ''
changelog: |
# Changelog
## [0.2.0.0] - 2021-11-21
### Changed
- Got rid of CPP: Now requires `time >=1.9`
basic-deps:
base: '>=4.9 && <=5'
time: '>=1.9'
text: -any
megaparsec: -any
containers: -any
validity-time: '>=0.5'
validity: -any
deepseq: -any
all-versions:
- 0.0.0.0
- 0.1.0.0
- 0.2.0.0
- 0.2.0.1
author: Tom Sydney Kerckhove
latest: 0.2.0.1
description-type: haddock
description: Fuzzy time types, parsing and resolution
license-name: MIT
| Update from Hackage at 2022-07-01T11:32:08Z | Update from Hackage at 2022-07-01T11:32:08Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
e676d76005610e985f1e447461ab02ce760ed3d4 | packages/ha/haskellish.yaml | packages/ha/haskellish.yaml | homepage: http://github.com/dktr0/Haskellish
changelog-type: ''
hash: 7a200f3e631b42ee8686733663dad4882b6ae5078f0434fe8a88a6f071d6e239
test-bench-deps: {}
maintainer: David Ogborn <ogbornd@mcmaster.ca>
synopsis: For parsing Haskell-ish languages
changelog: ''
basic-deps:
base: '>=4.8 && <5'
containers: <0.7
haskell-src-exts: '>=1.17.1 && <1.23'
mtl: '>=2.2.2 && <2.3'
template-haskell: '>=2.10.0.0 && <2.15'
all-versions:
- 0.1.0
- 0.1.1
- 0.1.2
- 0.2.0
- 0.2.2
author: David Ogborn
latest: 0.2.2
description-type: haddock
description: A library for parsing miniature and esoteric languages that are similar
to Haskell
license-name: BSD-3-Clause
| homepage: http://github.com/dktr0/Haskellish
changelog-type: ''
hash: 5cea702a971fd31ba6e093ccf5fafc317692fa6c6e3d2348b2d9e5708407f26c
test-bench-deps: {}
maintainer: David Ogborn <ogbornd@mcmaster.ca>
synopsis: For parsing Haskell-ish languages
changelog: ''
basic-deps:
base: '>=4.8 && <5'
containers: <0.7
haskell-src-exts: '>=1.17.1 && <1.23'
mtl: '>=2.2.2 && <2.3'
template-haskell: '>=2.10.0.0 && <2.15'
all-versions:
- 0.1.0
- 0.1.1
- 0.1.2
- 0.2.0
- 0.2.2
- 0.2.3
author: David Ogborn
latest: 0.2.3
description-type: haddock
description: A library for parsing miniature and esoteric languages that are similar
to Haskell
license-name: BSD-3-Clause
| Update from Hackage at 2020-05-27T01:19:24Z | Update from Hackage at 2020-05-27T01:19:24Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
cca10b2f0a37f5528c9c6b65d1ec4e32bade7bc4 | pubspec.yaml | pubspec.yaml | name: uix
version: 0.5.1
author: Boris Kaul <localvoid@gmail.com>
description: Library to build Web User Interfaces inspired by React.
homepage: https://github.com/localvoid/uix
environment:
sdk: '>=1.9.1'
dependencies:
collection: '^1.1.0'
dev_dependencies:
browser: any
unittest: any
| name: uix
version: 0.5.1
author: Boris Kaul <localvoid@gmail.com>
description: Library to build Web User Interfaces inspired by React.
homepage: https://github.com/localvoid/uix
environment:
sdk: '>=1.9.1'
dependencies:
collection: '^1.1.0'
dev_dependencies:
browser: any
unittest: '<0.12.0'
| Fix unittest constraint to not get incompatible version | Fix unittest constraint to not get incompatible version
| YAML | bsd-2-clause | localvoid/uix,localvoid/uix |
da1d583ef6f80a35beb05dd10568ac663eee0744 | .circleci/config.yml | .circleci/config.yml | version: 2.1
jobs:
ubuntu1804-python2:
docker:
- image: stbtester/circleci:ubuntu1804-python2
environment:
python_version: 2.7
LANG: en_GB.UTF-8
SHELL: /bin/bash
TERM: xterm
enable_virtual_stb: no
parallel: xargs
steps:
- checkout
- pylint
- pytest
- integrationtests
ubuntu1804-python3:
docker:
- image: stbtester/circleci:ubuntu1804-python3
environment:
python_version: 3
LANG: en_GB.UTF-8
SHELL: /bin/bash
TERM: xterm
enable_virtual_stb: no
parallel: xargs
steps:
- checkout
- pylint
- pytest
commands:
pylint:
steps:
- run:
name: make check-pylint
command: |
tesseract --version
pylint --version
make check-pylint
pytest:
steps:
- run: make check-pytest
integrationtests:
steps:
- run: make check-integrationtests
workflows:
test_all:
jobs:
- ubuntu1804-python2
- ubuntu1804-python3
| version: 2.1
jobs:
ubuntu1804-python2:
docker:
- image: stbtester/circleci:ubuntu1804-python2
environment:
python_version: 2.7
LANG: en_GB.UTF-8
SHELL: /bin/bash
TERM: xterm
enable_virtual_stb: no
parallel: xargs
steps:
- checkout
- pylint
- pytest
- integrationtests
ubuntu1804-python3:
docker:
- image: stbtester/circleci:ubuntu1804-python3
environment:
python_version: 3
LANG: en_GB.UTF-8
SHELL: /bin/bash
TERM: xterm
enable_virtual_stb: no
parallel: xargs
steps:
- checkout
- pylint
- pytest
- integrationtests
commands:
pylint:
steps:
- run:
name: make check-pylint
command: |
tesseract --version
pylint --version
make check-pylint
pytest:
steps:
- run: make check-pytest
integrationtests:
steps:
- run: make check-integrationtests
workflows:
test_all:
jobs:
- ubuntu1804-python2
- ubuntu1804-python3
| Enable the integrationtests on Python 3 | CI: Enable the integrationtests on Python 3
Many of them are failing but I'll fix them over the next few commits.
| YAML | lgpl-2.1 | stb-tester/stb-tester,stb-tester/stb-tester,stb-tester/stb-tester,stb-tester/stb-tester |
f2409612a9b368fb35db2f02b43d9e7159a10146 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
docker:
- image: circleci/node:6.11.1
working_directory: ~/vox-parser
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v1-dependencies-
- run: yarn install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: yarn test | version: 2
jobs:
test-lts:
docker:
- image: circleci/node:6.11.1
steps:
- checkout
- restore_cache:
keys:
- node-lts-dependencies-{{ checksum "package.json" }}
- node-lts-dependencies-
- run: yarn install
- save_cache:
paths:
- node_modules
key: node-lts-dependencies-{{ checksum "package.json" }}
- run: yarn test
test-latest:
docker:
- image: circleci/node:8.1.4
steps:
- checkout
- restore_cache:
keys:
- node-latest-dependencies-{{ checksum "package.json" }}
- node-latest-dependencies-
- run: yarn install
- save_cache:
paths:
- node_modules
key: node-latest-dependencies-{{ checksum "package.json" }}
- run: yarn test
workflows:
version: 2
node-lts:
jobs:
- test-lts
node-latest:
jobs:
- test-latest | Add multiple environments to build | Add multiple environments to build
| YAML | mit | straku/vox-parser |
3e259af70e37b86e14c53056e4cf9ad6f7ff2429 | .circleci/config.yml | .circleci/config.yml | version: 2.1
commands:
test-nodejs:
steps:
- run:
name: Versions
command: npm version
- checkout
- restore_cache:
keys:
- v{{ .Environment.CIRCLE_CACHE_VERSION }}-{{ arch }}-npm-cache-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}
- v{{ .Environment.CIRCLE_CACHE_VERSION }}-{{ arch }}-npm-cache-master-{{ .Environment.CIRCLE_JOB }}
- run:
name: Install dependencies
command: npm ci
- run:
name: Test
command: npm test
- save-npm-cache
save-npm-cache:
steps:
- save_cache:
key: v{{ .Environment.CIRCLE_CACHE_VERSION }}-{{ arch }}-npm-cache-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package-lock.json" }}
paths:
- ~/.npm/_cacache
jobs:
node-v8:
docker:
- image: node:8
steps:
- test-nodejs
node-v10:
docker:
- image: node:10
steps:
- test-nodejs
node-v11:
docker:
- image: node:11
steps:
- test-nodejs
workflows:
node-multi-build:
jobs:
- node-v8
- node-v10
- node-v11
| version: 2.1
commands:
test-nodejs:
steps:
- run:
name: Versions
command: npm version
- checkout
- restore_cache:
keys:
- v{{ .Environment.CIRCLE_CACHE_VERSION }}-{{ arch }}-npm-cache-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}
- v{{ .Environment.CIRCLE_CACHE_VERSION }}-{{ arch }}-npm-cache-master-{{ .Environment.CIRCLE_JOB }}
- run:
name: Install dependencies
command: npm ci
- run:
name: Test
command: npm test
- save-npm-cache
save-npm-cache:
steps:
- save_cache:
key: v{{ .Environment.CIRCLE_CACHE_VERSION }}-{{ arch }}-npm-cache-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package-lock.json" }}
paths:
- ~/.npm/_cacache
jobs:
node-v8:
docker:
- image: node:8
steps:
- test-nodejs
node-v10:
docker:
- image: node:10
steps:
- test-nodejs
node-v12:
docker:
- image: node:12
steps:
- test-nodejs
workflows:
node-multi-build:
jobs:
- node-v8
- node-v10
- node-v12
| Change Node v11 to v12 | Change Node v11 to v12
| YAML | mit | ghost-inspector/node-ghost-inspector,ghost-inspector/node-ghost-inspector |
e89e8520761857e46b22fc1e58854a1a8dc637b5 | .circleci/config.yml | .circleci/config.yml | version: 2
jobs:
build:
working_directory: ~/react-webpack-skeleton
docker:
- image: circleci/node:8.1.2
steps:
- checkout
- restore_cache:
key: v1-yarn-{{ .Branch }}-{{ checksum "yarn.lock" }}
- run:
name: Installing dependencies
command: yarn install
- save_cache:
key: v1-yarn-{{ .Branch }}-{{ checksum "yarn.lock" }}
paths:
- node_modules
- run:
name: Scanning dependencies for vulnerabilities
command: yarn run security
- run:
name: Testing
command: mkdir -p /tmp/test-results/junit && yarn test --silent -- --reporter xunit > /tmp/test-results/junit/test-results.xml
- store_test_results:
path: /tmp/test-results
- run:
name: Building assets for production
command: NODE_ENV=production yarn build
- store_artifacts:
path: index.js
| version: 2
jobs:
build:
working_directory: ~/react-webpack-skeleton
docker:
- image: circleci/node:8.1.2
steps:
- checkout
- restore_cache:
keys:
- v1-yarn-lock-{{ checksum "yarn.lock" }}
- v1-npm-package-lock-{{ checksum "package-lock.json" }}
- v1-npm-package-{{ checksum "package.json" }}
- run:
name: Installing dependencies
command: yarn install
- save_cache:
key: v1-yarn-lock-{{ checksum "yarn.lock" }}
paths:
- node_modules
- save_cache:
key: v1-npm-package-lock-{{ checksum "package-lock.json" }}
paths:
- node_modules
- save_cache:
key: v1-npm-package-{{ checksum "package.json" }}
paths:
- node_modules
- run:
name: Scanning dependencies for vulnerabilities
command: yarn run security
- run:
name: Testing
command: mkdir -p /tmp/test-results/junit && yarn test --silent -- --reporter xunit > /tmp/test-results/junit/test-results.xml
- store_test_results:
path: /tmp/test-results
- run:
name: Building assets for production
command: NODE_ENV=production yarn build
- store_artifacts:
path: index.js
| Optimize cache save/restore; use multiple caches | Optimize cache save/restore; use multiple caches
| YAML | mit | fokye/react-webpack-skeleton,fokye/react-webpack-skeleton,fokye/react-webpack-skeleton |
64e3e9eb7430812ada6ab20cb6acf18fa12f6d0a | .circleci/config.yml | .circleci/config.yml | ---
lint_and_unit: &lint_and_unit
- delivery
- danger
- lint-yaml
- lint-markdown
version: 2.1
orbs:
kitchen: sous-chefs/kitchen@2
workflows:
kitchen:
jobs:
- kitchen/yamllint:
name: lint-yaml
- kitchen/mdlint:
name: lint-markdown
- kitchen/danger:
name: danger
context: Danger
- kitchen/delivery:
name: delivery
- kitchen/dokken-single:
name: default-centos-7
suite: default-centos-7
requires: *lint_and_unit
- kitchen/dokken-single:
name: default-ubuntu-1604
suite: default-ubuntu-1604
requires: *lint_and_unit
- kitchen/dokken-single:
name: default-ubuntu-1804
suite: default-ubuntu-1804
requires: *lint_and_unit
- kitchen/dokken-single:
name: uninstall-ubuntu-1804
suite: uninstall-ubuntu-1804
requires: *lint_and_unit
| ---
lint_and_unit: &lint_and_unit
- delivery
- danger
- lint-yaml
- lint-markdown
version: 2.1
orbs:
kitchen: sous-chefs/kitchen@2
workflows:
kitchen:
jobs:
- kitchen/yamllint:
name: lint-yaml
- kitchen/mdlint:
name: lint-markdown
- kitchen/danger:
name: danger
context: Danger
- kitchen/delivery:
name: delivery
- kitchen/dokken-single:
name: default-centos-7
suite: default-centos-7
requires: *lint_and_unit
- kitchen/dokken-single:
name: default-ubuntu-1804
suite: default-ubuntu-1804
requires: *lint_and_unit
- kitchen/dokken-single:
name: uninstall-ubuntu-1804
suite: uninstall-ubuntu-1804
requires: *lint_and_unit
| Remove the ubuntu 16.0 dokken tests from circleci | Remove the ubuntu 16.0 dokken tests from circleci
| YAML | apache-2.0 | jtimberman/vagrant-cookbook |
4307263cad3b0168fb3e4e2cf5c3b71acac6506e | .rtd-environment.yml | .rtd-environment.yml | name: sunpy-rtd
channels:
- astropy
- sunpy
- jevans
dependencies:
- astropy
- beautiful-soup
- bsddb
- cairo
- contextlib2
- cycler
- db
- decorator
- fontconfig
- freetype
- funcsigs
- glymur
- jbig
- jpeg
- libgfortran
- libpng
- libtiff
- libxml2
- libxslt
- lxml
- matplotlib
- mkl
- mock
- networkx
- numpy
- openblas
- openjpeg
- openssl
- pandas
- pbr
- pillow
- pip
- pixman
- py
- pycairo
- pyparsing
- pyqt
- pytest
- python
- python-dateutil
- pytz
- qt
- readline
- requests
- scikit-image
- scipy
- setuptools
- sip
- six
- sqlalchemy
- sqlite
- suds-jurko
- tk
- wcsaxes
- wheel
- xz
- zlib
- pip:
- sphinx-gallery>=0.1.2
| name: sunpy-rtd
dependencies:
- astropy
- beautiful-soup
- bsddb
- cairo
- contextlib2
- cycler
- db
- decorator
- fontconfig
- freetype
- funcsigs
- glymur
- jbig
- jpeg
- libgfortran
- libpng
- libtiff
- libxml2
- libxslt
- lxml
- matplotlib
- mkl
- mock
- networkx
- numpy
- openblas
- openjpeg
- openssl
- pandas
- pbr
- pillow
- pip
- pixman
- py
- pycairo
- pyparsing
- pyqt
- pytest
- python
- python-dateutil
- pytz
- qt
- readline
- requests
- scikit-image
- scipy
- setuptools
- sip
- six
- sqlalchemy
- sqlite
- suds-jurko
- tk
- wcsaxes
- wheel
- xz
- zlib
- pip:
- sphinx-gallery>=0.1.2
| Add sphinx-gallery to rtd env | Add sphinx-gallery to rtd env
| YAML | bsd-2-clause | dpshelio/sunpy,Alex-Ian-Hamilton/sunpy,Alex-Ian-Hamilton/sunpy,dpshelio/sunpy,dpshelio/sunpy,Alex-Ian-Hamilton/sunpy |
b864e3db00d710c1d2bd43cac54a7162f57bf93f | jsk_2015_05_baxter_apc/config/kiva_pod_interactive_marker.yaml | jsk_2015_05_baxter_apc/config/kiva_pod_interactive_marker.yaml | frame_id: /base
initial_orientation: [0.002, -0.008, 0.014, 1.000]
initial_x: 1.410
initial_y: -0.004
initial_z: 0.414
object_a: 0.2
object_b: 0.2
object_g: 0.0
object_r: 0.0
object_type: cube
object_x: 0.865
object_y: 0.865
object_z: 1.0
publish_tf: true
tf_frame: kiva_pod_base
| frame_id: /base
initial_orientation: [-0.002, -0.028, 0.017, 0.999]
initial_x: 1.421
initial_y: 0.020
initial_z: 0.496
object_a: 0.2
object_b: 0.2
object_g: 0.0
object_r: 0.0
object_type: cube
object_x: 0.865
object_y: 0.865
object_z: 1.0
publish_tf: true
tf_frame: kiva_pod_base
| Adjust kiva pod pose to base | Adjust kiva pod pose to base
| YAML | bsd-3-clause | pazeshun/jsk_apc,pazeshun/jsk_apc,pazeshun/jsk_apc,pazeshun/jsk_apc,pazeshun/jsk_apc |
be01657b603319958eaebe3bc33718ded78a20af | .github/workflows/nodejs.yml | .github/workflows/nodejs.yml | name: Node CI
on: [push]
jobs:
build:
timeout-minutes: 20
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test
| name: Node CI
on: [push, pull_request]
jobs:
build:
timeout-minutes: 20
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test
| Add pull_request as a trigger for the CI job | Add pull_request as a trigger for the CI job | YAML | mit | davidkpiano/xstate,davidkpiano/xstate,davidkpiano/xstate |
eea9a7128dd870b2235cd78c5cf77ff966aa311b | plugins/tempest/tasks/setup/rpm/install_plugins.yml | plugins/tempest/tasks/setup/rpm/install_plugins.yml | ---
- name: Include test vars
include_vars: "{{ test_suite }}"
- name: Install plugin packages for "{{ test_suite }}" suite
become: yes
package:
name: "{{ item.value.package[test.openstack.version |default(overcloud_version) | int]|default(item.value.package.default) }}"
state: present
with_dict: "{{ test_dict.plugins | default({}) }}"
when: item.value.package is defined
- name: Clone plugin repository for "{{ test_suite }}" suite
become: yes
git:
repo: "{{ item.value.repo | default(item.value.default) }}"
dest: "{{ ansible_user_dir }}/{{ item.value.repo | basename }}"
accept_hostkey: true
retries: 3
delay: 60
with_dict: "{{ test_dict.plugins | default({}) }}"
when: item.value.package is not defined
| ---
- name: Include test vars
include_vars: "{{ test_suite }}"
- name: Install plugin packages for "{{ test_suite }}" suite
become: yes
package:
name: "{{ item.value.package[test.openstack.version |default(overcloud_version) | int]|default(item.value.package.default) }}"
state: present
with_dict: "{{ test_dict.plugins | default({}) }}"
when: item.value.package is defined
- name: Disable SSL verification by git
become: yes
shell: "git config --global http.sslVerify false"
- name: Clone plugin repository for "{{ test_suite }}" suite
become: yes
git:
repo: "{{ item.value.repo | default(item.value.default) }}"
dest: "{{ ansible_user_dir }}/{{ item.value.repo | basename }}"
accept_hostkey: true
retries: 3
delay: 60
with_dict: "{{ test_dict.plugins | default({}) }}"
when: item.value.package is not defined
| Disable git ssl verification on undercloud | Disable git ssl verification on undercloud
For cloning internal repositories that require
certifications.
Change-Id: I1b203ca74a73a95b7ca51d3dbaec21d8e0e8d4ce
| YAML | apache-2.0 | redhat-openstack/infrared,redhat-openstack/infrared,okolisny/InfraRed,okolisny/InfraRed,okolisny/InfraRed,redhat-openstack/infrared |
861841cf7eaf7a7156af0a62c64efcbbfc361423 | metadata/org.kde.bettercounter.yml | metadata/org.kde.bettercounter.yml | Categories:
- Time
- Sports & Health
License: GPL-2.0-only
AuthorName: Albert Vaca Cintora
AuthorEmail: albertvaka@gmail.com
AuthorWebSite: https://albertvaka.wordpress.com/
SourceCode: https://github.com/albertvaka/bettercounter
IssueTracker: https://github.com/albertvaka/bettercounter/issues
AutoName: BetterCounter
RepoType: git
Repo: https://github.com/albertvaka/bettercounter
Builds:
- versionName: '1.6'
versionCode: 10600
commit: v1.6
subdir: app
gradle:
- yes
- versionName: '1.7'
versionCode: 10700
commit: v1.7
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '1.7'
CurrentVersionCode: 10700
| Categories:
- Time
- Sports & Health
License: GPL-2.0-only
AuthorName: Albert Vaca Cintora
AuthorEmail: albertvaka@gmail.com
AuthorWebSite: https://albertvaka.wordpress.com/
SourceCode: https://github.com/albertvaka/bettercounter
IssueTracker: https://github.com/albertvaka/bettercounter/issues
AutoName: BetterCounter
RepoType: git
Repo: https://github.com/albertvaka/bettercounter
Builds:
- versionName: '1.6'
versionCode: 10600
commit: v1.6
subdir: app
gradle:
- yes
- versionName: '1.7'
versionCode: 10700
commit: v1.7
subdir: app
gradle:
- yes
- versionName: 1.8.1
versionCode: 10810
commit: v1.8.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.8.1
CurrentVersionCode: 10810
| Update BetterCounter to 1.8.1 (10810) | Update BetterCounter to 1.8.1 (10810)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
b815dcdaae6f6f8f879b4f4be69c4f77f6997cfa | .github/workflows/android.yml | .github/workflows/android.yml | name: Android CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Gradle
run: sudo ./gradlew build
| name: Android CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 11
- name: Build with Gradle
run: sudo ./gradlew build
| Use Java 11 in Github Actions workflow | Use Java 11 in Github Actions workflow
| YAML | apache-2.0 | cuberite/android |
44b440a21b5cfb2c2a11e0eba1288ee262e336a0 | .github/workflows/nodebug.yml | .github/workflows/nodebug.yml | name: No Assertions
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
ndebug:
name: No Assertions
uses: steinwurf/nodebug-action/.github/workflows/action.yml@6.0.0
with:
extra_resolve_options: ${{ github.event.inputs.extra_resolve_options }}
| name: No Assertions
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
ndebug:
name: No Assertions
uses: steinwurf/nodebug-action/.github/workflows/action.yml@7.0.0
with:
extra_resolve_options: ${{ github.event.inputs.extra_resolve_options }}
| Update No Assertions to new version 7.0.0 | Update No Assertions to new version 7.0.0 | YAML | bsd-3-clause | steinwurf/endian,steinwurf/endian |
2e89eecc86c675dcf6ab0d1b57415e8166aeb0bf | .github/workflows/android.yml | .github/workflows/android.yml | name: GitHub CI
on: [push, pull_request]
jobs:
test:
runs-on: macOS-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup JDK
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Sdl Android Tests
# For more info, please check out: https://github.com/marketplace/actions/android-emulator-runner
uses: reactivecircus/android-emulator-runner@v1
with:
api-level: 29
script: ./android/gradlew -p ./android :sdl_android:connectedCheck
- name: Hello Sdl Android Tests
run: ./android/gradlew -p ./android :hello_sdl_android:build
- name: Sdl JavaSE Tests
run: ./javaSE/gradlew -p ./javaSE test
- name: Hello Sdl JavaSE Tests
run: ./hello_sdl_java/gradlew -p ./hello_sdl_java test
- name: Sdl JavaEE Tests
run: ./javaEE/gradlew -p ./javaEE test
- name: Codecov
uses: codecov/codecov-action@v1.0.5
with:
token: ${{secrets.CODECOV_TOKEN}}
yml: ./codecov.yml
| name: GitHub CI
on: [push, pull_request]
jobs:
test:
runs-on: macOS-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup JDK
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Sdl Android Tests
# For more info, please check out: https://github.com/marketplace/actions/android-emulator-runner
uses: reactivecircus/android-emulator-runner@v1
with:
api-level: 29
script: ./android/gradlew -p ./android :sdl_android:connectedCheck
- name: Hello Sdl Android Tests
run: ./android/gradlew -p ./android :hello_sdl_android:build
- name: Sdl JavaSE Tests
run: ./javaSE/gradlew -p ./javaSE test
- name: Hello Sdl JavaSE Tests
run: ./hello_sdl_java/gradlew -p ./hello_sdl_java test
- name: Sdl JavaEE Tests
run: ./javaEE/gradlew -p ./javaEE test
- name: Codecov
uses: codecov/codecov-action@v1.0.5
with:
token: ${{secrets.CODECOV_TOKEN}}
yml: ./codecov.yml
| Update checkout action to v2 | Update checkout action to v2 | YAML | bsd-3-clause | smartdevicelink/sdl_android |
7eb086ab16df5f041a5aad7c7f12e60929b6af34 | playbooks/edx-east/jenkins_testeng_master.yml | playbooks/edx-east/jenkins_testeng_master.yml | # Configure a Jenkins master instance for testeng
# This has the Jenkins Java app, but none of the requirements
# to run the tests.
- name: Configure instance(s)
hosts: jenkins_master
sudo: True
gather_facts: True
vars:
COMMON_DATA_DIR: "/mnt"
COMMON_ENABLE_DATADOG: True
COMMON_ENABLE_SPLUNKFORWARDER: True
SPLUNKFORWARDER_LOG_ITEMS:
- source: '/var/lib/jenkins/jobs/*/builds/*/junitResult.xml'
recursive: true
index: 'testeng'
sourcetype: junit
followSymlink: false
crcSalt: '<SOURCE>'
- source: '/var/lib/jenkins/jobs/*/builds/*/build.xml'
index: 'testeng'
recursive: true
sourcetype: build_result
followSymlink: false
crcSalt: '<SOURCE>'
- source: '/var/lib/jenkins/jobs/*/builds/*/log'
index: 'testeng'
recursive: true
sourcetype: build_log
followSymlink: false
crcSalt: '<SOURCE>'
roles:
- common
- role: datadog
when: COMMON_ENABLE_DATADOG
- jenkins_master
# run just the splunkforwarder role by using '--tags "splunkonly"'
# e.g. ansible-playbook jenkins_testeng_master.yml -i inventory.ini --tags "splunkonly" -vvvv
- role: splunkforwarder
when: COMMON_ENABLE_SPLUNKFORWARDER
tags: splunkonly
sudo: True
| # Configure a Jenkins master instance for testeng
# This has the Jenkins Java app, but none of the requirements
# to run the tests.
- name: Configure instance(s)
hosts: jenkins_master
sudo: True
gather_facts: True
vars:
COMMON_DATA_DIR: "/mnt"
COMMON_ENABLE_DATADOG: True
COMMON_ENABLE_SPLUNKFORWARDER: True
SPLUNKFORWARDER_LOG_ITEMS:
- source: '/var/lib/jenkins/jobs/*/builds/*/junitResult.xml'
recursive: true
index: 'testeng'
sourcetype: junit
followSymlink: false
crcSalt: '<SOURCE>'
- source: '/var/lib/jenkins/jobs/*/builds/*/build.xml'
index: 'testeng'
recursive: true
sourcetype: build_result
followSymlink: false
crcSalt: '<SOURCE>'
- source: '/var/lib/jenkins/jobs/*/builds/*/log'
index: 'testeng'
recursive: true
sourcetype: build_log
followSymlink: false
crcSalt: '<SOURCE>'
- source: '/var/log/jenkins/jenkins.log'
index: 'testeng'
recursive: false
followSymlink: false
roles:
- common
- role: datadog
when: COMMON_ENABLE_DATADOG
- jenkins_master
# run just the splunkforwarder role by using '--tags "splunkonly"'
# e.g. ansible-playbook jenkins_testeng_master.yml -i inventory.ini --tags "splunkonly" -vvvv
- role: splunkforwarder
when: COMMON_ENABLE_SPLUNKFORWARDER
tags: splunkonly
sudo: True
| Index the jenkins master log in Splunk | Index the jenkins master log in Splunk
| YAML | agpl-3.0 | nttks/configuration,mitodl/configuration,marcore/configuration,edx/configuration,open-craft/configuration,omarkhan/configuration,AlfiyaZi/configuration,zhengjunwei/configuration,hastexo/edx-configuration,louyihua/configuration,rue89-tech/configuration,CredoReference/configuration,arbrandes/edx-configuration,omarkhan/configuration,michaelsteiner19/open-edx-configuration,antshin72/configuration,antoviaque/configuration,arbrandes/edx-configuration,pedrorib/istx,pedrorib/istx,joshhu/configuration,EDUlib/configuration,kursitet/configuration,leansoft/configuration,hastexo/edx-configuration-old,fghaas/edx-configuration,nunpa/configuration,Carlos2005/configuration,hastexo/edx-configuration-old,beacloudgenius/configuration,xiangjf/configuration,pobrejuanito/configuration,Livit/Livit.Learn.EdX.configuration,mitodl/configuration,proversity-org/configuration,alu042/configuration,joshhu/configuration,zhengjunwei/configuration,Livit/Livit.Learn.EdX.configuration,glengal/configuration,Softmotions/configuration,edx/configuration,knehez/configuration,omarkhan/configuration,stvstnfrd/configuration,hastexo/edx-configuration,arifsetiawan/configuration,knehez/configuration,EDUlib/configuration,hks-epod/configuration,Pieros/configuration,4eek/configuration,nikolas/configuration,joshhu/configuration,leansoft/configuration,IndonesiaX/configuration,Livit/Livit.Learn.EdX.configuration,nttks/configuration,arbrandes/edx-configuration,IndonesiaX/configuration,jorgeomarmh/configuration,pobrejuanito/configuration,usernamenumber/configuration,antshin72/configuration,rue89-tech/configuration,appsembler/configuration,open-craft/configuration,kencung/configuration,proversity-org/configuration,louyihua/configuration,kencung/configuration,open-craft/configuration,4eek/configuration,AlfiyaZi/configuration,leansoft/configuration,pedrorib/istx,knehez/configuration,antshin72/configuration,IndonesiaX/configuration,appsembler/configuration,kencung/configuration,hastexo/edx-configuration,marcore/configuration,CredoReference/configuration,eduStack/configuration,edx/configuration,hks-epod/configuration,hks-epod/configuration,xiangjf/configuration,stvstnfrd/configuration,fghaas/edx-configuration,rue89-tech/configuration,armaan/edx-configuration,fghaas/edx-configuration,gsehub/configuration,vasyarv/configuration,nunpa/configuration,glengal/configuration,alu042/configuration,Softmotions/configuration,hks-epod/configuration,gsehub/configuration,lgfa29/configuration,louyihua/configuration,gsehub/configuration,mitodl/configuration,antshin72/configuration,jorgeomarmh/configuration,beacloudgenius/configuration,joshhu/configuration,Stanford-Online/configuration,antoviaque/configuration,Softmotions/configuration,EDUlib/configuration,lgfa29/configuration,hastexo/edx-configuration,openfun/configuration,kursitet/configuration,nikolas/configuration,openfun/configuration,Softmotions/configuration,beacloudgenius/configuration,mitodl/configuration,michaelsteiner19/open-edx-configuration,Stanford-Online/configuration,Stanford-Online/configuration,appsembler/configuration,hks-epod/configuration,hastexo/edx-configuration-old,glengal/configuration,louyihua/configuration,CredoReference/configuration,antoviaque/configuration,proversity-org/configuration,CredoReference/configuration,glengal/configuration,EDUlib/configuration,armaan/edx-configuration,openfun/configuration,alu042/configuration,eduStack/configuration,alu042/configuration,stvstnfrd/configuration,eduStack/configuration,proversity-org/configuration,4eek/configuration,lgfa29/configuration,stvstnfrd/configuration,EDUlib/configuration,nttks/configuration,kursitet/configuration,gashac03/ubuntu,arbrandes/edx-configuration,open-craft/configuration,pobrejuanito/configuration,bugcy013/edx_infra,edx/configuration,arifsetiawan/configuration,4eek/configuration,nttks/configuration,Pieros/configuration,beacloudgenius/configuration,Pieros/configuration,leansoft/configuration,rue89-tech/configuration,fghaas/edx-configuration,IndonesiaX/configuration,Stanford-Online/configuration,nikolas/configuration,pedrorib/istx,AlfiyaZi/configuration,vasyarv/configuration,gashac03/ubuntu,Carlos2005/configuration,hastexo/edx-configuration,zhengjunwei/configuration,bugcy013/edx_infra,Stanford-Online/configuration,xiangjf/configuration,kencung/configuration,marcore/configuration,marcore/configuration,proversity-org/configuration,arifsetiawan/configuration,knehez/configuration,nunpa/configuration,armaan/edx-configuration,AlfiyaZi/configuration,nunpa/configuration,bugcy013/edx_infra,armaan/edx-configuration,antoviaque/configuration,arbrandes/edx-configuration,stvstnfrd/configuration,arifsetiawan/configuration,gsehub/configuration,xiangjf/configuration,vasyarv/configuration,pobrejuanito/configuration,usernamenumber/configuration,michaelsteiner19/open-edx-configuration,kursitet/configuration,gsehub/configuration,nikolas/configuration,Livit/Livit.Learn.EdX.configuration,jorgeomarmh/configuration,zhengjunwei/configuration,gashac03/ubuntu,vasyarv/configuration,hastexo/edx-configuration-old,Carlos2005/configuration,jorgeomarmh/configuration,usernamenumber/configuration,usernamenumber/configuration,appsembler/configuration,gashac03/ubuntu,bugcy013/edx_infra,openfun/configuration,rue89-tech/configuration,Pieros/configuration,omarkhan/configuration,michaelsteiner19/open-edx-configuration,Carlos2005/configuration,lgfa29/configuration |
d027e0795d0af128a1b950cad0802b27234dee5e | Resources/config/services.yml | Resources/config/services.yml | services:
easy_admin_popup.listener.crud_flashbag:
class: A5sys\EasyAdminPopupBundle\Listener\CrudFlashbagListener
arguments:
- "@session"
- "@translator"
tags:
- { name: kernel.event_listener, event: "easy_admin.post_persist", method: onPostPersist }
- { name: kernel.event_listener, event: "easy_admin.post_update", method: onPostUpdate }
- { name: kernel.event_listener, event: "easy_admin.post_remove", method: onPostRemove }
admin.translation.entity_extractor:
class: "A5sys\\EasyAdminPopupBundle\\Translation\\EntityExtractor"
arguments:
- "%easyadmin.config%"
- "EasyAdminBundle"
- "@easyadmin.translation.entity_translation"
tags:
- { name: jms_translation.extractor, alias: "adminbundle_translation_entity_extractor" }
easyadminpopup.twig.extension:
class: "A5sys\\EasyAdminPopupBundle\\Twig\\EasyAdminPopupTwigExtension"
arguments:
- "%easy_admin_popup.layout%"
tags:
- { name: twig.extension } | services:
easy_admin_popup.listener.crud_flashbag:
class: A5sys\EasyAdminPopupBundle\Listener\CrudFlashbagListener
arguments:
- "@session"
- "@translator"
tags:
- { name: kernel.event_listener, event: "easy_admin.post_persist", method: onPostPersist }
- { name: kernel.event_listener, event: "easy_admin.post_update", method: onPostUpdate }
- { name: kernel.event_listener, event: "easy_admin.post_remove", method: onPostRemove }
easy_admin_popup.translation.entity_extractor:
class: "A5sys\\EasyAdminPopupBundle\\Translation\\EntityExtractor"
arguments:
- "%easyadmin.config%"
- "EasyAdminBundle"
- "@easyadmin.translation.entity_translation"
tags:
- { name: jms_translation.extractor, alias: "adminbundle_translation_entity_extractor" }
easyadminpopup.twig.extension:
class: "A5sys\\EasyAdminPopupBundle\\Twig\\EasyAdminPopupTwigExtension"
arguments:
- "%easy_admin_popup.layout%"
tags:
- { name: twig.extension } | Fix prefix for service extractor | Fix prefix for service extractor
| YAML | mit | A5sys/EasyAdminPopupBundle,A5sys/EasyAdminPopupBundle,A5sys/EasyAdminPopupBundle |
70e723a4399ca555699cb9c3b4edd9ae8e5d4361 | Resources/config/services.yml | Resources/config/services.yml | services:
r_u2f_two_factor.authenticator:
class: R\U2FTwoFactorBundle\Security\TwoFactor\Prodiver\U2F\U2FAuthenticator
arguments:
- '@request_stack'
r_u2f_two_factor.provider:
class: R\U2FTwoFactorBundle\Security\TwoFactor\Prodiver\U2F\TwoFactorProvider
arguments:
- '@r_u2f_two_factor.authenticator'
- '@templating'
- '%r_u2f_two_factor.formtemplate%'
- '%r_u2f_two_factor.authcodeparameter%'
tags:
- { name: scheb_two_factor.provider, alias: u2f_two_factor }
| services:
R\U2FTwoFactorBundle\Security\TwoFactor\Provider\U2F\U2FAuthenticator:
arguments:
- '@request_stack'
R\U2FTwoFactorBundle\Security\TwoFactor\Provider\U2F\TwoFactorProvider:
arguments:
- '@R\U2FTwoFactorBundle\Security\TwoFactor\Provider\U2F\U2FAuthenticator'
- '@templating'
- '%r_u2f_two_factor.formtemplate%'
- '%r_u2f_two_factor.authcodeparameter%'
tags:
- { name: scheb_two_factor.provider, alias: u2f_two_factor }
| Use FQCN as service name | Use FQCN as service name
scheb/two-factor-bundle requires Symfony 3.4, so we can use a FQCN as a service name: https://symfony.com/blog/new-in-symfony-3-3-optional-class-for-named-services. | YAML | mit | darookee/u2f-two-factor-bundle,darookee/u2f-two-factor-bundle,darookee/u2f-two-factor-bundle |
7ae79688fdc7d19d6f73e3926ff97710bece8522 | packages/tr/transformers-lift.yaml | packages/tr/transformers-lift.yaml | homepage: ''
changelog-type: ''
hash: 14cddf1698f0c4b37da667c6b12b77224a71b6e98e428054cca9cedcc0dbc9b7
test-bench-deps: {}
maintainer: Vladislav Zavialov <vlad.z.4096@gmail.com>
synopsis: Ad-hoc type classes for lifting
changelog: ''
basic-deps:
writer-cps-transformers: ! '>=0.1.1.3'
base: ! '>=4.6 && <4.12'
transformers: ! '>=0.4.2.0'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.2.0.0'
- '0.2.0.1'
author: Vladislav Zavialov
latest: '0.2.0.1'
description-type: haddock
description: ! 'This simple and lightweight library provides type classes
for lifting monad transformer operations.'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 85690b19b9c70c3256995544cfc19e3798e6a5d478bb3fcb12fc28c78562f799
test-bench-deps: {}
maintainer: Vladislav Zavialov <vlad.z.4096@gmail.com>
synopsis: Ad-hoc type classes for lifting
changelog: ''
basic-deps:
writer-cps-transformers: ! '>=0.1.1.3'
base: ! '>=4.6 && <4.13'
transformers: ! '>=0.4.2.0'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.2.0.0'
- '0.2.0.1'
author: Vladislav Zavialov
latest: '0.2.0.1'
description-type: haddock
description: ! 'This simple and lightweight library provides type classes
for lifting monad transformer operations.'
license-name: BSD3
| Update from Hackage at 2018-11-12T08:32:23Z | Update from Hackage at 2018-11-12T08:32:23Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
1424b1842d1e58743c87229eab1db34a12e12a34 | update-slack-name/pipeline.yml | update-slack-name/pipeline.yml | ---
resource_types:
- name: slack-notification
type: docker-image
source:
repository: cfcommunity/slack-notification-resource
resources:
- name: slack_alert
type: slack-notification
source:
url: {{slack-notification-url}}
- name: after-midnight-utc
type: time
source:
start: 12:00 AM
stop: 1:00 AM
jobs:
- name: update-slack-name
public: true
plan:
- do:
- get: after-midnight-utc
trigger: true
- task: update-slack-name
config:
platform: linux
params:
SLACK_URL: {{slack-update-url}}
image_resource:
type: docker-image
source: {repository: robdimsdale/middleman-site-docker-image}
run:
path: /bin/bash
args:
- -c
- |
set -eu
curl \
-s \
"${SLACK_URL}"
on_failure:
put: slack_alert
params:
silent: true
username: concourse
icon_url: http://cl.ly/image/3e1h0H3H2s0P/concourse-logo.png
channel: {{slack-notification-channel}}
text: {{slack-notification-failure-text}}
| ---
resource_types:
- name: slack-notification
type: docker-image
source:
repository: cfcommunity/slack-notification-resource
resources:
- name: slack_alert
type: slack-notification
source:
url: {{slack-notification-url}}
- name: twice-daily
type: time
source:
interval: 12h
jobs:
- name: update-slack-name
public: true
plan:
- do:
- get: twice-daily
trigger: true
- task: update-slack-name
config:
platform: linux
params:
SLACK_URL: {{slack-update-url}}
image_resource:
type: docker-image
source: {repository: robdimsdale/middleman-site-docker-image}
run:
path: /bin/bash
args:
- -c
- |
set -eu
curl \
-s \
"${SLACK_URL}"
on_failure:
put: slack_alert
params:
silent: true
username: concourse
icon_url: http://cl.ly/image/3e1h0H3H2s0P/concourse-logo.png
channel: {{slack-notification-channel}}
text: {{slack-notification-failure-text}}
| Update slack name twice daily | Update slack name twice daily
| YAML | mit | robdimsdale/robdimsdale-ci |
d8e00a11323bbcfbfbb69d9fad3345db45f2be94 | .github/workflows/cucumber-ruby-core.yml | .github/workflows/cucumber-ruby-core.yml | name: Test cucumber-core
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "0 5 * * *"
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
ruby: ['2.5', '2.6', '2.7', '3.0']
include:
- os: ubuntu-latest
ruby: jruby
- os: macos-latest
ruby: '3.0'
- os: windows-latest
ruby: '3.0'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Run ruby tests
uses: ./.github/actions/test-ruby
with:
ruby-version: ${{ matrix.ruby }}
| name: Test cucumber-core
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "0 5 * * *"
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
fail-fast: false
ruby: ['2.5', '2.6', '2.7', '3.0']
include:
- os: ubuntu-latest
ruby: jruby
- os: macos-latest
ruby: '3.0'
- os: windows-latest
ruby: '3.0'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Run ruby tests
uses: ./.github/actions/test-ruby
with:
ruby-version: ${{ matrix.ruby }}
| Update test workflow to not failing fast | Update test workflow to not failing fast
| YAML | mit | cucumber/cucumber-ruby-core |
078b0be82e1efb2180a45a6e65c5fa51f2e2a16a | .github/workflows/mkdoc-build-deploy.yml | .github/workflows/mkdoc-build-deploy.yml | name: Build And Deploy MkDocs
on:
# TODO(vmirian) 2022-02-02 Enable below to execute action on push.
# push:
# branches:
# - main
# paths:
# - "**.md"
# - "mkdocs.yml"
workflow_dispatch:
jobs:
docs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install --upgrade pip && pip install mkdocs mkdocs-gen-files
- run: git config user.name 'github-actions[bot]' && git config user.email 'github-actions[bot]@users.noreply.github.com'
- name: Publish docs
run: mkdocs gh-deploy
# TODO(vmirian) 2022-02-02 When action is live, enable message.
# run: mkdocs gh-deploy -m "mkdocs generated documentation from ${GITHUB_SHA}" | name: Build And Deploy MkDocs
on:
# TODO(vmirian) 2022-02-02 Enable below to execute action on push.
# push:
# branches:
# - main
# paths:
# - "**.md"
# - "mkdocs.yml"
workflow_dispatch:
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install --upgrade pip && pip install mkdocs mkdocs-gen-files
- run: git config user.name 'xls-github-bot' && git config user.email 'xls-github-bot@google.com'
- name: Publish docs
run: mkdocs gh-deploy
# TODO(vmirian) 2022-02-02 When action is live, enable message.
# run: mkdocs gh-deploy -m "mkdocs generated documentation from ${GITHUB_SHA}" | Improve Github action for building and deploying the documentation. 1. Enable xls-github-bot to commit documentation builds. 2. Remove dependency in Build And Deploy MkDocs action. | [OSS] Improve Github action for building and deploying the documentation.
1. Enable xls-github-bot to commit documentation builds.
2. Remove dependency in Build And Deploy MkDocs action.
PiperOrigin-RevId: 426224153
| YAML | apache-2.0 | google/xls,google/xls,google/xls,google/xls,google/xls,google/xls |
bf379fde375afdcd94edce50cace4fad9c310bd2 | releasenotes/notes/oracle-zfssa-unsupported-4ce035213fa0e097.yaml | releasenotes/notes/oracle-zfssa-unsupported-4ce035213fa0e097.yaml | ---
upgrade:
- |
The Oracle ZFSSA drivers have been marked as unsupported
and are now deprecated. ``enable_unsupported_driver`` will need
to be set to ``True`` in the driver's section in cinder.conf to
continue to use them.
deprecations:
- |
The Oracle ZFSSA drivers has been marked as unsupported
and are now deprecated. ``enable_unsupported_driver`` will need
to be set to ``True`` in the driver's section in cinder.conf to
continue to use them. Oracle has indicated that they don't plan to
continue to support the drivers so they will be removed in
the 'U' development cycle.
| ---
upgrade:
- |
The Oracle ZFSSA drivers have been marked as unsupported
and are now deprecated. ``enable_unsupported_driver`` will need
to be set to ``True`` in the driver's section in cinder.conf to
continue to use them.
deprecations:
- |
The Oracle ZFSSA drivers have been been marked as unsupported
and are now deprecated. ``enable_unsupported_driver`` will need
to be set to ``True`` in the driver's section in cinder.conf to
continue to use them. Oracle has indicated that they don't plan to
continue to support the drivers so they will be removed in
the 'U' development cycle.
| Address reno nit for ZFSSA deprecation | Address reno nit for ZFSSA deprecation
Fixes a slight grammatical mistake in the release note pointed out in
Id6181e0632a84d9538a34ac9460c36ba983a3757.
Change-Id: Ifb8bd04876e96cdeb8cd2092e6dd794678c2f443
Signed-off-by: Sean McGinnis <961eeb09b6d45516665e15b82e013282c4faf575@gmail.com>
| YAML | apache-2.0 | openstack/cinder,openstack/cinder,mahak/cinder,mahak/cinder |
d9d707d95e95f03cfcc64a823ebad1b7fd3de555 | provisioning/roles/php-xhprof/tasks/main.yml | provisioning/roles/php-xhprof/tasks/main.yml | ---
- name: "install xhprof"
command: pecl install xhprof-{{ xhprof_version }}
register: xhprof_result
changed_when: "'already installed' not in xhprof_result.stdout"
failed_when: "xhprof_result.stderr"
- name: "copy xhprof.ini"
copy: src=xhprof.ini dest=/etc/php5/fpm/conf.d/xhprof.ini
notify:
- restart php-fpm
- name: "copy default vhost"
copy: src=xhprof.conf dest=/etc/apache2/sites-available/xhprof.conf
- name: "enable xhprof vhosts"
shell: a2ensite xhprof.conf
register: a2ensite_result
changed_when: "'Enabling xhprof' in a2ensite_result.stdout"
notify: restart webserver
- name: "Create xhprof tmp directory"
shell: mkdir /tmp/xhprof
- name: "Fix user perm for xhprof tmp directory"
shell: chown www-data /tmp/xhprof/ -R;
- name: "Fix group perm for xhprof tmp directory"
shell: chgrp www-data /tmp/xhprof/ -R;
| ---
- name: "install xhprof"
command: pecl install xhprof-{{ xhprof_version }}
register: xhprof_result
changed_when: "'already installed' not in xhprof_result.stdout"
failed_when: "xhprof_result.stderr"
- name: "copy xhprof.ini"
copy: src=xhprof.ini dest=/etc/php5/fpm/conf.d/xhprof.ini
notify:
- restart php-fpm
- name: "copy default vhost"
copy: src=xhprof.conf dest=/etc/apache2/sites-available/xhprof.conf
- name: "enable xhprof vhosts"
shell: a2ensite xhprof.conf
register: a2ensite_result
changed_when: "'Enabling xhprof' in a2ensite_result.stdout"
notify: restart webserver
- name: "Setup xhprof tmp directory"
file: path=/tmp/xhprof owner=www-data group=www-data state=directory
| Use ansible file module instead of shell commands | Use ansible file module instead of shell commands
| YAML | mit | NBCUTechnology/pubstack,ericduran/pubstack,dsilambarasan/stack_dev,aliaksei-yakhnenka/pubstack,dsilambarasan/stack_dev,ericduran/pubstack,aliaksei-yakhnenka/pubstack,NBCUTechnology/pubstack |
8c0979645efdc5c777d4b0c8326127307d6579f7 | playbooks/setup-infrastructure.yml | playbooks/setup-infrastructure.yml | ---
# Copyright 2014, Rackspace US, Inc.
#
# 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
#
# 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.
- include: unbound-install.yml
- include: repo-install.yml
- include: haproxy-install.yml
# TODO(evrardjp): Remove the following when repo_build is done
# before lxc_container_create, and haproxy is moved with it as
# second step.
- include: repo-use.yml
- include: memcached-install.yml
- include: galera-install.yml
- include: rabbitmq-install.yml
- include: etcd-install.yml
- include: ceph-install.yml
- include: utility-install.yml
- include: rsyslog-install.yml
| ---
# Copyright 2014, Rackspace US, Inc.
#
# 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
#
# 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.
- include: unbound-install.yml
- include: repo-install.yml
- include: haproxy-install.yml
# TODO(evrardjp): Remove the following when repo_build is done
# before lxc_container_create, and haproxy is moved with it as
# second step.
- include: repo-use.yml
- include: utility-install.yml
- include: memcached-install.yml
- include: galera-install.yml
- include: rabbitmq-install.yml
- include: etcd-install.yml
- include: ceph-install.yml
- include: rsyslog-install.yml
| Move setup-utility before other plays | Move setup-utility before other plays
If we setup the utility containers before previous plays, we can
have a container that's ready for use in all contextes, because
it would contain all the necessary clients.
Change-Id: Iff34a005ca3d5a6dfcd7ff8d9d5bcc6d51441789
| YAML | apache-2.0 | stackforge/os-ansible-deployment,openstack/openstack-ansible,bunchc/openstack-ansible,stackforge/os-ansible-deployment,bunchc/openstack-ansible,openstack/openstack-ansible |
5b5989c871b4d98a85a85566b8de97bff8b2283e | .eslintrc.yml | .eslintrc.yml | env:
browser: true
es6: true
jasmine: true
extends: 'eslint:recommended'
parserOptions:
sourceType: script
rules:
indent:
- 2
- tab
linebreak-style:
- 2
- unix
quotes:
- 2
- single
semi:
- 2
- always
no-var: 2
| env:
browser: true
es6: true
jasmine: true
extends: 'eslint:recommended'
parserOptions:
sourceType: script
rules:
indent:
- 2
- tab
linebreak-style:
- 2
- unix
quotes:
- 2
- single
semi:
- 2
- always
no-var: 2
eqeqeq: 2
| Add eqeqeq ESLint rule (require === instead of ==) | Add eqeqeq ESLint rule (require === instead of ==)
| YAML | mit | Metalnem/javascript-crypto,Metalnem/javascript-crypto |
85b4021f88e943355542e5d67e210c169416b15d | config/jobs/kubernetes/enhancements/enhancements-presubmit.yaml | config/jobs/kubernetes/enhancements/enhancements-presubmit.yaml | presubmits:
kubernetes/enhancements:
- name: pull-enhancements-verify
always_run: true
decorate: true
spec:
containers:
- image: golang:1.11
command:
- ./hack/verify.sh
| presubmits:
kubernetes/enhancements:
- name: pull-enhancements-verify
always_run: true
decorate: true
spec:
containers:
- image: golang:1.11
command:
- export PATH=$PATH:$GOPATH/bin
- ./hack/verify.sh
| Add GOPATH/bin to PATH for enhancements verify job | Add GOPATH/bin to PATH for enhancements verify job
| YAML | apache-2.0 | fejta/test-infra,michelle192837/test-infra,michelle192837/test-infra,kubernetes/test-infra,ixdy/kubernetes-test-infra,monopole/test-infra,dims/test-infra,kubernetes/test-infra,fejta/test-infra,dims/test-infra,krzyzacy/test-infra,kubernetes/test-infra,dims/test-infra,pwittrock/test-infra,brahmaroutu/test-infra,monopole/test-infra,pwittrock/test-infra,shyamjvs/test-infra,dims/test-infra,jlowdermilk/test-infra,jessfraz/test-infra,krzyzacy/test-infra,cjwagner/test-infra,BenTheElder/test-infra,dims/test-infra,cjwagner/test-infra,cjwagner/test-infra,jessfraz/test-infra,shyamjvs/test-infra,lavalamp/test-infra,monopole/test-infra,jessfraz/test-infra,krzyzacy/test-infra,shyamjvs/test-infra,cjwagner/test-infra,cblecker/test-infra,cblecker/test-infra,jlowdermilk/test-infra,shyamjvs/test-infra,jlowdermilk/test-infra,cblecker/test-infra,pwittrock/test-infra,monopole/test-infra,ixdy/kubernetes-test-infra,shyamjvs/test-infra,cblecker/test-infra,jlowdermilk/test-infra,brahmaroutu/test-infra,BenTheElder/test-infra,lavalamp/test-infra,fejta/test-infra,fejta/test-infra,cblecker/test-infra,brahmaroutu/test-infra,lavalamp/test-infra,fejta/test-infra,krzyzacy/test-infra,jessfraz/test-infra,krzyzacy/test-infra,jessfraz/test-infra,dims/test-infra,jessfraz/test-infra,ixdy/kubernetes-test-infra,BenTheElder/test-infra,jlowdermilk/test-infra,monopole/test-infra,michelle192837/test-infra,jlowdermilk/test-infra,lavalamp/test-infra,cblecker/test-infra,cjwagner/test-infra,kubernetes/test-infra,brahmaroutu/test-infra,brahmaroutu/test-infra,ixdy/kubernetes-test-infra,pwittrock/test-infra,krzyzacy/test-infra,lavalamp/test-infra,cjwagner/test-infra,monopole/test-infra,BenTheElder/test-infra,kubernetes/test-infra,michelle192837/test-infra,shyamjvs/test-infra,kubernetes/test-infra,michelle192837/test-infra,pwittrock/test-infra,michelle192837/test-infra,brahmaroutu/test-infra,BenTheElder/test-infra,lavalamp/test-infra,ixdy/kubernetes-test-infra,fejta/test-infra,BenTheElder/test-infra |
62e966fb282a9a0eee4e97c35da37b6117c51835 | tasks/RedHat-install.yml | tasks/RedHat-install.yml | ---
- name: New Relic sysmond | Setup yum repo
yum: name=https://yum.newrelic.com/pub/newrelic/el5/x86_64/newrelic-repo-5-3.noarch.rpm state=present
- name: New Relic sysmond | Installing sysmond
yum: name=newrelic-sysmond state=present
| ---
- name: New Relic sysmond | Setup yum repo
yum: name=https://yum.newrelic.com/pub/newrelic/el5/x86_64/newrelic-repo-5-3.noarch.rpm state=present
- name: New Relic sysmond | Install newrelic-sysmond
yum: name=newrelic-sysmond state=present
| Reword name for rpm install. | Reword name for rpm install.
| YAML | mit | mego22/ansible-role-newrelic-sysmond |
5ec88d4f9e3103f09f728d5a84760003dec20095 | ops/provisioning/roles/webserver_base/tasks/main.yml | ops/provisioning/roles/webserver_base/tasks/main.yml | ---
# mysql
- name: create hutmap databases for mysql
mysql_db:
name=$item
state=present
with_items:
- ${hutmap.db_name}
- test_${hutmap.db_name}
- name: create hutmap user for mysql
mysql_user:
name=${hutmap.db_user}
password=${hutmap.db_password}
host='%'
priv=${hutmap.db_name}.*:ALL/test_${hutmap.db_name}.*:ALL
state=present
# packages needed by python requirements
- name: update apt
apt: update_cache=yes
- name: install pip
apt: pkg=python-pip state=latest
- name: install virtualenv
pip: name=virtualenv
- name: install packages needed by mysql-python
apt: pkg=$item state=installed
with_items:
- libmysqlclient-dev
- python-dev
- name: install packages needed by pil
apt: pkg=$item state=installed
with_items:
- libjpeg-dev
- libfreetype6-dev
- zlib1g-dev
- name: symlink libraries to /usr/lib
command: ln -s /usr/lib/${ansible_architecture}-linux-gnu/$item /usr/lib/
creates=/usr/lib/$item
with_items:
- libfreetype.so
- libjpeg.so
- libz.so
| ---
# mysql
- name: create hutmap databases for mysql
mysql_db:
name=$item
state=present
encoding=utf8
with_items:
- ${hutmap.db_name}
- test_${hutmap.db_name}
- name: create hutmap user for mysql
mysql_user:
name=${hutmap.db_user}
password=${hutmap.db_password}
host='%'
priv=${hutmap.db_name}.*:ALL/test_${hutmap.db_name}.*:ALL
state=present
# packages needed by python requirements
- name: update apt
apt: update_cache=yes
- name: install pip
apt: pkg=python-pip state=latest
- name: install virtualenv
pip: name=virtualenv
- name: install packages needed by mysql-python
apt: pkg=$item state=installed
with_items:
- libmysqlclient-dev
- python-dev
- name: install packages needed by pil
apt: pkg=$item state=installed
with_items:
- libjpeg-dev
- libfreetype6-dev
- zlib1g-dev
- name: symlink libraries to /usr/lib
command: ln -s /usr/lib/${ansible_architecture}-linux-gnu/$item /usr/lib/
creates=/usr/lib/$item
with_items:
- libfreetype.so
- libjpeg.so
- libz.so
| Make sure tables have utf8 encoding. | Make sure tables have utf8 encoding.
| YAML | mit | muescha/hutmap,dylanfprice/hutmap,dylanfprice/hutmap,muescha/hutmap,muescha/hutmap,dylanfprice/hutmap,dylanfprice/hutmap,muescha/hutmap |
58aac50d66eecb01a5d2e191ceab54b07f9f14f2 | yaml/accounting-server-rc.yaml | yaml/accounting-server-rc.yaml | apiVersion: v1
kind: ReplicationController
metadata:
name: accounting-server-rc
spec:
replicas: 1
selector:
name: accounting-server-rc
template:
metadata:
labels:
name: accounting-server-rc
spec:
containers:
- name: accounting
image: gregcorbett/rest:deploy
ports:
- containerPort: 80
hostPort: 80
- containerPort: 443
hostPort: 443
imagePullPolicy: Always
env:
- name: DATA_DB
value: mysql://root:PutYourPassHere@xx.xxx.xx.xx/accounting-db
- name: MYSQL_PASSWORD
value: PutYourPassHere
- name: ALLOWED_FOR_GET
value: []
- name: SERVER_IAM_ID
value:
- name: SERVER_IAM_SECRET
value:
- name: DJANGO_SECRET_KEY
value:
| apiVersion: v1
kind: ReplicationController
metadata:
name: accounting-server-rc
spec:
replicas: 1
selector:
name: accounting-server-rc
template:
metadata:
labels:
name: accounting-server-rc
spec:
containers:
- name: accounting
image: gregcorbett/rest:deploy
ports:
- containerPort: 80
hostPort: 80
- containerPort: 443
hostPort: 443
imagePullPolicy: Always
env:
- name: DATA_DB
value: mysql://root:PutYourPassHere@xx.xxx.xx.xx/accounting-db
- name: MYSQL_HOST
value:
- name: MYSQL_PASSWORD
value: PutYourPassHere
- name: ALLOWED_FOR_GET
value: "[]"
- name: SERVER_IAM_ID
value:
- name: SERVER_IAM_SECRET
value:
- name: DJANGO_SECRET_KEY
value:
| Add MYSQL_HOST to yaml file | Add MYSQL_HOST to yaml file
| YAML | apache-2.0 | apel/rest,apel/rest |
658b34ca0563c2b94e0c3931c2c3e398934fec62 | .github/workflows/packaging.yml | .github/workflows/packaging.yml | name: Packaging
on:
# Make sure packaging process is not broken
push:
branches: [master]
pull_request:
# Make a package for release
release:
types: [published]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install --upgrade build twine
- name: Create packages
run: python -m build
- name: Run twine check
run: twine check dist/*
- uses: actions/upload-artifact@v2
with:
name: python-gyazo-dist
path: dist
| name: Packaging
on:
# Make sure packaging process is not broken
push:
branches: [master]
pull_request:
# Make a package for release
release:
types: [published]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install --upgrade build twine
- name: Create packages
run: python -m build
- name: Run twine check
run: twine check dist/*
- uses: actions/upload-artifact@v2
with:
name: python-gyazo-dist
path: dist
| Fix Python version in GitHub Actions config | Fix Python version in GitHub Actions config
| YAML | mit | ymyzk/python-gyazo |
9fec2b282c6be301402e5554a3bcf1c3352fe4cf | .github/workflows/test_full.yml | .github/workflows/test_full.yml | name: Full Test
on:
push:
pull_request:
types: [assigned, opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9']
django-version: ['<2.1', '<2.2', '<3.0', '<3.1', '<3.2', '==3.2b1']
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install core
run: pip install "Django${{ matrix.django-version }}" pydantic
- name: Install tests
run: pip install pytest pytest-asyncio pytest-django
- name: Test
run: pytest
codestyle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install Dependencies
run: pip install black isort
- name: Black
run: black --check ninja
- name: isort
run: isort --check ninja
- name: Flake8
run: flake8 ninja
| name: Full Test
on:
push:
pull_request:
types: [assigned, opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9']
django-version: ['<2.1', '<2.2', '<3.0', '<3.1', '<3.2', '==3.2b1']
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install core
run: pip install "Django${{ matrix.django-version }}" pydantic
- name: Install tests
run: pip install pytest pytest-asyncio pytest-django
- name: Test
run: pytest
codestyle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install Dependencies
run: pip install black isort flake8
- name: Black
run: black --check ninja
- name: isort
run: isort --check ninja
- name: Flake8
run: flake8 ninja
| Add missing github workflow dependency | Add missing github workflow dependency
| YAML | mit | vitalik/django-ninja,vitalik/django-ninja,vitalik/django-ninja |
c89500dfadc0d0720ba1f91fb4eafccd45589181 | clusterloader2/pkg/prometheus/manifests/prometheus-prometheus.yaml | clusterloader2/pkg/prometheus/manifests/prometheus-prometheus.yaml | apiVersion: monitoring.coreos.com/v1
kind: Prometheus
metadata:
labels:
prometheus: k8s
name: k8s
namespace: monitoring
spec:
alerting:
alertmanagers:
- name: alertmanager-main
namespace: monitoring
port: web
baseImage: gcr.io/k8s-testimages/quay.io/prometheus/prometheus
nodeSelector:
beta.kubernetes.io/os: linux
replicas: 1
resources:
requests:
# Start with 2Gi and add 2Gi for each 2K nodes.
memory: {{MultiplyInt 2 (AddInt 1 (DivideInt .Nodes 2000))}}Gi
ruleSelector:
matchLabels:
prometheus: k8s
role: alert-rules
securityContext:
fsGroup: 2000
runAsNonRoot: true
runAsUser: 1000
serviceAccountName: prometheus-k8s
serviceMonitorNamespaceSelector: {}
serviceMonitorSelector: {}
version: v2.5.0
storage:
volumeClaimTemplate:
spec:
storageClassName: ssd
resources:
requests:
# Start with 10Gi, add 10Gi for each 1K nodes.
storage: {{MultiplyInt 10 (AddInt 1 (DivideInt .Nodes 1000))}}Gi
| apiVersion: monitoring.coreos.com/v1
kind: Prometheus
metadata:
labels:
prometheus: k8s
name: k8s
namespace: monitoring
spec:
alerting:
alertmanagers:
- name: alertmanager-main
namespace: monitoring
port: web
baseImage: gcr.io/k8s-testimages/quay.io/prometheus/prometheus
nodeSelector:
beta.kubernetes.io/os: linux
replicas: 1
resources:
requests:
# Start with 2Gi and add 2Gi for each 2K nodes.
memory: {{MultiplyInt 2 (AddInt 1 (DivideInt .Nodes 2000))}}Gi
ruleSelector:
matchLabels:
prometheus: k8s
role: alert-rules
securityContext:
fsGroup: 2000
runAsNonRoot: true
runAsUser: 1000
serviceAccountName: prometheus-k8s
serviceMonitorNamespaceSelector: {}
serviceMonitorSelector: {}
version: v2.5.0
retention: 7d
storage:
volumeClaimTemplate:
spec:
storageClassName: ssd
resources:
requests:
# Start with 10Gi, add 10Gi for each 1K nodes.
storage: {{MultiplyInt 10 (AddInt 1 (DivideInt .Nodes 1000))}}Gi
| Set the prometheus data retention to 7d. | Set the prometheus data retention to 7d.
The default is 24h which may be not enough for long running / multiple
runs of scalability tests.
| YAML | apache-2.0 | shyamjvs/perf-tests,shyamjvs/perf-tests,kubernetes/perf-tests,kubernetes/perf-tests,kubernetes/perf-tests,shyamjvs/perf-tests,sjug/perf-tests,sjug/perf-tests,shyamjvs/perf-tests,shyamjvs/perf-tests,kubernetes/perf-tests,sjug/perf-tests,sjug/perf-tests,sjug/perf-tests,kubernetes/perf-tests |
aa2c8fcf26324d0615c379e48ed5ad35131e33dc | metadata/community.fairphone.fplauncher3.yml | metadata/community.fairphone.fplauncher3.yml | Categories:
- Theming
License: Apache-2.0
SourceCode: https://github.com/WeAreFairphone/FP2-Launcher
IssueTracker: https://github.com/WeAreFairphone/FP2-Launcher/issues
Changelog: https://github.com/WeAreFairphone/FP2-Launcher/releases
AutoName: Fairphone Launcher 3
RepoType: git
Repo: https://github.com/WeAreFairphone/FP2-Launcher.git
Builds:
- versionName: '2.0'
versionCode: 8
commit: 26c46d63eb9bbc25e836c535c5688cb885cb0be2
gradle:
- yes
prebuild: echo 'android { lintOptions { checkReleaseBuilds false } }' >> build.gradle
- versionName: 2.1.0
versionCode: 9
commit: 2.1.0
gradle:
- yes
prebuild: echo 'android { lintOptions { checkReleaseBuilds false } }' >> build.gradle
- versionName: 2.2.0
versionCode: 10
commit: 2.2.0
gradle:
- yes
prebuild: echo 'android { lintOptions { checkReleaseBuilds false } }' >> build.gradle
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 2.2.0
CurrentVersionCode: 10
| Categories:
- Theming
License: Apache-2.0
SourceCode: https://github.com/WeAreFairphone/FP2-Launcher
IssueTracker: https://github.com/WeAreFairphone/FP2-Launcher/issues
Changelog: https://github.com/WeAreFairphone/FP2-Launcher/releases
AutoName: Fairphone 2 Launcher
RepoType: git
Repo: https://github.com/WeAreFairphone/FP2-Launcher.git
Builds:
- versionName: '2.0'
versionCode: 8
commit: 26c46d63eb9bbc25e836c535c5688cb885cb0be2
gradle:
- yes
prebuild: echo 'android { lintOptions { checkReleaseBuilds false } }' >> build.gradle
- versionName: 2.1.0
versionCode: 9
commit: 2.1.0
gradle:
- yes
prebuild: echo 'android { lintOptions { checkReleaseBuilds false } }' >> build.gradle
- versionName: 2.2.0
versionCode: 10
commit: 2.2.0
gradle:
- yes
prebuild: echo 'android { lintOptions { checkReleaseBuilds false } }' >> build.gradle
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 2.2.0
CurrentVersionCode: 10
| Set autoname of Fairphone 2 Launcher | Set autoname of Fairphone 2 Launcher
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
fa189d8496d6c92953a3ccd4993adff8de30f20c | ansible/roles/Common/tasks/bash-profile.yml | ansible/roles/Common/tasks/bash-profile.yml | ---
- name: Install Bash Completion
apt: package=bash-completion state=present
sudo: yes
- name: Turn On Color Prompt
lineinfile:
dest: "{{ ansible_user_dir }}/.bashrc"
line: "force_color_prompt=yes"
regexp: '#?force_color_prompt=yes'
state: present
- name: More User Friendly List Aliases
lineinfile:
dest: "{{ ansible_user_dir }}/.bashrc"
line: "alias {{ item.alias }}='{{ item.command }}'"
regexp: "^alias {{ item.alias }}="
state: present
with_items:
- { alias: ll, command: "ls -lFh" }
- { alias: la, command: "ls -lAh" }
- { alias: l, command: "ls -CF" }
- name: Cd to /vagrant on Log In
lineinfile:
dest: "{{ ansible_user_dir }}/.bashrc"
line: cd /vagrant
state: present
insertafter: EOF
when: ansible_hostname == "vagrant"
| ---
- name: Install Bash Completion
apt: package=bash-completion state=present
sudo: yes
- name: Turn On Color Prompt
lineinfile:
dest: "{{ ansible_user_dir }}/.bashrc"
line: "force_color_prompt=yes"
regexp: '#?force_color_prompt=yes'
state: present
- name: More User Friendly List Aliases
lineinfile:
dest: "{{ ansible_user_dir }}/.bashrc"
line: "alias {{ item.alias }}='{{ item.command }}'"
regexp: "^alias {{ item.alias }}="
state: present
with_items:
- { alias: ll, command: "ls -lFh" }
- { alias: la, command: "ls -lAh" }
- { alias: l, command: "ls -CF" }
- name: Cd to /vagrant on Log In
lineinfile:
dest: "{{ ansible_user_dir }}/.bashrc"
line: cd /vagrant
state: present
insertafter: EOF
when: inventory_hostname == "vagrant"
| Fix cd into /vagrant on login | Fix cd into /vagrant on login
| YAML | mit | gocodeup/Codeup-Vagrant-Setup,ZeshanNSegal/High_Low,gocodeup/Codeup-Vagrant-Setup,ZeshanNSegal/High_Low,gocodeup/Codeup-Vagrant-Setup,ZeshanNSegal/High_Low,ZeshanNSegal/High_Low,gocodeup/Codeup-Vagrant-Setup |
e8901bd9e78610de03f8475e275b786382c2dd35 | content/lives/design-patern-2019.yaml | content/lives/design-patern-2019.yaml | type: live
title: Design Patern 2019
date: 10/11/2019
image: live-design-patern-2019.jpg
short: Live de design patern 2019-2020
peertube_id:
- 2d8043ac-bc5e-4cdc-8db1-dacd79d7b596
authors:
- davidsonco
- lachaussee
description: Live de deisgn patern de l'année scolaire 2019-2020
keywords:
- formation: ing2
- cursus: génie-informatique
- category: informatique | type: live
title: Design Patern 2019
date: 10/11/2019
image: live-design-patern-2019.jpg
short: Live de design patern 2019-2020
peertube_id:
- 2d8043ac-bc5e-4cdc-8db1-dacd79d7b596
authors:
- davidsonco
- lachaussee
description: Live de design patterns de l'année scolaire 2019-2020
keywords:
- formation: ing2
- cursus: génie-informatique
- category: informatique | Apply 1 suggestion(s) to 1 file(s) | Apply 1 suggestion(s) to 1 file(s) | YAML | mit | Atilla-Learn/portal,Atilla-Learn/portal,Atilla-Learn/portal,Atilla-Learn/portal |
b6f6fb46b760c78d5e9ded9c672f107616a0fc03 | .circleci/config.yml | .circleci/config.yml | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2.1
orbs:
docker-publish: circleci/docker-publish@0.1.7
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:7.10
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: yarn install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: mkdir ~/junit
- run:
command: yarn test-ci
environment:
JUNIT_REPORT_PATH: /home/circleci/junit/
- store_test_results:
path: ~/junit
- store_artifacts:
path: ~/junit
workflows:
version: 2
build:
jobs:
- build
build-docker-publish:
jobs:
- docker-publish/publish:
filters:
branches:
only: master
| # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2.1
orbs:
docker-publish: circleci/docker-publish@0.1.7
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:7.10
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: yarn install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: mkdir ~/junit
- run:
command: yarn test-ci
environment:
JUNIT_REPORT_PATH: /home/circleci/junit/
- store_test_results:
path: ~/junit
- store_artifacts:
path: ~/junit
workflows:
version: 2
build:
jobs:
- build
build-docker-publish:
jobs:
- docker-publish/publish:
tag: latest
filters:
branches:
only: master
| Fix to publish docker image with latest tag | Fix to publish docker image with latest tag
| YAML | mit | danielpigott/cloudflare-cli |
232eaafa98bbbc3e8d9c22cd38855748f39f6900 | .circleci/config.yml | .circleci/config.yml | # JavaScript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2.1
jobs:
build:
docker:
- image: circleci/node:14.6
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: npm run lint
- run: npm test
| # JavaScript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2.1
jobs:
build:
docker:
- image: circleci/node:14.7
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: npm run lint
- run: npm test
| Update circleci/node Docker tag to v14.7 | Update circleci/node Docker tag to v14.7
Signed-off-by: Renovate Bot <c71e7261d37a4f6ae4cfb0cbd79081310a237e67@renovateapp.com>
| YAML | mit | paazmaya/tozan |
b8577ab3c61049cdcd11d5a254704bc99ec82922 | angular_analyzer_plugin/pubspec.yaml | angular_analyzer_plugin/pubspec.yaml | name: angular_analyzer_plugin
version: 0.0.17+5
description: Dart analyzer plugin for Angular 2+
authors:
- Konstantin Scheglov <scheglov@google.com>
- Mike Fairhurst <mfairhurst@google.com>
- Max Kim <maxkim@google.com>
homepage: https://github.com/dart-lang/angular_analyzer_plugin
environment:
sdk: ">=2.1.0-dev.5.0 <3.0.0"
dependencies:
analyzer: '0.34.2'
plugin: '^0.2.0'
analyzer_plugin: '0.0.1-alpha.6'
angular_ast: '^0.5.8'
meta: ^1.0.2
yaml: ^2.1.2
crypto: '>=1.1.1 <3.0.0'
dev_dependencies:
test_reflective_loader: '^0.1.0'
test: '^1.2.0'
mockito: '^3.0.0'
# === vvv REMOVE WHEN PUBLISHING vvv ===
dependency_overrides:
angular_ast:
path: ../angular_ast
# === ^^^ REMOVE WHEN PUBLISHING ^^^ ===
| name: angular_analyzer_plugin
version: 0.0.17+5
description: Dart analyzer plugin for Angular 2+
authors:
- Konstantin Scheglov <scheglov@google.com>
- Mike Fairhurst <mfairhurst@google.com>
- Max Kim <maxkim@google.com>
homepage: https://github.com/dart-lang/angular_analyzer_plugin
environment:
sdk: ">=2.1.0-dev.5.0 <3.0.0"
dependencies:
analyzer: ^0.35.0
plugin: '^0.2.0'
analyzer_plugin: '0.0.1-alpha.6'
angular_ast: '^0.5.8'
meta: ^1.0.2
yaml: ^2.1.2
crypto: '>=1.1.1 <3.0.0'
dev_dependencies:
test_reflective_loader: '^0.1.0'
test: '^1.2.0'
mockito: '^3.0.0'
# === vvv REMOVE WHEN PUBLISHING vvv ===
dependency_overrides:
angular_ast:
path: ../angular_ast
# === ^^^ REMOVE WHEN PUBLISHING ^^^ ===
| Update analyzer dependency to ^0.35.0 to match other angular_* packages. | fix(plugin): Update analyzer dependency to ^0.35.0 to match other angular_* packages.
We have a travis check to verify all of the sub packages depend on the same version.
PiperOrigin-RevId: 237861087
| YAML | mit | angulardart/angular,matanlurey/angular,matanlurey/angular,angulardart/angular,matanlurey/angular,angulardart/angular |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.