doc_id stringlengths 36 36 | metadata dict | input stringlengths 28 4.3k | output stringlengths 11 5.45k |
|---|---|---|---|
9bad8cab-cb23-4220-b069-6648577bb742 | {
"language": "YAML"
} | ```yaml
language: php
sudo: required
services:
- docker
php:
- 5.5
install:
- php composer.phar install
before_script:
- git config --global user.email "builds@travis-ci.com"
- git config --global user.name "Travis CI"
script:
- php build.php
- docker build .
- git commit Dockerfile -m "TravisCI build $... | ```yaml
language: php
sudo: required
services:
- docker
php:
- 5.6
install:
- php composer.phar install
before_script:
- git config --global user.email "builds@travis-ci.com"
- git config --global user.name "Travis CI"
script:
- php build.php
- docker build .
- git commit Dockerfile -m "TravisCI build $... |
dee9ee68-bb46-40d2-a737-ca2b2ac153db | {
"language": "YAML"
} | ```yaml
language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
before_install:
- if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-r... | ```yaml
language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
fast_finish: true
before_install:
- if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-rm xdebug.ini; fi;
install:
- com... |
e34567e7-2a52-48fe-b510-d3f93ee16023 | {
"language": "YAML"
} | ```yaml
dist: trusty
sudo: false
group: beta
language: node_js
node_js:
- node
addons:
firefox: latest-esr
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]... | ```yaml
dist: trusty
group: beta
language: node_js
node_js:
- node
addons:
firefox: latest-esr
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm r... |
d34a8e7e-e803-4307-8c5f-ab89ce10d4a6 | {
"language": "YAML"
} | ```yaml
---
sudo: required
language: node_js
install:
- sudo pip install -r requirements.txt
- npm install
node_js:
- node
services:
- docker
script:
- yamllint --strict $(git ls-files '*.yaml' '*.yml') || exit 1
- >
find -name "*.md" -not -path "*/node_modules/*"
| xargs markdownlint
|| ex... | ```yaml
---
sudo: required
language: node_js
install:
- sudo pip install -r requirements.txt
- npm install
node_js:
- node
services:
- docker
script:
- yamllint --strict $(git ls-files '*.yaml' '*.yml') || exit 1
- >
find -name "*.md" -not -path "*/node_modules/*"
| xargs markdownlint
|| ex... |
3cfef34d-23fc-466a-892f-50fa9842582c | {
"language": "YAML"
} | ```yaml
# Use Docker environment
sudo: false
# Setup build matrix
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
matrix:
- PREFER_LOWEST="--prefer-lowest"
- PREFER_LOWEST=""
# Dependencies
before_install:
- composer self-update
install:
- travis_retry composer update --no-interaction... | ```yaml
# Use Docker environment
sudo: false
# Setup build matrix
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
env:
matrix:
- PREFER_LOWEST="--prefer-lowest"
- PREFER_LOWEST=""
# Dependencies
before_install:
- composer self-update
install:
- tra... |
8b388004-911c-477a-af06-642af9b4a854 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.2
- ruby-head
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/rails_6.0.gemfile
matrix:
allow_failures:
- rvm: ruby-head
gemfile: gemfiles/rai... | ```yaml
language: ruby
rvm:
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.2
- ruby-head
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/rails_6.0.gemfile
matrix:
allow_failures:
- rvm: ruby-head
gemfile: gemfiles/rai... |
9bb7e8b3-9b82-4aee-8a8d-8fe5f7c5605d | {
"language": "YAML"
} | ```yaml
sudo: false
language: rust
# necessary for `travis-cargo coveralls --no-sudo`
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev # optional: only required for the --verify flag of coveralls
# run builds for all the trains (and more)
rust:
- nig... | ```yaml
sudo: false
language: rust
# necessary for `travis-cargo coveralls --no-sudo`
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev # optional: only required for the --verify flag of coveralls
# run builds for all the trains (and more)
rust:
- nig... |
281e92b9-0b65-4030-a50b-adf4105410ac | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- iojs
- "0.12"
```
Add latest node.js to Travis CI | ```yaml
sudo: false
language: node_js
node_js:
- stable
- "0.12"
``` |
47c3f366-d0d7-496e-98e8-05d52d6d2fa0 | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
```
Test with latest Node.js 5 on Travis CI. | ```yaml
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
``` |
8bfa7575-1b6a-4624-8a8e-67b3990042f7 | {
"language": "YAML"
} | ```yaml
dist: xenial
language: python
branches:
only:
# This is where pull requests from "bors r+" are built.
- staging
# This is where pull requests from "bors try" are built.
- trying
# Uncomment this to enable building pull requests.
- master
cache:
directories:
- $HOME/.cache/pip
... | ```yaml
dist: xenial
language: python
branches:
except:
- staging.tmp
- trying.tmp
cache:
directories:
- $HOME/.cache/pip
matrix:
include:
- python: 3.4
env:
- TOXENV=py34
- python: 3.5
env:
- TOXENV=py35
- python: 3.6
env:
- TOXENV=py36
- python... |
f39b1878-5dff-4884-a562-faf11e504ef4 | {
"language": "YAML"
} | ```yaml
language: ruby
bundler_args: --path vendor/bundle
script: bundle exec rake
before_install:
- gem install bundler
- bundle config --local without local_development
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
matrix:... | ```yaml
language: ruby
bundler_args: --path vendor/bundle
script: bundle exec rake
before_install:
- gem install bundler
- bundle config --local without local_development
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby
- jruby-head
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head #... |
6073b5df-cd1e-4b18-a51f-32b51ee92ed0 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# command to install dependencies
install:
- pip install -r requirements_dev.txt
- pip install .
# command to run tests
script: "python setup.py test"
```
Remove Travis testing of Python 3.2 | ```yaml
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# command to install dependencies
install:
- pip install -r requirements_dev.txt
- pip install .
# command to run tests
script: "python setup.py test"
``` |
4d11c40c-cc56-47dd-b093-f8f7f2062501 | {
"language": "YAML"
} | ```yaml
language: python
python:
- 3.4
notifications:
email: false
before_install:
# Setup Miniconda - a lightweight anaconda
# This allows us to get pre-build binaries from numpy etc. from binstar
# This is quicker and more reliable than compiling from source every build
# See https://gist.githubusercont... | ```yaml
language: python
python:
- 3.4
notifications:
email: false
before_install:
# Setup Miniconda - a lightweight anaconda
# This allows us to get pre-build binaries from numpy etc. from binstar
# This is quicker and more reliable than compiling from source every build
# See https://gist.githubusercont... |
8f4ffbcc-8bf3-400a-90d5-d201e78cb800 | {
"language": "YAML"
} | ```yaml
language: node_js
matrix:
include:
- node_js: "node"
- node_js: "7"
sudo: false
cache:
directories:
- node_modules
- chrome
addons: # needed to run Chrome beta
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libstdc++-4.9-dev
before_script:
# fetch and extract Chr... | ```yaml
language: node_js
matrix:
include:
- node_js: "node"
- node_js: "7"
sudo: false
cache:
directories:
- node_modules
- chrome
addons: # needed to run Chrome beta
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libstdc++-4.9-dev
before_script:
# fetch and extract Chr... |
8b5e1d45-fd73-4486-93fb-0eb2d64727da | {
"language": "YAML"
} | ```yaml
dist: trusty
language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.2
- 2.3.5
- 2.2.8
- jruby-1.7.26
- jruby-9.1.14.0
env:
global:
- JRUBY_OPTS="--debug"
after_success:
- bundle exec codeclimate-test-reporter
```
Test with latest Ruby versions | ```yaml
dist: trusty
language: ruby
sudo: false
cache: bundler
rvm:
- 2.5.3
- 2.4.5
- 2.3.8
- 2.2.10
- jruby-1.7.26
- jruby-9.2.4.0
env:
global:
- JRUBY_OPTS="--debug"
after_success:
- bundle exec codeclimate-test-reporter
``` |
cafc2702-f06d-404a-adb6-176d54d7daae | {
"language": "YAML"
} | ```yaml
script: "if [ $PERFORMANCE_SPECS ];then bundle exec rake performance_specs --trace; else bundle exec rake --trace; fi"
install:
- bundle install --retry=3
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.1"
- "jruby"
- "rbx-2"
env:
- "RAILS_VERSION=rails3"
- "RAILS_VERSION=rails4"
- "RAILS_VERSION=pojs"
matri... | ```yaml
language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.1"
- "jruby"
- "rbx-2"
env:
- "RAILS_VERSION=rails3"
- "RAILS_VERSION=rails4"
- "RAILS_VERSION=pojs"
sudo: false
script: "if [ $PERFORMANCE_SPECS ];then bundle exec rake performance_specs --trace; else bundle exec rake --trace; fi"
install:
- bu... |
6129b4fe-45d3-4d13-86cd-7f30e9243859 | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.5"
- "2.6"
- "2.7"
- "3.2"
- "3.3"
script:
- python setup.py build_ext --inplace
- python setup.py test
```
Drop support for Python 2.5 | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
script:
- python setup.py build_ext --inplace
- python setup.py test
``` |
eb36241e-b42e-4dbb-8419-c914d0a9ea43 | {
"language": "YAML"
} | ```yaml
before_install:
- sudo add-apt-repository ppa:directhex/monoxide -y
- sudo apt-get update -qq -y
- sudo apt-get install mono-devel -qq -y
script: ./build /p:Configuration=Release /p:Framework=$Framework "/t:DumpSettings;CleanAll;BuildFramework;TestFramework"
env:
matrix:
- Framework="net-2.0"
... | ```yaml
before_install:
- sudo add-apt-repository ppa:directhex/monoxide -y
- sudo apt-get update -qq -y
- sudo apt-get install mono-devel -qq -y
before_script:
./build /p:Configuration=Release /p:Framework=$Framework "/t:DumpSettings;CleanAll"
script:
./build /p:Configuration=Release /p:Framework=$Framewo... |
0a1547b1-c556-4744-95f2-b097700f4650 | {
"language": "YAML"
} | ```yaml
language: rust
env:
global:
- secure: MaupJEtmxoIh2UY2N6O3U5x+kverikrG6k66UlMO7pd1SLdFfB4pmhYje/TO3gCEMFIJtJEK0NhD2QMHyveUd0o86wOhiMNfrO7PBCI0+3rXuE0HdkLXGcd1Lhk+iT7IFwuOzdH60ONfBHHGfkVnFLwcBaAT9rBaKkKMYbcASuU=
script:
- cargo build
- cargo test
- cargo doc
after_script:
- cp -r target/doc doc
-... | ```yaml
language: rust
after_success: |
cargo doc \
&& echo '<meta http-equiv=refresh content=0;url=reminisce/index.html>' > target/doc/index.html && \
sudo pip install ghp-import && \
ghp-import -n target/doc && \
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
``` |
63da47ac-2f95-4999-a074-ef966e9bc2fc | {
"language": "YAML"
} | ```yaml
language: node_js
node_js:
- 0.6
- 0.8
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
```
Remo... | ```yaml
language: node_js
node_js:
- 0.8
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
``` |
33c071ec-a5d0-476c-b34e-32ffa5d99b0e | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.0
```
Allow failure on 2.2.0 for now | ```yaml
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.0
matrix:
allow_failures:
- rvm: 2.2.0
``` |
d498a518-b96f-45a5-8f2b-55a9e16e1bc9 | {
"language": "YAML"
} | ```yaml
dist: xenial
language: python
sudo: false
matrix:
include:
- python: 3.6
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37
- python: 3.7
env: TOXENV=py37-flake8
install:
- pip install tox
script:
- tox
```
Remove deprecated sudo tag, renamed matrix tag to jobs. | ```yaml
dist: xenial
language: python
jobs:
include:
- python: 3.6
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37
- python: 3.7
env: TOXENV=py37-flake8
install:
- pip install tox
script:
- tox
``` |
fd7ac4a4-9330-4feb-a39e-3244a02ee9dd | {
"language": "YAML"
} | ```yaml
sudo: required
dist: trusty
language: ruby
rvm:
- 2.1
- 2.2
- 2.3.0
```
Use latest Rubygems in Travis | ```yaml
sudo: required
before_install: gem update --system
dist: trusty
language: ruby
rvm:
- 2.1
- 2.2
- 2.3.0
``` |
36425a9f-85ac-4430-b526-eee6bae6830f | {
"language": "YAML"
} | ```yaml
language: go
go:
- release
before_install:
- . $HOME/.nvm/nvm.sh
- nvm install stable
- nvm use stable
install:
- npm install --global yarn
script:
- make
```
Set the Travis CI golang version to master | ```yaml
language: go
go:
- master
before_install:
- . $HOME/.nvm/nvm.sh
- nvm install stable
- nvm use stable
install:
- npm install --global yarn
script:
- make
``` |
2c05d373-9dc9-40fc-b1a8-abcb9513bb41 | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.3
- 5.4
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install
script: phpunit
```
Reset back to the way it was. | ```yaml
language: php
php:
- 5.3
- 5.4
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev
script: vendor/bin/phpunit
``` |
010044bc-119c-4419-9afa-a4ec0b82e0cc | {
"language": "YAML"
} | ```yaml
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- pypy
install:
- pip install --use-mirrors -q unittest2
- python setup.py -q install
script:
- python --version
- py.test tests
```
Install unittest2 only for py26. | ```yaml
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- pypy
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors unittest2; fi
- python setup.py -q install
script:
- py.test tests
``` |
afacd881-3e17-45c8-95f6-7be14733cde9 | {
"language": "YAML"
} | ```yaml
branches:
only:
- develop
- master
sudo: false
language: go
go:
- 1.2
- 1.3
- 1.4
- tip
matrix:
allow_failures:
- go: 1.2
- go: 1.3
before_install:
- 'if [[ "${TRAVIS_GO_VERSION}" =~ 1.[2-3] ]]; then go get code.google.com/p/go.tools/cmd/cover; else go get golang.org/x/tools/cmd/cover; fi... | ```yaml
branches:
only:
- develop
- master
language: go
go:
- 1.2
- 1.3
- 1.4
- tip
matrix:
allow_failures:
- go: 1.2
- go: 1.3
- go: tip
before_install:
- 'if [[ "${TRAVIS_GO_VERSION}" =~ 1.[2-3] ]]; then go get code.google.com/p/go.tools/cmd/cover; else go get golang.org/x/tools/cmd/cover; f... |
36b2b688-d0cc-48a8-9e5e-23b4b8e4de0f | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- sudo add-apt-repository ppa:biometrics/bob
- sudo apt-get update -qq
- sudo apt-get install -qq bob-dev
install:
- "python bootstrap.py"
- "./bin/buildout"
script:
- "./bin/nosetests -sv"
```
Add -qq flag to silence ... | ```yaml
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- sudo add-apt-repository -qq ppa:biometrics/bob
- sudo apt-get update -qq
- sudo apt-get install -qq bob-dev
install:
- "python bootstrap.py"
- "./bin/buildout"
script:
- "./bin/nosetests -sv"
``` |
65640579-d28c-4ed9-9fe0-a0be680def08 | {
"language": "YAML"
} | ```yaml
language: objective-c
osx_image: xcode10.2
xcode_project: Aware.xcodeproj
xcode_scheme: Aware
script: xcodebuild -project Aware.xcodeproj -scheme Aware test
```
Build CI in old code sign style | ```yaml
language: objective-c
osx_image: xcode10.2
xcode_project: Aware.xcodeproj
xcode_scheme: Aware
script: xcodebuild -project Aware.xcodeproj -scheme Aware test ENABLE_HARDENED_RUNTIME=NO CODE_SIGN_STYLE=Manual CODE_SIGN_IDENTITY=
``` |
4bb36760-b8df-430e-a2ef-c7351618abd4 | {
"language": "YAML"
} | ```yaml
language: java
cache:
directories:
- $HOME/.m2
```
Build on multiple JDK's (OpenJDK and Oracle). | ```yaml
language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
cache:
directories:
- $HOME/.m2
``` |
31b7ecd5-12ed-4d55-b76d-2d6dc8812d2e | {
"language": "YAML"
} | ```yaml
language: elixir
elixir:
- 1.3.4
- 1.4.2
otp_release:
- 18.3
- 19.2
before_script:
- MIX_ENV=test mix compile --warnings-as-errors
- travis_wait mix dialyzer --plt
script:
- mix coveralls.travis
- # skip dialyzer for elixir 1.4 and erlang 18 as it produces weird errors, see #69
- if ! ([[ "$TR... | ```yaml
language: elixir
elixir:
- 1.3.4
- 1.4.5
- 1.5.0
otp_release:
- 18.3
- 19.3
- 20.0
before_script:
- MIX_ENV=test mix compile --warnings-as-errors
- travis_wait mix dialyzer --plt
script:
- mix coveralls.travis
# skip dialyzer for elixir 1.4 and erlang 18 as it produces weird errors, see #69
... |
edb79999-0687-4901-9e56-1b972f5f92a3 | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.8.7
```
Add python and nodejs dependencies. | ```yaml
language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.8.7
python:
- "2.7"
node_js:
- "0.6"
install:
- pip install git+git://github.com/ipython/ipython.git
``` |
42a1251b-4f26-4159-84eb-93c8e4c0299a | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
```
Use dynamic node versions on Travis CI | ```yaml
sudo: false
language: node_js
node_js:
- 'node'
- '--lts'
``` |
dafa0ac6-0ffc-4ca6-a207-1db45872bfcd | {
"language": "YAML"
} | ```yaml
language: ruby
before_install:
- "find /home/travis/.rvm/rubies -wholename '*default/bundler-*.gemspec' -delete"
- gem install bundler -v 1.15.1
rvm:
- 2.0.0
- 2.1.5
- 2.2.0
- 2.3.3
```
Update Ruby versions to build against | ```yaml
language: ruby
before_install:
- "find /home/travis/.rvm/rubies -wholename '*default/bundler-*.gemspec' -delete"
- gem install bundler -v 1.15.1
rvm:
- 2.1.5
- 2.2.0
- 2.3.1
- 2.3.8
- 2.4.5
- 2.5.3
``` |
9d3bc3ff-4ea7-42e9-832c-aa27bf751716 | {
"language": "YAML"
} | ```yaml
language: scala
scala:
- "2.11.7"
jdk:
- openjdk8
```
Update to CI config. Now targeting Lift 3.0 with java 8 and scala 2.11.7 | ```yaml
language: scala
scala:
- "2.11.7"
jdk:
- oraclejdk8
``` |
0a33cb23-73a4-4689-a64b-20d13735b33f | {
"language": "YAML"
} | ```yaml
language: ruby
rvm:
- 1.9.3
bundler_args: --jobs 7 --without docs
install: bundle install --without integration
script: bundle exec rake
```
Switch to new container-based Travis CI infrastructure | ```yaml
#
# Copyright © 2014 Cask Data, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to ... |
d4075205-171e-420f-a59f-33a3e016492e | {
"language": "YAML"
} | ```yaml
dist: trusty
language: java
jdk:
- openjdk8
install: true
script: '[ "$TRAVIS_REPO_SLUG" == apache/rampart ] && [ "$TRAVIS_BRANCH" == trunk ] && [ "$TRAVIS_PULL_REQUEST" == false ] && goal=deploy || goal=verify ; mvn -B -s .travis-settings.xml -Papache-release -Dgpg.skip=true $goal'
cache:
directories:
... | ```yaml
dist: trusty
language: java
jdk:
- openjdk8
install: true
script: '[ "$TRAVIS_REPO_SLUG" == apache/rampart ] && [ "$TRAVIS_BRANCH" == trunk ] && [ "$TRAVIS_PULL_REQUEST" == false ] && goal=deploy || goal=verify ; mvn -B -s .travis-settings.xml -Papache-release -Dgpg.skip=true $goal'
env:
global:
- secur... |
59c0d1c0-f009-4a52-a7c0-9a3ff992f4e9 | {
"language": "YAML"
} | ```yaml
sudo: false
language: node_js
node_js:
- "4"
- "6"
- "stable"
```
Enable automatic NPM deployment for tags | ```yaml
sudo: false
language: node_js
node_js:
- "4"
- "6"
- "stable"
deploy:
provider: npm
email: stefan.penner+ember-cli@gmail.com
api_key:
secure: Vfs9LIJtu0GGQqEk74aypqUGk0925/41ioOkAoHxWQwZGkhvZsVDJsfe2Two47uJGGoq17vScorrhiXFZXRvKpdwFl1uHyeIMPQj66DG1cksw972z3mtKMLrxmwSuRk9LNgnow5kUPZfoNuHl0u/9Fjp... |
823c3fbf-6099-4636-82cf-3f6451469bf3 | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.5
- 1.6
- tip
before_install:
- go get golang.org/x/tools/cmd/vet
- go get github.com/golang/lint/golint
- go get github.com/stretchr/testify
install:
- go get -v ./oauth1
- go get -v ./oauth2
- go get -v ./twitter
- go get -v ./digits
- go get -v ./github
- go get -... | ```yaml
language: go
go:
- 1.5.3
- 1.6
- tip
before_install:
- go get github.com/golang/lint/golint
- go get github.com/stretchr/testify
install:
- go get -v ./oauth1
- go get -v ./oauth2
- go get -v ./twitter
- go get -v ./digits
- go get -v ./github
- go get -v ./tumblr
- go get -v ./bitbucket... |
238068ae-2b5c-4a76-83d7-478282804804 | {
"language": "YAML"
} | ```yaml
language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "iojs"
after_success:
- npm run coverage
- npm i coveralls
- cat ./coverage/lcov.info | coveralls
notifications:
email:
on_success: never
```
Add Node.js 4.0.0 to Travis testing | ```yaml
language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4.0"
- "iojs"
after_success:
- npm run coverage
- npm i coveralls
- cat ./coverage/lcov.info | coveralls
notifications:
email:
on_success: never
``` |
eda9f1a1-1996-40b9-b893-397b351c041a | {
"language": "YAML"
} | ```yaml
language: java
jdk:
- oraclejdk8
before_script:
- sudo add-apt-repository ppa:eyecreate/haxe -y
- sudo apt-get update
- sudo apt-get install haxe -y
- mkdir ~/haxelib
- haxelib setup ~/haxelib
- haxelib install hxjava
- haxelib git debugger https://github.com/TiVo/debugger.git
- mkdir build
- mkdir report
scrip... | ```yaml
language: java
jdk:
- oraclejdk8
before_script:
- sudo add-apt-repository ppa:eyecreate/haxe -y
- sudo apt-get update
- sudo apt-get install haxe -y
- mkdir ~/haxelib
- haxelib setup ~/haxelib
- haxelib install hxjava
- haxelib git debugger https://github.com/TiVo/debugger.git
- mkdir build
- mkdir report
scrip... |
5f23b23f-5ac3-48cd-b097-7775cc86e4d3 | {
"language": "YAML"
} | ```yaml
sudo: false
language: java
jdk:
- oraclejdk10
- oraclejdk9
- oraclejdk8
cache:
directories:
- "$HOME/.m2/repository"
before_cache:
- rm -rf $HOME/.m2/repository/org/threeten
install:
- mvn --version
script:
- mvn install site -e -B
- if [[ $TRAVIS_TAG =~ ^website.*$ ]] && [ "$TRAVIS_JDK_VERS... | ```yaml
sudo: false
language: java
jdk:
- openjdk11
- oraclejdk9
- oraclejdk8
cache:
directories:
- "$HOME/.m2/repository"
before_cache:
- rm -rf $HOME/.m2/repository/org/threeten
install:
- mvn --version
script:
- mvn install site -e -B
- if [[ $TRAVIS_TAG =~ ^website.*$ ]] && [ "$TRAVIS_JDK_VERSIO... |
9e60abba-b862-4d45-a68a-0821dce1315a | {
"language": "YAML"
} | ```yaml
language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
after_success:
- npm run coverage
- npm i coveralls
- cat ./coverage/lcov.info | coveralls
notifications:
email:
on_success: never
```
Add Node.js v6 to Travis CI matrix | ```yaml
language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
after_success:
- npm run coverage
- npm i coveralls
- cat ./coverage/lcov.info | coveralls
notifications:
email:
on_success: never
``` |
43565a2c-3024-439f-8920-38ae13ce6b62 | {
"language": "YAML"
} | ```yaml
sudo: required
language: java
jdk:
- oraclejdk8
- oraclejdk9
matrix:
exclude:
- jdk: oraclejdk9
env: RUNTIME=ol RUNTIME_VERSION=18.0.0.3
- jdk: oraclejdk9
env: RUNTIME=wlp RUNTIME_VERSION=18.0.0.3
env:
- RUNTIME=wlp RUNTIME_VERSION=18.0.0.2
- RUNTIME=wlp RUNTIME_VERSION=1... | ```yaml
sudo: required
language: java
os:
- windows
- linux
- osx
jdk:
- oraclejdk8
- oraclejdk9
matrix:
exclude:
- jdk: oraclejdk9
env: RUNTIME=ol RUNTIME_VERSION=18.0.0.3
- jdk: oraclejdk9
env: RUNTIME=wlp RUNTIME_VERSION=18.0.0.3
env:
- RUNTIME=wlp RUNTIME_VERSION=18.0... |
6f7b74f2-0b14-4268-9674-1847cae4c7fd | {
"language": "YAML"
} | ```yaml
language: python
python:
- "2.7"
- "3.3"
- "3.4"
# install required system libraries
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
# use miniconda to install numpy/scipy, to avoid lengthy build from source
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http:... | ```yaml
sudo: false
language: python
cache:
apt: true
pip: true
directories:
- $HOME/.cache/pip
- $HOME/.local
python:
- "2.7"
- "3.3"
- "3.4"
# install required system libraries
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
# use miniconda to install numpy/scipy, to... |
38b28832-cf97-4dd3-9822-6ef23127455e | {
"language": "YAML"
} | ```yaml
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may ... | ```yaml
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may ... |
e4eec9ab-479d-49c5-983c-14c16394657a | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- mysql -e 'create database myapp_test;'```
Add HHVM to TravisCI tests | ```yaml
language: php
php:
- 5.3
- 5.4
- 5.5
- hhvm
before_script:
- mysql -e 'create database myapp_test;'
``` |
8e18c62b-c978-420e-b9d6-eee7fc46e190 | {
"language": "YAML"
} | ```yaml
script: "bundle exec rspec spec && bundle exec cucumber"
rvm:
- jruby-18mode
- jruby-19mode
- jruby-head
```
Revert "Run CI against jruby-head" | ```yaml
script: "bundle exec rspec spec && bundle exec cucumber"
rvm:
- jruby-18mode
- jruby-19mode
``` |
4ca0d6c2-3727-4fe7-bae5-e8244bc7ebcd | {
"language": "YAML"
} | ```yaml
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
cache:
directories:
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini || true
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: vendor/bin/phpspec run --format=pr... | ```yaml
language: php
php:
- 5.6
- 7.0
- hhvm
cache:
directories:
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini || true
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: vendor/bin/phpspec run --format=pretty
notificati... |
14b6fec9-d9fc-4e38-91e2-114080ab5a79 | {
"language": "YAML"
} | ```yaml
language: go
go:
- 1.1
- tip
install: make deps
script: make test
notifications:
flowdock:
secure: fZrcf9rlh2IrQrlch1sHkn3YI7SKvjGnAl/zyV5D6NROe1Bbr6d3QRMuCXWWdhJHzjKmXk5rIzbqJhUc0PNF7YjxGNKSzqWMQ56KcvN1k8DzlqxpqkcA3Jbs6fXCWo2fssRtZ7hj/wOP1f5n6cc7kzHDt9dgaYJ6nO2fqNPJiTc=
irc:
... | ```yaml
language: go
go:
- 1.1
- tip
install: make deps
script: make test
notifications:
flowdock:
secure: fZrcf9rlh2IrQrlch1sHkn3YI7SKvjGnAl/zyV5D6NROe1Bbr6d3QRMuCXWWdhJHzjKmXk5rIzbqJhUc0PNF7YjxGNKSzqWMQ56KcvN1k8DzlqxpqkcA3Jbs6fXCWo2fssRtZ7hj/wOP1f5n6cc7kzHDt9dgaYJ6nO2fqNPJiTc=
irc:
... |
681897e9-df5e-4290-ae4b-132eba425bc0 | {
"language": "YAML"
} | ```yaml
env:
global:
- AWS_ACCESS_KEY_ID=foo
- AWS_SECRET_ACCESS_KEY=bar
- CC_TEST_REPORTER_ID=738ee95086106a9011b10dd006ac5e0d74541774c8bb6d9e5ceb705c01115afa
- JRUBY_OPTS="$JRUBY_OPTS --debug"
language: ruby
before_install:
- gem update --system
- gem install bundler
before_script:
- curl -L h... | ```yaml
env:
global:
- AWS_ACCESS_KEY_ID=foo
- AWS_SECRET_ACCESS_KEY=bar
- CC_TEST_REPORTER_ID=738ee95086106a9011b10dd006ac5e0d74541774c8bb6d9e5ceb705c01115afa
- JRUBY_OPTS="$JRUBY_OPTS --debug"
language: ruby
before_install:
- gem update --system
- gem install bundler
before_script:
- curl -L h... |
b2322202-9d55-4366-87b1-ca4914b4c2aa | {
"language": "YAML"
} | ```yaml
url: https://ascendpotential.ca
repository: heatheranderson/heatheranderson.github.io
# Site settings
title: Ascend Potential
email: heather@ascendpotential.ca
description: "Executive coaching and life coaching services by Heather Anderson, Certified Integral Master Coach(tm). Reach your goals not your limits.... | ```yaml
url: https://ascendpotential.ca
repository: heatheranderson/heatheranderson.github.io
# Site settings
title: Ascend Potential
email: heather@ascendpotential.ca
description: "Executive coaching and life coaching services by Heather Anderson, Certified Integral Master Coach(tm). Reach your goals not your limits.... |
4b4fbad8-772e-4524-b4ab-f244d9444b7c | {
"language": "YAML"
} | ```yaml
{{- if .Values.ingress.tls -}}
{{- $values := .Values }}
{{- range .Values.ingress.tls -}}
apiVersion: cert-manager.io/v1alpha2
kind: Certificate
metadata:
name: {{ include "app.fullname" $ }}
{{- if hasKey $values "namespace" }}
namespace: {{ $values.namespace }}
{{- end }}
labels:
helm.sh/chart:... | ```yaml
{{- if .Values.ingress.tls -}}
{{- $values := .Values }}
{{- range .Values.ingress.tls -}}
apiVersion: cert-manager.io/v1alpha2
kind: Certificate
metadata:
name: {{ include "app.fullname" $ }}
{{- if hasKey $values "namespace" }}
namespace: {{ $values.namespace }}
{{- end }}
labels:
helm.sh/chart:... |
ef2516cc-6300-44d7-87e3-8f415015eafe | {
"language": "YAML"
} | ```yaml
image: 'arob/drone-nonstop-browser'
script:
- 'ns --verbose'
cache:
mount:
- node_modules
- .git
deploy:
bash:
command: 'ns upload --latest --index 10.0.0.4 --port 4444 --token lkdevtoken'
notify:
slack:
webhook_url: 'https://hooks.slack.com/services/T0299LT7G/B0EGVSKV5/IBoGn2S7TALNILNYE... | ```yaml
image: 'arob/drone-nonstop-browser'
script:
- 'ns --verbose'
cache:
mount:
- node_modules
- .git
deploy:
bash:
command: 'ns upload --latest --index 10.0.0.4 --url /index/api --port 4444 --token lkdevtoken'
notify:
slack:
webhook_url: 'https://hooks.slack.com/services/T0299LT7G/B0EGVSKV5/... |
c76c239d-8a08-47db-b9d9-a60282a0408d | {
"language": "YAML"
} | ```yaml
build:
image: teaci/msys32
pull: true
shell: msys32
commands:
- export RUNTEST=$$runtest
- ./ci-build.sh
notify:
irc:
prefix: build
nick: MSYS2-packages
channel: msys2-ci
server:
host: irc.oftc.net
port: 6667
matrix:
runtest:
- false
# Temprorary disable mat... | ```yaml
build:
image: teaci/msys$$arch
pull: true
shell: msys$$arch
commands:
- export RUNTEST=$$runtest
- ./ci-build.sh
notify:
irc:
prefix: build
nick: MSYS2-packages
channel: msys2-ci
server:
host: irc.oftc.net
port: 6667
matrix:
runtest:
- false
arch:
- 64... |
b6624af9-5ccd-4185-8f37-af50443c622e | {
"language": "YAML"
} | ```yaml
- project:
templates:
- horizon-non-primary-django-jobs
- check-requirements
- openstack-python3-zed-jobs
```
Switch to 2023.1 Python3 unit tests and generic template name | ```yaml
- project:
templates:
- horizon-non-primary-django-jobs
- check-requirements
- openstack-python3-jobs
``` |
f3c2d9b7-7376-4474-868d-8352dba29770 | {
"language": "YAML"
} | ```yaml
packages:
- project: ndisc6
buildsys-tags:
cloud7-openstack-ussuri-candidate: ndisc6-1.0.3-9.el7
- project: openvswitch
buildsys-tags:
cloud7-openstack-ussuri-candidate: openvswitch-2.12.0-1.el7
- project: ovn
buildsys-tags:
cloud7-openstack-ussuri-candidate: ovn-2.12.0-9.el7
- project: python... | ```yaml
packages:
- project: ndisc6
buildsys-tags:
cloud7-openstack-ussuri-candidate: ndisc6-1.0.3-9.el7
- project: openvswitch
buildsys-tags:
cloud7-openstack-ussuri-candidate: openvswitch-2.12.0-1.el7
- project: ovn
buildsys-tags:
cloud7-openstack-ussuri-candidate: ovn-2.12.0-9.el7
- project: python... |
72385c91-701f-43ea-b14e-533d273558c5 | {
"language": "YAML"
} | ```yaml
- type: replace
path: /releases/name=windows2016fs?
value:
name: windows2016fs
version: 1.8.0
```
Make `bosh int` fail without required `windows2016-cell.yml` | ```yaml
- type: replace
path: /releases/name=windows2016fs
value:
name: windows2016fs
version: 1.8.0
``` |
b3fb2815-c069-443b-b065-4c9b8038bae2 | {
"language": "YAML"
} | ```yaml
name: Deploy CI CloudFormation stack
on:
push:
branches:
- main
paths:
- ci/**
concurrency:
group: ${{ github.workflow }}
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v2
- uses: a... | ```yaml
name: Deploy CI CloudFormation stack
on:
push:
branches:
- main
paths:
- ci/**
concurrency:
group: ${{ github.workflow }}
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
strategy:
matrix:
include:
- reg... |
2b20e5b6-0cf4-4ac6-860e-d15472a51c83 | {
"language": "YAML"
} | ```yaml
---
- name: Prepare the enviorment of remote host for ansible
hoats: all
gather_factes: False
pre_tasks:
- name: Install python for Ansible
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-simplejson)
changed_when: False
- name: Set up the development system by vagr... | ```yaml
---
- name: Prepare the enviorment of remote host for ansible
hosts: all
gather_facts: False
pre_tasks:
- name: Install python for Ansible
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-simplejson)
changed_when: False
- name: Set up the development system by vagra... |
8687a20e-1874-4750-8027-535ef98d305f | {
"language": "YAML"
} | ```yaml
homepage: https://github.com/NorfairKing/fuzzy-time
changelog-type: markdown
hash: d25c93db2ea9ec79a102bc378213b0e199f92d6f3234e48ca1fd4f2d831d2de1
test-bench-deps: {}
maintainer: syd@cs-syd.eu
synopsis: ''
changelog: |
# Changelog
## [0.2.0.0] - 2021-11-21
### Changed
- Got rid of CPP: Now requires ... | ```yaml
homepage: https://github.com/NorfairKing/fuzzy-time
changelog-type: markdown
hash: bd2eba0448be8c36441dbe34daa05b5825bc7afdc6252ffc3e9f731ee79e4d8e
test-bench-deps: {}
maintainer: syd@cs-syd.eu
synopsis: ''
changelog: |
# Changelog
## [0.2.0.0] - 2021-11-21
### Changed
- Got rid of CPP: Now requires ... |
0452e9d8-4581-4386-83e2-12b6d7844fc9 | {
"language": "YAML"
} | ```yaml
homepage: http://github.com/dktr0/Haskellish
changelog-type: ''
hash: 7a200f3e631b42ee8686733663dad4882b6ae5078f0434fe8a88a6f071d6e239
test-bench-deps: {}
maintainer: David Ogborn <ogbornd@mcmaster.ca>
synopsis: For parsing Haskell-ish languages
changelog: ''
basic-deps:
base: '>=4.8 && <5'
containers: <0.7... | ```yaml
homepage: http://github.com/dktr0/Haskellish
changelog-type: ''
hash: 5cea702a971fd31ba6e093ccf5fafc317692fa6c6e3d2348b2d9e5708407f26c
test-bench-deps: {}
maintainer: David Ogborn <ogbornd@mcmaster.ca>
synopsis: For parsing Haskell-ish languages
changelog: ''
basic-deps:
base: '>=4.8 && <5'
containers: <0.7... |
00b72202-2f30-43e4-8bfd-732643970732 | {
"language": "YAML"
} | ```yaml
name: uix
version: 0.5.1
author: Boris Kaul <localvoid@gmail.com>
description: Library to build Web User Interfaces inspired by React.
homepage: https://github.com/localvoid/uix
environment:
sdk: '>=1.9.1'
dependencies:
collection: '^1.1.0'
dev_dependencies:
browser: any
unittest: any
```
Fix unittest ... | ```yaml
name: uix
version: 0.5.1
author: Boris Kaul <localvoid@gmail.com>
description: Library to build Web User Interfaces inspired by React.
homepage: https://github.com/localvoid/uix
environment:
sdk: '>=1.9.1'
dependencies:
collection: '^1.1.0'
dev_dependencies:
browser: any
unittest: '<0.12.0'
``` |
268a6f32-3787-4c2d-8a11-cd6615189cb9 | {
"language": "YAML"
} | ```yaml
version: 2.1
jobs:
ubuntu1804-python2:
docker:
- image: stbtester/circleci:ubuntu1804-python2
environment:
python_version: 2.7
LANG: en_GB.UTF-8
SHELL: /bin/bash
TERM: xterm
enable_virtual_stb: no
parallel: xargs
steps:
- checkout
- pylint
... | ```yaml
version: 2.1
jobs:
ubuntu1804-python2:
docker:
- image: stbtester/circleci:ubuntu1804-python2
environment:
python_version: 2.7
LANG: en_GB.UTF-8
SHELL: /bin/bash
TERM: xterm
enable_virtual_stb: no
parallel: xargs
steps:
- checkout
- pylint
... |
91e042d3-6ac7-449d-97be-20e1c1c85939 | {
"language": "YAML"
} | ```yaml
version: 2
jobs:
build:
docker:
- image: circleci/node:6.11.1
working_directory: ~/vox-parser
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v1-dependencies-
- run: yarn install
- save_cach... | ```yaml
version: 2
jobs:
test-lts:
docker:
- image: circleci/node:6.11.1
steps:
- checkout
- restore_cache:
keys:
- node-lts-dependencies-{{ checksum "package.json" }}
- node-lts-dependencies-
- run: yarn install
- save_cache:
paths:
... |
209af576-fe1c-4b20-b632-fd6c63c59898 | {
"language": "YAML"
} | ```yaml
version: 2.1
commands:
test-nodejs:
steps:
- run:
name: Versions
command: npm version
- checkout
- restore_cache:
keys:
- v{{ .Environment.CIRCLE_CACHE_VERSION }}-{{ arch }}-npm-cache-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}
- v{{... | ```yaml
version: 2.1
commands:
test-nodejs:
steps:
- run:
name: Versions
command: npm version
- checkout
- restore_cache:
keys:
- v{{ .Environment.CIRCLE_CACHE_VERSION }}-{{ arch }}-npm-cache-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}
- v{{... |
892eda83-aedf-4326-ae53-9650beffc1c9 | {
"language": "YAML"
} | ```yaml
version: 2
jobs:
build:
working_directory: ~/react-webpack-skeleton
docker:
- image: circleci/node:8.1.2
steps:
- checkout
- restore_cache:
key: v1-yarn-{{ .Branch }}-{{ checksum "yarn.lock" }}
- run:
name: Installing dependencies
command: yarn... | ```yaml
version: 2
jobs:
build:
working_directory: ~/react-webpack-skeleton
docker:
- image: circleci/node:8.1.2
steps:
- checkout
- restore_cache:
keys:
- v1-yarn-lock-{{ checksum "yarn.lock" }}
- v1-npm-package-lock-{{ checksum "package-lock.json" }}
... |
265b0c47-9c69-4f4a-a2d7-46eb3d0b3c2c | {
"language": "YAML"
} | ```yaml
---
lint_and_unit: &lint_and_unit
- delivery
- danger
- lint-yaml
- lint-markdown
version: 2.1
orbs:
kitchen: sous-chefs/kitchen@2
workflows:
kitchen:
jobs:
- kitchen/yamllint:
name: lint-yaml
- kitchen/mdlint:
name: lint-markdown
- kitchen/danger:
... | ```yaml
---
lint_and_unit: &lint_and_unit
- delivery
- danger
- lint-yaml
- lint-markdown
version: 2.1
orbs:
kitchen: sous-chefs/kitchen@2
workflows:
kitchen:
jobs:
- kitchen/yamllint:
name: lint-yaml
- kitchen/mdlint:
name: lint-markdown
- kitchen/danger:
... |
7e6fe2f8-ca54-4e98-b41b-853d950e31df | {
"language": "YAML"
} | ```yaml
name: sunpy-rtd
channels:
- astropy
- sunpy
- jevans
dependencies:
- astropy
- beautiful-soup
- bsddb
- cairo
- contextlib2
- cycler
- db
- decorator
- fontconfig
- freetype
- funcsigs
- glymur
- jbig
- jpeg
- libgfortran
- libpng
- libtiff
- libxml2
- libxslt
- lxml
- matplotlib
- mkl
- mock
- netw... | ```yaml
name: sunpy-rtd
dependencies:
- astropy
- beautiful-soup
- bsddb
- cairo
- contextlib2
- cycler
- db
- decorator
- fontconfig
- freetype
- funcsigs
- glymur
- jbig
- jpeg
- libgfortran
- libpng
- libtiff
- libxml2
- libxslt
- lxml
- matplotlib
- mkl
- mock
- networkx
- numpy
- openblas
- openjpeg
- openssl
- pa... |
2bded426-cfaa-4381-895d-2c7fc018252f | {
"language": "YAML"
} | ```yaml
frame_id: /base
initial_orientation: [0.002, -0.008, 0.014, 1.000]
initial_x: 1.410
initial_y: -0.004
initial_z: 0.414
object_a: 0.2
object_b: 0.2
object_g: 0.0
object_r: 0.0
object_type: cube
object_x: 0.865
object_y: 0.865
object_z: 1.0
publish_tf: true
tf_frame: kiva_pod_base
```
Adjust kiva pod pose to bas... | ```yaml
frame_id: /base
initial_orientation: [-0.002, -0.028, 0.017, 0.999]
initial_x: 1.421
initial_y: 0.020
initial_z: 0.496
object_a: 0.2
object_b: 0.2
object_g: 0.0
object_r: 0.0
object_type: cube
object_x: 0.865
object_y: 0.865
object_z: 1.0
publish_tf: true
tf_frame: kiva_pod_base
``` |
3ded7eac-7f89-4fd8-a12f-d2af78cdf0e1 | {
"language": "YAML"
} | ```yaml
name: Node CI
on: [push]
jobs:
build:
timeout-minutes: 20
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
... | ```yaml
name: Node CI
on: [push, pull_request]
jobs:
build:
timeout-minutes: 20
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
wi... |
51743c2d-6f9d-407e-bc49-df19568ef8b0 | {
"language": "YAML"
} | ```yaml
---
- name: Include test vars
include_vars: "{{ test_suite }}"
- name: Install plugin packages for "{{ test_suite }}" suite
become: yes
package:
name: "{{ item.value.package[test.openstack.version |default(overcloud_version) | int]|default(item.value.package.default) }}"
state: present
with... | ```yaml
---
- name: Include test vars
include_vars: "{{ test_suite }}"
- name: Install plugin packages for "{{ test_suite }}" suite
become: yes
package:
name: "{{ item.value.package[test.openstack.version |default(overcloud_version) | int]|default(item.value.package.default) }}"
state: present
with... |
16ef3260-bc47-4246-8f40-3a7b2bed5b2b | {
"language": "YAML"
} | ```yaml
Categories:
- Time
- Sports & Health
License: GPL-2.0-only
AuthorName: Albert Vaca Cintora
AuthorEmail: albertvaka@gmail.com
AuthorWebSite: https://albertvaka.wordpress.com/
SourceCode: https://github.com/albertvaka/bettercounter
IssueTracker: https://github.com/albertvaka/bettercounter/issues
AutoName: Be... | ```yaml
Categories:
- Time
- Sports & Health
License: GPL-2.0-only
AuthorName: Albert Vaca Cintora
AuthorEmail: albertvaka@gmail.com
AuthorWebSite: https://albertvaka.wordpress.com/
SourceCode: https://github.com/albertvaka/bettercounter
IssueTracker: https://github.com/albertvaka/bettercounter/issues
AutoName: Be... |
3fc8387f-e1dc-4f2a-9259-ef498ac24d21 | {
"language": "YAML"
} | ```yaml
name: Android CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Gradle
run: sudo ./gradlew build
```
Use Java 11 in G... | ```yaml
name: Android CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 11
- name: Build with Gradle
run: sudo ./gradle... |
9e479a15-f89c-4006-8ff7-974bc16a436e | {
"language": "YAML"
} | ```yaml
name: No Assertions
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
ndebug:
name: No Assertions
uses: steinwurf/nodebug-action/.github/wor... | ```yaml
name: No Assertions
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
ndebug:
name: No Assertions
uses: steinwurf/nodebug-action/.github/wor... |
8907ff23-dd87-4925-9699-e60c658d546a | {
"language": "YAML"
} | ```yaml
name: GitHub CI
on: [push, pull_request]
jobs:
test:
runs-on: macOS-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup JDK
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Sdl Android Tests
# For more info, p... | ```yaml
name: GitHub CI
on: [push, pull_request]
jobs:
test:
runs-on: macOS-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup JDK
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Sdl Android Tests
# For more info, p... |
f05406d6-a6c3-4095-aa7a-d0d131f4ffe0 | {
"language": "YAML"
} | ```yaml
# Configure a Jenkins master instance for testeng
# This has the Jenkins Java app, but none of the requirements
# to run the tests.
- name: Configure instance(s)
hosts: jenkins_master
sudo: True
gather_facts: True
vars:
COMMON_DATA_DIR: "/mnt"
COMMON_ENABLE_DATADOG: True
COMMON_ENABLE_SPLUN... | ```yaml
# Configure a Jenkins master instance for testeng
# This has the Jenkins Java app, but none of the requirements
# to run the tests.
- name: Configure instance(s)
hosts: jenkins_master
sudo: True
gather_facts: True
vars:
COMMON_DATA_DIR: "/mnt"
COMMON_ENABLE_DATADOG: True
COMMON_ENABLE_SPLUN... |
e3615798-0784-4456-89a7-cde5a42d0f1b | {
"language": "YAML"
} | ```yaml
services:
easy_admin_popup.listener.crud_flashbag:
class: A5sys\EasyAdminPopupBundle\Listener\CrudFlashbagListener
arguments:
- "@session"
- "@translator"
tags:
- { name: kernel.event_listener, event: "easy_admin.post_persist", method: onPostPersis... | ```yaml
services:
easy_admin_popup.listener.crud_flashbag:
class: A5sys\EasyAdminPopupBundle\Listener\CrudFlashbagListener
arguments:
- "@session"
- "@translator"
tags:
- { name: kernel.event_listener, event: "easy_admin.post_persist", method: onPostPersis... |
d85326e3-b4a8-49b1-a0ee-12bb3fa9cdbc | {
"language": "YAML"
} | ```yaml
services:
r_u2f_two_factor.authenticator:
class: R\U2FTwoFactorBundle\Security\TwoFactor\Prodiver\U2F\U2FAuthenticator
arguments:
- '@request_stack'
r_u2f_two_factor.provider:
class: R\U2FTwoFactorBundle\Security\TwoFactor\Prodiver\U2F\TwoFactorProvider
argume... | ```yaml
services:
R\U2FTwoFactorBundle\Security\TwoFactor\Provider\U2F\U2FAuthenticator:
arguments:
- '@request_stack'
R\U2FTwoFactorBundle\Security\TwoFactor\Provider\U2F\TwoFactorProvider:
arguments:
- '@R\U2FTwoFactorBundle\Security\TwoFactor\Provider\U2F\U2FAuthentica... |
3a93d4ec-9daa-49b9-8e5d-ff8879a19aa3 | {
"language": "YAML"
} | ```yaml
homepage: ''
changelog-type: ''
hash: 14cddf1698f0c4b37da667c6b12b77224a71b6e98e428054cca9cedcc0dbc9b7
test-bench-deps: {}
maintainer: Vladislav Zavialov <vlad.z.4096@gmail.com>
synopsis: Ad-hoc type classes for lifting
changelog: ''
basic-deps:
writer-cps-transformers: ! '>=0.1.1.3'
base: ! '>=4.6 && <4.12... | ```yaml
homepage: ''
changelog-type: ''
hash: 85690b19b9c70c3256995544cfc19e3798e6a5d478bb3fcb12fc28c78562f799
test-bench-deps: {}
maintainer: Vladislav Zavialov <vlad.z.4096@gmail.com>
synopsis: Ad-hoc type classes for lifting
changelog: ''
basic-deps:
writer-cps-transformers: ! '>=0.1.1.3'
base: ! '>=4.6 && <4.13... |
afe3c0cd-a679-4a5f-be0a-1a55a1449305 | {
"language": "YAML"
} | ```yaml
---
resource_types:
- name: slack-notification
type: docker-image
source:
repository: cfcommunity/slack-notification-resource
resources:
- name: slack_alert
type: slack-notification
source:
url: {{slack-notification-url}}
- name: after-midnight-utc
type: time
source:
start: 12:00 AM
... | ```yaml
---
resource_types:
- name: slack-notification
type: docker-image
source:
repository: cfcommunity/slack-notification-resource
resources:
- name: slack_alert
type: slack-notification
source:
url: {{slack-notification-url}}
- name: twice-daily
type: time
source:
interval: 12h
jobs:
- na... |
75d5be5f-483c-4734-852e-d20bbbdceb05 | {
"language": "YAML"
} | ```yaml
name: Test cucumber-core
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "0 5 * * *"
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
ruby: ['2.5', '2.6', '2.7', '3.0']
include:
- os: ubuntu-latest
... | ```yaml
name: Test cucumber-core
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "0 5 * * *"
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
fail-fast: false
ruby: ['2.5', '2.6', '2.7', '3.0']
include:
... |
846d3fb8-7473-4dec-8af8-cea66e8ac818 | {
"language": "YAML"
} | ```yaml
name: Build And Deploy MkDocs
on:
# TODO(vmirian) 2022-02-02 Enable below to execute action on push.
# push:
# branches:
# - main
# paths:
# - "**.md"
# - "mkdocs.yml"
workflow_dispatch:
jobs:
docs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
... | ```yaml
name: Build And Deploy MkDocs
on:
# TODO(vmirian) 2022-02-02 Enable below to execute action on push.
# push:
# branches:
# - main
# paths:
# - "**.md"
# - "mkdocs.yml"
workflow_dispatch:
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/s... |
bea022ae-d19b-49b2-959e-64de6a5e8ebe | {
"language": "YAML"
} | ```yaml
---
upgrade:
- |
The Oracle ZFSSA drivers have been marked as unsupported
and are now deprecated. ``enable_unsupported_driver`` will need
to be set to ``True`` in the driver's section in cinder.conf to
continue to use them.
deprecations:
- |
The Oracle ZFSSA drivers has been marked as un... | ```yaml
---
upgrade:
- |
The Oracle ZFSSA drivers have been marked as unsupported
and are now deprecated. ``enable_unsupported_driver`` will need
to be set to ``True`` in the driver's section in cinder.conf to
continue to use them.
deprecations:
- |
The Oracle ZFSSA drivers have been been marked... |
f0b17d98-c37a-4e7e-809a-5dee4159168c | {
"language": "YAML"
} | ```yaml
---
- name: "install xhprof"
command: pecl install xhprof-{{ xhprof_version }}
register: xhprof_result
changed_when: "'already installed' not in xhprof_result.stdout"
failed_when: "xhprof_result.stderr"
- name: "copy xhprof.ini"
copy: src=xhprof.ini dest=/etc/php5/fpm/conf.d/xhprof.ini
notify:
... | ```yaml
---
- name: "install xhprof"
command: pecl install xhprof-{{ xhprof_version }}
register: xhprof_result
changed_when: "'already installed' not in xhprof_result.stdout"
failed_when: "xhprof_result.stderr"
- name: "copy xhprof.ini"
copy: src=xhprof.ini dest=/etc/php5/fpm/conf.d/xhprof.ini
notify:
... |
9510de7a-37aa-40d7-9ca3-6ece33ab6f10 | {
"language": "YAML"
} | ```yaml
---
# Copyright 2014, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or ag... | ```yaml
---
# Copyright 2014, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or ag... |
32dc4783-2456-48f2-bf06-04c44473555c | {
"language": "YAML"
} | ```yaml
env:
browser: true
es6: true
jasmine: true
extends: 'eslint:recommended'
parserOptions:
sourceType: script
rules:
indent:
- 2
- tab
linebreak-style:
- 2
- unix
quotes:
- 2
- single
semi:
- 2
- always
no-var: 2
```
Add eqeqeq ESLint rule (require === instead of ... | ```yaml
env:
browser: true
es6: true
jasmine: true
extends: 'eslint:recommended'
parserOptions:
sourceType: script
rules:
indent:
- 2
- tab
linebreak-style:
- 2
- unix
quotes:
- 2
- single
semi:
- 2
- always
no-var: 2
eqeqeq: 2
``` |
1a80be33-c550-4823-861a-72beeb3eb927 | {
"language": "YAML"
} | ```yaml
presubmits:
kubernetes/enhancements:
- name: pull-enhancements-verify
always_run: true
decorate: true
spec:
containers:
- image: golang:1.11
command:
- ./hack/verify.sh
```
Add GOPATH/bin to PATH for enhancements verify job | ```yaml
presubmits:
kubernetes/enhancements:
- name: pull-enhancements-verify
always_run: true
decorate: true
spec:
containers:
- image: golang:1.11
command:
- export PATH=$PATH:$GOPATH/bin
- ./hack/verify.sh
``` |
5bbd39eb-0651-41a3-9aec-7c6ab6dff331 | {
"language": "YAML"
} | ```yaml
---
- name: New Relic sysmond | Setup yum repo
yum: name=https://yum.newrelic.com/pub/newrelic/el5/x86_64/newrelic-repo-5-3.noarch.rpm state=present
- name: New Relic sysmond | Installing sysmond
yum: name=newrelic-sysmond state=present
```
Reword name for rpm install. | ```yaml
---
- name: New Relic sysmond | Setup yum repo
yum: name=https://yum.newrelic.com/pub/newrelic/el5/x86_64/newrelic-repo-5-3.noarch.rpm state=present
- name: New Relic sysmond | Install newrelic-sysmond
yum: name=newrelic-sysmond state=present
``` |
ad3d5125-3a0d-4ef7-9b9b-f18ccf250a5c | {
"language": "YAML"
} | ```yaml
---
# mysql
- name: create hutmap databases for mysql
mysql_db:
name=$item
state=present
with_items:
- ${hutmap.db_name}
- test_${hutmap.db_name}
- name: create hutmap user for mysql
mysql_user:
name=${hutmap.db_user}
password=${hutmap.db_password}
host='%'
priv=${hutmap.... | ```yaml
---
# mysql
- name: create hutmap databases for mysql
mysql_db:
name=$item
state=present
encoding=utf8
with_items:
- ${hutmap.db_name}
- test_${hutmap.db_name}
- name: create hutmap user for mysql
mysql_user:
name=${hutmap.db_user}
password=${hutmap.db_password}
host='%'
... |
fa621d1e-cb8e-4db0-bd7f-a66adbd2556e | {
"language": "YAML"
} | ```yaml
apiVersion: v1
kind: ReplicationController
metadata:
name: accounting-server-rc
spec:
replicas: 1
selector:
name: accounting-server-rc
template:
metadata:
labels:
name: accounting-server-rc
spec:
containers:
- name: accounting
image: gregcorbett/rest:deploy
... | ```yaml
apiVersion: v1
kind: ReplicationController
metadata:
name: accounting-server-rc
spec:
replicas: 1
selector:
name: accounting-server-rc
template:
metadata:
labels:
name: accounting-server-rc
spec:
containers:
- name: accounting
image: gregcorbett/rest:deploy
... |
90c05c7b-0f74-4a01-8687-ad09bec68699 | {
"language": "YAML"
} | ```yaml
name: Packaging
on:
# Make sure packaging process is not broken
push:
branches: [master]
pull_request:
# Make a package for release
release:
types: [published]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10]
steps:... | ```yaml
name: Packaging
on:
# Make sure packaging process is not broken
push:
branches: [master]
pull_request:
# Make a package for release
release:
types: [published]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
step... |
82e75735-4594-4662-b5d1-66f23cc282b3 | {
"language": "YAML"
} | ```yaml
name: Full Test
on:
push:
pull_request:
types: [assigned, opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9']
django-version: ['<2.1', '<2.2', '<3.0', '<3.1', '<3.2', '==3.2b1']
steps... | ```yaml
name: Full Test
on:
push:
pull_request:
types: [assigned, opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9']
django-version: ['<2.1', '<2.2', '<3.0', '<3.1', '<3.2', '==3.2b1']
steps... |
c70bc3eb-de3e-432e-b212-90b3e977bfa2 | {
"language": "YAML"
} | ```yaml
apiVersion: monitoring.coreos.com/v1
kind: Prometheus
metadata:
labels:
prometheus: k8s
name: k8s
namespace: monitoring
spec:
alerting:
alertmanagers:
- name: alertmanager-main
namespace: monitoring
port: web
baseImage: gcr.io/k8s-testimages/quay.io/prometheus/prometheus
node... | ```yaml
apiVersion: monitoring.coreos.com/v1
kind: Prometheus
metadata:
labels:
prometheus: k8s
name: k8s
namespace: monitoring
spec:
alerting:
alertmanagers:
- name: alertmanager-main
namespace: monitoring
port: web
baseImage: gcr.io/k8s-testimages/quay.io/prometheus/prometheus
node... |
3bf15a7e-dc13-4fd1-b0c2-601496680808 | {
"language": "YAML"
} | ```yaml
Categories:
- Theming
License: Apache-2.0
SourceCode: https://github.com/WeAreFairphone/FP2-Launcher
IssueTracker: https://github.com/WeAreFairphone/FP2-Launcher/issues
Changelog: https://github.com/WeAreFairphone/FP2-Launcher/releases
AutoName: Fairphone Launcher 3
RepoType: git
Repo: https://github.com/We... | ```yaml
Categories:
- Theming
License: Apache-2.0
SourceCode: https://github.com/WeAreFairphone/FP2-Launcher
IssueTracker: https://github.com/WeAreFairphone/FP2-Launcher/issues
Changelog: https://github.com/WeAreFairphone/FP2-Launcher/releases
AutoName: Fairphone 2 Launcher
RepoType: git
Repo: https://github.com/We... |
b159bcb9-dec7-4e33-9632-cda0e63b473c | {
"language": "YAML"
} | ```yaml
---
- name: Install Bash Completion
apt: package=bash-completion state=present
sudo: yes
- name: Turn On Color Prompt
lineinfile:
dest: "{{ ansible_user_dir }}/.bashrc"
line: "force_color_prompt=yes"
regexp: '#?force_color_prompt=yes'
state: present
- name: More User Friendly List Aliase... | ```yaml
---
- name: Install Bash Completion
apt: package=bash-completion state=present
sudo: yes
- name: Turn On Color Prompt
lineinfile:
dest: "{{ ansible_user_dir }}/.bashrc"
line: "force_color_prompt=yes"
regexp: '#?force_color_prompt=yes'
state: present
- name: More User Friendly List Aliase... |
1ed834cd-e705-40f7-99c9-d202f3a47c0c | {
"language": "YAML"
} | ```yaml
type: live
title: Design Patern 2019
date: 10/11/2019
image: live-design-patern-2019.jpg
short: Live de design patern 2019-2020
peertube_id:
- 2d8043ac-bc5e-4cdc-8db1-dacd79d7b596
authors:
- davidsonco
- lachaussee
description: Live de deisgn patern de l'année scolaire 2019-2020
keywords:
- formation: ... | ```yaml
type: live
title: Design Patern 2019
date: 10/11/2019
image: live-design-patern-2019.jpg
short: Live de design patern 2019-2020
peertube_id:
- 2d8043ac-bc5e-4cdc-8db1-dacd79d7b596
authors:
- davidsonco
- lachaussee
description: Live de design patterns de l'année scolaire 2019-2020
keywords:
- formation... |
95060a5a-d31b-4b87-b118-fbca53dc7f3a | {
"language": "YAML"
} | ```yaml
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2.1
orbs:
docker-publish: circleci/docker-publish@0.1.7
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:7.10
steps:... | ```yaml
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2.1
orbs:
docker-publish: circleci/docker-publish@0.1.7
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:7.10
steps:... |
8f778f26-a48a-4497-8aea-58e3a5335a4f | {
"language": "YAML"
} | ```yaml
# JavaScript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2.1
jobs:
build:
docker:
- image: circleci/node:14.6
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
-... | ```yaml
# JavaScript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2.1
jobs:
build:
docker:
- image: circleci/node:14.7
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
-... |
be8d52f7-dab0-4221-b738-3075cdc7bc0f | {
"language": "YAML"
} | ```yaml
name: angular_analyzer_plugin
version: 0.0.17+5
description: Dart analyzer plugin for Angular 2+
authors:
- Konstantin Scheglov <scheglov@google.com>
- Mike Fairhurst <mfairhurst@google.com>
- Max Kim <maxkim@google.com>
homepage: https://github.com/dart-lang/angular_analyzer_plugin
environment:
sdk: ">... | ```yaml
name: angular_analyzer_plugin
version: 0.0.17+5
description: Dart analyzer plugin for Angular 2+
authors:
- Konstantin Scheglov <scheglov@google.com>
- Mike Fairhurst <mfairhurst@google.com>
- Max Kim <maxkim@google.com>
homepage: https://github.com/dart-lang/angular_analyzer_plugin
environment:
sdk: ">... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.