commit
stringlengths
40
40
old_file
stringlengths
4
237
new_file
stringlengths
4
237
old_contents
stringlengths
1
4.24k
new_contents
stringlengths
1
4.87k
subject
stringlengths
15
778
message
stringlengths
15
8.75k
lang
stringclasses
266 values
license
stringclasses
13 values
repos
stringlengths
5
127k
fa05dc691ced62b7f5e78721333a672b0bb6446d
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.3" env: # Max django versions. 1.5 -> Django 1.4.X - DJANGO_VERSION=1.5 - DJANGO_VERSION=1.6 - DJANGO_VERSION=1.7 install: - pip install "Django<$DJANGO_VERSION" script: - python setup.py test matrix: exclude: - python: "3.3" env: DJANGO_VERSION=1.5
language: python python: "3.4" - "2.6" - "2.7" - "3.3" - "3.4" env: - TOXENV=py26-1.4 - TOXENV=py26-1.5 - TOXENV=py26-1.6 - TOXENV=py27-1.4 - TOXENV=py27-1.5 - TOXENV=py27-1.6 - TOXENV=py33-1.5 - TOXENV=py33-1.6 - TOXENV=py34-1.5 - TOXENV=py34-1.6 - TOXENV=docs - TOXENV=lint install: - pip install tox script: - tox -e $TOXENV
Add python 3.4, use tox directly on Travis
Add python 3.4, use tox directly on Travis
YAML
bsd-3-clause
brutasse/django-password-reset,janusnic/django-password-reset,ericdwang/django-password-reset,ericdwang/django-password-reset,janusnic/django-password-reset,brutasse/django-password-reset,bearstech/django-password-reset,bearstech/django-password-reset
5970e2a23ab46814d5047e95e11677a43e1d6cd2
.travis.yml
.travis.yml
language: ruby before_install: gem install bundler bundler_args: --without yard guard metrics benchmarks script: "bundle exec rake spec" rvm: - ree - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - ruby-head - jruby-18mode - jruby-19mode - jruby-head - rbx-18mode - rbx-19mode notifications: irc: "irc.freenode.org#datamapper" email: - dan.kubb@gmail.com - mbj@seonic.net
language: ruby before_install: gem install bundler bundler_args: --without yard guard metrics benchmarks script: "bundle exec rake spec" rvm: - ree - 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 notifications: irc: "irc.freenode.org#datamapper" email: - dan.kubb@gmail.com - mbj@seonic.net
Allow failures under ruby-head till bundler issue is fixed
Allow failures under ruby-head till bundler issue is fixed
YAML
mit
davidbegin/adamantium,sferik/adamantium,dkubb/adamantium
d6ab8e67c2f7fde84deeaf9e5d4af08f8fa7236b
.travis.yml
.travis.yml
--- language: ruby before_install: "gem install bundler -v '< 2.0'" bundler_args: --without tools script: bundle exec rake ci rvm: - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.8 - 2.4.9 - 2.5.7 - 2.6.5 - ruby-head - jruby-9.2.6.0 - jruby-head matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: jruby-9.2.6.0 fast_finish: true branches: only: master notifications: email: false
--- language: ruby before_install: "gem install bundler -v '< 2.0'" bundler_args: --without tools script: bundle exec rake ci rvm: - 2.0.0 - 2.1.10 - 2.2.10 - 2.3.8 - 2.4.9 - 2.5.7 - 2.6.5 - 2.7.0-preview2 - ruby-head - jruby-9.2.6.0 - jruby-head matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: jruby-9.2.6.0 fast_finish: true branches: only: master notifications: email: false
Change to update Ruby versions
Change to update Ruby versions
YAML
mit
peter-murach/tty-prompt,piotrmurach/tty-prompt
c4347aaec6d92759699004d00c7f3933e45c86d5
.travis.yml
.travis.yml
language: ruby import: - travis-ci/build-configs:db-setup.yml rvm: 2.6.5 script: "bundle exec rake knapsack:rspec" addons: - snaps: - name: docker channel: latest/beta env: global: - PATH=/snap/bin:$PATH - RUBY_GC_MALLOC_LIMIT=90000000 - RUBY_GC_HEAP_FREE_SLOTS=200000 - CI_NODE_TOTAL=3 matrix: - CI_NODE_INDEX=0 - CI_NODE_INDEX=1 - CI_NODE_INDEX=2 cache: bundler services: - redis-server before_install: - 'gem update --system' jobs: include: - stage: ":ship: it to Quay.io" install: echo skip before_script: echo skip script: make ship if: commit_message =~ /ship:docker/ OR env(SHIP_DOCKER) = true deploy: - provider: script script: make ship on: branch: master condition: CI_NODE_INDEX=0
language: ruby import: - travis-ci/build-configs:db-setup.yml rvm: 2.6.5 script: "bundle exec rake knapsack:rspec" addons: - snaps: - name: docker channel: latest/beta env: global: - PATH=/snap/bin:$PATH - RUBY_GC_MALLOC_LIMIT=90000000 - RUBY_GC_HEAP_FREE_SLOTS=200000 - CI_NODE_TOTAL=3 matrix: - CI_NODE_INDEX=0 - CI_NODE_INDEX=1 - CI_NODE_INDEX=2 cache: bundler services: - redis-server before_install: - 'gem update --system' jobs: include: - stage: ":ship: it to Quay.io" install: echo skip before_script: echo skip script: make ship if: commit_message =~ /ship:docker/ OR env(SHIP_DOCKER) = true or branch = master
Remove deployment based on `CI_NODE_INDEX=0`
Remove deployment based on `CI_NODE_INDEX=0` Instead of relying on unreliable `CI_NODE_INDEX=0` to decide whether or not to deploy to Docker Hub, we make use of the existing shipping logic by simply adding the `branch` condition to the :ship: stage.
YAML
mit
travis-ci/travis-api,travis-ci/travis-api,travis-ci/travis-api
b77c26646882c56ce47309253f1820d63c6f30a7
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.4.0 branches: only: - master script: make deploy before_install: - eval "$(ssh-agent -s)" - openssl aes-256-cbc -K $encrypted_49197457e0a3_key -iv $encrypted_49197457e0a3_iv -in promcon_rsa.enc -out promcon_rsa -d - chmod 600 promcon_rsa - ssh-add promcon_rsa
sudo: false language: ruby rvm: - 2.7.2 branches: only: - master script: make deploy before_install: - eval "$(ssh-agent -s)" - openssl aes-256-cbc -K $encrypted_49197457e0a3_key -iv $encrypted_49197457e0a3_iv -in promcon_rsa.enc -out promcon_rsa -d - chmod 600 promcon_rsa - ssh-add promcon_rsa
Update Ruby version to work with dependabot-updated nokogiri version
Update Ruby version to work with dependabot-updated nokogiri version
YAML
apache-2.0
promcon/website,promcon/website,promcon/website,promcon/website,promcon/website,promcon/website
0f514446eb5cdd575c0420ea9e950fb282103077
.travis.yml
.travis.yml
language: node_js node_js: - "4.2.2" before_install: - npm install -g eslint - npm install -g complexity-report env: es6: true script: - eslint . - cr . -x /node_modules - node unittest-runner.js services: - redis-server cache: directories: - node_modules # http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/ sudo: false deploy: provider: heroku app: lokki-dev on: repo: TheSoftwareFactory/lokki-server api_key: secure: "g6gB8FPrEFIbzRKB16VwpuaObu4m53gnHLG+b5dUXBajVWC6qs2IhxUAH4Hkgo+HMEoWcEYlcbefZx6qNHX0yK6T4nqWoZ1K42BEWQWzQ6J7lk0DCJzOdHG8PM+sjByFphUtOJxasNsjJrfX1gQ9TxrCfSbdtDiP9JXukYGbA7s="
language: node_js node_js: - "4.2.2" before_install: - npm install -g eslint - npm install -g complexity-report env: es6: true script: - eslint . # complexity-report can't deal with ES6, so ignore parse errors - cr --ignoreerrors . -x /node_modules - node unittest-runner.js services: - redis-server cache: directories: - node_modules # http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/ sudo: false deploy: provider: heroku app: lokki-dev on: repo: TheSoftwareFactory/lokki-server api_key: secure: "g6gB8FPrEFIbzRKB16VwpuaObu4m53gnHLG+b5dUXBajVWC6qs2IhxUAH4Hkgo+HMEoWcEYlcbefZx6qNHX0yK6T4nqWoZ1K42BEWQWzQ6J7lk0DCJzOdHG8PM+sjByFphUtOJxasNsjJrfX1gQ9TxrCfSbdtDiP9JXukYGbA7s="
Make complexity-report ignore syntax errors
Make complexity-report ignore syntax errors Because cr doesn't support ES6, it sees ES6 features as syntax errors.
YAML
apache-2.0
TheSoftwareFactory/lokki-server,akkashaider/lokki-server,suleymanakbas91/lokki-server
0e2ca7f2edbbfd98d0fe2f57a46aca0aafe0d0ce
.travis.yml
.travis.yml
language: node_js cache: yarn node_js: - stable - "6" - "4"
language: node_js cache: yarn node_js: - stable - "8" - "6" - "4"
Add Node.js 8 to Travis CI
Add Node.js 8 to Travis CI
YAML
mit
ai/nanoevents,ai/nanoevents
2397fb1699a29dd652aafae6a65169c6b6fa8a90
.travis.yml
.travis.yml
sudo: false language: python python: - "2.7" - "3.3" - "3.4" - "3.5" env: - - LANG= - SPHINX=1 install: - python setup.py --quiet install - pip install pep8 pyflakes - if [ "$SPHINX" -eq 1 ]; then pip install sphinx; fi script: - if [ "$SPHINX" -eq 1 ]; then ./rstcheck.py -h | grep 'Sphinx is enabled'; fi - ./test_rstcheck.py - ./test.bash - pep8 ./*.py - pyflakes ./*.py
sudo: false language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" env: - - LANG= - SPHINX=1 install: - python setup.py --quiet install - pip install pep8 pyflakes - if [ "$SPHINX" -eq 1 ]; then pip install sphinx; fi script: - if [ "$SPHINX" -eq 1 ]; then ./rstcheck.py -h | grep 'Sphinx is enabled'; fi - ./test_rstcheck.py - ./test.bash - pep8 ./*.py - pyflakes ./*.py
Enable Python 3.6 in Travis
Enable Python 3.6 in Travis
YAML
mit
myint/rstcheck,sameersingh7/rstcheck,sameersingh7/rstcheck,myint/rstcheck
4104c0b57da038eab6cf3628ca3e6addef425827
.travis.yml
.travis.yml
language: php php: - 5.5.9 - 5.5 - 5.6 - 7.0 - hhvm sudo: false before_install: - travis_retry composer self-update install: - composer install --no-interaction --prefer-dist script: - vendor/bin/phpunit - vendor/bin/phpcs
language: php php: - 7.0 - hhvm sudo: false before_install: - travis_retry composer self-update install: - composer install --no-interaction --prefer-dist script: - vendor/bin/phpunit - vendor/bin/phpcs
Remove PHP 5.x from Travis.
Remove PHP 5.x from Travis.
YAML
bsd-3-clause
mybb/mybb2,xaoseric/mybb2,mybb/mybb2,mybb/mybb2,xaoseric/mybb2,Matslom/mybb2,mybb/mybb2,Matslom/mybb2,xaoseric/mybb2,Matslom/mybb2,xaoseric/mybb2,Matslom/mybb2
e2a3cb2b070f266ad6014caa0eb1928c17d4709f
.travis.yml
.travis.yml
language: ruby sudo: true compiler: - clang - gcc before_install: - apt-get -y install python-software-properties - add-apt-repository -y ppa:mnunberg/cmake - apt-get update - apt-get -y install libgtest-dev libssl-dev libev-dev libevent-dev cmake # LibCouchbase - wget -O/etc/apt/sources.list.d/couchbase.list http://packages.couchbase.com/ubuntu/couchbase-ubuntu1204.list - "wget http://packages.couchbase.com/ubuntu/couchbase.key && sudo cat couchbase.key | sudo apt-key add -" - apt-get update - apt-get install libcouchbase2 libcouchbase-dev rvm: - 2.2 - 2.1 - 2.0.0 - 1.9.3
language: ruby sudo: false compiler: - clang - gcc before_install: # LibCouchbase - wget -O/etc/apt/sources.list.d/couchbase.list http://packages.couchbase.com/ubuntu/couchbase-ubuntu1204.list - "wget http://packages.couchbase.com/ubuntu/couchbase.key && sudo cat couchbase.key | sudo apt-key add -" addons: apt: packages: - python-software-properties - cmake - libgtest-dev - libssl-dev - libev-dev - libevent-dev - libcouchbase2 - libcouchbase-dev rvm: - 2.2 - 2.1 - 2.0.0 - 1.9.3
Tweak to new (docker) architecture
Tweak to new (docker) architecture
YAML
mit
korczis/jetel,korczis/jetel,korczis/jetel
eceb97fd98c93f332c5e182b870177d8549878c5
.travis.yml
.travis.yml
sudo: false language: ruby cache: bundler branches: only: - master matrix: allow_failures: - rvm: 2.4.1 rvm: - 2.2.7 - 2.3.4 - 2.4.1
sudo: false language: ruby cache: bundler branches: only: - master rvm: - 2.3.5 - 2.4.2
Update Travis config for ruby versions
Update Travis config for ruby versions Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
YAML
mit
acrmp/foodcritic-site,acrmp/foodcritic-site,Foodcritic/foodcritic-site,Foodcritic/foodcritic-site
d4652edf4038063e5ba935e14b1063e8c7272f6b
.travis.yml
.travis.yml
language: ruby rvm: - 2.1 - 2.2 - 2.3 before_install: gem install bundler -v 1.11.2
language: ruby rvm: - 2.1.8 - 2.2.4 before_install: gem install bundler -v 1.11.2
Revert "Add Ruby 2.3 to Travis matrix"
Revert "Add Ruby 2.3 to Travis matrix" This reverts commit 04eba7e527ec92d7d5833246a6d3f8be9a493241.
YAML
mit
mattbrictson/bundleup,mattbrictson/bundleup
cb3250983c18fb8a8215eff53db51d9970c3f309
.travis.yml
.travis.yml
language: objective-c cache: directories: - /Library/Caches/Homebrew - $HOME/.cache/pip before_install: - brew update - brew install ansible script: - ansible-playbook site.yml --syntax-check - ansible-playbook site.yml -vvv
language: ruby os: osx rvm: system cache: directories: - /Library/Caches/Homebrew - $HOME/.cache/pip before_install: - brew update - brew install ansible script: - ansible-playbook site.yml --syntax-check - ansible-playbook site.yml -vvv
Switch Travis language to ruby
Switch Travis language to ruby Like Homebrew
YAML
mit
fabian/dotfiles
ca977f48b048ead45207f581fe767ac7f223db70
.travis.yml
.travis.yml
language: rust rust: - nightly - beta - 1.8.0 script: - cargo test - cargo doc --no-deps
language: rust rust: - nightly - beta - 1.8.0 cache: apt before_script: - source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list - wget -qO- http://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add - - sudo apt-get update - sudo apt-get install rethinkdb - rethinkdb > /dev/null 2>&1 & - rethinkdb --port-offset 1 --directory rethinkdb_data1 --join localhost:29016 > /dev/null 2>&1 & - rethinkdb --port-offset 2 --directory rethinkdb_data2 --join localhost:29016 > /dev/null 2>&1 & - rethinkdb --port-offset 3 --directory rethinkdb_data3 --join localhost:29016 > /dev/null 2>&1 & script: - cargo test - cargo doc --no-deps
Install RethinkDB for running tests
Install RethinkDB for running tests
YAML
apache-2.0
rust-rethinkdb/reql,rust-rethinkdb/reql,rust-rethinkdb/reql,rust-rethinkdb/reql,rust-rethinkdb/reql,rust-rethinkdb/reql
dfd4c847532de69bb24285328d15dfd60a86f8dc
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 - 2.1.1 - jruby-19mode - rbx-2 env: SERMONAUDIO_MEMBER_ID=example SERMONAUDIO_PASSWORD=example before_install: - gem install nokogiri -v 1.6.2.1 -- --use-system-libraries bundler_args: --without development notifications: email: false
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 - 2.1.1 - jruby-19mode - rbx-2 env: SERMONAUDIO_MEMBER_ID=example SERMONAUDIO_PASSWORD=example before_install: - gem install nokogiri -v 1.6.6.2 -- --use-system-libraries bundler_args: --without development notifications: email: false
Install correct nokogiri using system libraries
Install correct nokogiri using system libraries
YAML
mit
mattdbridges/sermonaudio
c1ea543d77dc6838c89d3004203d50b2e8127a1a
.travis.yml
.travis.yml
### Project specific config ### language: generic env: global: - APM_TEST_PACKAGES="" - ATOM_LINT_WITH_BUNDLED_NODE="true" matrix: - ATOM_CHANNEL=stable - ATOM_CHANNEL=beta ### Generic setup follows ### script: - curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh - chmod u+x build-package.sh - ./build-package.sh notifications: email: on_success: never on_failure: change branches: only: - master git: depth: 10 sudo: false dist: trusty addons: apt: packages: - build-essential - fakeroot - git - libsecret-1-dev
### Project specific config ### language: generic env: global: - APM_TEST_PACKAGES="" - ATOM_LINT_WITH_BUNDLED_NODE="true" matrix: - ATOM_CHANNEL=stable - ATOM_CHANNEL=beta - ATOM_CHANNEL=dev ### Generic setup follows ### script: - curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh - chmod u+x build-package.sh - ./build-package.sh notifications: email: on_success: never on_failure: change branches: only: - master git: depth: 10 sudo: false dist: trusty addons: apt: packages: - build-essential - fakeroot - git - libsecret-1-dev
Add Atom dev channel to CI matrix
Add Atom dev channel to CI matrix
YAML
mit
atom/wrap-guide
ca8438a4620ba1da1aa4ac8d62bc6146974347ee
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.5" branches: only: - master before_install: # http://conda.pydata.org/docs/travis.html - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh - 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 # Useful for debugging any issues with conda - conda info -a - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION - source activate test-environment - conda install numpy pytest scipy - pip install coverage pytest pytest-cov codecov install: - pip install --no-deps . # Test installation correctness script: - py.test -vv # Test against installed code after_success: # Uninstall to test coverage against sources - pip uninstall pyfme -y - pip install --no-deps -e . - py.test --cov - codecov
language: python python: - "2.7" - "3.5" branches: only: - master before_install: # http://conda.pydata.org/docs/travis.html - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh - 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 # Useful for debugging any issues with conda - conda info -a - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION - source activate test-environment - conda install numpy scipy matplotlib - pip install coverage pytest pytest-cov codecov install: - pip install --no-deps . # Test installation correctness script: - py.test -vv # Test against installed code after_success: # Uninstall to test coverage against sources - pip uninstall pyfme -y - pip install --no-deps -e . - py.test --cov - codecov
Fix dependencies in Travis script
Fix dependencies in Travis script
YAML
mit
miqlar/PyFME,AeroPython/PyFME,aeroaks/PyFME,olrosales/PyFME,JuanMatSa/PyFME,AlexS12/PyFME,Juanlu001/PyFME
76ef90ed3aea06224a6bf9a0b5a9e3352527d910
.travis.yml
.travis.yml
dist: xenial language: python python: - 3.6 - 3.7 - 3.8 env: - DJANGO_VERSION=2.2.8 - DJANGO_VERSION=3.0 - DJANGO_VERSION=3.1 install: - pip install -q Django==$DJANGO_VERSION - pip install 'django-jsonfield >= 1.1.0, < 2.0.0a0' coverage script: coverage run --source=. ./runtests.py after_success: - bash <(curl -s https://codecov.io/bash) jobs: include: - stage: checks & publish before_install: pip install poetry install: poetry install script: poetry run inv check.all deploy: provider: script script: poetry publish --build on: tags: true
dist: xenial language: python python: - 3.6 - 3.7 - 3.8 env: - DJANGO_VERSION=2.2.8 - DJANGO_VERSION=3.0 - DJANGO_VERSION=3.1 install: - pip install -q Django==$DJANGO_VERSION - pip install 'django-jsonfield >= 1.1.0, < 2.0.0a0' coverage script: coverage run --source=. ./runtests.py after_success: - bash <(curl -s https://codecov.io/bash) jobs: include: - stage: checks & publish python: 3.8 env: DJANGO_VERSION=3.1 before_install: pip install poetry install: poetry install script: poetry run inv check.all deploy: provider: script script: poetry publish --build on: tags: true
Use latest supported Python/Django versions for checks and publishing
Use latest supported Python/Django versions for checks and publishing
YAML
isc
RevolutionTech/django-conditions,RevolutionTech/django-conditions,RevolutionTech/django-conditions
dfec67c1036e46ffc359901a34e5217c27295e2e
.travis.yml
.travis.yml
language: node_js node_js: - '6.0' - '4.0' - '0.12' - '0.10' before_script: - npm run lint
language: node_js node_js: - '12.0' - '10.0' - '8.0' - '6.0' before_script: - npm run lint
Support node v6 and up
Support node v6 and up
YAML
mit
flickr/flconf,flickr/flconf
581bdf66a18904f298b0c1381c1e91015ca9f2b3
.travis.yml
.travis.yml
sudo: required services: - docker language: java jdk: - oraclejdk8 script: - mvn -Pdocker clean verify addons: - googlechrome before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 # give xvfb some time to start
sudo: required services: - docker language: java jdk: - oraclejdk8 before_script: - export MAVEN_SKIP_RC=true - export MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=512m" - "export PATH=`pwd`/bin:$PATH" - echo $HOME - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" script: - mvn -Pdocker clean verify
Fix Xvfb setup on TravisCI
Fix Xvfb setup on TravisCI
YAML
mit
hypery2k/angular-spring-boot-sample,hypery2k/angular-spring-boot-sample,hypery2k/angular-spring-boot-sample,hypery2k/angular-spring-boot-sample
7cac6b314e1ae7a2008386241533073e8f0e3f8c
.travis.yml
.travis.yml
language: ruby env: matrix: - "DB_ADAPTER=sqlite3" - "DB_ADAPTER=postgresql" - "DB_ADAPTER=mysql2" rvm: - 2.2.8 - 2.3.5 - 2.4.2 - ruby-head before_install: - gem update --system - gem install bundler before_script: - ./bin/literals - bundle exec appraisal install script: 'bundle exec appraisal rake' services: - mysql - postgresql
language: ruby env: matrix: - "DB_ADAPTER=sqlite3" - "DB_ADAPTER=postgresql" - "DB_ADAPTER=mysql2" rvm: - 2.2.9 - 2.3.6 - 2.4.3 - 2.5.0 before_install: - gem update --system - gem install bundler before_script: - ./bin/literals - bundle exec appraisal install script: 'bundle exec appraisal rake' services: - mysql - postgresql
Update Ruby versions to test against.
Update Ruby versions to test against.
YAML
mit
pat/combustion,pat/combustion,pat/combustion
2bb39de3db05260656ef156425d174a38119e5e1
.travis.yml
.travis.yml
language: go go: - "1.9.x" - "1.10.x" - master before_install: - go get github.com/mitchellh/gox - go get github.com/golang/dep/cmd/dep - dep ensure before_deploy: - go get github.com/tcnksm/ghr script: make all deploy: - provider: script script: ./deploy.sh skip_cleanup: true on: go: "1.10.x" tags: true
language: go go: - "1.9.x" - "1.10.1" - master before_install: - go get github.com/mitchellh/gox - go get github.com/golang/dep/cmd/dep - dep ensure before_deploy: - go get github.com/tcnksm/ghr script: make all deploy: - provider: script script: ./deploy.sh skip_cleanup: true on: go: "1.10.1" tags: true
Set a fixed Golang version in Travis-CI.
Set a fixed Golang version in Travis-CI. The 1.10.x syntax doesn't seem to work for the `deploy.on` clause.
YAML
apache-2.0
VirusTotal/vt-cli,VirusTotal/vt-cli
7e02a369451bb4e1906f253bfdebeac03acaf90f
.travis.yml
.travis.yml
language: node_js node_js: "6" script: bash test.sh
language: java jdk: - oraclejdk8 env: - NODE_VERSION=6 install: - nvm install $NODE_VERSION - npm install script: - nvm use $NODE_VERSION - bash test.sh
Use JDK 8 on TravisCI
Use JDK 8 on TravisCI
YAML
mit
Toilal/vue-webpack-template,Toilal/vue-webpack-template,Toilal/vue-webpack-template,Toilal/vue-webpack-template
5ac5100c8ba8e0b2b58ac54e3ad158b5e11bb7b6
.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 - sudo apt-get update --fix-missing -qq - sudo apt-get install gfortran liblapack-dev # use miniconda to install numpy/scipy, to avoid lengthy build from source - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda/bin:$PATH - conda update --yes conda # The next couple lines fix a crash with multiprocessing on Travis and are not specific to using Miniconda - sudo rm -rf /dev/shm - sudo ln -s /run/shm /dev/shm # Install packages install: - conda install --yes python=$TRAVIS_PYTHON_VERSION coverage nose numpy scipy matplotlib pip - pip install coveralls - pip install slycot # command to run tests script: - coverage run setup.py test after_success: - coveralls
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 - sudo apt-get update --fix-missing -qq - sudo apt-get install gfortran liblapack-dev # 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 info -a # Install packages install: - conda install --yes python=$TRAVIS_PYTHON_VERSION coverage nose numpy scipy matplotlib pip - pip install coveralls - pip install slycot # command to run tests script: - coverage run setup.py test after_success: - coveralls
Make Travis build consistent with anaconda docs
Make Travis build consistent with anaconda docs http://conda.pydata.org/docs/travis.html
YAML
bsd-3-clause
murrayrm/python-control,roryyorke/python-control,python-control/python-control
fd577b4c5f943ab45b1599df34bf3ce08695dba1
.travis.yml
.travis.yml
language: ruby # cache: bundler # We would like to enable travis' bundler cache (cache: bundler) but for some reason # travis installs our bundle under the test directory (test/vendor/bundle/*) and, as a # result, travis tries to run all of the tests of all of our dependencies! # TODO: There's probably a way to configure the bundle path before_install: - gem update --system - gem update bundler rvm: - 2.1.9 - 2.2.5 - 2.3.1 gemfile: - test/gemfiles/Gemfile.rails-3.2.x - test/gemfiles/Gemfile.rails-4.0.x - test/gemfiles/Gemfile.rails-4.1.x - test/gemfiles/Gemfile.rails-4.2.x - test/gemfiles/Gemfile.rails-5.0.x matrix: exclude: - rvm: 2.1.9 gemfile: test/gemfiles/Gemfile.rails-5.0.x - rvm: 2.2.5 gemfile: test/gemfiles/Gemfile.rails-3.2.x - rvm: 2.3.1 gemfile: test/gemfiles/Gemfile.rails-3.2.x fast_finish: true sudo: false
language: ruby # cache: bundler # We would like to enable travis' bundler cache (cache: bundler) but for some reason # travis installs our bundle under the test directory (test/vendor/bundle/*) and, as a # result, travis tries to run all of the tests of all of our dependencies! # TODO: There's probably a way to configure the bundle path before_install: - gem update --system - gem update bundler rvm: - 2.1.10 - 2.2.6 - 2.3.3 gemfile: - test/gemfiles/Gemfile.rails-3.2.x - test/gemfiles/Gemfile.rails-4.0.x - test/gemfiles/Gemfile.rails-4.1.x - test/gemfiles/Gemfile.rails-4.2.x - test/gemfiles/Gemfile.rails-5.0.x matrix: allow_failures: - gemfile: test/gemfiles/Gemfile.rails-master exclude: - rvm: 2.1.10 gemfile: test/gemfiles/Gemfile.rails-5.0.x - rvm: 2.2.6 gemfile: test/gemfiles/Gemfile.rails-3.2.x - rvm: 2.3.3 gemfile: test/gemfiles/Gemfile.rails-3.2.x fast_finish: true sudo: false
Test against latest released rubies
Test against latest released rubies
YAML
mit
binarylogic/authlogic
97c47acfe973501360083a50ee7b9690cf72c634
.travis.yml
.travis.yml
sudo: required language: perl6 os: - linux - osx perl6: - 2016.02 - latest install: - echo $TRAVIS_OS_NAME - rakudobrew build panda - panda installdeps . e before_script: # Start xvfb for Firefox headless testing and give it some time to start - if [ "$TRAVIS_OS_NAME" == "linux" ]; then export DISPLAY=:99.0 ; fi - if [ "$TRAVIS_OS_NAME" == "linux" ]; then sh -e /etc/init.d/xvfb start ; fi - if [ "$TRAVIS_OS_NAME" == "linux" ]; then sleep 3 ; fi - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update ; fi - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install phantomjs ; fi # Show PhantomJS version - phantomjs --version script: prove -v -e "perl6 -Ilib" t/
sudo: required language: perl6 os: - linux - osx perl6: - 2016.02 - latest install: - echo $TRAVIS_OS_NAME - rakudobrew build panda - panda installdeps . before_script: # Start xvfb for Firefox headless testing and give it some time to start - if [ "$TRAVIS_OS_NAME" == "linux" ]; then export DISPLAY=:99.0 ; fi - if [ "$TRAVIS_OS_NAME" == "linux" ]; then sh -e /etc/init.d/xvfb start ; fi - if [ "$TRAVIS_OS_NAME" == "linux" ]; then sleep 3 ; fi - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update ; fi - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install phantomjs ; fi # Show PhantomJS version - phantomjs --version script: prove -v -e "perl6 -Ilib" t/
Fix typo from previous commit
Fix typo from previous commit
YAML
mit
azawawi/perl6-selenium-webdriver
1d6ea888d1c56eca219bb31d29a883bec97cf8cf
docs/_config.yml
docs/_config.yml
name: resol-vbus Documentation markdown: redcarpet pygments: true redcarpet: extensions: [tables, with_toc_data]
name: resol-vbus Documentation markdown: kramdown kramdown: input: GFM
Revise docs configuration to prepare for upcoming GH Pages update.
Revise docs configuration to prepare for upcoming GH Pages update.
YAML
mit
danielwippermann/resol-vbus,Thorsten71/resol-vbus
104b18746c23e4b3fa301c4636dd30279f01e689
docs/_config.yml
docs/_config.yml
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely edit after that. If you find # yourself editing this file very often, consider using Jekyll's data files # feature for the data you need to update frequently. # # For technical reasons, this file is *NOT* reloaded automatically when you use # 'bundle exec jekyll serve'. If you change this file, please restart the server process. # Site settings # These are used to personalize your new site. If you look in the HTML files, # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. # You can create any custom variable you would like, and they will be accessible # in the templates via {{ site.myvariable }}. title: Your awesome title email: your-email@domain.com description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description. baseurl: "" # the subpath of your site, e.g. /blog url: "" # the base hostname & protocol for your site, e.g. http://example.com google_analytics: UA-88641107-1 twitter_username: jekyllrb github_username: jekyll # Build settings markdown: kramdown theme: minima gems: - jekyll-feed exclude: - Gemfile - Gemfile.lock
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely edit after that. If you find # yourself editing this file very often, consider using Jekyll's data files # feature for the data you need to update frequently. # # For technical reasons, this file is *NOT* reloaded automatically when you use # 'bundle exec jekyll serve'. If you change this file, please restart the server process. # Site settings # These are used to personalize your new site. If you look in the HTML files, # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. # You can create any custom variable you would like, and they will be accessible # in the templates via {{ site.myvariable }}. title: Your awesome title email: your-email@domain.com description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description. baseurl: "/analyticalmetlx" # the subpath of your site, e.g. /blog url: "" # the base hostname & protocol for your site, e.g. http://example.com google_analytics: UA-88641107-1 twitter_username: jekyllrb github_username: jekyll # Build settings markdown: kramdown theme: minima gems: - jekyll-feed exclude: - Gemfile - Gemfile.lock
Add baseurl to fix relative links
Add baseurl to fix relative links
YAML
apache-2.0
StackableRegiments/analyticalmetlx,StackableRegiments/analyticalmetlx,StackableRegiments/analyticalmetlx,StackableRegiments/analyticalmetlx
854d3e53635542ae62e9c1dccc13fcd322647b49
docs/_config.yml
docs/_config.yml
theme: jekyll-theme-hacker
theme: jekyll-theme-hacker title: OpenKh description: This is a project centralizes all the technical knowledge of Kingdom Hearts series in one place, providing documentation, tools, code libraries and the foundation for modding the commercial games. google_analytics: UA-56422469-2
Update homepage with title, description and analytics
Update homepage with title, description and analytics
YAML
mit
Xeeynamo/KingdomHearts
e8b9a63f8e2198aee1fc4b6d78fad3988aa03e58
packages/is/iso3166-country-codes.yaml
packages/is/iso3166-country-codes.yaml
homepage: '' changelog-type: '' hash: 7e03f803c2db9d2fd3cedab44957173d1cdef103f9e29b50e00949b89a0329b1 test-bench-deps: {} maintainer: jon.fairbairn@cl.cam.ac.uk synopsis: A datatype for ISO 3166 country codes changelog: '' basic-deps: base: ==4.* all-versions: - '0.1' - '0.20090527.1' - '0.20101223.3' - '0.20110810.3' - '0.20110810.4' - '0.20111111.4' - '0.20130302.4' - '0.20140203.6' - '0.20140203.7' - '0.20140203.8' author: Jón Fairbairn latest: '0.20140203.8' description-type: haddock description: ! 'Defines datatype CountryCode that has a two letter constructor corresponding to each of the two letter ISO 3166 country codes, and mappings from that type to the official name of the country.' license-name: LGPL
homepage: '' changelog-type: '' hash: ee03b7547119da3be9afb040b2e93d06ad65d63c3bc401044d1c443c77bd0158 test-bench-deps: {} maintainer: jon.fairbairn@cl.cam.ac.uk synopsis: A datatype for ISO 3166 country codes changelog: '' basic-deps: base: ! '>=4 && <4.4 || >=4.6 && <5' all-versions: - '0.1' - '0.20090527.1' - '0.20101223.3' - '0.20110810.3' - '0.20110810.4' - '0.20111111.4' - '0.20130302.4' - '0.20140203.6' - '0.20140203.7' - '0.20140203.8' author: Jón Fairbairn latest: '0.20140203.8' description-type: haddock description: ! 'Defines datatype CountryCode that has a two letter constructor corresponding to each of the two letter ISO 3166 country codes, and mappings from that type to the official name of the country.' license-name: LGPL
Update from Hackage at 2017-03-27T10:39:05Z
Update from Hackage at 2017-03-27T10:39:05Z
YAML
mit
commercialhaskell/all-cabal-metadata
65547434fffa339dbf17b946bc3cf0cf905e8911
docker/test.yml
docker/test.yml
app: extends: file: common.yml service: app image: "mycompany/myapp-test:latest" links: - db volumes_from: - cache volumes: - ../src:/application environment: DJANGO_SETTINGS_MODULE: mysite.settings.test db: extends: file: common.yml service: db cache: image: mycompany/myapp-test:latest volumes: - /tmp/mycompany_myapp_cache:/cache entrypoint: "true" agent: extends: file: common.yml service: agent links: - db builder: image: mycompany/myapp-builder:latest volumes: - ../src:/application - ../target:/wheelhouse volumes_from: - cache
app: extends: file: common.yml service: app image: "mycompany/myapp-test:latest" links: - db volumes_from: - cache volumes: - ../src:/application environment: DJANGO_SETTINGS_MODULE: mysite.settings.test MYSQL_USER: root MYSQL_PASSWORD: pass1234 db: extends: file: common.yml service: db cache: image: mycompany/myapp-test:latest volumes: - /tmp/mycompany_myapp_cache:/cache entrypoint: "true" agent: extends: file: common.yml service: agent links: - db builder: image: mycompany/myapp-builder:latest volumes: - ../src:/application - ../target:/wheelhouse volumes_from: - cache
Configure application to use MySQL root user/password
Configure application to use MySQL root user/password
YAML
mit
cloudhotspot/pypackage-docker,cloudhotspot/pypackage-docker,cloudhotspot/pypackage-docker,cloudhotspot/pypackage-docker
774fe63486f6aa947dfe2e4f1d122c4fa48db080
docs/antora.yml
docs/antora.yml
name: rubocop title: RuboCop version: 0.85 nav: - modules/ROOT/nav.adoc
name: rubocop title: RuboCop version: master nav: - modules/ROOT/nav.adoc
Switch back docs version to master
Switch back docs version to master
YAML
mit
jmks/rubocop,bbatsov/rubocop,tdeo/rubocop,deivid-rodriguez/rubocop,rrosenblum/rubocop,rrosenblum/rubocop,deivid-rodriguez/rubocop,tdeo/rubocop,jmks/rubocop,tejasbubane/rubocop,tejasbubane/rubocop,bbatsov/rubocop,deivid-rodriguez/rubocop,jmks/rubocop,maxjacobson/rubocop,maxjacobson/rubocop,maxjacobson/rubocop,tdeo/rubocop,tejasbubane/rubocop,rrosenblum/rubocop
19f3ddcf04748dd5c01b93ff387815df634149bc
ci/config.yml
ci/config.yml
global: marketplace-ami: false owner: quickstart-eng@amazon.com qsname: quickstart-informatica-bdm regions: - ap-northeast-1 - ap-northeast-2 - ap-south-1 - ap-southeast-1 - ap-southeast-2 - eu-central-1 - eu-west-1 - sa-east-1 - us-east-1 - us-west-1 - us-west-2 reporting: true tests: quickstart-informatica-bdmt1: parameter_input: quickstart-informatica-bdm-example-params1.json template_file: quickstart-informatica-bdm-example1.template quickstart-informatica-bdmt2: parameter_input: quickstart-informatica-bdm-example-params2.json template_file: quickstart-informatica-bdm-example2.template
global: marketplace-ami: true owner: quickstart-eng@amazon.com qsname: quickstart-informatica-bdm regions: - ap-northeast-1 - ap-northeast-2 - ap-south-1 - ap-southeast-1 - ap-southeast-2 - eu-central-1 - eu-west-1 - sa-east-1 - us-east-1 - us-east-2 - us-west-1 - us-west-2 reporting: true tests: master: parameter_input: informatica-bdm-master.json template_file: informatica-bdm-master.template
Update tests and add Ohio region
Update tests and add Ohio region
YAML
apache-2.0
matanvr/quickstart-informatica-bdm
8db861d67f257a3e9ac1790ea06d4e2a7a193a6c
stack.yml
stack.yml
version: '3.2' services: db: image: postgres restart: always volumes: - db:/var/lib/postgresql/data environment: - POSTGRES_DB=nextcloud - POSTGRES_USER=nextcloud - POSTGRES_PASSWORD=nextcloud app: image: nextcloud restart: always ports: - 8080:80 volumes: - nextcloud:/var/www/html environment: - POSTGRES_HOST=db - POSTGRES_DB=nextcloud - POSTGRES_USER=nextcloud - POSTGRES_PASSWORD=nextcloud depends_on: - db cron: image: nextcloud restart: always volumes: - nextcloud:/var/www/html user: www-data entrypoint: | bash -c 'bash -s <<EOF trap "break;exit" SIGHUP SIGINT SIGTERM while [ ! -f /var/www/html/config/config.php ]; do sleep 1 done while true; do php -f /var/www/html/cron.php sleep 15m done EOF' depends_on: - db volumes: db: nextcloud:
version: '3.2' services: db: image: postgres restart: always volumes: - db:/var/lib/postgresql/data environment: - POSTGRES_DB=nextcloud - POSTGRES_USER=nextcloud - POSTGRES_PASSWORD=nextcloud app: image: nextcloud restart: always ports: - 8080:80 volumes: - nextcloud:/var/www/html environment: - POSTGRES_HOST=db - POSTGRES_DB=nextcloud - POSTGRES_USER=nextcloud - POSTGRES_PASSWORD=nextcloud depends_on: - db cron: image: nextcloud restart: always volumes: - nextcloud:/var/www/html entrypoint: /cron.sh depends_on: - db volumes: db: nextcloud:
Use cron.sh for the cron container
Use cron.sh for the cron container
YAML
agpl-3.0
pebcac/docker,pebcac/docker
214b678234c8b0de73c41b49e2f16ce93437673a
data/transition-sites/statistics.yml
data/transition-sites/statistics.yml
--- site: statistics whitehall_slug: uk-statistics-authority redirection_date: 1st September 2014 homepage: https://www.gov.uk/government/statistics/announcements tna_timestamp: 20140506180634 #Dummy timestamp, full recrawl to come host: www.statistics.gov.uk aliases: - statistics.gov.uk # options: --query-string qstring1:qstring2:qstring3 # Full query string param analysis to come extra_organisation_slugs: - office-for-national-statistics
--- site: statistics whitehall_slug: uk-statistics-authority redirection_date: 1st September 2014 homepage: https://www.gov.uk/government/statistics/announcements tna_timestamp: 20140506180634 #Dummy timestamp, full recrawl to come host: www.statistics.gov.uk aliases: - statistics.gov.uk # options: --query-string qstring1:qstring2:qstring3 # Full query string param analysis to come extra_organisation_slugs: - office-for-national-statistics homepage_title: Statistical Announcements
Add the homepage_title field as 'Statistical Announcements'
Add the homepage_title field as 'Statistical Announcements'
YAML
mit
alphagov/transition-config,alphagov/transition-config
aa2bce7e5711bcf25d9382c9af2089955d3e8b6f
generators/app/templates/travis.yml
generators/app/templates/travis.yml
language: node_js node_js: - node cache: directories: - node_modules <% if (!includeReact) { -%> # installs PhantomJS v2 # Travis CI uses PhantomJS v1.9.x, which has a poor JS support # https://mediocre.com/forum/topics/phantomjs-2-and-travis-ci-we-beat-our-heads-against-a-wall-so-you-dont-have-to before_install: - mkdir travis-phantomjs - wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 - tar -xvf $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -C $PWD/travis-phantomjs - export PATH=$PWD/travis-phantomjs:$PATH <% } -%>
language: node_js node_js: - stable cache: directories: - node_modules <% if (!includeReact) { -%> # installs PhantomJS v2 # Travis CI uses PhantomJS v1.9.x, which has a poor JS support # https://mediocre.com/forum/topics/phantomjs-2-and-travis-ci-we-beat-our-heads-against-a-wall-so-you-dont-have-to before_install: - mkdir travis-phantomjs - wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 - tar -xvf $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -C $PWD/travis-phantomjs - export PATH=$PWD/travis-phantomjs:$PATH <% } -%>
Set generated Travis Node version to latest stable
Set generated Travis Node version to latest stable
YAML
mit
silvenon/generator-wbp,silvenon/generator-wbp
e78ebe63fb005e6cb447bb4f710504280578815d
packages/ge/geom2d.yaml
packages/ge/geom2d.yaml
homepage: '' changelog-type: '' hash: 0c28827635e4d2d5349a5be3554780cbeeed37c1eb6a658e1c1397c853c42513 test-bench-deps: base: ==4.8.* ieee754: ==0.7.* QuickCheck: ==2.7.* maintainer: sebastian.jordan.mail@googlemail.com synopsis: package for geometry in euklidean 2d space changelog: '' basic-deps: base: ! '>=4.8 && <4.9' ieee754: ! '>=0.7 && <0.8' QuickCheck: ! '>=2.7 && <2.8' all-versions: - '0.1.0.1' - '0.1.2.0' - '0.1.2.1' author: Sebastian Jordan latest: '0.1.2.1' description-type: haddock description: ! 'This package provides tools for dealing with geometric objects in 2D space.' license-name: GPL-3
homepage: '' changelog-type: '' hash: 396101fdca1fc769f921e57e6d8d7e208037d45de340369f92ac5a0e9a587d12 test-bench-deps: base: ==4.8.* ieee754: ==0.7.* QuickCheck: ! '>=2.7 && <2.9' maintainer: sebastian.jordan.mail@googlemail.com synopsis: package for geometry in euklidean 2d space changelog: '' basic-deps: base: ! '>=4.8 && <4.9' ieee754: ! '>=0.7 && <0.8' QuickCheck: ! '>=2.7 && <2.9' all-versions: - '0.1.0.1' - '0.1.2.0' - '0.1.2.1' - '0.1.3.1' author: Sebastian Jordan latest: '0.1.3.1' description-type: haddock description: ! 'This package provides tools for dealing with geometric objects in 2D space.' license-name: GPL-3
Update from Hackage at 2015-06-12T22:22:38+0000
Update from Hackage at 2015-06-12T22:22:38+0000
YAML
mit
commercialhaskell/all-cabal-metadata
9282e589802341d67420d872f10690356eb3c210
playbook/roles/nginx/defaults/main.yml
playbook/roles/nginx/defaults/main.yml
--- nginx_real_ip: 127.0.0.1 nginx_papertrail_follow: - /var/log/drupal.log - /var/log/nginx/http-*error.log apps: - server_name: www.test.com server_aliases: bob.com server_forwards: test.com http_port: 8080 docroot: /var/www/test.com/current - server_name: test2.com server_aliases: www.example35.com www.example53.com http_port: 8080 docroot: /var/www/test2.com/current papertrail_enabled: False # Default distribution CentOS 7 distro: "centos7" nginx_conf: - client_header_timeout: 10 - client_body_timeout: 120 - send_timeout: 120 - keepalive_timeout: "15 10" - client_max_body_size: 100M - client_body_buffer_size: 128k - proxy_read_timeout: 60
--- nginx_real_ip: 127.0.0.1 nginx_papertrail_follow: - /var/log/drupal.log - /var/log/nginx/http-*error.log apps: - server_name: www.test.com server_aliases: bob.com server_forwards: test.com http_port: 8080 docroot: /var/www/test.com/current - server_name: test2.com server_aliases: www.example35.com www.example53.com http_port: 8080 docroot: /var/www/test2.com/current papertrail_enabled: False # Default distribution CentOS 7 distro: "centos7" nginx_conf: client_header_timeout: 10 client_body_timeout: 120 send_timeout: 120 keepalive_timeout: "15 10" client_max_body_size: 100M client_body_buffer_size: 128k proxy_read_timeout: 60
Correct format for nginx_conf defaults example dictionary.
Correct format for nginx_conf defaults example dictionary.
YAML
mit
wunderkraut/WunderMachina,wunderkraut/WunderMachina,wunderkraut/WunderMachina,wunderkraut/WunderMachina
accedae25f9fe4cd5121ff2c67db4ab0927b4d9c
ansible-playbooks/ansible-playbook-kvm-cloud-init-vm/playbook.yaml
ansible-playbooks/ansible-playbook-kvm-cloud-init-vm/playbook.yaml
- name: kvm_cloud_init_vm playbook gather_facts: false hosts: localhost tasks: - import_role: name: ansible-role-kvm-cloud-init-vm vars: kvm_vm_pool_dir: /home/jooho/KVM vm_data_dir: /home/jooho/kvm/vms vm_network_br: okd_virbr0
- name: kvm_cloud_init_vm playbook gather_facts: false hosts: localhost tasks: - import_role: name: Jooho.kvm-cloud-init-vm vars: kvm_vm_pool_dir: /home/jooho/KVM vm_data_dir: /home/jooho/kvm/vms vm_network_br: okd
Change role name and network br variable
Change role name and network br variable
YAML
apache-2.0
Jooho/ansible-cheat-sheet,Jooho/ansible-cheat-sheet
d9a7038c16bd1c1cf5dcc7dc1effb7a7df1bb8d1
.github/workflows/frontend.yml
.github/workflows/frontend.yml
name: Frontend on: pull_request jobs: eslint: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - name: ESLint checks uses: ./.github/eslint-action env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} check-and-preview: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - uses: actions/setup-python@v1 with: python-version: '3.7.4' - name: Install dependencies working-directory: backend run: pip install -r requirements/prod.txt - run: yarn working-directory: frontend - run: | cd backend/ DEBUG=True SECRET_KEY=DEMO python manage.py migrate DEBUG=True SECRET_KEY=DEMO python manage.py loaddata demodata/conferences.json DEBUG=True SECRET_KEY=DEMO python manage.py runserver & cd ../frontend/ yarn build yarn codegen - run: yarn tsc working-directory: frontend - uses: netlify/actions/cli@master with: args: deploy --dir=frontend/public/ env: NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
name: Frontend on: pull_request jobs: eslint: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - name: ESLint checks uses: ./.github/eslint-action env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} check-and-preview: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - uses: actions/setup-python@v1 with: python-version: '3.7.4' - name: Install dependencies working-directory: backend run: pip install -r requirements/prod.txt - run: yarn working-directory: frontend - run: | cd backend/ DEBUG=True SECRET_KEY=DEMO python manage.py migrate DEBUG=True SECRET_KEY=DEMO python manage.py loaddata demodata/conferences.json DEBUG=True SECRET_KEY=DEMO python manage.py runserver & cd ../frontend/ yarn build yarn codegen - run: yarn tsc working-directory: frontend - uses: netlify/actions/cli@master with: args: deploy --dir=frontend/public env: NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} preview-docs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - run: yarn working-directory: frontend - run: yarn build:docz working-directory: frontend - uses: netlify/actions/cli@master with: args: deploy --dir=frontend/.docz/dist env: NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID_DOCS }}
Build docs on github actions
Build docs on github actions
YAML
mit
patrick91/pycon,patrick91/pycon
510fb8de0c7df2e2e0490aeb0aef463f19fb739a
plugins/tempest/vars/tests/neutron.yml
plugins/tempest/vars/tests/neutron.yml
--- test_dict: test_regex: '' whitelist: - "^tempest.api.network.*" - "^tempest.scenario.test_network_advanced_server_ops" - "^tempest.scenario.test_network_basic_ops" - "^tempest.scenario.test_network_v6" - "^tempest.scenario.test_security_groups_basic_ops" - "^neutron.tests.tempest.*" - "^neutron_tempest_plugin.*" - "neutron_plugin.*" plugins: neutron-tempest-plugin: repo: "http://git.openstack.org/openstack/neutron-tempest-plugin" package: 10: "python-neutron-tests" 11: "python-neutron-tests" 12: "python-neutron-tests" 13: "python2-neutron-tests-tempest" default: "python-neutron-tests-tempest"
--- test_dict: test_regex: '' whitelist: - "^tempest.api.network.*" - "^tempest.scenario.test_network_advanced_server_ops" - "^tempest.scenario.test_network_basic_ops" - "^tempest.scenario.test_network_v6" - "^tempest.scenario.test_security_groups_basic_ops" - "^neutron.tests.tempest.*" - "^neutron_tempest_plugin.*" - "neutron_plugin.*" plugins: neutron-tempest-plugin: repo: "http://git.openstack.org/openstack/neutron-tempest-plugin" package: 10: "python-neutron-tests" 11: "python-neutron-tests" 12: "python-neutron-tests" 13: "python2-neutron-tests-tempest" 15: "python3-neutron-tests-tempest" default: "python-neutron-tests-tempest"
Add package name variable for OSP 15
[Tempest][Neutron] Add package name variable for OSP 15 In OSP 15 the neutron tests package starts with 'python3-'. Change-Id: I5496d7ca3b28bccdbe5e1171ba2dafc37cd83115
YAML
apache-2.0
redhat-openstack/infrared,redhat-openstack/infrared,redhat-openstack/infrared
2d02a6858652c3689dde9cfa82fbc12b2ecf316a
.appveyor.yml
.appveyor.yml
environment: matrix: - platorm: x64 configuration: Release arch: "x64" VS_GEN: "Win64" build_script: - mkdir build - cd build - cmake -DTESTS=ON -DEXAMPLES=ON -G "Visual Studio 14 2015 Win64" .. - cmake --build . --target all - ctest - cd ..
environment: matrix: - platorm: x64 configuration: Release arch: "x64" VS_GEN: "Win64" build_script: - mkdir build - cd build - cmake -DTESTS=ON -DEXAMPLES=ON -G "Visual Studio 14 2015 %VS_GEN%" .. - msbuild all.sln /p:Configuration=%Configuration%;Platform=%arch% /maxcpucount - ctest - cd ..
Replace windows build with msbuild
Replace windows build with msbuild
YAML
bsd-3-clause
tymonx/utest,tymonx/utest,tymonx/utest
1b794aeb03ee1f8b2cca08c6ef5ff2b6c0fb6dee
.eslintrc.yml
.eslintrc.yml
extends: 'airbnb' rules: max-len: - error - 120 new-cap: - error - capIsNewExceptions: - Q arrow-parens: - error - as-needed
extends: 'airbnb' parserOptions: ecmaFeatures: experimentalObjectRestSpread: true rules: max-len: - error - 120 new-cap: - error - capIsNewExceptions: - Q arrow-parens: - error - as-needed
Make eslint handle object rest and spread operator
Make eslint handle object rest and spread operator
YAML
agpl-3.0
rabblerouser/core,rabblerouser/core,rabblerouser/core
57fdec74b4b439341a7166dfc4b9e47e6c02a2b7
layer.yaml
layer.yaml
includes: ['layer:basic'] repo: git@github.com:juju-solutions/layer-docker.git defines: skip-install: description: Useful when creating docker subordinates, skip the install routine type: boolean default: false
includes: ['layer:basic'] repo: https://github.com/juju-solutions/layer-docker.git defines: skip-install: description: Useful when creating docker subordinates, skip the install routine type: boolean default: false
Move ssh based repo key to https
Move ssh based repo key to https
YAML
bsd-3-clause
chuckbutler/layer-docker,chuckbutler/layer-docker
8d5a75dd97e3b79dbe238807f9b2118edfd0595c
recipes/exhale/meta.yaml
recipes/exhale/meta.yaml
{% set name = "exhale" %} {% set version = "0.2.3" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/exhale-{{ version }}.tar.gz sha256: ce936be4330db0d3ea96dbda8144cda202d2e57cd52f50f89c7b0393b528e6c5 build: noarch: python script: {{ PYTHON }} -m pip install . -vv number: 0 requirements: host: - breathe - bs4 - lxml - pip - python - six - sphinx >=1.6.1 run: - breathe - bs4 - lxml - python - six - sphinx >=1.6.1 test: imports: - exhale commands: - pip check requires: - pip about: home: https://github.com/svenevs/exhale summary: Automatic C++ library API documentation generator using Doxygen, Sphinx, and Breathe. Exhale revives Doxygen's class / file hierarchies using reStructuredText for superior markup syntax / websites. license: BSD-3-Clause license_file: LICENSE extra: recipe-maintainers: - dillon-cullinan - mariusvniekerk - rigzba21
{% set name = "exhale" %} {% set version = "0.3.1" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/exhale-{{ version }}.tar.gz sha256: a0fe5d7b2d8990c8f942f6645f271365188de017d655b365be319bfa311c1113 build: noarch: python script: {{ PYTHON }} -m pip install . -vv number: 0 requirements: host: - pip - python >=3.6 run: - beautifulsoup4 - breathe >=4.32.0 - docutils >=0.12 - lxml - python >=3.6 - six - sphinx >=3.0,<5 test: imports: - exhale commands: - pip check requires: - pip about: home: https://github.com/svenevs/exhale summary: Automatic C++ library API documentation generator using Doxygen, Sphinx, and dev_url: https://github.com/svenevs/exhale license: BSD-3-Clause license_file: LICENSE extra: recipe-maintainers: - dillon-cullinan - mariusvniekerk - rigzba21
Update exhale recipe to latest version
Update exhale recipe to latest version
YAML
bsd-3-clause
ocefpaf/staged-recipes,conda-forge/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes,conda-forge/staged-recipes,jakirkham/staged-recipes
831d18fc3d3aadc7108da9f2fa7c1f9179d738d9
recipes/pyppmd/meta.yaml
recipes/pyppmd/meta.yaml
{% set name = "pyppmd" %} {% set version = "0.15.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: 3771a65699caee0f5b97cedada74a52b9ba4061bd8ad150d0115defb291c4581 build: number: 0 skip: true # [py2k] script: {{ PYTHON }} -m pip install . -vv requirements: build: - {{ compiler('c') }} - {{ compiler('cxx') }} host: - pip - python - setuptools >=45.0 - setuptools-scm >=6.0.1 - importlib_metadata run: - python - importlib_metadata test: imports: - pyppmd commands: - pip check requires: - pip about: home: http://github.com/miurahr/pyppmd summary: PPMd compression/decompression library license: BSD-3-Clause license_file: LICENSE.rst extra: recipe-maintainers: - sarthakpati
{% set name = "pyppmd" %} {% set version = "0.15.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: 3771a65699caee0f5b97cedada74a52b9ba4061bd8ad150d0115defb291c4581 build: number: 0 skip: true # [py2k] skip: true # [win and py>38] script: {{ PYTHON }} -m pip install . -vv requirements: build: - {{ compiler('c') }} - {{ compiler('cxx') }} host: - pip - python - setuptools >=45.0 - setuptools-scm >=6.0.1 - importlib_metadata run: - python - importlib_metadata test: imports: - pyppmd commands: - pip check requires: - pip about: home: http://github.com/miurahr/pyppmd summary: PPMd compression/decompression library license: BSD-3-Clause license_file: LICENSE.rst extra: recipe-maintainers: - sarthakpati
Revert "reverting, because it didn't help for windows"
Revert "reverting, because it didn't help for windows" This reverts commit 342e239cc88c14455874aa9178346b4894f963e5.
YAML
bsd-3-clause
hadim/staged-recipes,stuertz/staged-recipes,jochym/staged-recipes,johanneskoester/staged-recipes,ReimarBauer/staged-recipes,goanpeca/staged-recipes,conda-forge/staged-recipes,ReimarBauer/staged-recipes,igortg/staged-recipes,goanpeca/staged-recipes,hadim/staged-recipes,mariusvniekerk/staged-recipes,stuertz/staged-recipes,ocefpaf/staged-recipes,mariusvniekerk/staged-recipes,jakirkham/staged-recipes,kwilcox/staged-recipes,igortg/staged-recipes,conda-forge/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes,kwilcox/staged-recipes,jochym/staged-recipes
c22763c09fd99b04b20ac8c4ebc4c4414bd2353f
.github/workflows/copy-pr-template-to-dependabot-prs.yaml
.github/workflows/copy-pr-template-to-dependabot-prs.yaml
name: Copy PR template to Dependabot PRs on: pull_request_target: types: [opened] jobs: copy_pr_template: runs-on: ubuntu-latest if: github.actor == 'dependabot[bot]' steps: - uses: actions/checkout@v3 - name: Fetch PR template id: fetch-pr-template uses: juliangruber/read-file-action@v1 with: path: .github/pull_request_template.md - name: Create comment uses: peter-evans/create-or-update-comment@v2 with: issue-number: ${{ github.event.number }} body: ${{ steps.fetch-pr-template.outputs.content }}
name: Copy PR template to Dependabot PRs on: pull_request_target: types: [opened] permissions: contents: read pull-requests: write jobs: copy_pr_template: name: Copy PR template to Dependabot PR runs-on: ubuntu-latest if: github.actor == 'dependabot[bot]' steps: - uses: actions/checkout@v3 - name: Post PR template as a comment uses: actions/github-script@v6 with: script: | const fs = require('fs') const body = [ "pull_request_template.md", ".github/pull_request_template.md", "docs/pull_request_template.md", ]. filter(path => fs.existsSync(path)). map(path => fs.readFileSync(path)). join("\n") if (body !== "") { github.rest.issues.createComment({ issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, body }) }
Create workflow to copy PR template onto Dependabot PRs
Create workflow to copy PR template onto Dependabot PRs
YAML
mit
alphagov/collections,alphagov/collections,alphagov/collections,alphagov/collections
95a08ee7dd5881958b3b33b3a343a9053d1b0e90
reference_playbook.yaml
reference_playbook.yaml
--- # Playbook owned by group inception group: inception # This playbook is clearly awesome: name: Simple playbook # This playbook executes **two** sequences of steps for this # release: execution: ################################################################ # Sequence 1 ################################################################ # Including a description is optional. This must be a string. - description: frobnicate these lil guys hosts: - foo.dev.example.com - bar.ops.example.com # Install megafrobber on all our hosts ahead of time preflight: - yum:Install: package: "megafrobber" steps: # Some steps don't require parameters: - bigip:OutOfRotation # Whereas, some require parameters: - misc:Echo: input: "This is a test message" # And some times you just want to tell the world what you're doing - frob:Nicate: things: "all the things" notify: started: irc: [ "PHB", "#myteam" ] ################################################################ # Sequence 2 ################################################################ - description: then frobnicate the other half hosts: - dev.foo.example.com - ops.bar.example.com steps: - bigip:OutOfRotation # Some may even accept lists as the value of their parameters - misc:ListFrob: frob_list: - item1 - item2 - item3
--- # Playbook owned by group inception group: inception # This playbook is clearly awesome: name: Simple playbook # This playbook executes **two** sequences of steps for this # release: execution: ################################################################ # Sequence 1 ################################################################ # Including a description is optional. This must be a string. - description: frobnicate these lil guys hosts: - foo.dev.example.com - bar.ops.example.com # Install megafrobber on all our hosts ahead of time preflight: - yumcmd:install: package: "megafrobber" steps: # Some steps don't require parameters: - bigip:OutOfRotation # Whereas, some require parameters: - misc:Echo: input: "This is a test message" # And some times you just want to tell the world what you're doing - frob:Nicate: things: "all the things" notify: started: irc: [ "PHB", "#myteam" ] ################################################################ # Sequence 2 ################################################################ - description: then frobnicate the other half hosts: - dev.foo.example.com - ops.bar.example.com steps: - bigip:OutOfRotation # Some may even accept lists as the value of their parameters - misc:ListFrob: frob_list: - item1 - item2 - item3
Change of yum to yumcmd
Change of yum to yumcmd
YAML
apache-2.0
RHInception/re-docs,RHInception/re-docs
e26bffef0b484b374179238e1f8d3d5ac7443ed7
hello/mcloud.yml
hello/mcloud.yml
web: image: orchardup/nginx:latest volumes: public: /var/www
web: web: 80 image: orchardup/nginx:latest volumes: public: /var/www
Fix example to use latest cloud
Fix example to use latest cloud
YAML
mit
modera/mcloud-samples,modera/mcloud-samples,modera/mcloud-samples,modera/mcloud-samples
b1d14db0d629bbfa7f3fada8661d44093aa5e490
metadata/com.marv42.ebt.newnote.yml
metadata/com.marv42.ebt.newnote.yml
AntiFeatures: - NonFreeNet Categories: - Games - Internet - Money License: GPL-2.0-only SourceCode: https://github.com/marv42/EbtNewNote IssueTracker: https://github.com/marv42/EbtNewNote/issues AutoName: EBT New Note RepoType: git Repo: https://github.com/marv42/EbtNewNote Builds: - versionName: '0.19' versionCode: 19 commit: v0.19 subdir: app gradle: - withoutKey - versionName: '0.27' versionCode: 27 disable: Unexpected version/version code in output commit: v0.27 subdir: app gradle: - withoutKey AutoUpdateMode: None UpdateCheckMode: Tags v\d+\.\d+(\.\d+)? CurrentVersion: '0.34' CurrentVersionCode: 34
AntiFeatures: - NonFreeNet Categories: - Games - Internet - Money License: GPL-2.0-only SourceCode: https://github.com/marv42/EbtNewNote IssueTracker: https://github.com/marv42/EbtNewNote/issues AutoName: EBT New Note RepoType: git Repo: https://github.com/marv42/EbtNewNote Builds: - versionName: '0.19' versionCode: 19 commit: v0.19 subdir: app gradle: - withoutKey - versionName: '0.27' versionCode: 27 disable: Unexpected version/version code in output commit: v0.27 subdir: app gradle: - withoutKey AutoUpdateMode: None UpdateCheckMode: Tags v\d+\.\d+(\.\d+)? CurrentVersion: '0.35' CurrentVersionCode: 35
Update CV of EBT New Note to 0.35 (35)
Update CV of EBT New Note to 0.35 (35)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
17ab8849f31742f3dff1a11f0235ba0b826a95d6
metadata/de.nulide.bikecomputer.yml
metadata/de.nulide.bikecomputer.yml
Categories: - Navigation - Sports & Health License: GPL-3.0-only SourceCode: https://gitlab.com/Nulide/BikeComputer IssueTracker: https://gitlab.com/Nulide/BikeComputer/-/issues AutoName: BikeComputer RepoType: git Repo: https://gitlab.com/Nulide/BikeComputer Builds: - versionName: '1.0' versionCode: 1 commit: v1.0 subdir: app gradle: - yes - versionName: '1.1' versionCode: 2 commit: v1.1 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '1.1' CurrentVersionCode: 2
Categories: - Navigation - Sports & Health License: GPL-3.0-only SourceCode: https://gitlab.com/Nulide/BikeComputer IssueTracker: https://gitlab.com/Nulide/BikeComputer/-/issues AutoName: BikeComputer RepoType: git Repo: https://gitlab.com/Nulide/BikeComputer Builds: - versionName: '1.0' versionCode: 1 commit: v1.0 subdir: app gradle: - yes - versionName: '1.1' versionCode: 2 commit: v1.1 subdir: app gradle: - yes - versionName: '1.2' versionCode: 3 commit: v1.2 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '1.2' CurrentVersionCode: 3
Update BikeComputer to 1.2 (3)
Update BikeComputer to 1.2 (3)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
3976395011bb7c4e0ed4bef193de3efa46202761
hieradata/bgo/modules/calico.yaml
hieradata/bgo/modules/calico.yaml
--- calico::debug: false # Reflector settings calico::reflector::client_defaults: peer_as: 65501 local_as: 65501 calico::reflector::clients: c1: peer_ipv4: '172.18.0.103' c2: peer_ipv4: '172.18.0.104' c3: peer_ipv4: '172.18.0.105' gw: peer_ipv4: '172.18.0.1' # compute node settings calico::compute::peer_defaults: peer_as: 65501 local_as: 65501 local_ipv4: "%{ipaddress_transport1}" calico::compute::peers: rr1: peer_ipv4: '172.18.0.1'
--- calico::debug: false # Reflector settings calico::reflector::client_defaults: peer_as: 65501 local_as: 65501 calico::reflector::clients: c1: peer_ipv4: '172.18.0.103' c2: peer_ipv4: '172.18.0.104' c3: peer_ipv4: '172.18.0.105' gw: peer_ipv4: '172.18.7.1' # compute node settings calico::compute::peer_defaults: peer_as: 65501 local_as: 65501 local_ipv4: "%{ipaddress_transport1}" calico::compute::peers: rr1: peer_ipv4: '172.18.0.1'
Change bgo rr to new vrr IP
Change bgo rr to new vrr IP
YAML
apache-2.0
tanzr/himlar,norcams/himlar,tanzr/himlar,TorLdre/himlar,TorLdre/himlar,raykrist/himlar,mikaeld66/himlar,norcams/himlar,norcams/himlar,norcams/himlar,raykrist/himlar,TorLdre/himlar,eckhart/himlar,raykrist/himlar,tanzr/himlar,mikaeld66/himlar,norcams/himlar,tanzr/himlar,eckhart/himlar,eckhart/himlar,eckhart/himlar,tanzr/himlar,raykrist/himlar,mikaeld66/himlar,raykrist/himlar,mikaeld66/himlar,mikaeld66/himlar,TorLdre/himlar,TorLdre/himlar
d8efd317ea40e30b91cff5af2c5843ea762817a9
codefresh.yml
codefresh.yml
version: '1.0' steps: agent_test: image: node:7.2.0 working_directory: ${{main_clone}}/agent commands: - npm i -g yarn - yarn install - yarn test agent_build: type: build image_name: test_agent working_directory: ${{main_clone}}/agent tag: latest
version: '1.0' steps: agent_test: image: node:7.2.0 working_directory: ${{main_clone}}/agent commands: - npm i -g yarn - yarn install - yarn test agent_build: type: build image_name: test_agent working_directory: ${{main_clone}}/agent tag: latest image_name: httpmark-test-agent agent_push: type: push candidate: ${{agent_build}} provider: ecr tag: latest accessKeyId: ${{AWS_ACCESS_KEY_ID}} secretAccessKey: ${{AWS_SECRET_ACCESS_KEY}} region: eu-west-1
Add step to publish test agent image to ECR
Add step to publish test agent image to ECR
YAML
mit
httpmark/httpmark,httpmark/httpmark,httpmark/httpmark
f70ff0cb3e2f123100a376a10bed72f4eb40530c
config/tagging-apps.yml
config/tagging-apps.yml
# Below is the list of distinct `publishing_app`s in the content-store, with # the app that is (mostly) responsible for tagging its content. # # Leave an app empty to disable tagging for it. # a-migrated-app: content-tagger # for testing puposes businesssupportfinder: content-tagger calculators: content-tagger calendars: content-tagger collections-publisher: collections-publisher contacts: panopticon contacts-admin: design-principles: email-campaign-frontend: external-link-tracker: feedback: frontend: govuk_content_api: hmrc-manuals-api: content-tagger info-frontend: licencefinder: content-tagger manuals-frontend: performanceplatform-big-screen-view: policy-publisher: publisher: publisher rummager: service-manual-publisher: short-url-manager: smartanswers: content-tagger specialist-publisher: specialist-publisher spotlight: static: tariff: travel-advice-publisher: whitehall: whitehall
# Below is the list of distinct `publishing_app`s in the content-store, with # the app that is (mostly) responsible for tagging its content. # # Leave an app empty to disable tagging for it. # a-migrated-app: content-tagger # for testing puposes businesssupportfinder: content-tagger calculators: content-tagger calendars: content-tagger collections-publisher: content-tagger contacts: panopticon contacts-admin: design-principles: email-campaign-frontend: external-link-tracker: feedback: frontend: govuk_content_api: hmrc-manuals-api: content-tagger info-frontend: licencefinder: content-tagger manuals-frontend: performanceplatform-big-screen-view: policy-publisher: publisher: publisher rummager: service-manual-publisher: short-url-manager: smartanswers: content-tagger specialist-publisher: specialist-publisher spotlight: static: tariff: travel-advice-publisher: whitehall: whitehall
Allow tagging of collections-publisher documents
Allow tagging of collections-publisher documents `collections-publisher` publishes topics and mainstream browse pages. This commit allows those pages to be tagged. This allows users, for example, to add link topics to other topics, and add organisations to topics. There are no plans to do this, but we want as little special cases as possible. It would be therefore be good to treat the pages managed by collections-publisher as just a normal piece of content on GOV.UK. Trello: https://trello.com/c/GRt7NSbL
YAML
mit
alphagov/content-tagger,alphagov/content-tagger,alphagov/content-tagger
287ccec1ba51590dc1448d9ef27369b6197c99c8
packages/hs/HsHTSLib.yaml
packages/hs/HsHTSLib.yaml
homepage: '' changelog-type: markdown hash: dad0cd2c6afb0e521e9bd8ae3d668f8fe3ed9fd2a3ec49c0a8feb01b6d5fca42 test-bench-deps: {} maintainer: kai@kzhang.org synopsis: High level bindings to htslib. changelog: ! '# Revision history for passwd-manager ## 0.1.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. ' basic-deps: bytestring: -any inline-c: ! '>=0.6 && <0.8' base: ! '>=4.8 && <5.0' conduit: ! '>=1.3.0' containers: -any mtl: -any bytestring-lexing: -any template-haskell: -any all-versions: - '1.3.2.0' - '1.3.2.1' - '1.3.2.2' - '1.3.2.3' author: Kai Zhang latest: '1.3.2.3' description-type: haddock description: ! 'This package provides high level bindings to htslib, a library for processing high throughput DNA sequencing data.' license-name: MIT
homepage: '' changelog-type: markdown hash: f1916ddd23232a87cca47742d56a1300af2f0f53f9af5ff4eb3bf4864b8f99ca test-bench-deps: bytestring: -any base: -any tasty-golden: -any conduit: -any mtl: -any tasty-hunit: -any tasty: -any HsHTSLib: -any vector: -any maintainer: kai@kzhang.org synopsis: High level bindings to htslib. changelog: ! '# Revision history for passwd-manager ## 0.1.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. ' basic-deps: bytestring: -any inline-c: ! '>=0.6 && <0.8' base: ! '>=4.8 && <5.0' conduit: ! '>=1.3.0' containers: -any mtl: -any bytestring-lexing: -any template-haskell: -any all-versions: - '1.3.2.0' - '1.3.2.1' - '1.3.2.2' - '1.3.2.3' - '1.3.2.4' author: Kai Zhang latest: '1.3.2.4' description-type: haddock description: ! 'This package provides high level bindings to htslib, a library for processing high throughput DNA sequencing data.' license-name: MIT
Update from Hackage at 2018-12-14T02:09:53Z
Update from Hackage at 2018-12-14T02:09:53Z
YAML
mit
commercialhaskell/all-cabal-metadata
2a7dbd355b47dd701984e5192ff308d7508b167a
packages/pe/peregrin.yaml
packages/pe/peregrin.yaml
homepage: '' changelog-type: '' hash: b41b9dd5e76b96b2db64889228cf4f023e5da09976dd0b3e435e7a44356cdeb1 test-bench-deps: base: ==4.* hspec: ! '>=2.2.0 && <3.0' text: ! '>=1.0 && <2' peregrin: -any resource-pool: ! '>=0.2.1 && <0.3' postgresql-simple: ! '>=0.5.2.1 && <0.6' transformers: ! '>=0.5.2 && <0.6' pg-harness-client: ! '>=0.4.0 && <0.5.0' maintainer: Bardur Arantsson <bardur@scientician.net> synopsis: Database migration support for use in other libraries. changelog: '' basic-deps: base: ! '>=4.9 && <5' text: ! '>=1.1.0 && <2' postgresql-simple: ! '>=0.5.2.1 && <0.6' all-versions: - '0.1.0' author: Bardur Arantsson latest: '0.1.0' description-type: haddock description: ! 'Database migration support for use in other libraries. Currently only supports PostgreSQL.' license-name: MIT
homepage: '' changelog-type: '' hash: 97df0ac1477ad02536d8b7afa0a1e79adbce555299884c59a523bcbfae8decda test-bench-deps: base: ==4.* hspec: ! '>=2.2.0 && <3.0' text: ! '>=1.0 && <2' peregrin: -any resource-pool: ! '>=0.2.1 && <0.3' postgresql-simple: ! '>=0.5.2.1 && <0.6' transformers: ! '>=0.5.2 && <0.6' pg-harness-client: ! '>=0.4.0 && <0.5.0' maintainer: Bardur Arantsson <bardur@scientician.net> synopsis: Database migration support for use in other libraries. changelog: '' basic-deps: base: ! '>=4.9 && <5' text: ! '>=1.1.0 && <2' postgresql-simple: ! '>=0.5.2.1 && <0.6' all-versions: - '0.1.0' - '0.1.1' author: Bardur Arantsson latest: '0.1.1' description-type: haddock description: ! 'Database migration support for use in other libraries. Currently only supports PostgreSQL.' license-name: MIT
Update from Hackage at 2017-04-22T05:30:40Z
Update from Hackage at 2017-04-22T05:30:40Z
YAML
mit
commercialhaskell/all-cabal-metadata
dff4f43365c738f25eb952bdb72768ce6b35d160
packages/re/relation.yaml
packages/re/relation.yaml
homepage: https://www.github.com/haskell-works/relation/ changelog-type: '' hash: 862c09e1d19c852e04b008f154e499771b1e65dfe7085fffddc8f4dda8a5b8e5 test-bench-deps: base: ! '>=4 && <5' hspec: ! '>=2.4 && <3' hedgehog: ! '>=0.5 && <0.7' relation: -any hw-hspec-hedgehog: ! '>=0.1.0.4 && <0.2' maintainer: John Ky synopsis: A data structure representing Relations on Sets. changelog: '' basic-deps: base: ! '>=4 && <5' containers: ! '>=0.5 && <0.7' all-versions: - '0.2' - 0.2.1 - '0.3' author: Leonel Fonseca latest: '0.3' description-type: markdown description: '' license-name: BSD-3-Clause
homepage: https://www.github.com/haskell-works/relation/ changelog-type: '' hash: ec4042134ba972ba28604dca254bfdd834fb7f4aeca2aa9dae3fd4ae04b5c911 test-bench-deps: base: ! '>=4 && <5' hspec: ! '>=2.4 && <3' hedgehog: ! '>=0.5 && <0.7' relation: -any hw-hspec-hedgehog: ! '>=0.1.0.4 && <0.2' maintainer: John Ky synopsis: A data structure representing Relations on Sets. changelog: '' basic-deps: base: ! '>=4 && <5' containers: ! '>=0.5 && <0.7' all-versions: - '0.2' - 0.2.1 - '0.3' - '0.4' author: Leonel Fonseca latest: '0.4' description-type: markdown description: '' license-name: BSD-3-Clause
Update from Hackage at 2019-05-12T06:10:57Z
Update from Hackage at 2019-05-12T06:10:57Z
YAML
mit
commercialhaskell/all-cabal-metadata
3e0f34d14865956e0ce10af53f28369d53323dc5
tests/api.suite.yml
tests/api.suite.yml
class_name: ApiTester modules: enabled: - Asserts - \Helper\Api - \Helper\DataSetup - REST: url: http://localhost:8000 depends: PhpBrowser
class_name: ApiTester modules: enabled: - Asserts - \Helper\Api - \Helper\DataSetup - REST: url: http://localhost:8000 depends: PhpBrowser - PhpBrowser: url: http://localhost:8000 timeout: 60
Fix timeout in API tests
Fix timeout in API tests When run on PHP 7.0 and MySQL in Travis CI sometimes the API tests fail with a timeout; it seems that the tests are slower in that environment, so the timeout has to be increased in that case. Increasing the timeout simply gives slower tests more time to finish the requests, but it does not affect the other tests in any way, so the timeout was increased for every test. Signed-off-by: Daniel Calviño Sánchez <bd7629e975cc0e00ea7cda4ab6a120f2ee42ac1b@gmail.com>
YAML
agpl-3.0
desaintmartin/gallery,desaintmartin/gallery,desaintmartin/gallery
4ab903d0b43c540d1bbc716a780ff2985153c2ff
schema/Link.schema.yaml
schema/Link.schema.yaml
title: Link '@id': stencila:Link extends: Entity role: secondary status: unstable category: prose description: A hyperlink to other pages, sections within the same document, resources, or any URL. properties: content: '@id': stencila:content description: The textual content of the link. type: array items: $ref: InlineContent target: '@id': stencila:target description: The target of the link. type: string format: uri title: '@id': stencila:title description: A title for the link. $comment: | This property is analagous to the HTML `title` global attribute which represents ["advisory information related to the element"](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/title) type: string relation: '@id': schema:linkRelationship description: The relation between the target and the current thing. # See https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types type: string required: - content - target
title: Link '@id': stencila:Link extends: Entity role: secondary status: unstable category: prose description: A hyperlink to other pages, sections within the same document, resources, or any URL. properties: content: '@id': stencila:content description: The textual content of the link. type: array items: $ref: InlineContent target: '@id': stencila:target description: The target of the link. type: string format: uri title: '@id': schema:headline description: A title for the link. $comment: | This property is analagous to the HTML `title` global attribute which represents ["advisory information related to the element"](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/title) type: string relation: '@id': schema:linkRelationship description: The relation between the target and the current thing. # See https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types type: string required: - content - target
Use consistent `@id` for title property
fix(Link): Use consistent `@id` for title property
YAML
apache-2.0
stencila/stencila,stencila/stencila,stencila/stencila,stencila/stencila,stencila/stencila,stencila/stencila,stencila/stencila
ab68d8405edc207eecded61ceb7dcb2c8c139452
sites.yaml
sites.yaml
sites: - name: Bundeshaushalt slug: bund tagline: "Der Bundeshaushalt enthält Angaben zu den Ausgaben und Einnahmen der Bundesregierung." source: Bundesministerium der Finanzen (Bundeshaushalt-Info) source_url: http://bundeshaushalt-info.de data_url: http://opendatalabs.org/de/haushalt external_url: http://bund.offenerhaushalt.de level: bund hierarchies: - name: Einzelpläne drilldown: [] - name: Land Berlin slug: berlin tagline: "Landeshaushalt für Berlin, verabschiedet durch den Senat der Stadt Berlin." source: Stadt Berlin source_url: http://daten.berlin.de data_url: http://opendatalabs.org/de/haushalt state: BE level: land hierarchies: - name: Einzelpläne drilldown: []
sites: - name: Bundeshaushalt slug: bund tagline: "Der Bundeshaushalt enthält Angaben zu den Ausgaben und Einnahmen der Bundesregierung." source: Bundesministerium der Finanzen (Bundeshaushalt-Info) source_url: http://bundeshaushalt-info.de data_url: http://opendatalabs.org/de/haushalt external_url: http://bund.offenerhaushalt.de level: bund hierarchies: - name: Einzelpläne drilldown: [] - name: Land Berlin slug: berlin tagline: "Landeshaushalt für Berlin, verabschiedet durch den Senat der Stadt Berlin." source: Stadt Berlin source_url: http://daten.berlin.de data_url: http://opendatalabs.org/de/haushalt state: BE level: land api: type: OpenSpending base_url: https://openspending.org/api/2/ dataset: berlin_de hierarchies: - name: Einzelpläne drilldown: - Einzelplan filter: - "Titelart:Ausgabetitel"
Add API details to Berlin OpenSpending
Add API details to Berlin OpenSpending
YAML
mit
Opendatal/offenerhaushalt.de,Opendatal/offenerhaushalt.de,Opendatal/offenerhaushalt.de
1e05da5974c43de55dc8e7c1974b714316ff1479
hieradata/role/nginx.yaml
hieradata/role/nginx.yaml
--- profile::apps::nginx::listeners: 'monitor': ports: 80 proxy: 'http://co-u1604-idbp01.local.familyroberson.com:3000' 'puppet': port: 80 proxy: 'http://co-u1604-pmp01.local.familyroberson.com' 'vcsa': port: 80 proxy: 'https://co-vcsa-p01.local.familyroberson.com/ui/' 'unifi': port: 80 proxy: 'https://co-u1604-unip01.local.familyroberson.com:8443' profile::os::monitor::influxdbinputs: cpu: percpu: true totalcpu: true mem: {} io: {} net: {} disk: {} diskio: {} processes: {} swap: {} system: {} kernel: {} ping: urls: - 8.8.8.8 puppetagent: location: "/opt/puppetlabs/puppet/cache/state/last_run_summary.yaml" dns_query: servers: - 8.8.8.8 - 10.1.1.1 domains: - "www.google.com"
--- profile::apps::nginx::listeners: 'monitor': ports: 80 proxy: 'http://co-u1604-idbp01.local.familyroberson.com:3000' 'puppet': port: 80 proxy: 'http://co-u1604-pmp01.local.familyroberson.com' 'vcsa': port: 443 proxy: 'https://co-vcsa-p01.local.familyroberson.com/ui/' 'unifi': port: 443 proxy: 'https://co-u1604-unip01.local.familyroberson.com:8443' profile::os::monitor::influxdbinputs: cpu: percpu: true totalcpu: true mem: {} io: {} net: {} disk: {} diskio: {} processes: {} swap: {} system: {} kernel: {} ping: urls: - 8.8.8.8 puppetagent: location: "/opt/puppetlabs/puppet/cache/state/last_run_summary.yaml" dns_query: servers: - 8.8.8.8 - 10.1.1.1 domains: - "www.google.com"
Set port 443 from 80.
Set port 443 from 80.
YAML
apache-2.0
cdrobey/puppet-repo,cdrobey/puppet-repo
a3ef68d91c60c9d451450ae0e371e25402bb4c6f
tests/vars/zuul.yml
tests/vars/zuul.yml
--- nodepool_rdo_proxy: "http://{{ zuul_site_mirror_fqdn }}:8080/rdo" nodepool_pypi_mirror: "http://{{ zuul_site_mirror_fqdn }}:8080/pypi/simple" nodepool_mirror_host: "{{ zuul_site_mirror_fqdn }}" nodepool_npmjs_proxy: "http://{{ zuul_site_mirror_fqdn }}:8080/registry.npmjs/" nodepool_cbs_centos_proxy: "http://{{ zuul_site_mirror_fqdn }}:8080/cbs.centos" nodepool_docker_proxy: "http://{{ zuul_site_mirror_fqdn }}:8080/docker" # NOTE(hrw): wheel cache goes over 80/443 not on 8080 nodepool_wheel_mirror: "https://{{ zuul_site_mirror_fqdn }}/wheel/{{ ansible_distribution | lower }}-{{ ansible_distribution_version }}-{{ ansible_architecture | lower }}"
--- nodepool_rdo_proxy: "http://{{ zuul_site_mirror_fqdn }}:8080/rdo" nodepool_pypi_mirror: "http://{{ zuul_site_mirror_fqdn }}:8080/pypi/simple" nodepool_mirror_host: "{{ zuul_site_mirror_fqdn }}" nodepool_npmjs_proxy: "http://{{ zuul_site_mirror_fqdn }}:8080/registry.npmjs/" nodepool_cbs_centos_proxy: "http://{{ zuul_site_mirror_fqdn }}:8080/cbs.centos" nodepool_docker_proxy: "http://{{ zuul_site_mirror_fqdn }}:8080/docker" # NOTE(hrw): wheel cache goes over 80/443 not on 8080 nodepool_wheel_mirror: "https://{{ zuul_site_mirror_fqdn }}/wheel/{{ ansible_distribution | lower }}-{{ (ansible_os_family == 'Debian') | ternary(ansible_distribution_version, ansible_distribution_major_version) }}-{{ ansible_architecture | lower }}"
Fix wheel url for CentOS
[CI] Fix wheel url for CentOS CentOS wheels do not differentiate between minor versions atm. Change-Id: I5365c813bab5e3205fd34eb64dc3337f192d67d4
YAML
apache-2.0
stackforge/kolla,stackforge/kolla,openstack/kolla,stackforge/kolla,openstack/kolla
0406ef8b5506b02ee8be3008d1cc91e3bd838949
packages/ma/machines-directory.yaml
packages/ma/machines-directory.yaml
homepage: http://github.com/aloiscochard/machines-directory changelog-type: '' hash: 0e85e707bdd315d83fe7cfc6f1823a9ffe9bc3892a783672cdd067d66768beae test-bench-deps: {} maintainer: alois.cochard@gmail.com synopsis: Directory (system) utilities for the machines library changelog: '' basic-deps: base: ! '>=4.6 && <5' filepath: ! '>=1.3 && <1.5' machines-io: ! '>=0.1 && <0.3' transformers: ! '>=0.3 && <0.6' machines: ! '>=0.2.4 && <0.7' directory: ! '>=1.2 && <1.4' all-versions: - '0.0.0.1' - '0.0.0.2' - '0.2.0.0' - '0.2.0.2' - '0.2.0.4' - '0.2.0.6' - '0.2.0.8' - '0.2.0.9' - '0.2.0.10' author: Alois Cochard latest: '0.2.0.10' description-type: haddock description: '' license-name: Apache-2.0
homepage: http://github.com/aloiscochard/machines-directory changelog-type: '' hash: e1a80f7026f8269f44667873102533fd1b1401fa60ed820219f7470f4d41dfb8 test-bench-deps: {} maintainer: alois.cochard@gmail.com synopsis: Directory (system) utilities for the machines library changelog: '' basic-deps: base: ! '>=4.6 && <5' filepath: ! '>=1.3 && <1.5' machines-io: ! '>=0.1 && <0.3' transformers: ! '>=0.3 && <0.6' machines: ! '>=0.2.4 && <0.7' directory: ! '>=1.2 && <1.4' all-versions: - '0.0.0.1' - '0.0.0.2' - '0.2.0.0' - '0.2.0.2' - '0.2.0.4' - '0.2.0.6' - '0.2.0.8' - '0.2.0.9' - '0.2.0.10' - '0.2.1.0' author: Alois Cochard latest: '0.2.1.0' description-type: haddock description: '' license-name: Apache-2.0
Update from Hackage at 2017-03-08T22:32:24Z
Update from Hackage at 2017-03-08T22:32:24Z
YAML
mit
commercialhaskell/all-cabal-metadata
8cf68c63d97ad2b2996cd96b976a2a92ad7fd050
stack.yaml
stack.yaml
resolver: lts-9.6 extra-deps: - configurator-ng-0.0.0.1 - critbit-0.2.0.0 - hjsonpointer-1.1.1 - hjsonschema-1.5.0.1 - Ranged-sets-0.3.0 - protolude-0.2.2 - hasql-1.1 - hasql-pool-0.4.3 - hasql-transaction-0.5.2 - jose-0.7.0.0 ghc-options: postgrest: -O2 -Werror -Wall -fwarn-identities -fno-warn-redundant-constraints nix: packages: [postgresql, zlib]
resolver: lts-9.6 extra-deps: - configurator-ng-0.0.0.1 - critbit-0.2.0.0 - hjsonpointer-1.1.1 - hjsonschema-1.5.0.1 - Ranged-sets-0.3.0 - protolude-0.2.2 - hasql-1.1 - hasql-pool-0.4.3 - hasql-transaction-0.5.2 - jose-0.7.0.0 - postgresql-libpq-0.9.4.1 ghc-options: postgrest: -O2 -Werror -Wall -fwarn-identities -fno-warn-redundant-constraints nix: packages: [postgresql, zlib]
Fix segmentation fault/access violation on windows 10
Fix segmentation fault/access violation on windows 10 This was reported in https://gitter.im/begriffs/postgrest?at=5b7431eb5b07ae730ac083af and according to https://ghc.haskell.org/trac/ghc/ticket/13112#comment:25 this is an issue with linking in postgresql-libpq. The 0.9.4.1 version contains a patch(https://github.com/lpsmith/postgresql-libpq/pull/45) that fixes the issue.
YAML
mit
diogob/postgrest,steve-chavez/postgrest,steve-chavez/postgrest,begriffs/postgrest
439e775042a0db88f0b0ae515fea94d7ce986112
operations/bits-service-alicloud.yml
operations/bits-service-alicloud.yml
--- - type: replace path: /instance_groups/name=bits/jobs/name=bits-service/properties/bits-service/app_stash value: directory_key: "((resource_directory_key))" fog_connection: &alicloud-config aliyun_accesskey_id: "((alibaba_access_key_id))" aliyun_accesskey_secret: "((alibaba_secret_access_key))" aliyun_oss_endpoint: "((alibaba_endpoint))" - type: replace path: /instance_groups/name=bits/jobs/name=bits-service/properties/bits-service/buildpacks value: directory_key: "((buildpack_directory_key))" fog_connection: *alicloud-config - type: replace path: /instance_groups/name=bits/jobs/name=bits-service/properties/bits-service/droplets value: directory_key: "((droplet_directory_key))" fog_connection: *alicloud-config - type: replace path: /instance_groups/name=bits/jobs/name=bits-service/properties/bits-service/packages value: directory_key: "((app_package_directory_key))" fog_connection: *alicloud-config
--- - type: replace path: /instance_groups/name=bits/jobs/name=bits-service/properties/bits-service/app_stash value: directory_key: "((resource_directory_key))" fog_connection: &alicloud-config provider: aliyun aliyun_accesskey_id: "((alibaba_access_key_id))" aliyun_accesskey_secret: "((alibaba_secret_access_key))" aliyun_oss_endpoint: "((alibaba_endpoint))" - type: replace path: /instance_groups/name=bits/jobs/name=bits-service/properties/bits-service/buildpacks value: directory_key: "((buildpack_directory_key))" fog_connection: *alicloud-config - type: replace path: /instance_groups/name=bits/jobs/name=bits-service/properties/bits-service/droplets value: directory_key: "((droplet_directory_key))" fog_connection: *alicloud-config - type: replace path: /instance_groups/name=bits/jobs/name=bits-service/properties/bits-service/packages value: directory_key: "((app_package_directory_key))" fog_connection: *alicloud-config
Fix ops file for alibaba blobstore
Fix ops file for alibaba blobstore [#157928837]
YAML
apache-2.0
cloudfoundry-incubator/bits-service-ci,cloudfoundry-incubator/bits-service-ci,cloudfoundry-incubator/bits-service-ci
566df3ae1c07da10c41c05f3cc087700f563be60
snap/snapcraft.yaml
snap/snapcraft.yaml
name: bjarkan architectures: [amd64] version: '1.2.0' summary: Command line bluetooth utility description: | A command line bluetooth utility that allows you to completely manage all things bluetooth. Scanning, pairing, listing of devices. grade: stable confinement: strict apps: bjarkan: command: env GI_TYPELIB_PATH=$SNAP/usr/lib/girepository-1.0:$SNAP/usr/lib/x86_64-linux-gnu/girepository-1.0 bjarkan parts: bjarkan: plugin: python stage-packages: - gir1.2-gtk-3.0 - python3-dbus - python3-gi
name: bjarkan architectures: [amd64] version: '1.2.0' summary: Command line bluetooth utility description: | A command line bluetooth utility that allows you to completely manage all things bluetooth. Scanning, pairing, listing of devices. grade: stable confinement: strict apps: bjarkan: command: env GI_TYPELIB_PATH=$SNAP/usr/lib/girepository-1.0:$SNAP/usr/lib/x86_64-linux-gnu/girepository-1.0 bjarkan plugs: - bluez parts: bjarkan: plugin: python stage-packages: - gir1.2-gtk-3.0 - python3-dbus - python3-gi
Connect to the bluez interface
Connect to the bluez interface
YAML
bsd-3-clause
willdeberry/pybtCLI,willdeberry/bjarkan
1c19c7bd5ed052f304a84086320d031d3ff4edc8
recipes/asyncqt/meta.yaml
recipes/asyncqt/meta.yaml
{% set name = "asyncqt" %} {% set version = "0.7.0" %} package: name: "{{ name|lower }}" version: "{{ version }}" source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: 8b1507c968c85cf0b7eee5d2a887162d38af15fb8c5b1ec25beed6025d7383ac build: skip: True # [py<35] number: 0 script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv " requirements: host: - pip - python - setuptools run: - python run_constrained: - pyside2 - pyqt >=5 test: requires: - pyqt imports: - asyncqt about: home: https://github.com/gmarull/asyncqt license: BSD license_family: BSD license_file: LICENSE summary: Implementation of the PEP 3156 Event-Loop with Qt. extra: recipe-maintainers: - nicoddemus
{% set name = "asyncqt" %} {% set version = "0.7.0" %} package: name: "{{ name|lower }}" version: "{{ version }}" source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: 8b1507c968c85cf0b7eee5d2a887162d38af15fb8c5b1ec25beed6025d7383ac build: noarch: python number: 0 script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv " requirements: host: - pip - python >=3.5 - setuptools run: - python >=3.5 run_constrained: - pyside2 - pyqt >=5 test: requires: - pyqt imports: - asyncqt about: home: https://github.com/gmarull/asyncqt license: BSD license_family: BSD license_file: LICENSE summary: Implementation of the PEP 3156 Event-Loop with Qt. extra: recipe-maintainers: - nicoddemus
Make package noarch [skip travis][skip appveyor]
Make package noarch [skip travis][skip appveyor]
YAML
bsd-3-clause
Juanlu001/staged-recipes,chrisburr/staged-recipes,scopatz/staged-recipes,igortg/staged-recipes,johanneskoester/staged-recipes,cpaulik/staged-recipes,ReimarBauer/staged-recipes,SylvainCorlay/staged-recipes,scopatz/staged-recipes,igortg/staged-recipes,mariusvniekerk/staged-recipes,asmeurer/staged-recipes,johanneskoester/staged-recipes,Juanlu001/staged-recipes,mcs07/staged-recipes,ceholden/staged-recipes,jochym/staged-recipes,stuertz/staged-recipes,jjhelmus/staged-recipes,kwilcox/staged-recipes,basnijholt/staged-recipes,goanpeca/staged-recipes,mcs07/staged-recipes,hadim/staged-recipes,jochym/staged-recipes,birdsarah/staged-recipes,petrushy/staged-recipes,chrisburr/staged-recipes,birdsarah/staged-recipes,ocefpaf/staged-recipes,jakirkham/staged-recipes,SylvainCorlay/staged-recipes,asmeurer/staged-recipes,ceholden/staged-recipes,hadim/staged-recipes,patricksnape/staged-recipes,mariusvniekerk/staged-recipes,rmcgibbo/staged-recipes,rmcgibbo/staged-recipes,jakirkham/staged-recipes,cpaulik/staged-recipes,ReimarBauer/staged-recipes,dschreij/staged-recipes,isuruf/staged-recipes,petrushy/staged-recipes,ocefpaf/staged-recipes,synapticarbors/staged-recipes,dschreij/staged-recipes,stuertz/staged-recipes,patricksnape/staged-recipes,synapticarbors/staged-recipes,kwilcox/staged-recipes,conda-forge/staged-recipes,jjhelmus/staged-recipes,goanpeca/staged-recipes,basnijholt/staged-recipes,conda-forge/staged-recipes,isuruf/staged-recipes
5f9330b1cc935ca52286dd54549761075e691372
metadata/org.koitharu.kotatsu.yml
metadata/org.koitharu.kotatsu.yml
AntiFeatures: - NonFreeNet Categories: - Reading - Multimedia License: GPL-3.0-or-later AuthorName: Koitharu SourceCode: https://github.com/nv95/Kotatsu IssueTracker: https://github.com/nv95/Kotatsu/issues Name: Kotatsu AutoName: Kotatsu RepoType: git Repo: https://github.com/nv95/Kotatsu.git Builds: - versionName: 1.0.1 versionCode: 364 commit: v1.0.1 subdir: app gradle: - yes - versionName: 1.1.1 versionCode: 366 commit: bbd43b51e37b84474e122c5049e2538b2de8e396 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags ^v[0-9.]+$ CurrentVersion: 1.1.1 CurrentVersionCode: 366
AntiFeatures: - NonFreeNet Categories: - Reading - Multimedia License: GPL-3.0-or-later AuthorName: Koitharu SourceCode: https://github.com/nv95/Kotatsu IssueTracker: https://github.com/nv95/Kotatsu/issues Name: Kotatsu AutoName: Kotatsu RepoType: git Repo: https://github.com/nv95/Kotatsu.git Builds: - versionName: 1.0.1 versionCode: 364 commit: v1.0.1 subdir: app gradle: - yes - versionName: 1.1.1 versionCode: 366 commit: bbd43b51e37b84474e122c5049e2538b2de8e396 subdir: app gradle: - yes - versionName: 1.1.2 versionCode: 367 commit: fae958f6efc993744b385d11854a67f0496c3fe8 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags ^v[0-9.]+$ CurrentVersion: 1.1.2 CurrentVersionCode: 367
Update Kotatsu to 1.1.2 (367)
Update Kotatsu to 1.1.2 (367)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
e5ba76ac9854645ee2f2dd125a561a666ca54999
tasks/wn.yaml
tasks/wn.yaml
--- - name: Set the SGE qmaster node action: copy dest={{SGE_ROOT}}/default/common/act_qmaster content={{sge_server_name}} notify: - restart {{EXEC_SERVICE}}
--- - name: create default directories file: path={{SGE_ROOT}}/default/common/ state=directory when: ansible_os_family == "RedHat" - name: Set the SGE qmaster node action: copy dest={{SGE_ROOT}}/default/common/act_qmaster content={{sge_server_name}} notify: - restart {{EXEC_SERVICE}}
Add creation of default directory for RedHat systems
Add creation of default directory for RedHat systems
YAML
apache-2.0
grycap/ansible-role-sge
ddb61a0687c32a3b8d0d0a34bfec789bd1350985
packages/components-grid/.travis.yml
packages/components-grid/.travis.yml
language: node_js sudo: false node_js: - "4.2.2"
language: node_js sudo: false node_js: - "4" - "5"
Use latest node version on Travis
Use latest node version on Travis
YAML
mit
suitcss/suit,suitcss/suit
4d09aa4738234f2acae3cd7f780dd8d5e41ab8b3
packages/cz/czipwith.yaml
packages/cz/czipwith.yaml
homepage: https://github.com/lspitzner/czipwith/ changelog-type: markdown hash: 083d072adef7b70e313d494d20d34ff3128313b8b799f018cf5950d86bb6e6ef test-bench-deps: czipwith: -any base: ! '>=4.7 && <4.11' transformers: ! '>=0.4.1.0 && <666' maintainer: Lennart Spitzner <hexagoxel@hexagoxel.de> synopsis: CZipWith class and deriving via TH changelog: ! '# Revision history for czipwith ## 1.0.0.0 -- May 2017 * First version. Released on an unsuspecting world. ' basic-deps: base: ! '>=4.7 && <4.11' template-haskell: ! '>=2.9 && <2.13' all-versions: - '1.0.0.0' author: Lennart Spitzner latest: '1.0.0.0' description-type: haddock description: ! 'A typeclass similar to Data.Distributive, but for data parameterised with a type constructor. The name comes from the resemblance of its method to the regular zipWith function. The abstraction is useful for example for program config handling.' license-name: BSD3
homepage: https://github.com/lspitzner/czipwith/ changelog-type: markdown hash: 30751c5a92488304863f20403cd8e9d4fee2b5def0b656a3d979aa3331a09c00 test-bench-deps: czipwith: -any base: ! '>0 && <666' transformers: ! '>=0.4.1.0 && <666' maintainer: Lennart Spitzner <hexagoxel@hexagoxel.de> synopsis: CZipWith class and deriving via TH changelog: ! '# Revision history for czipwith ## 1.0.1.0 -- April 2018 * Add more classes: CFunctor, CPointed, CZipWithM ## 1.0.0.0 -- May 2017 * First version. Released on an unsuspecting world. ' basic-deps: base: ! '>=4.9 && <4.12' template-haskell: ! '>=2.9 && <2.14' all-versions: - '1.0.0.0' - '1.0.1.0' author: Lennart Spitzner latest: '1.0.1.0' description-type: haddock description: ! 'A typeclass similar to Data.Distributive, but for data parameterised with a type constructor. The name comes from the resemblance of its method to the regular zipWith function. The abstraction is useful for example for program config handling.' license-name: BSD3
Update from Hackage at 2018-04-05T16:37:04Z
Update from Hackage at 2018-04-05T16:37:04Z
YAML
mit
commercialhaskell/all-cabal-metadata
b0920e1f96cffc856bc22752caacdf34c6952916
packages/re/rerebase.yaml
packages/re/rerebase.yaml
homepage: https://github.com/nikita-volkov/rerebase changelog-type: '' hash: 51e84d66d7e0b8c20a12da651870be1474f8bcd9e1a6e7c3249a05bcf21732d9 test-bench-deps: {} maintainer: Nikita Volkov <nikita.y.volkov@mail.ru> synopsis: Reexports from "base" with a bunch of other standard libraries changelog: '' basic-deps: rebase: ! '>=1.2.2 && <1.3' all-versions: - '1' - '1.0.1' - '1.0.1.1' - '1.0.2' - '1.0.3' - '1.1' - '1.1.1' - '1.1.2' - '1.2' - '1.2.1' author: Nikita Volkov <nikita.y.volkov@mail.ru> latest: '1.2.1' description-type: haddock description: ! 'A rich drop-in replacement for \"base\". For details and docs please visit <https://github.com/nikita-volkov/rerebase the project''s GitHub page>.' license-name: MIT
homepage: https://github.com/nikita-volkov/rerebase changelog-type: '' hash: 669c88483ec7d7a307921d35a62c02122987b52d5ee995141c2040f1b2942dc4 test-bench-deps: {} maintainer: Nikita Volkov <nikita.y.volkov@mail.ru> synopsis: Reexports from "base" with a bunch of other standard libraries changelog: '' basic-deps: rebase: ==1.2.4 all-versions: - '1' - '1.0.1' - '1.0.1.1' - '1.0.2' - '1.0.3' - '1.1' - '1.1.1' - '1.1.2' - '1.2' - '1.2.1' - '1.2.2' author: Nikita Volkov <nikita.y.volkov@mail.ru> latest: '1.2.2' description-type: haddock description: ! 'A rich drop-in replacement for \"base\". For details and docs please visit <https://github.com/nikita-volkov/rerebase the project''s GitHub page>.' license-name: MIT
Update from Hackage at 2018-05-30T05:57:41Z
Update from Hackage at 2018-05-30T05:57:41Z
YAML
mit
commercialhaskell/all-cabal-metadata
09d5b0be19697ebf4045af20839a48fb66fedb4d
packages/we/weighted.yaml
packages/we/weighted.yaml
homepage: https://github.com/oisdk/weighted changelog-type: '' hash: 09549fd9b00accedec3f237f0b03e618ba9dd7bfb167d5a552b1a5b682985e32 test-bench-deps: {} maintainer: mail@doisinkidney.com synopsis: Writer monad which uses semiring constraint changelog: '' basic-deps: base: ! '>=4.9 && <5' semiring-num: ! '>=0.5.1.1' mtl: ! '>=2.2' all-versions: - '0.1.0.1' author: Donnacha Oisín Kidney latest: '0.1.0.1' description-type: haddock description: Writer monad which uses semiring constraint license-name: MIT
homepage: https://github.com/oisdk/weighted changelog-type: '' hash: ec064b241ad7e0bcb691a94b993b68954c0a5fb1373534e4e7cdd3058790bb82 test-bench-deps: {} maintainer: mail@doisinkidney.com synopsis: Writer monad which uses semiring constraint changelog: '' basic-deps: base: ! '>=4.9 && <5' semiring-num: ! '>=0.9' mtl: ! '>=2.2' transformers: ! '>=0.5' all-versions: - '0.1.0.1' - '0.3.0.0' author: Donnacha Oisín Kidney latest: '0.3.0.0' description-type: haddock description: Writer monad which uses semiring constraint license-name: MIT
Update from Hackage at 2017-02-10T13:47:59Z
Update from Hackage at 2017-02-10T13:47:59Z
YAML
mit
commercialhaskell/all-cabal-metadata
63d7c5745e2df0d2bbe1c6bc863572892678dd56
llvm-dev/tasks/main.yml
llvm-dev/tasks/main.yml
--- - name: Add the llvm APT key apt_key: url=http://llvm.org/apt/llvm-snapshot.gpg.key state=present - name: Add the Ubuntu Toolchain test PPA apt_repository: repo=ppa:ubuntu-toolchain-r/test state=present when: ansible_distribution_release == "precise" - name: Add the llvm PPA apt_repository: repo="deb http://llvm.org/apt/{{ ansible_distribution_release }}/ llvm-toolchain-{{ ansible_distribution_release }} main" state=present - name: Install the LLVM/Clang packages apt: name={{ item }} state=present with_items: - clang-3.5 - clang-3.5-doc - lldb-3.5 - llvm-3.5 - llvm-3.5-doc
--- - name: Add the llvm APT key apt_key: url=http://llvm.org/apt/llvm-snapshot.gpg.key state=present - name: Add the Ubuntu Toolchain test PPA apt_repository: repo=ppa:ubuntu-toolchain-r/test state=present when: ansible_distribution_release == "precise" - name: Add the llvm PPA apt_repository: repo="deb http://llvm.org/apt/{{ ansible_distribution_release }}/ llvm-toolchain-{{ ansible_distribution_release }} main" state=present - name: Install the LLVM/Clang packages apt: name={{ item }} state=present with_items: - clang-3.6 - clang-3.6-doc - lldb-3.6 - llvm-3.6 - llvm-3.6-doc - name: Create alternative links for LLVM and Clang alternatives: name={{ item }} link=/usr/bin/{{ item }} path=/usr/bin/{{ item }}-3.6 with_items: - clang - clang++ - lldb
Update LLVM/Clang to 3.6, add Ubuntu alternatives settings.
Update LLVM/Clang to 3.6, add Ubuntu alternatives settings.
YAML
mit
tomku/ansible-roles
47cf964ae60dad75bcbc63adcba782eac1ea8304
.gitlab-ci.yml
.gitlab-ci.yml
# Copyright (c) 2016, Reed O'Brien # All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. image: golang:1.7 # services: # - postgres stages: - build - test # - deploy metalint: image: golang:1.7 stage: build script: - go get github.com/alecthomas/gometalinter - gometalinter --install - gometalinter wps/... compile-go-1.7: image: golang:1.7 stage: build script: - go build wps/... # Loop through src/*.go, go build, if exit code is not 0, then exit 66 # - (for f in src/*.go; do echo "-> go build $f"; go build $f; if [ $? -ne 0 ]; then exit 66; fi; done); test-go-1.7: image: golang:1.7 # services: # - postgres:9.4 # - truongsinh/rethinkdb:2.1.3 stage: test script: # - go run sql/latest_schema.sql.go - go test -race wps/...
# Copyright (c) 2016, Reed O'Brien # All rights reserved. Use of this source code is governed by a # BSD-style license that can be found in the LICENSE file. image: golang:1.7 # services: # - postgres stages: - build - test # - deploy metalint: image: golang:1.7 stage: build script: - echo $GOPATH - echo $GOROOT - ls -laht - go get github.com/alecthomas/gometalinter - gometalinter --install - gometalinter wps/... compile-go-1.7: image: golang:1.7 stage: build script: - go build wps/... # Loop through src/*.go, go build, if exit code is not 0, then exit 66 # - (for f in src/*.go; do echo "-> go build $f"; go build $f; if [ $? -ne 0 ]; then exit 66; fi; done); test-go-1.7: image: golang:1.7 # services: # - postgres:9.4 # - truongsinh/rethinkdb:2.1.3 stage: test script: # - go run sql/latest_schema.sql.go - go test -race wps/...
Update ci runner to explore
Update ci runner to explore
YAML
bsd-3-clause
reedobrien/wps,reedobrien/wps
d208dcd2c273fb499bb8020033926ef8dedb4668
.gitlab-ci.yml
.gitlab-ci.yml
image: ubuntu:16.10 stages: - build before_script: - apt-get update - apt-get install -y libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev emscripten build-essential cmake 'build linux': stage: build script: - make artifacts: paths: - build/innojam9 'build web': stage: build script: - make web artifacts: paths: - build-web
image: trzeci/emscripten stages: - build before_script: - apt-get update - apt-get install -y libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev emscripten build-essential cmake 'build linux': stage: build script: - make artifacts: paths: - build/innojam9 'build web': stage: build script: - make web artifacts: paths: - build-web
Use other docker file with modern emscripten available.
Use other docker file with modern emscripten available.
YAML
mit
Prior99/igj10
d5050439ba484dc6495e3c53458d12800ed4acd4
.gitlab-ci.yml
.gitlab-ci.yml
stages: - build - test - qa # Cache Maven output cache: key: "$CI_BUILD_REF_NAME" untracked: true # Compile the code, must succeed before we start testing. build: stage: build script: "mvn clean compile -B" # Run the quick test suite (Unit tests mostly) quicktests: stage: test script: "mvn test -B --fail-at-end" # Run the integration test suite (Unit tests which don't use mocks and commonly exclude mock usages) integration-tests: stage: test script: "mvn verify -B --fail-at-end" # Run a sonar analysis. sonar: stage: qa script: "mvn compile test-compile sonar:sonar -B -Dsonar.host.url=https://sonarqube.johnnei.org -Dsonar.branch=$CI_BUILD_REF_NAME"
stages: - build - test - qa # Compile the code, must succeed before we start testing. build: stage: build script: "mvn -B clean compile" # Run the quick test suite (Unit tests mostly) quicktests: stage: test script: "mvn -B test --fail-at-end" artifacts: paths: - target/jacoco.exec # Run the integration test suite (Unit tests which don't use mocks and commonly exclude mock usages) integration-tests: stage: test script: "mvn -B verify --fail-at-end" artifacts: paths: - target/jacoco-it.exec # Run a sonar analysis. sonar: stage: qa script: "mvn -B compile test-compile sonar:sonar -Dsonar.host.url=https://sonarqube.johnnei.org -Dsonar.branch=$CI_BUILD_REF_NAME" dependencies: - quicktests - integration-tests
Use artifacts instead of unreliable for SonarQube build step.
JBT-52: Use artifacts instead of unreliable for SonarQube build step.
YAML
apache-2.0
Johnnei/JavaTorrent
1a8dadad9aba2a01c5fabfa129e952336a04e98c
.gitlab-ci.yml
.gitlab-ci.yml
image: docker:18 stages: - build services: - docker:dind variables: GIT_DEPTH: 1 DOCKER_DRIVER: overlay2 before_script: - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY build-tags: stage: build script: - docker pull $CI_REGISTRY_IMAGE:$CI_COMMIT_BEFORE_SHA || true - docker pull $CI_REGISTRY_IMAGE:latest-build || true - docker build --cache-from $CI_REGISTRY_IMAGE:$CI_COMMIT_BEFORE_SHA --cache-from $CI_REGISTRY_IMAGE:latest-build --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_TAG --tag $CI_REGISTRY_IMAGE:latest-build . - docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_TAG - docker push $CI_REGISTRY_IMAGE:latest-build only: - tags build: stage: build script: - docker pull $CI_REGISTRY_IMAGE:$CI_COMMIT_BEFORE_SHA || true - docker docker pull $CI_REGISTRY_IMAGE:latest-build || true - docker build --cache-from $CI_REGISTRY_IMAGE:$CI_COMMIT_BEFORE_SHA --cache-from $CI_REGISTRY_IMAGE:latest-build --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA --tag $CI_REGISTRY_IMAGE:latest-build . - docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA - docker push $CI_REGISTRY_IMAGE:latest-build except: - tags
image: docker:19 stages: - build services: - docker:dind variables: GIT_DEPTH: 1 DOCKER_DRIVER: overlay2 before_script: - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY build-tags: stage: build script: - docker pull $CI_REGISTRY_IMAGE:$CI_COMMIT_BEFORE_SHA || true - docker pull $CI_REGISTRY_IMAGE:latest-build || true - docker build --cache-from $CI_REGISTRY_IMAGE:$CI_COMMIT_BEFORE_SHA --cache-from $CI_REGISTRY_IMAGE:latest-build --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_TAG --tag $CI_REGISTRY_IMAGE:latest-build . - docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_TAG - docker push $CI_REGISTRY_IMAGE:latest-build only: - tags build: stage: build script: - docker pull $CI_REGISTRY_IMAGE:$CI_COMMIT_BEFORE_SHA || true - docker docker pull $CI_REGISTRY_IMAGE:latest-build || true - docker build --cache-from $CI_REGISTRY_IMAGE:$CI_COMMIT_BEFORE_SHA --cache-from $CI_REGISTRY_IMAGE:latest-build --tag $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA --tag $CI_REGISTRY_IMAGE:latest-build . - docker push $CI_REGISTRY_IMAGE:$CI_COMMIT_SHA - docker push $CI_REGISTRY_IMAGE:latest-build except: - tags
Upgrade CI build to Docker 19
Upgrade CI build to Docker 19
YAML
agpl-3.0
flosse/openfairdb,flosse/openfairdb
f2f3ca0c0b613dd15fae087f5b5189c946a01b90
.gitlab-ci.yml
.gitlab-ci.yml
stages: - test test-linux-386: stage: test tags: - docker-capsule-32 script: - npm i test-macos-amd64: stage: test tags: - docker-capsule-64 script: - npm i
stages: - test test-windows-amd64: stage: test tags: - msbuild script: - npm i test-linux-386: stage: test tags: - docker-capsule-32 script: - npm i test-macos-amd64: stage: test tags: - docker-capsule-64 script: - npm i test-macos-amd64: stage: test tags: - darwin script: - npm i
Add macos & windows tests
Add macos & windows tests
YAML
mit
itchio/node-shoom,itchio/node-shoom,itchio/node-shoom
fd6794b1b905685fb54159c189f1e07585107598
.gitlab-ci.yml
.gitlab-ci.yml
--- default: before_script: - ruby -v - which ruby - gem install bundler --no-document - bundle install --jobs $(nproc) "${FLAGS[@]}" test:2.4: image: 'ruby:2.4' script: - bundle exec rake - cd test/integration && bundle install - bundle exec ruby api.rb test:2.5: image: 'ruby:2.5' script: - bundle exec rake - cd test/integration && bundle install - bundle exec ruby api.rb test:2.6: image: 'ruby:2.6' script: - bundle exec rake - cd test/integration && bundle install - bundle exec ruby api.rb test:2.7: image: 'ruby:2.7' script: - bundle exec rake - cd test/integration && bundle install - bundle exec ruby api.rb artifacts: paths: - coverage/ test:jruby: image: 'jruby:9.2.12-jre' script: - bundle exec rake - cd test/integration && bundle install - bundle exec ruby api.rb
--- stages: - test - coverage default: before_script: - ruby -v - which ruby - gem install bundler --no-document - bundle install --jobs $(nproc) "${FLAGS[@]}" .tests: script: - bundle exec rake - cd test/integration && bundle install - bundle exec ruby api.rb stage: test test:2.4: extends: .tests image: 'ruby:2.4' test:2.5: extends: .tests image: 'ruby:2.5' test:2.6: extends: .tests image: 'ruby:2.6' test:2.7: extends: .tests image: 'ruby:2.7' test:jruby: extends: .tests image: 'jruby:9.2.12-jre' coverage: image: 'ruby:2.7' script: - bundle exec rake test artifacts: paths: - coverage/ stage: coverage
Add coverage stage on ci
Add coverage stage on ci
YAML
mit
spk/money-open-exchange-rates
349608b88650025f45f17a8948d7d1a2230afa57
.gitlab-ci.yml
.gitlab-ci.yml
image: jacob9230/linter before_script: - npm install --global --quiet eslint stylelint - npm install --no-package-lock --no-save --quiet stylelint stylelint-config-standard stylelint-order stylelint-scss - node -v - npm -v - php -v code_quality: script: - stylelint "./src/assets/styles/**/*.scss" - eslint "./src/assets/scripts/**/*.js" - phplint "./src"
image: jacob9230/linter before_script: - npm install --no-package-lock --no-save --quiet stylelint stylelint-config-standard stylelint-order stylelint-scss - node -v - npm -v - php -v code_quality: script: - stylelint "./src/assets/styles/**/*.scss" - eslint "./src/assets/scripts/**/*.js" - phplint "./src"
Remove global install for eslint & stylelint; it's taken care of by the Docker image
Remove global install for eslint & stylelint; it's taken care of by the Docker image
YAML
mit
JacobDB/new-site,JacobDB/new-site,JacobDB/new-site,revxx14/new-site,revxx14/new-site
d8907c4d503f09f854b4218102947eecb80a772b
.gitlab-ci.yml
.gitlab-ci.yml
before_script: - echo $TOTO_VAR rustbuild-1.5: image: waxzce/rust:1.5 script: - rustc -V - cargo build rustbuild-1.6: image: waxzce/rust:1.6 script: - rustc -V - cargo build rustbuild-1.7: image: waxzce/rust:1.7 script: - rustc -V - cargo build
before_script: - echo $TOTO_VAR rustbuild-1.5: image: waxzce/rust:1.5 script: - rustc -V - cargo build - cargo test rustbuild-1.6: image: waxzce/rust:1.6 script: - rustc -V - cargo build - cargo test rustbuild-1.7: image: waxzce/rust:1.7 script: - rustc -V - cargo build - cargo test
Add unit testing to CI
Add unit testing to CI
YAML
agpl-3.0
sozu-proxy/sozu,sozu-proxy/sozu,sozu-proxy/sozu
3c28a97f7a9a4c9d5b01dfce91aa2a1fcc725dc9
.gitlab-ci.yml
.gitlab-ci.yml
image: haskell:8.2.2 services: - postgres:9.4 variables: POSTGRES_DB: betty_test POSTGRES_USER: betty POSTGRES_PASSWORD: betty cache: untracked: true paths: - $(pwd)/.stack/ before_script: - export STACK_ROOT=$(pwd)/.stack - apt-get update -qq && apt-get install -qq -y m4 libpq-dev - cp secrets.m4.example secrets.m4 - make files - stack install hspec-discover - stack install --only-dependencies -j 4 test: script: - export PGHOST=postgres - export PGUSER=$POSTGRES_USER - export PGPASS=$POSTGRES_PASSWORD - export PGDATABASE=$POSTGRES_DB - stack test --coverage after_script: - stack hpc report betty
image: haskell:8.2 services: - postgres:9.4 variables: POSTGRES_DB: betty_test POSTGRES_USER: betty POSTGRES_PASSWORD: betty cache: untracked: true paths: - $(pwd)/.stack/ before_script: - export STACK_ROOT=$(pwd)/.stack - apt-get update -qq && apt-get install -qq -y m4 libpq-dev - cp secrets.m4.example secrets.m4 - make files - stack install hspec-discover - stack install --only-dependencies -j 4 test: script: - export PGHOST=postgres - export PGUSER=$POSTGRES_USER - export PGPASS=$POSTGRES_PASSWORD - export PGDATABASE=$POSTGRES_DB - stack test --coverage after_script: - stack hpc report betty
Use GHC 8.2 in Gitlab CI.
Use GHC 8.2 in Gitlab CI.
YAML
agpl-3.0
sajith/betty-web
5a03e6db315092b4da584320850023c8bea53080
.gitlab-ci.yml
.gitlab-ci.yml
stages: - build - deploy image: alpine:latest build:dev: stage: build except: - release - master - /^release-.*$/ script: - apk update - apk add nodejs nodejs-npm git - npm install - npm install cli/ - npm run-script build artifacts: paths: - build/ expire_in: 1 month build:release: stage: build script: - echo "$SSH_DEPLOY_KEY" | tr -d '\r' > ~/.ssh/id_rsa - chmod 600 ~/.ssh/id_rsa - apk update - apk add git - git remote -v - echo git@${CI_SERVER_NAME}:${CI_PROJECT_PATH_SLUG} - git remote set-url origin git@${CI_SERVER_NAME}:${CI_PROJECT_PATH_SLUG} - git checkout -b release-test - git push --set-upstream origin release-test - echo 'test' > test.txt - git add test.txt - git commit -m 'Add test.txt' - git push - echo "Done" deploy:dev: stage: deploy only: - develop variables: GIT_STRATEGY: none dependencies: [] script: - apk update - apk add curl - curl -X POST -F token=$TURNIERE_TUVERO_TOKEN -F ref=develop http://server.local/api/v4/projects/1/trigger/pipeline
stages: - build - deploy image: alpine:latest build:dev: stage: build except: - release - master - /^release-.*$/ script: - apk update - apk add nodejs nodejs-npm git - npm install - npm install cli/ - npm run-script build artifacts: paths: - build/ expire_in: 1 month build:release: stage: build script: - mkdir -p ~/.ssh/ - chmod 700 ~/.ssh/ - echo "$SSH_DEPLOY_KEY" | tr -d '\r' > ~/.ssh/id_rsa - chmod 600 ~/.ssh/id_rsa - apk update - apk add git - git remote -v - echo git@${CI_SERVER_NAME}:${CI_PROJECT_PATH_SLUG} - git remote set-url origin git@${CI_SERVER_NAME}:${CI_PROJECT_PATH_SLUG} - git checkout -b release-test - git push --set-upstream origin release-test - echo 'test' > test.txt - git add test.txt - git commit -m 'Add test.txt' - git push - echo "Done" deploy:dev: stage: deploy only: - develop variables: GIT_STRATEGY: none dependencies: [] script: - apk update - apk add curl - curl -X POST -F token=$TURNIERE_TUVERO_TOKEN -F ref=develop http://server.local/api/v4/projects/1/trigger/pipeline
Create .ssh directory during build
Create .ssh directory during build
YAML
mit
elor/tuvero
8860b8571ad56fc8a01d938fed49e4fe8faf2cc6
.gitlab-ci.yml
.gitlab-ci.yml
tests: stage: test image: registry.gitlab.com/craigbarnes/dockerfiles/lua-testing-extra script: - make -j`nproc` local-libgumbo - make -j`nproc` build-all USE_LOCAL_LIBGUMBO=1 DEBUG=1 - make -j`nproc` --output-sync=line check-all USE_LOCAL_LIBGUMBO=1 # - make clean check-luarocks-make LUAROCKS=luarocks-5.3 # - make check-luarocks-build LUAROCKS=luarocks-5.3 - make coverage.txt USE_LOCAL_LIBGUMBO=1 - sed -n '/^File *Hits .*Coverage$/,/^Total.*%$/p' coverage.txt - luacov-coveralls-5.3 -t "$COVERALLS_TOKEN" pages-test: stage: test image: quay.io/craigbarnes/pandoc except: [master] script: - git fetch --tags - make -j`nproc` docs dist - make check-dist pages: stage: deploy image: quay.io/craigbarnes/pandoc artifacts: {paths: [public]} only: [master] script: - git fetch --tags - make -j`nproc` docs dist - make check-dist
test-system-libgumbo: stage: test image: registry.gitlab.com/craigbarnes/dockerfiles/lua-testing script: - apt-get update - apt-get install -qy libgumbo-dev - make -j`nproc` build-all DEBUG=1 - make -j`nproc` --output-sync=line check-all test-local-libgumbo: stage: test image: registry.gitlab.com/craigbarnes/dockerfiles/lua-testing-extra script: - make -j`nproc` local-libgumbo - make -j`nproc` build-all USE_LOCAL_LIBGUMBO=1 DEBUG=1 - make -j`nproc` --output-sync=line check-all USE_LOCAL_LIBGUMBO=1 # - make clean check-luarocks-make LUAROCKS=luarocks-5.3 # - make check-luarocks-build LUAROCKS=luarocks-5.3 - make coverage.txt USE_LOCAL_LIBGUMBO=1 - sed -n '/^File *Hits .*Coverage$/,/^Total.*%$/p' coverage.txt - luacov-coveralls-5.3 -t "$COVERALLS_TOKEN" pages-test: stage: test image: quay.io/craigbarnes/pandoc except: [master] script: - git fetch --tags - make -j`nproc` docs dist - make check-dist pages: stage: deploy image: quay.io/craigbarnes/pandoc artifacts: {paths: [public]} only: [master] script: - git fetch --tags - make -j`nproc` docs dist - make check-dist
Add CI target for running tests with dynamically linked bindings
Add CI target for running tests with dynamically linked bindings
YAML
apache-2.0
craigbarnes/lua-gumbo,craigbarnes/lua-gumbo,craigbarnes/lua-gumbo
11b6222a037e06fabd763c0c1f3ad921d7ef48c0
.gitlab-ci.yml
.gitlab-ci.yml
image: docker:latest services: - docker:dind variables: DOCKER_DRIVER: overlay stages: - build - release build: stage: build script: - ./bin/build.sh release: stage: release script: - lein test - ./bin/release.sh
image: docker:latest services: - docker:dind variables: DOCKER_DRIVER: overlay stages: - build - release build: stage: build script: - ./bin/build.sh release: stage: release script: - ./bin/release.sh
Remove test run in release step
Remove test run in release step
YAML
epl-1.0
treppo/yorck-ratings-v2
10337fb20d3330485ccab98d64b485a647c73987
packages/fu/functor-products.yaml
packages/fu/functor-products.yaml
homepage: https://github.com/mstksg/functor-products#readme changelog-type: markdown hash: cc5e526b5f3694d33a89044578e4fe74e4e05dd01d5d96bc57be06d6d98a1883 test-bench-deps: {} maintainer: justin@jle.im synopsis: General functor products for various Foldable instances changelog: | Changelog ========= Version 0.1.0.0 --------------- *August 12, 2019* <https://github.com/mstksg/functor-products/releases/tag/v0.1.0.0> * Initial release basic-deps: base: ! '>=4.7 && <5' text: -any singletons: ! '>=2.5' vinyl: -any microlens: -any all-versions: - 0.1.0.0 author: Justin Le latest: 0.1.0.0 description-type: markdown description: | # functor-products Generalizes the `Rec` type in *[vinyl][]* to work over various different `Foldable` instances, instead of just lists. Provides a unifying abstraction for all of them, as well as data types to index into them. [vinyl]: https://hackage.haskell.org/package/vinyl license-name: BSD-3-Clause
homepage: https://github.com/mstksg/functor-products#readme changelog-type: markdown hash: 2db6766ea39c96af679b60e951d6704fa900ecf92517406d561b799f0243b89f test-bench-deps: {} maintainer: justin@jle.im synopsis: General functor products for various Foldable instances changelog: | Changelog ========= Version 0.1.0.0 --------------- *August 12, 2019* <https://github.com/mstksg/functor-products/releases/tag/v0.1.0.0> * Initial release basic-deps: base: ! '>=4.7 && <5' text: -any singletons: ! '>=2.5 && <2.6' vinyl: -any microlens: -any all-versions: - 0.1.0.0 author: Justin Le latest: 0.1.0.0 description-type: markdown description: | # functor-products Generalizes the `Rec` type in *[vinyl][]* to work over various different `Foldable` instances, instead of just lists. Provides a unifying abstraction for all of them, as well as data types to index into them. [vinyl]: https://hackage.haskell.org/package/vinyl license-name: BSD-3-Clause
Update from Hackage at 2019-10-22T22:11:42Z
Update from Hackage at 2019-10-22T22:11:42Z
YAML
mit
commercialhaskell/all-cabal-metadata
856d5a3b22ca22b563fb79d32a485b6146fe5c01
packages/ho/hoauth2-tutorial.yaml
packages/ho/hoauth2-tutorial.yaml
homepage: https://github.com/freizl/hoauth2 changelog-type: '' hash: 30a4a4bb24534123b420c86155f352ab672a70c574d7fdb817c0e6ee234cebdc test-bench-deps: {} maintainer: Haisheng Wu <freizl@gmail.com> synopsis: Tutorial for using hoauth2 changelog: '' basic-deps: warp: '>=3.2 && <3.4' hoauth2-tutorial: -any bytestring: '>=0.9 && <0.12' wai: ^>=3.2 base: '>=4.5 && <5' hoauth2: ^>=2.5 text: '>=0.11 && <1.3' uri-bytestring: '>=0.2.3 && <0.4' transformers: ^>=0.5 http-conduit: '>=2.1 && <2.4' scotty: '>=0.10.0 && <0.13' http-types: '>=0.11 && <0.13' aeson: '>=2.0 && <2.2' all-versions: - '0.1' author: Haisheng Wu latest: '0.1' description-type: haddock description: Tutorial to demostrate how to use hoauth2 to implement OAuth2 flow in an web Application. license-name: BSD-3-Clause
homepage: https://github.com/freizl/hoauth2 changelog-type: '' hash: a812079a9735eef844871602e0da3575b4a0efffc98966d2fe2681fd6717e5b8 test-bench-deps: {} maintainer: Haisheng Wu <freizl@gmail.com> synopsis: Tutorial for using hoauth2 changelog: '' basic-deps: warp: '>=3.2 && <3.4' hoauth2-tutorial: -any bytestring: '>=0.9 && <0.12' wai: ^>=3.2 base: '>=4.5 && <5' hoauth2: ^>=2.5 text: '>=0.11 && <1.3' uri-bytestring: '>=0.2.3 && <0.4' transformers: ^>=0.5 http-conduit: '>=2.1 && <2.4' scotty: '>=0.10.0 && <0.13' http-types: '>=0.11 && <0.13' aeson: '>=2.0 && <2.2' all-versions: - '0.1' - 0.1.1 author: Haisheng Wu latest: 0.1.1 description-type: haddock description: Tutorial to demostrate how to use hoauth2 to implement OAuth2 flow in an web Application. license-name: BSD-3-Clause
Update from Hackage at 2022-09-18T16:42:05Z
Update from Hackage at 2022-09-18T16:42:05Z
YAML
mit
commercialhaskell/all-cabal-metadata
e9f77631e68c62335c427aeaf1419aa61bb9a5a4
app/cron.yaml
app/cron.yaml
cron: - description: update counts url: /tasks/count schedule: every 10 minutes - description: sitemap ping url: /sitemap/ping?search_engine=google schedule: every 15 minutes
cron: - description: update counts url: /tasks/count schedule: every 30 minutes - description: sitemap ping url: /sitemap/ping?search_engine=google schedule: every 15 minutes
Decrease the frequency of entity counting (to one count every 30 minutes).
Decrease the frequency of entity counting (to one count every 30 minutes).
YAML
apache-2.0
namanjain236/personfinder,google/personfinder,AwesomeTurtle/personfinder,clobrano/personfinder,AwesomeTurtle/personfinder,google/personfinder,ominux/personfinder,gauribhoite/personfinder,clobrano/personfinder,groschovskiy/personfinder,g19-hs/personfinder,clobrano/personfinder,gimite/personfinder,google/personfinder,google/personfinder,AwesomeTurtle/personfinder,gimite/personfinder,kspviswa/personfinder,lucasmoura/personfinder,g19-hs/personfinder,gauribhoite/personfinder,groschovskiy/personfinder,lucasmoura/personfinder,gauribhoite/personfinder,gimite/personfinder,gauribhoite/personfinder,namanjain236/personfinder,ominux/personfinder,gauribhoite/personfinder,gauribhoite/personfinder,gimite/personfinder,kspviswa/personfinder
956b87d0dfc9f77f504af15f250c1f3949a8a2b4
.cirrus.yml
.cirrus.yml
# Run tasks with the dart SDK installed by default container: dockerfile: tool/Dockerfile task: pub_cache: folder: $HOME/.pub-cache environment: CODECOV_TOKEN: ENCRYPTED[6322a159d9b7692b999d13fa2bc7981c8b61ecb1ac18ae076864f1355ee9b65088b2bf9d97d7860196e58bf1db5708af] dart_version_script: dart --version pub_get_script: tool/pub_get.sh analyze_script: tool/analyze.sh test_moor_script: tool/test_moor.sh test_sqlparser_script: tool/test_sqlparser.sh test_moor_ffi_script: tool/test_moor_ffi.sh vm_integration_test_script: tool/vm_integration_test.sh test_moor_generator_script: tool/test_generator.sh format_coverage_script: tool/upload_coverage.sh
# Run tasks with the dart SDK installed by default container: dockerfile: tool/Dockerfile memory: 12G cpu: 4 task: pub_cache: folder: $HOME/.pub-cache environment: CODECOV_TOKEN: ENCRYPTED[6322a159d9b7692b999d13fa2bc7981c8b61ecb1ac18ae076864f1355ee9b65088b2bf9d97d7860196e58bf1db5708af] dart_version_script: dart --version pub_get_script: tool/pub_get.sh analyze_script: tool/analyze.sh test_moor_script: tool/test_moor.sh test_sqlparser_script: tool/test_sqlparser.sh test_moor_ffi_script: tool/test_moor_ffi.sh vm_integration_test_script: tool/vm_integration_test.sh test_moor_generator_script: tool/test_generator.sh format_coverage_script: tool/upload_coverage.sh
Increase CPU and build memory
CI: Increase CPU and build memory
YAML
mit
simolus3/drift,simolus3/drift,simolus3/moor,simolus3/moor,simolus3/drift,simolus3/moor,simolus3/moor,simolus3/moor,simolus3/moor,simolus3/drift,simolus3/drift,simolus3/drift,simolus3/moor,simolus3/drift
c9d614adbce300b3ce847493847f6bd6d7bc3a3b
.travis.yml
.travis.yml
language: ruby cache: bundler rvm: - 2.0.0 - 2.1 - 2.2 - 2.3.0 - 2.3.1 - ruby-head script: bundle exec rake test matrix: allow_failures: - rvm: ruby-head
sudo: false language: ruby cache: bundler rvm: - 2.1 - 2.2 - 2.3.0 - 2.3.1 - ruby-head script: bundle exec rails test matrix: allow_failures: - rvm: ruby-head
Add Continuous Integration with Travis CI
Add Continuous Integration with Travis CI
YAML
mit
casi/flatshare_app,casi/flatshare_app,casi/flatshare_app,casi/flatshare_app
8b29bfa74b2ace9fee02cd46d30a62fdaecff016
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.4" - "3.5" install: pip install nose script: nosetests
sudo: false language: python python: - "2.6" - "2.7" - "3.4" - "3.5" install: pip install nose script: nosetests
Use Travis' new container infrastructure
Use Travis' new container infrastructure
YAML
isc
jonashaag/httpauth
a08936c0e45bbfbda75667233016765b5112bcd2
.travis.yml
.travis.yml
# https://travis-ci.org/dr-prodigy/python-holidays language: python sudo: required dist: xenial python: - 2.7 - 3.4 - 3.5 - 3.6 - 3.7 - pypy - pypy3 env: - DATEUTIL=python-dateutil==2.7.0 - DATEUTIL=python-dateutil install: - pip install $DATEUTIL - python setup.py install - pip install flake8 - pip install coveralls before_script: - flake8 holidays.py tests.py script: - coverage run --omit=*site-packages*,*pypy* tests.py after_success: - coveralls
# https://travis-ci.org/dr-prodigy/python-holidays language: python python: - 2.7 - 3.4 - 3.5 - 3.6 - 3.7 - pypy - pypy3 env: - DATEUTIL=python-dateutil==2.7.0 - DATEUTIL=python-dateutil install: - pip install $DATEUTIL - python setup.py install - pip install flake8 - pip install coveralls before_script: - flake8 holidays.py tests.py script: - coverage run --omit=*site-packages*,*pypy* tests.py after_success: - coveralls
Revert "Fix for Py3.7 on TravisCI"
Revert "Fix for Py3.7 on TravisCI"
YAML
mit
ryanss/holidays.py,ryanss/python-holidays,dr-prodigy/python-holidays
9925637f81eb66e10ac0860e2be1606542d008d9
.travis.yml
.travis.yml
sudo: required services: - docker language: java jdk: - oraclejdk8 before_install: - sed -i.bak -e 's|https://nexus.codehaus.org/snapshots/|https://oss.sonatype.org/content/repositories/codehaus-snapshots/|g' ~/.m2/settings.xml # fire up a IBM MQ container to run the integration tests against - docker-compose -f src/etc/docker/v8/docker-compose.yml up -d # grab the needed proprietary libs from the MQ container and install locally - docker cp local-mq8:/opt/mqm/java/lib/com.ibm.mq.allclient.jar . - docker cp local-mq8:/opt/mqm/java/lib/com.ibm.mq.pcf.jar . - mvn install:install-file -Dfile=com.ibm.mq.allclient.jar -DgroupId=com.ibm -DartifactId=com.ibm.mq.allclient -Dversion=8 -Dpackaging=jar - mvn install:install-file -Dfile=com.ibm.mq.pcf.jar -DgroupId=com.ibm -DartifactId=com.ibm.mq.pcf -Dversion=8 -Dpackaging=jar # only need the below local build until the spring-cloud-stream-binder-jms project follows the usual Spring build process - git clone https://github.com/spring-cloud/spring-cloud-stream-binder-jms.git /tmp/spring-cloud-stream-binder-jms - (cd /tmp/spring-cloud-stream-binder-jms && exec /tmp/spring-cloud-stream-binder-jms/mvnw clean install -DskipTests) addons: hosts: - ibmmq
sudo: required services: - docker language: java jdk: - oraclejdk8 before_install: - sed -i.bak -e 's|https://nexus.codehaus.org/snapshots/|https://oss.sonatype.org/content/repositories/codehaus-snapshots/|g' ~/.m2/settings.xml # fire up a IBM MQ container to run the integration tests against - docker-compose -f src/etc/docker/v8/docker-compose.yml up -d # grab the needed proprietary libs from the MQ container and install locally - docker cp local-mq8:/opt/mqm/java/lib/com.ibm.mq.allclient.jar . - docker cp local-mq8:/opt/mqm/java/lib/com.ibm.mq.pcf.jar . - mvn install:install-file -Dfile=com.ibm.mq.allclient.jar -DgroupId=com.ibm -DartifactId=com.ibm.mq.allclient -Dversion=8 -Dpackaging=jar - mvn install:install-file -Dfile=com.ibm.mq.pcf.jar -DgroupId=com.ibm -DartifactId=com.ibm.mq.pcf -Dversion=8 -Dpackaging=jar addons: hosts: - ibmmq
Remove JMS core cloning from Travis config
Remove JMS core cloning from Travis config Fix #5
YAML
apache-2.0
AbsaOSS/spring-cloud-stream-binder-ibm-mq,AbsaOSS/spring-cloud-stream-binder-ibm-mq
01a9ff144e409744541536c20058704bcb7b481e
.travis.yml
.travis.yml
language: node_js dist: trusty node_js: - 6.1 sudo: required addons: apt: sources: - google-chrome packages: - google-chrome-stable - google-chrome-beta before_install: - apt-get update - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - google-chrome --version install: - npm install - npm install codecov script: - npm run ng test -- --single-run=true --browsers Chrome --code-coverage - ./node_modules/codecov/bin/codecov - npm run ng e2e - npm run ng lint - npm run ng build
language: node_js dist: trusty node_js: - 6.1 sudo: required addons: apt: sources: - google-chrome packages: - google-chrome-stable - google-chrome-beta before_install: - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - google-chrome --version install: - npm install - npm install codecov script: - npm run ng test -- --single-run=true --browsers Chrome --code-coverage - ./node_modules/codecov/bin/codecov - npm run ng e2e - npm run ng lint - npm run ng build
Revert "this is so not going to work :poop:"
Revert "this is so not going to work :poop:" This reverts commit dd4ce2645ec91a84556d67343e41bd607b56c7ba.
YAML
mit
arranbartish/angular-cli-seed,arranbartish/angular-cli-seed,arranbartish/angular-cli-seed
5c092ead08acbb914e8b87a0ee6673854b3a2157
.travis.yml
.travis.yml
language: python python: - "3.3" before_install: - sudo apt-get update -qq - sudo apt-get install -qq --no-install-recommends libssh-4 - sudo apt-get install -qq --no-install-recommends openssl - sudo apt-get install -qq --no-install-recommends openssh-client - sudo apt-get install -qq --no-install-recommends git - git config --global user.email "test@example.com" - git config --global user.name "Git Test" install: - pip install PyYAML>=3.10 script: scripts/ut.py
language: python python: - "3.3" - "3.4" before_install: - sudo apt-get update -qq - sudo apt-get install -qq --no-install-recommends libssh-4 - sudo apt-get install -qq --no-install-recommends openssl - sudo apt-get install -qq --no-install-recommends openssh-client - sudo apt-get install -qq --no-install-recommends git - git config --global user.email "test@example.com" - git config --global user.name "Git Test" install: - pip install PyYAML>=3.10 script: scripts/ut.py
Add Python 3.4 to Travis CI test matrix
Add Python 3.4 to Travis CI test matrix
YAML
isc
daemotron/controlbeast,daemotron/controlbeast
e7a19c0e27ff26778e46f224809b766390252fcc
.travis.yml
.travis.yml
osx_image: xcode7.1 language: objective-c env: global: - LANG=en_US.UTF-8 before_install: - brew update - brew outdated xctool || brew upgrade xctool script: # Carthage - xctool clean build -project Async.xcodeproj -scheme "Async iOS" -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO - xctool clean build -project Async.xcodeproj -scheme "Async OSX" -sdk macosx ONLY_ACTIVE_ARCH=NO # CocoaPods - xctool clean build -workspace AsyncPodsExample/AsyncPodsExample.xcworkspace -scheme "AsyncExample iOS" -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO - xctool clean build -workspace AsyncPodsExample/AsyncPodsExample.xcworkspace -scheme "AsyncExample OS X" -sdk macosx ONLY_ACTIVE_ARCH=NO # Tests (OS X only, since simulator doesn't play nice with GCD) - xctool clean build test -project AsyncTest/Async.xcodeproj -scheme "AsyncOSX" -sdk macosx ONLY_ACTIVE_ARCH=NO after_success: - bash <(curl -s https://codecov.io/bash)
osx_image: xcode7.1 language: objective-c env: global: - LANG=en_US.UTF-8 before_install: - brew update - brew outdated xctool || brew upgrade xctool script: # Carthage - xctool clean build -project Async.xcodeproj -scheme "Async iOS" -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO - xctool clean build -project Async.xcodeproj -scheme "Async OSX" -sdk macosx ONLY_ACTIVE_ARCH=NO # CocoaPods #- xctool clean build -workspace AsyncPodsExample/AsyncPodsExample.xcworkspace -scheme "AsyncExample iOS" -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO #- xctool clean build -workspace AsyncPodsExample/AsyncPodsExample.xcworkspace -scheme "AsyncExample OS X" -sdk macosx ONLY_ACTIVE_ARCH=NO # Tests (OS X only, since simulator doesn't play nice with GCD) - xctool clean build test -project AsyncTest/Async.xcodeproj -scheme "AsyncOSX" -sdk macosx ONLY_ACTIVE_ARCH=NO after_success: - bash <(curl -s https://codecov.io/bash)
Disable CocoaPods build on Travis CI
Disable CocoaPods build on Travis CI
YAML
mit
2h4u/Async,kostiakoval/Async,kostiakoval/Async,duemunk/Async,2h4u/Async,duemunk/Async,kostiakoval/Async,2h4u/Async,duemunk/Async
a05c3a40e2cf2166d1c19a5e9b92a79971d05950
.travis.yml
.travis.yml
language: node_js node_js: - '0.10' - '0.11' - '0.12' after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
language: node_js node_js: - '0.11' - '0.12' after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
Remove v0.10 due to unknown error
Remove v0.10 due to unknown error
YAML
mit
skellyjs/skellyjs,skellyjs/skellyjs
629b3b892af994037fa67e21dc196ea74abf4b87
.travis.yml
.travis.yml
language: go os: - linux - osx go: - 1.2.x - 1.3.x - 1.4 - 1.5.x - 1.6.x - 1.7.x - 1.8.x - 1.9.x - tip notifications: email: on_success: change on_failure: always
language: go os: - linux - osx go: - 1.2.x - 1.3.x - 1.4 - 1.5.x - 1.6.x - 1.7.x - 1.8.x - 1.9.x - "1.10.x" - tip matrix: exclude: - os: osx go: 1.2.x - os: osx go: 1.3.x - os: osx go: 1.4 - os: osx go: 1.5.x - os: osx go: 1.6.x notifications: email: on_success: change on_failure: always
Test against Go <1.7 on Linux only, as Travis-CI has issues with older versions on macOS
Test against Go <1.7 on Linux only, as Travis-CI has issues with older versions on macOS
YAML
agpl-3.0
muesli/regommend
51972394f2753af63e37e1a618ae98637e7b7ead
.travis.yml
.travis.yml
sudo: false language: java notifications: hipchat: ec8fcfa661addc56a361a8ef536320@integrations jdk: - oraclejdk8 script: ./build.sh -Dexist.autodeploy=off -Dtest.haltonerror=true -Dtest.haltonfailure=true travis
language: java matrix: include: - os: linux sudo: false jdk: oraclejdk8 - os: osx osx_image: xcode9.1 env: JAVA_HOME=$(/usr/libexec/java_home) script: ./build.sh -Dexist.autodeploy=off -Dtest.haltonerror=true -Dtest.haltonfailure=true travis notifications: hipchat: ec8fcfa661addc56a361a8ef536320@integrations
Add support for building on OSX (as well as Linux) on Travis CI
[feature] Add support for building on OSX (as well as Linux) on Travis CI
YAML
lgpl-2.1
windauer/exist,eXist-db/exist,ambs/exist,ambs/exist,dizzzz/exist,lcahlander/exist,eXist-db/exist,adamretter/exist,wolfgangmm/exist,opax/exist,eXist-db/exist,RemiKoutcherawy/exist,ambs/exist,ljo/exist,ljo/exist,lcahlander/exist,opax/exist,wolfgangmm/exist,RemiKoutcherawy/exist,dizzzz/exist,hungerburg/exist,dizzzz/exist,hungerburg/exist,olvidalo/exist,hungerburg/exist,opax/exist,windauer/exist,olvidalo/exist,dizzzz/exist,opax/exist,ambs/exist,olvidalo/exist,ambs/exist,olvidalo/exist,lcahlander/exist,RemiKoutcherawy/exist,eXist-db/exist,dizzzz/exist,windauer/exist,eXist-db/exist,wolfgangmm/exist,olvidalo/exist,ljo/exist,RemiKoutcherawy/exist,hungerburg/exist,windauer/exist,windauer/exist,hungerburg/exist,RemiKoutcherawy/exist,ljo/exist,wolfgangmm/exist,lcahlander/exist,dizzzz/exist,adamretter/exist,wolfgangmm/exist,windauer/exist,ljo/exist,wolfgangmm/exist,adamretter/exist,lcahlander/exist,opax/exist,ljo/exist,adamretter/exist,RemiKoutcherawy/exist,eXist-db/exist,ambs/exist,adamretter/exist,adamretter/exist,lcahlander/exist