Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Change directory to docs before make html | language: python
env:
- 3.5
- 3.6
- 3.7
- 3.8
notifications:
email: false
before_install:
- python --version
- pip install -U pip
install:
- python setup.py install
- pip install -r docs/doc_requirements.txt
script:
- pytest --cov=pubmed_parser tests/ --verbose
- make html
- touch _build/htm... | language: python
env:
- 3.5
- 3.6
- 3.7
- 3.8
notifications:
email: false
before_install:
- python --version
- pip install -U pip
install:
- python setup.py install
- pip install -r docs/doc_requirements.txt
script:
- pytest --cov=pubmed_parser tests/ --verbose
- cd docs && make html
- touch... |
Change the versions we test with. | ---
# Verify this with: http://lint.travis-ci.org/
language: ruby
# Delete dependency locks for matrix builds.
before_install: rm Gemfile.lock || true
script: bundle exec rake test
rvm:
- 1.8.7
- 1.9.3
env:
matrix:
- PUPPET_VERSION="~> 2.7.0"
- PUPPET_VERSION="~> 3.1.0"
- PUPPET_VERSION="~> 3.2.0"
- PUPPE... | ---
# Verify this with: http://lint.travis-ci.org/
language: ruby
# Delete dependency locks for matrix builds.
before_install: rm Gemfile.lock || true
script: bundle exec rake test
rvm:
- 1.9.3
env:
- PUPPET_VERSION="~> 3.8.0"
- PUPPET_VERSION="~> 4.9.0"
matrix:
allow_failures:
- env: PUPPET_VERSION="~> 4.9.0... |
Enable email notifications for broken oss builds | sudo: required
dist: trusty
language: cpp
compiler:
- gcc
install:
- ./thrift/build/deps_ubuntu_14.04.sh
script:
- ./thrift/build/travis/install.sh
notifications:
email: false
| sudo: required
dist: trusty
language: cpp
compiler:
- gcc
install:
- ./thrift/build/deps_ubuntu_14.04.sh
script:
- ./thrift/build/travis/install.sh
notifications:
email:
recipients:
- thrift_oncall@fb.com
on_success: never
on_failure: always
|
Speed up composer install by downloading packages in parallel | language: php
## Run on container environment
sudo: false
php:
- 5.6
- 7.0
- 7.1
- nightly
- hhvm
matrix:
allow_failures:
- php: [nightly, hhvm]
before_install:
- composer self-update
install:
- composer install --dev --prefer-dist --no-autoloader --no-scripts
- composer dump-autoload -o -a... | language: php
## Run on container environment
sudo: false
php:
- 5.6
- 7.0
- 7.1
- nightly
- hhvm
matrix:
allow_failures:
- php: [nightly, hhvm]
before_install:
- composer self-update
- composer global require hirak/prestissimo 0.3.4
install:
- composer install --dev --prefer-dist --no-autol... |
Remove truffleruby since fails sometimes | name: Development
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby: [2.4, 2.5, 2.6, 2.7, jruby, truffleruby-head]
gemfile: [Gemfile, Gemfile.turnip3]
runs-on: ${{matrix.os}}
steps:
- uses: actions/check... | name: Development
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
ruby: [2.4, 2.5, 2.6, 2.7, jruby]
gemfile: [Gemfile, Gemfile.turnip3]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- us... |
Use correct android in Travis | language: android
jdk: oraclejdk8
android:
components:
- extra-android-m2repository
- build-tools-21.1.2
- android-19
script:
- ./gradlew build
| language: android
jdk: oraclejdk8
android:
components:
- extra-android-m2repository
- build-tools-21.1.2
- android-22
script:
- ./gradlew build
|
Update nodejs versions for Travis | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "0.8"
- "0.6"
- "iojs"
- "iojs-v1.0.4" | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "iojs" |
Increase the build output timeout period, as two of the tests take a *long* time to complete. | language: scala
scala:
- 2.12.1 | language: scala
scala:
- 2.12.1
script:
travis wait 30 sbt ++$TRAVIS_SCALA_VERSION test |
Install phpunit with profiling enabled | language: php
dist: trusty
sudo: false
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- "cp app/config/parameters.yml{.dist,}"
- "composer install --prefer-source"
- "composer require --dev phpunit/phpunit"
script: phpunit -c app
| language: php
dist: trusty
sudo: false
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- "cp app/config/parameters.yml{.dist,}"
- "composer install --prefer-source"
- "composer require --dev phpunit/phpunit --profile -vvv"
script: phpunit -c app
|
Use a Travis environment with PhantomJS 2. | language: node_js
node_js:
- "0.10"
cache:
directories:
- node_modules
notifications:
email: false
sudo: false
| dist: trusty
language: node_js
node_js:
- "0.10"
cache:
directories:
- node_modules
notifications:
email: false
sudo: false
|
Make sure shaape is installed when running tests on Travis CI | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby
install:
- sudo apt-get install -qq graphviz
- bundle install
| language: ruby
python:
- 2.7
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby
install:
- pip install shaape
- sudo apt-get install -qq graphviz
- bundle install
|
Update Travis CI with later PHP versions | language: php
php:
- 5.5.9
- 5.6
- 7.0
- hhvm
sudo: false
matrix:
allow_failures:
- php: hhvm
install:
- if [[ ${TRAVIS_PHP_VERSION} == "5.5.9" ]];
then travis_retry composer require laravel/framework;
else travis_retry composer update --no-interaction --prefer-source;
fi
script: make t... | language: php
php:
- 5.5.9
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
- nightly
sudo: false
matrix:
allow_failures:
- php: hhvm
- php: nightly
install:
- if [[ ${TRAVIS_PHP_VERSION} == "5.5.9" ]];
then travis_retry composer require laravel/framework;
else travis_retry composer update --no-inte... |
Change kong docker image version as newer ones are broken | sudo: required
services:
- docker
language: node_js
env:
global:
- TEST_INTEGRATION_KONG_HOST="127.0.0.1:8001"
- KONG_VERSION=0.12
matrix:
- EXPERIMENTAL_USE_LOCAL_STATE=0
- EXPERIMENTAL_USE_LOCAL_STATE=1
node_js:
- stable
- "8"
- "6"
before_install:
- docker run -d --name kong-da... | sudo: required
services:
- docker
language: node_js
env:
global:
- TEST_INTEGRATION_KONG_HOST="127.0.0.1:8001"
- KONG_VERSION=0.12.1
matrix:
- EXPERIMENTAL_USE_LOCAL_STATE=0
- EXPERIMENTAL_USE_LOCAL_STATE=1
node_js:
- stable
- "8"
- "6"
before_install:
- docker run -d --name kong-... |
Put back node_modules in the cache | git:
depth: 10
branches:
only:
- master
env:
global:
- ATOM_ACCESS_TOKEN=da809a6077bb1b0aa7c5623f7b2d5f1fec2faae4
osx_image: xcode7.3
compiler: clang
matrix:
include:
- os: linux
env: NODE_VERSION=4
- os: osx
env: ATOM_SPECS_TASK=core NODE_VERSION=4
- os: osx
env: ATOM... | git:
depth: 10
branches:
only:
- master
env:
global:
- ATOM_ACCESS_TOKEN=da809a6077bb1b0aa7c5623f7b2d5f1fec2faae4
osx_image: xcode7.3
compiler: clang
matrix:
include:
- os: linux
env: NODE_VERSION=4
- os: osx
env: ATOM_SPECS_TASK=core NODE_VERSION=4
- os: osx
env: ATOM... |
Remove cache section for now | cache:
pip: true
- $HOME/Library/Caches/Homebrew
matrix:
include:
- os: osx
osx_image: xcode8.3
language: generic
- os: osx
osx_image: xcode8.2
language: generic
- os: osx
osx_image: xcode8.1
language: generic
- os: osx
osx_image: xcode8
language: g... | matrix:
include:
- os: osx
osx_image: xcode8.3
language: generic
- os: osx
osx_image: xcode8.2
language: generic
- os: osx
osx_image: xcode8.1
language: generic
- os: osx
osx_image: xcode8
language: generic
- os: osx
osx_image: xcode7.3
l... |
Add explicit testing for Rails 4.2 and extra ruby versions | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-2
env:
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=4.1.0"
script: bundle exec rspec spec/models
before_script:
- psql -c "CREATE USER cti WITH ENCRYPTED PASSWORD 'cti';" -U postgres
- psql -c "CREATE DATABASE dbvie... | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
- 2.3.0
- jruby-19mode
- rbx-2
env:
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=4.1.0"
- "RAILS_VERSION=4.2.0"
script: bundle exec rspec spec/models
before_script:
- psql -c "CREATE USER cti WITH ENCRYPTED PASSWORD 'cti';" ... |
Build war and standalone in matrix build | language: groovy | language: groovy
env:
- BLDFILE=build.gradle
- BLDFILE=standalone.gradle
cache:
directories:
- $HOME/.gradle
script: ./gradlew -b $BLDFILE |
Put environment variables in one set. | language: ruby
rvm:
- 2.1.5
# - 2.2
# - jruby
# - rbx-2
env:
- PIVOTAL_TRACKER_API_TOKEN=dummy_api_token
- SECRET_TOKEN=s3kr1t
script: bundle exec rspec
| language: ruby
rvm:
- 2.1.5
# - 2.2
# - jruby
# - rbx-2
env:
- PIVOTAL_TRACKER_API_TOKEN=dummy_api_token SECRET_TOKEN=s3kr1t
script: bundle exec rspec
|
Rebuild packages from Fedora to match u-c | packages:
- project: python-amqp
buildsys-tags:
cloud8s-openstack-wallaby-candidate: python-amqp-5.0.5-1.el8
- project: python-memcached
buildsys-tags:
cloud8s-openstack-wallaby-candidate: python-memcached-1.59-1.el8
| packages:
- project: python-amqp
buildsys-tags:
cloud8s-openstack-wallaby-candidate: python-amqp-5.0.5-1.el8
- project: python-memcached
buildsys-tags:
cloud8s-openstack-wallaby-candidate: python-memcached-1.59-1.el8
- project: python-pymemcache
buildsys-tags:
cloud8s-openstack-wallaby-candidate: pyth... |
Use "xcode8" OS X image | language: objective-c
osx_image: xcode8.0
# Important to specify the simulator SDK, otherwise Travis CI will attempt to
# build for the real iPhone and fail due to code-signing issues.
xcode_sdk: iphonesimulator
before_install:
- brew update
- brew uninstall xctool && brew install --HEAD xctool
xcode_project: Ne... | language: objective-c
osx_image: xcode8
# Important to specify the simulator SDK, otherwise Travis CI will attempt to
# build for the real iPhone and fail due to code-signing issues.
# See https://docs.travis-ci.com/user/languages/objective-c for details.
xcode_sdk: iphonesimulator
before_install:
- brew update
-... |
Exclude docs folder from flake8 testing. | sudo: required
language: python
python: "2.7"
addons:
apt:
packages:
- libffi-dev
- libjpeg-dev
- libssl-dev
- libtiff4-dev
- libxml2-dev
- libxslt1-dev
- zlib1g-dev
services:
- postgresql
env: >
DJANGO_SETTINGS_MODULE... | sudo: required
language: python
python: "2.7"
addons:
apt:
packages:
- libffi-dev
- libjpeg-dev
- libssl-dev
- libtiff4-dev
- libxml2-dev
- libxslt1-dev
- zlib1g-dev
services:
- postgresql
env: >
DJANGO_SETTINGS_MODULE... |
Drop support for ruby 2.1 | language: ruby
rvm:
- 2.1.8
- 2.2.4
- 2.3.0
script:
- bundle exec rspec
- bundle exec rubocop
| language: ruby
rvm:
- 2.2.4
- 2.3.0
script:
- bundle exec rspec
- bundle exec rubocop
|
Add puppet 3.8.5 and ruby 2.0.0 to test suite | language: ruby
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec"
rvm:
- 1.9.3
- 2.1.5
notifications:
email: false
env:
- PUPPET_VERSION=3.4.3
- PUPPET_VERSION=3.7.2
- PUPPET_VERSION=3.7.5 FUTURE_PARSER=yes
- PUPPET_VERSION=4.0.0
- PUPPET_VERSION=4.2.0
| language: ruby
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec"
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
notifications:
email: false
env:
- PUPPET_VERSION=3.4.3
- PUPPET_VERSION=3.7.2
- PUPPET_VERSION=3.7.5 FUTURE_PARSER=yes
- PUPPET_VERSION=3.8.5
- PUPPET_VERSION=3.8.5 FUTURE... |
Remove support for Ubuntu 16.04 + add Ubuntu FIPS | ---
project-name: chef-server
config: omnibus/omnibus.rb
install-dir: /opt/opscode
test-path: omnibus/omnibus-test.sh
fips-platforms:
- el-*-x86_64
builder-to-testers-map:
el-7-x86_64:
- el-7-x86_64
- el-8-x86_64
- amazon-2-x86_64
sles-12-x86_64:
- sles-12-x86_64
- sles-15-x86_64
ubuntu-16.0... | ---
project-name: chef-server
config: omnibus/omnibus.rb
install-dir: /opt/opscode
test-path: omnibus/omnibus-test.sh
fips-platforms:
- el-*-x86_64
- ubuntu-*-x86_64
builder-to-testers-map:
el-7-x86_64:
- el-7-x86_64
- el-8-x86_64
- amazon-2-x86_64
sles-12-x86_64:
- sles-12-x86_64
- sles-15-... |
Update Helmet version to 5.1.1 | title: Helmet
short_description: Express.js security with HTTP headers
description: Helmet helps you secure your Express.js apps by setting various HTTP headers. It's not a silver bullet, but it can help!
helmet_version: "5.1.0"
baseurl: ""
url: "https://helmetjs.github.io"
markdown: CommonMarkGhPages
commonmark:
op... | title: Helmet
short_description: Express.js security with HTTP headers
description: Helmet helps you secure your Express.js apps by setting various HTTP headers. It's not a silver bullet, but it can help!
helmet_version: "5.1.1"
baseurl: ""
url: "https://helmetjs.github.io"
markdown: CommonMarkGhPages
commonmark:
op... |
Add clarification on newrelic role | ---
# This playbook configures newrelic monitoring service
- name: add newrelic repo key
apt_key:
url: https://download.newrelic.com/548C16BF.gpg
id: 548C16BF
state: present
become: yes
- name: add newrelic repo
apt_repository:
repo: 'deb http://apt.newrelic.com/debian/ newrelic non-free'
st... | ---
# This playbook configures newrelic monitoring service
- name: add newrelic repo key
apt_key:
url: https://download.newrelic.com/548C16BF.gpg
id: 548C16BF
state: present
become: yes
- name: add newrelic repo
apt_repository:
repo: 'deb http://apt.newrelic.com/debian/ newrelic non-free'
st... |
Update from Hackage at 2016-01-09T17:15:31+0000 | homepage: ''
changelog-type: ''
hash: 77f9bef13fac3f4fe3aacfcba563ebb9b1ec708853c080048be41253582e0255
test-bench-deps: {}
maintainer: the.palmik+maintainer@gmail.com
synopsis: Generic functionality for BSON
changelog: ''
basic-deps:
base: ==4.6.*
text: ==0.11.*
ghc-prim: ==0.3.*
bson: ==0.2.*
all-versions:
- '... | homepage: ''
changelog-type: ''
hash: 16b3ccae47367de96ef86e1be4a6c9ea2f862971bd316027fd04d73dcb396f9e
test-bench-deps: {}
maintainer: the.palmik+maintainer@gmail.com
synopsis: Generic functionality for BSON
changelog: ''
basic-deps:
base: ==4.8.*
text: ==1.2.1.*
ghc-prim: ==0.4.*
bson: ==0.3.*
all-versions:
- ... |
Update from Hackage at 2017-12-09T03:11:13Z | homepage: ''
changelog-type: ''
hash: 0f1b870f661faa8554d966588cca6c47e8268fdb565d57277c675ca1917a9746
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Class of random value generation
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
transformers: -any
primitive: -any
all-versions:
- '0.1.0.0'
- '0.1.... | homepage: ''
changelog-type: ''
hash: 3d5bc52eef73f051634961035599bf08a670c9dc5d9b9b4cd370fc8710c9e169
test-bench-deps: {}
maintainer: strake888@gmail.com
synopsis: Class of random value generation
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
util: ! '>=0.1.2 && <0.2'
transformers: -any
primitive: -any
all-v... |
Add rss feed test message | # This will appear on the site in the order as it is
# listed here, so add new items on top
- content: Everything up and running
status: green
timestamp: 2015-04-09 12:00 +0200
| # This will appear on the site in the order as it is
# listed here, so add new items on top
- content: This is a test of rss feed hooks
status: green
timestamp: 2015-04-09 17:40 +0200
- content: Everything up and running
status: green
timestamp: 2015-04-09 12:00 +0200
|
Add python 3.8 to test matrix | name: Test package
on:
push:
branches:
- master
paths:
- 'gel/*'
- 'tests/*'
- '.github/workflows/test-package.yml'
- 'pyproject.toml'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7]
fail-fast: false
steps:
- use... | name: Test package
on:
push:
branches:
- master
paths:
- 'gel/*'
- 'tests/*'
- '.github/workflows/test-package.yml'
- 'pyproject.toml'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8]
fail-fast: false
steps:
... |
Improve text for Discord server link in issues | blank_issues_enabled: false
contact_links:
- name: discord.js discord server
url: https://discord.gg/bRCvFy9
about: Please use this Discord Server to ask questions and get support. We don't typically answer questions here and they will likely be closed and redirected to the Discord server.
| blank_issues_enabled: false
contact_links:
- name: Discord server
url: https://discord.gg/bRCvFy9
about: Have questions or need support? Please go to the Discord server, as issues that are just support-related will be closed and redirected there.
|
Update virtualenv to use python3 | ---
- name: Install neovim
package:
name: neovim
state: present
become: true
when: ansible_system == 'Linux'
- name: Install neovim
package:
name: neovim
state: present
when: ansible_system == 'Darwin'
- name: Clean neovim directory
file:
path: "{{ lookup('env', 'HOME') }}/.config/nvim... | ---
- name: Install neovim
package:
name: neovim
state: present
become: true
when: ansible_system == 'Linux'
- name: Install neovim
package:
name: neovim
state: present
when: ansible_system == 'Darwin'
- name: Clean neovim directory
file:
path: "{{ lookup('env', 'HOME') }}/.config/nvim... |
Update from Hackage at 2016-05-10T06:24:33+0000 | homepage: http://github.com/mgsloan/th-reify-many
changelog-type: ''
hash: cf3627316980f6abc68a18cd417ccb04242883caa259c6ccb508ff067b9a2e10
test-bench-deps:
base: -any
th-reify-many: -any
template-haskell: -any
maintainer: Michael Sloan <mgsloan at gmail>
synopsis: Recurseively reify template haskell datatype inf... | homepage: http://github.com/mgsloan/th-reify-many
changelog-type: ''
hash: e31523368182e8648c6fac34fc56971cefff8415d907b1a7cb09f98a27f0b932
test-bench-deps:
base: -any
th-reify-many: -any
template-haskell: -any
maintainer: Michael Sloan <mgsloan at gmail>
synopsis: Recurseively reify template haskell datatype inf... |
Fix issue with nginx ansible task to support Docker 1.12 (syslog-tag changed to tag) | - name: Directories are present
file:
dest: "{{ item }}"
state: directory
owner: vagrant
with_items: directories
tags: [nginx]
- name: Container is running
docker:
image: nginx:alpine
name: nginx
state: running
ports: "{{ ports }}"
volumes: "{{ volumes }}"
when: not log_to_sys... | - name: Directories are present
file:
dest: "{{ item }}"
state: directory
owner: vagrant
with_items: directories
tags: [nginx]
- name: Container is running
docker:
image: nginx:alpine
name: nginx
state: running
ports: "{{ ports }}"
volumes: "{{ volumes }}"
when: not log_to_sys... |
Update Planes Android to 0.3.7 (10) | Categories:
- Games
License: MIT
AuthorName: Cristian Cucu
SourceCode: https://github.com/xxxcucus/planes
IssueTracker: https://github.com/xxxcucus/planes/issues
AutoName: Planes Android
RepoType: git
Repo: https://github.com/xxxcucus/planes
Builds:
- versionName: 0.3.6
versionCode: 9
commit: 0.3.6
s... | Categories:
- Games
License: MIT
AuthorName: Cristian Cucu
SourceCode: https://github.com/xxxcucus/planes
IssueTracker: https://github.com/xxxcucus/planes/issues
AutoName: Planes Android
RepoType: git
Repo: https://github.com/xxxcucus/planes
Builds:
- versionName: 0.3.6
versionCode: 9
commit: 0.3.6
s... |
Use modules for removing inventory files | - name: Destroy lab instances in AWS
hosts: localhost
connection: local
become: no
gather_facts: no
vars:
ec2_exact_count: 0
ec2_wait: no
roles:
- manage_ec2_instances
post_tasks:
- name: Cleanup local files
shell: rm -f *.txt
| - name: Destroy lab instances in AWS
hosts: localhost
connection: local
become: no
gather_facts: yes
vars:
ec2_exact_count: 0
ec2_wait: no
roles:
- manage_ec2_instances
post_tasks:
- name: Find .txt files
find:
paths: "{{ ansible_env.PWD }}"
patterns: '*.txt'
... |
Add Mac and Win to PR testing pipeline | name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
... | name: Python tests
on: [push]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, 3.10.0-rc.2]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python... |
Add builder and linter checks | # Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
version: 2.1
# Use a package of configuration called an orb.
orbs:
# Declare a dependency on the welcome-orb
welcome: circleci/welcome-orb@0.4.1
# Orchestrate or schedule a set of jobs
workfl... | version: 2.1
# ======================= JOBS =======================
jobs:
gapic-generator-java-tests:
docker:
- image: l.gcr.io/google/bazel
working_directory: /home/circleci/project/gapic-generator-java
steps:
- checkout
- run:
name: Builder
command: |
b... |
Test default docker CircleCI image | # PHP CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-php/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/php:7.1.5-browsers
# Specify service dependencies here if necessary
# CircleCI maint... | version: 2
jobs:
build:
working_directory: /var/www/html
docker:
- image: php:7.1-nginx
environment:
APP_ENV: test
steps:
- run:
name: Install system packages
command: apt-get update && apt-get -y install git
- run:
name: Install PHP extens... |
Enable zabbix-agentd service at boot. | #cloud-config
coreos:
units:
- name: "zabbix-agentd.service"
command: "start"
content: |
[Unit]
Description=Zabbix Agentd
After=network.target
[Service]
Type=forking
Restart=on-failure
Environment="CONFFILE=/opt/etc/zabbix/zabbix_agentd.conf"
... | #cloud-config
coreos:
units:
- name: "zabbix-agentd.service"
enable: true
command: "start"
content: |
[Unit]
Description=Zabbix Agentd
After=network.target
[Service]
Type=forking
Restart=on-failure
Environment="CONFFILE=/opt/etc/zabbix/za... |
Update from Hackage at 2018-09-11T15:42:22Z | homepage: https://github.com/chris-martin/either-list-functions#readme
changelog-type: ''
hash: 7515dbb2f216359c6fa4b4b36231986ebc85d9db0500631eca09a2c17beea24d
test-bench-deps:
base: ! '>=4.9 && <4.11'
doctest: -any
either-list-functions: -any
maintainer: Chris Martin <ch.martin@gmail.com>
synopsis: Functions in... | homepage: https://github.com/chris-martin/either-list-functions
changelog-type: ''
hash: d027f20d0e51c5fd6c9e97f5a9cdb01bbaad428f9f67f928f0ab8b1b53e9aff8
test-bench-deps:
base: ! '>=4.9 && <4.12'
doctest: -any
either-list-functions: -any
maintainer: Chris Martin <ch.martin@gmail.com>
synopsis: Functions involving... |
Update from Hackage at 2017-08-16T22:48:08Z | homepage: ''
changelog-type: ''
hash: 6b633d5a00993f25b847201b0b6f8a13398eb2aabbeb421552347772a2322a38
test-bench-deps: {}
maintainer: emertens@gmail.com
synopsis: A console interface to the game of Set
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.9'
vty: ! '>=5.4 && <5.5'
setgame: -any
random: ! '>=1.1 && <1... | homepage: ''
changelog-type: ''
hash: dc7d4f84053b4539d10d4ca42a3171319c4292b3d34c96fc3b846d2babab13ea
test-bench-deps: {}
maintainer: emertens@gmail.com
synopsis: A console interface to the game of Set
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.11'
vty: ! '>=5.4 && <5.18'
setgame: -any
random: ! '>=1.1 && ... |
Set solr's maxmem back to 3G | production:
solr:
hostname: ec2-184-73-200-49.compute-1.amazonaws.com
port: 7377
path: /solr/collection1
read_timeout: 5
open_timeout: 1.5
log_level: INFO
min_memory: 20M
max_memory: 500M
pid_dir: tmp/pids
development:
solr:
hostname: localhost
port: 7377
log_level: ... | production:
solr:
hostname: ec2-184-73-200-49.compute-1.amazonaws.com
port: 7377
path: /solr/collection1
read_timeout: 5
open_timeout: 1.5
log_level: INFO
min_memory: 20M
max_memory: 3G
pid_dir: tmp/pids
development:
solr:
hostname: localhost
port: 7377
log_level: AL... |
Address Ansible bare variable usage | ---
# Copyright 2014, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to ... | ---
# Copyright 2014, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to ... |
Normalize yaml indentation in Appveyor config | environment:
matrix:
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python34-x64"
- PYTHON: "C:\\Python27-x64"
install:
# symlink python from a directory with a space
- "mklink /d \"C:\\Program Files\\Python\" %PYTHON%"
- "SET PYTHON=\"C:\\Program Files\\Python\""
- ... | environment:
matrix:
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python34-x64"
- PYTHON: "C:\\Python27-x64"
install:
# symlink python from a directory with a space
- "mklink /d \"C:\\Program Files\\Python\" %PYTHON%"
- "SET PYTHON=\"C:\\Program Files\\Python\""
- "SET PATH=%PYTHO... |
Use --frozen-lockfile as it is ci context | version: 2
jobs:
build:
docker:
- image: circleci/node:latest
steps:
- checkout
- run: node --version
- run: git status
- run: yarn install
- run: git status
- deploy:
name: Maybe Deploy
command: |
if [ "${CIRCLE_BRANCH}" == "... | version: 2
jobs:
build:
docker:
- image: circleci/node:latest
steps:
- checkout
- run: node --version
- run: git status
- run: yarn install --frozen-lockfile
- run: git status
- deploy:
name: Maybe Deploy
command: |
if [ "${CI... |
Use the built-in Visual Studio solution. | version: 1.1.{build}
os: Visual Studio 2015
environment:
BOOST_ROOT: C:\Libraries\boost_1_59_0
BOOST_LIBDIR: C:\Libraries\boost_1_59_0\stage\lib
platform:
- Win32
- x64
configuration:
- Debug
- Release
install:
- cmd: cmake --help
- cmd: msbuild /version
clone_folder: C:\projects\json-voorhees
before_bu... | version: 1.1.{build}
os: Visual Studio 2015
environment:
BOOST_ROOT: C:\Libraries\boost_1_59_0
BOOST_LIBDIR: C:\Libraries\boost_1_59_0\stage\lib
platform:
- Win32
- x64
configuration:
- Debug
- Release
install:
- cmd: cmake --help
#- cmd: msbuild /version
clone_folder: C:\projects\json-voorhees
before_b... |
Test with Node.js version 8 instead of 7 | # http://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- nodejs_version: "6"
- nodejs_version: "7"
version: "{build}-{branch}"
init:
- git config --global core.longpaths true
clone_depth: 1
matrix:
fast_finish: true
cache:
- node_modules
install:
- ps: Install-Product node $env:nodejs... | # http://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- nodejs_version: "6"
- nodejs_version: "8"
version: "{build}-{branch}"
init:
- git config --global core.longpaths true
clone_depth: 1
matrix:
fast_finish: true
cache:
- node_modules
install:
- ps: Install-Product node $env:nodejs... |
Revert "Test: fix removal of e validate_query rewrite YAML test" | ---
"Validate query api":
- do:
indices.create:
index: testing
body:
settings:
number_of_replicas: 0
- do:
cluster.health:
wait_for_status: yellow
- do:
indices.validate_query:
q: query string
- is_true: valid
- do:
indices.vali... | ---
"Validate query api":
- do:
indices.create:
index: testing
body:
settings:
number_of_replicas: 0
- do:
cluster.health:
wait_for_status: yellow
- do:
indices.validate_query:
q: query string
- is_true: valid
- do:
indices.vali... |
Remove ConfigVals.java from Code Climate review | engines:
checkstyle:
enabled: true
channel: "beta"
ratings:
paths:
- "**.java"
| engines:
checkstyle:
enabled: true
channel: "beta"
ratings:
paths:
- "**.java"
exclude_patterns:
- "src/main/java/io/prometheus/common/ConfigVals.java"
|
Fix RTD config to pass linting | version: 2
sphinx:
configuration: docs/conf.py
formats: all
python:
version: 3.8
install:
- method: pip
path: .
extra_requirements:
- docs
| version: 2
sphinx:
configuration: docs/conf.py
formats: all
python:
version: "3.8"
install:
- method: pip
path: .
extra_requirements:
- docs
|
Update from Hackage at 2019-03-09T13:47:34Z | homepage: https://github.com/Shou/type-operators#readme
changelog-type: ''
hash: 8e1e2154c9b3d3b8d267ecc419768044bb56328a814ef7942d6b17e492129171
test-bench-deps: {}
maintainer: x@shou.io
synopsis: Various type-level operators
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
ghc-prim: -any
all-versions:
- 0.1.0.0
- ... | homepage: https://github.com/Shou/type-operators#readme
changelog-type: ''
hash: 8b7f815ee0ba9c8e4a5703fffc9db8a9eba8afba20cc75c16e6d878e97b77b83
test-bench-deps: {}
maintainer: x@shou.io
synopsis: Various type-level operators
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
ghc-prim: -any
all-versions:
- 0.1.0.0
- ... |
Use /tmp/swift_test for bouncestorage image | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
general:
branches:
ignore:
- gh-pages
workflows:
version: 2
test_build:
jobs:
- build
- test
jobs:
build:
docker:
- image: circleci/nod... | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
general:
branches:
ignore:
- gh-pages
workflows:
version: 2
test_build:
jobs:
- build
- test
jobs:
build:
docker:
- image: circleci/nod... |
Add support for the openSUSE Leap distributions | ---
galaxy_info:
author: Alfredo Deza
description: Installs Ceph Storage Agent
license: Apache
min_ansible_version: 2.3
platforms:
- name: Ubuntu
versions:
- xenial
- name: EL
versions:
- 7
categories:
- system
dependencies: []
| ---
galaxy_info:
author: Alfredo Deza
description: Installs Ceph Storage Agent
license: Apache
min_ansible_version: 2.3
platforms:
- name: Ubuntu
versions:
- xenial
- name: EL
versions:
- 7
- name: opensuse
versions:
- 42.3
categories:
- system
depen... |
Change email to generic forwarded address | - title: home
url: /
- title: about
url: /me
- title: contact
url: mailto:rodney@tattdcodemonkey.com
- title: github
url: https://github.com/tattdcodemonkey
- title: twitter
url: https://twitter.com/tattdcodemonkey
| - title: home
url: /
- title: about
url: /me
- title: contact
url: mailto:website@rodneynorris.com
- title: github
url: https://github.com/tattdcodemonkey
- title: twitter
url: https://twitter.com/tattdcodemonkey
|
Enable IPv6 support in local docker container for development testing. | version: "2"
services:
app:
build:
context: .
dockerfile: Dockerfile-dev
volumes:
- .:/app
- build_cache:/build
tmpfs:
# Mount the ember-cli tmp directory as a tmpfs partition for better
# performance.
- /app/src/api-umbrella/admin-ui/tmp:rw,size=128m,mode=1777
... | version: "2.1"
services:
app:
build:
context: .
dockerfile: Dockerfile-dev
volumes:
- .:/app
- build_cache:/build
tmpfs:
# Mount the ember-cli tmp directory as a tmpfs partition for better
# performance.
- /app/src/api-umbrella/admin-ui/tmp:rw,size=128m,mode=1777
... |
Add another volume for circle | version: "3"
services:
web:
build: .
volumes:
- .:/app
container_name: marli
ports:
- "3000:3000"
env_file:
- test.env
environment:
CI:
CODECLIMATE_REPO_TOKEN:
COVERALLS_REPO_TOKEN:
depends_on:
- setup_dbs
test:
build: .
volumes:
-... | version: "3"
services:
web:
build: .
volumes:
- .:/app
- .:/marli
container_name: marli
ports:
- "3000:3000"
env_file:
- test.env
environment:
CI:
CODECLIMATE_REPO_TOKEN:
COVERALLS_REPO_TOKEN:
depends_on:
- setup_dbs
test:
build: .
... |
Add step to run mocha tests | version: 2.1
orbs:
node: circleci/node@4.1
jobs:
build-and-test:
docker:
- image: cimg/node:lts
steps:
- checkout
- node/install-packages
- run:
name: Run tests
command: npm run test:cli
workflows:
main:
jobs:
- build-and-test
| version: 2.1
orbs:
node: circleci/node@4.1
jobs:
build-and-test:
docker:
- image: cimg/node:lts
steps:
- checkout
- node/install-packages
- run:
name: Run tests (qunit)
command: npm run test:cli
- run:
name: Run tests (mocha)
command: n... |
Update from Hackage at 2020-01-16T16:54:25Z | homepage: https://github.com/andrewthad/run-st
changelog-type: markdown
hash: ce73f783972aebfdfbf7b577f9cb7877f4f975bc31e9d5aa873fda809e8c8a16
test-bench-deps: {}
maintainer: andrew.thaddeus@gmail.com
synopsis: runST without boxing penalty
changelog: |
# Revision history for run-st
## 0.1.0.0 -- 2019-06-21
* Fi... | homepage: https://github.com/andrewthad/run-st
changelog-type: markdown
hash: a43245bb23984089016772481bf52bfe63eaff0c5040303f69c9b15e80872fdc
test-bench-deps: {}
maintainer: andrew.thaddeus@gmail.com
synopsis: runST without boxing penalty
changelog: |
# Revision history for run-st
## 0.1.1.0 -- 2020-01-16
* Ad... |
Remove -dev.infinity in SDK upper constraint | name: expected_output
version: 1.2.1-dev
description: Easily write and test multiline input and expected output
author: Dart Team <misc@dartlang.org>
homepage: https://pub.dartlang.org/packages/expected_output
environment:
sdk: '>=1.19.0 <2.0.0-dev.infinity'
dependencies:
path: "^1.4.1"
test: "^0.12.20"
| name: expected_output
version: 1.2.1-dev
description: Easily write and test multiline input and expected output
author: Dart Team <misc@dartlang.org>
homepage: https://pub.dartlang.org/packages/expected_output
environment:
sdk: '>=1.19.0 <2.0.0'
dependencies:
path: "^1.4.1"
test: "^0.12.20"
|
Test Ruby `2.0.0` on Travis CI. | env:
- COVERAGE=true
language: ruby
rvm:
- 2.1.5
services: mongodb
notifications:
email:
- didier@nocoffee.fr
branches:
except:
- gh-pages | env:
- COVERAGE=true
language: ruby
rvm:
- 2.1.5
- 2.2.0
services: mongodb
notifications:
email:
- didier@nocoffee.fr
branches:
except:
- gh-pages |
Install xorg-dev and libxss-dev in TRavis | language: cpp
compiler:
- gcc
- clang
install: make deps
script:
- source /opt/qt53/bin/qt53-env.sh && make clean && make test && make
branches:
only:
- master
notifications:
recipients:
- tanel.lebedev@gmail.com
email:
on_success: change
on_failure: always
before_install:
- sudo apt-add-r... | language: cpp
compiler:
- gcc
- clang
install: make deps
script:
- source /opt/qt53/bin/qt53-env.sh && make clean && make test && make
branches:
only:
- master
notifications:
recipients:
- tanel.lebedev@gmail.com
email:
on_success: change
on_failure: always
before_install:
- sudo apt-add-r... |
Update from Hackage at 2018-04-07T23:00:28Z | homepage: https://github.com/tonyday567/numhask#readme
changelog-type: ''
hash: ed996911b7c0b8fd7431ba8c971a71ceb9e6ef6ab1ce85a1759342a85375c16b
test-bench-deps:
base: ! '>=4.7 && <5'
numhask-prelude: -any
doctest: -any
tasty: -any
maintainer: tonyday567@gmail.com
synopsis: A numeric prelude
changelog: ''
basic... | homepage: https://github.com/tonyday567/numhask#readme
changelog-type: ''
hash: 642b159109c9743622364f063acf375d49cddeacee9313da39c898040b002117
test-bench-deps:
base: ! '>=4.7 && <5'
numhask-prelude: -any
doctest: -any
tasty: -any
maintainer: tonyday567@gmail.com
synopsis: A numeric prelude
changelog: ''
basic... |
Install extra dependencies required by some models and log test durations | name: Python tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: Run tests on ${{ matrix.os }} with Python ${{ matrix.python }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
python: ['3.8', '3.7']
runs-on: ${{ matrix.os }}
... | name: Python tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: Run tests on ${{ matrix.os }} with Python ${{ matrix.python }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
python: ['3.8', '3.7']
runs-on: ${{ matrix.os }}
... |
Update Randomix to 1.11 (27) | Categories:
- Games
License: MIT
AuthorName: minar
AuthorEmail: minar.tastic@gmail.com
AuthorWebSite: https://minar.ml/
SourceCode: https://github.com/m-i-n-a-r/randomix
IssueTracker: https://github.com/m-i-n-a-r/randomix/issues
AutoName: Randomix
RepoType: git
Repo: https://github.com/m-i-n-a-r/randomix.git
Build... | Categories:
- Games
License: MIT
AuthorName: minar
AuthorEmail: minar.tastic@gmail.com
AuthorWebSite: https://minar.ml/
SourceCode: https://github.com/m-i-n-a-r/randomix
IssueTracker: https://github.com/m-i-n-a-r/randomix/issues
AutoName: Randomix
RepoType: git
Repo: https://github.com/m-i-n-a-r/randomix.git
Build... |
Update MensaPlan to v0.4.1 (4) | AntiFeatures:
- NonFreeNet
Categories:
- Sports & Health
License: GPL-2.0-only
SourceCode: https://github.com/csicar/MensaPlan
IssueTracker: https://github.com/csicar/MensaPlan/issues
AutoName: MensaPlan
Description: |-
''MensaPlan'' versorgt Dich mit den Speiseplänen Deiner Kantine:
* Mensa Hochschule Pf... | AntiFeatures:
- NonFreeNet
Categories:
- Sports & Health
License: GPL-2.0-only
SourceCode: https://github.com/csicar/MensaPlan
IssueTracker: https://github.com/csicar/MensaPlan/issues
AutoName: MensaPlan
Description: |-
''MensaPlan'' versorgt Dich mit den Speiseplänen Deiner Kantine:
* Mensa Hochschule Pf... |
Configure CI for bundler v1 | name: CI
on: push
jobs:
test:
name: Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- "2.5"
- "2.6"
- "2.7"
- "3.0"
bundler:
- "1"
- "2"
env:
BUNDLE_GEMFILE: gemfiles/bundler${{ matrix... | name: CI
on: push
jobs:
test:
name: Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- "2.5"
- "2.6"
- "2.7"
- "3.0"
bundler:
- "1"
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1... |
Use .NET Core sdk 2.1.402 | # ASP.NET Core
# Build and test ASP.NET Core web applications targeting .NET Core.
# Add steps that run tests, create a NuGet package, deploy, and more:
# https://docs.microsoft.com/vsts/pipelines/languages/dotnet-core
variables:
BuildConfiguration: 'Release'
steps:
- task: DotNetCoreInstaller@0
displayName: 'Use... | # ASP.NET Core
# Build and test ASP.NET Core web applications targeting .NET Core.
# Add steps that run tests, create a NuGet package, deploy, and more:
# https://docs.microsoft.com/vsts/pipelines/languages/dotnet-core
variables:
BuildConfiguration: 'Release'
steps:
- task: DotNetCoreInstaller@0
displayName: 'Use... |
Add Cucumber HTML Formatter for CI | <%
rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : ""
rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}"
std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} --strict --tags ~@wip"
%>
default: <%= ... | <%
rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : ""
rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}"
std_opts = "--format html --out tmp/features.html --format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} -... |
Use nodemon for client app. | version: "3"
services:
mongo:
image: mongo:latest
ports:
- "27017"
volumes:
- ./docker/mongo/data:/data/db
node-server:
build:
context: .
dockerfile: "./docker/nodejs.dockerfile"
volumes:
- "./app:/src/app"
ports:
- "3031:3001"
depends_on:
- ... | version: "3"
services:
mongo:
image: mongo:latest
ports:
- "27017"
volumes:
- ./docker/mongo/data:/data/db
node-server:
build:
context: .
dockerfile: "./docker/nodejs.dockerfile"
volumes:
- "./app:/src/app"
ports:
- "3031:3001"
depends_on:
- ... |
Update from Hackage at 2017-07-28T06:40:15Z | homepage: https://github.com/mikeplus64/aeson-flowtyped#readme
changelog-type: ''
hash: 7f408c75580e37fc39cbe1deb7a760d85f1a4bf69c4bdf0e74a706a6fb5a932c
test-bench-deps:
base: ! '>=4.9 && <4.11'
unordered-containers: -any
text: -any
aeson-flowtyped: -any
tasty-hunit: -any
tasty: -any
recursion-schemes: -a... | homepage: https://github.com/mikeplus64/aeson-flowtyped#readme
changelog-type: ''
hash: 61bd1c7b0c55c9c0068cf017d1bbc573ef66fdd23a61da85a75b8d3be1bf4ed3
test-bench-deps:
base: ! '>=4.9 && <4.11'
unordered-containers: -any
text: -any
aeson-flowtyped: -any
tasty-hunit: -any
tasty: -any
recursion-schemes: -a... |
Add support for migrating the database if it is already set up. | - name: Create the LinuxFR user
user: name=linuxfr home=/data/dev/linuxfr state=present
- name: Clone the LinuxFR repository
git: repo=git://github.com/nono/linuxfr.org.git dest=/data/dev/linuxfr/source
- name: Configure the Rails apps's database
copy: src=linuxfr/database.yml dest=/data/dev/linuxfr/source/conf... | - name: Create the LinuxFR user
user: name=linuxfr home=/data/dev/linuxfr state=present
- name: Clone the LinuxFR repository
git: repo=git://github.com/nono/linuxfr.org.git dest=/data/dev/linuxfr/source
- name: Configure the Rails apps's database
copy: src=linuxfr/database.yml dest=/data/dev/linuxfr/source/conf... |
Update circleci/mongo:3 Docker digest to 1b30c3 | version: 2
jobs:
build:
docker:
- image: circleci/node:8@sha256:ea6a1dfa308a6af75b880f1db86da4cf78955e68d1a56dd2e64280fc546665a0
- image: circleci/mongo:3@sha256:04a81e1cd52345ebf5886874621d47f32662810213ef327532bf2aa63ae86dc6
steps:
- checkout
- run: yarn install --frozen-lockfile
... | version: 2
jobs:
build:
docker:
- image: circleci/node:8@sha256:ea6a1dfa308a6af75b880f1db86da4cf78955e68d1a56dd2e64280fc546665a0
- image: circleci/mongo:3@sha256:1b30c31e8c3932064af462d101b5c114d94a2f9e3341391a681f5f1d1aa301c6
steps:
- checkout
- run: yarn install --frozen-lockfile
... |
Index additional service manual formats | migrated:
# Contacts
- contact
# Publisher
- answer
- guide
- help_page
- licence
- local_transaction
- place
- transaction
- simple_smart_answer
# Specialist Publisher
- aaib_report
- asylum_support_decision
- business_finance_support_scheme
- cma_case
- countryside_stewardship_grant
- dfid_research_output
- drug_safe... | migrated:
# Contacts
- contact
# Publisher
- answer
- guide
- help_page
- licence
- local_transaction
- place
- transaction
- simple_smart_answer
# Specialist Publisher
- aaib_report
- asylum_support_decision
- business_finance_support_scheme
- cma_case
- countryside_stewardship_grant
- dfid_research_output
- drug_safe... |
Update circleci/python:3.7.3 Docker digest to d95601a | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.3@sha256:07d4860bef011cb9f133bdb967fc707be56780968db7091f2770e97bebfbfd44
working_directory: ~/repo
steps:
- checko... | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.3@sha256:d95601afe4bf164ac9356bef5a1fa4fe027e5cd95e65c846bf610be4dc2a4de3
working_directory: ~/repo
steps:
- checko... |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: directory
path: content/veille
label: Veille
create: all
match: "**/*"
- type: directory
path: content/oss
label: Oss
create: all
match: "**/*"
- type: directory
path: content/blog
label: Blog
create: all
... | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: directory
path: content/veille
label: Veille
create: all
match: "**/*"
- type: directory
path: content/oss
label: Oss
create: all
match: "**/*"
- type: directory
path: content/blog
label: Blog
create: all
... |
Fix version number typo and add license_file to about | package:
name: conda-verify
version: "0.2.1"
source:
path: ../
requirements:
build:
- python
- setuptools
run:
- python
build:
script: python setup.py install
about:
home: https://github.com/conda/conda-verify
license: BSD | package:
name: conda-verify
version: "2.0.1"
source:
path: ../
requirements:
build:
- python
- setuptools
run:
- python
build:
script: python setup.py install
about:
home: https://github.com/conda/conda-verify
license: BSD
license_file: LICENSE.txt |
Update from Hackage at 2018-10-01T11:46:03Z | homepage: https://github.com/andrewthad/asn1-codec
changelog-type: ''
hash: 70ec2a9e531b1356127479fdeef9e3497a226ffddb544963188a65c856d816d8
test-bench-deps:
test-framework-hunit: -any
bytestring: -any
test-framework: -any
base: -any
text: -any
asn1-codec: -any
HUnit: -any
base16-bytestring: -any
aeso... | homepage: https://github.com/andrewthad/asn1-codec
changelog-type: ''
hash: 09355f6ff521412fe003ba563e4de48e9256b31728b00589814f816840043534
test-bench-deps:
test-framework-hunit: -any
bytestring: -any
test-framework: -any
base: -any
text: -any
asn1-codec: -any
HUnit: -any
base16-bytestring: -any
aeso... |
Update python versions in github actions | name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
... | name: Python package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.8, 3.9]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
pyt... |
Update it to version 1.7.2 to fix compilation error on Mac | package:
name: pcl
version: 1.7.1
source:
fn: pcl-1.7.1.tar.gz
url: https://github.com/PointCloudLibrary/pcl/archive/pcl-1.7.1.tar.gz
patches:
- supervoxel.patch [win]
- gp3_surface.patch [win]
- mls_smoothing.patch [win]
requirements:
build:
- cmake
- eigen3
- flann
... | package:
name: pcl
version: 1.7.2
source:
fn: pcl-1.7.2.tar.gz
url: https://github.com/PointCloudLibrary/pcl/archive/pcl-1.7.2.tar.gz
patches:
- supervoxel.patch [win]
- gp3_surface.patch [win]
- mls_smoothing.patch [win]
requirements:
build:
- cmake
- eigen3
- flann
... |
Use token in bolt project | ---
name: psick
analytics: true
apply-settings:
evaltrace: true
log_level: debug
show_diff: true
trace: true
modules:
- git: https://github.com/example42/psick-hieradata
ref: production
- 'example42/tp'
- 'example42/tinydata'
- 'example42/psick'
- 'example42/tp_profile'
- 'puppetlabs/concat'
- 'puppetlabs/std... | ---
name: psick
analytics: true
apply-settings:
evaltrace: true
log_level: debug
show_diff: true
trace: true
modules:
- git: https://github.com/example42/psick-hieradata
ref: production
- 'example42/tp'
- 'example42/tinydata'
- 'example42/psick'
- 'example42/tp_profile'
- 'puppetlabs/concat'
- 'puppetlabs/std... |
Change config to 4 spaces | app:
port: 3000
# namespace:
# The base path for this application. Leave empty or omit for none.
namespace: /site
# trustProxy:
# Whether to set the Express 'trust proxy' setting, which tells Express to
# use the X-Forwarded-* headers to get client information like IP address and
# protocol.
trustPro... | app:
port: 3000
# namespace:
# The base path for this application. Leave empty or omit for none.
namespace: /site
# trustProxy:
# Whether to set the Express 'trust proxy' setting, which tells Express to
# use the X-Forwarded-* headers to get client information like IP address and
# prot... |
Remove failed PHP 7.0 testing | before_script:
- apt-get update -yqq
- apt-get install -yqq libmcrypt-dev g++ libsqlite3-dev libssl-dev libcurl3-dev libxml2-dev libzzip-dev libpq-dev
- rm -rf /var/lib/apt/lists/*
- docker-php-ext-install hash json mcrypt mbstring pdo pdo_mysql simplexml pdo_pgsql pdo_sqlite
- echo "date.timezone = UTC" > /usr/local/e... | before_script:
- apt-get update -yqq
- apt-get install -yqq libmcrypt-dev g++ libsqlite3-dev libssl-dev libcurl3-dev libxml2-dev libzzip-dev libpq-dev
- rm -rf /var/lib/apt/lists/*
- docker-php-ext-install hash json mcrypt mbstring pdo pdo_mysql simplexml pdo_pgsql pdo_sqlite
- echo "date.timezone = UTC" > /usr/local/e... |
Use correct name for the script. | # This file is generated by GitLab CI
before_script:
- ./scripts/build_prepare.sh
- ruby -v
- which ruby
- gem install bundler --no-ri --no-rdoc
- cp config/gitlab.yml.example config/gitlab.yml
- touch log/application.log
- touch log/test.log
- bundle install --without postgres production --jobs $(nproc... | # This file is generated by GitLab CI
before_script:
- ./scripts/prepare_build.sh
- ruby -v
- which ruby
- gem install bundler --no-ri --no-rdoc
- cp config/gitlab.yml.example config/gitlab.yml
- touch log/application.log
- touch log/test.log
- bundle install --without postgres production --jobs $(nproc... |
Use the correct rake test command | # This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see... | # This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake
# For more information see... |
Update from Hackage at 2022-10-25T11:41:41Z | homepage: http://github.com/lyokha/nginx-log-plugin
changelog-type: markdown
hash: 2658a5694aa44bcc36b29f42db0115edf9776eb2a036319dfb00dcc567cff114
test-bench-deps: {}
maintainer: Alexey Radkov <alexey.radkov@gmail.com>
synopsis: Native Nginx logging from configuration files and Haskell handlers
changelog: |+
### 1.5... | homepage: http://github.com/lyokha/nginx-log-plugin
changelog-type: markdown
hash: 965848a91b544080b7f3bf95248b81ed77fe98edf0aecd3ce226ba47a73fda73
test-bench-deps: {}
maintainer: Alexey Radkov <alexey.radkov@gmail.com>
synopsis: Native Nginx logging from configuration files and Haskell handlers
changelog: |+
### 1.5... |
Fix Docken environment variable syntax | version: '3'
services:
db:
image: mysql:5.6
environment:
MYSQL_ROOT_PASSWORD: r00t
MYSQL_DATABASE: ligoj
MYSQL_USER: ligoj
MYSQL_PASSWORD: ligoj
api:
image: ligoj/ligoj-api:3.0.0
environment:
SERVER_HOST: "0.0.0.0"
SERVER_PORT: "8081"
CUSTOM_OPTS: "-Djdbc.ho... | version: '3'
services:
db:
image: mysql:5.6
environment:
MYSQL_ROOT_PASSWORD: r00t
MYSQL_DATABASE: ligoj
MYSQL_USER: ligoj
MYSQL_PASSWORD: ligoj
api:
image: ligoj/ligoj-api:3.0.0
environment:
SERVER_HOST: "0.0.0.0"
SERVER_PORT: "8081"
CUSTOM_OPTS: "-Djdbc.ho... |
Set Dependabot to increase dependencies versions | version: 2
updates:
-
package-ecosystem: composer
directory: "/"
schedule:
interval: daily
time: "10:00"
open-pull-requests-limit: 4
| version: 2
updates:
-
package-ecosystem: composer
directory: "/"
schedule:
interval: daily
time: "10:00"
open-pull-requests-limit: 4
versioning-strategy: increase
|
Update from Hackage at 2016-11-24T02:44:52Z | homepage: ''
changelog-type: ''
hash: f80a23fb3aff895083e104d8262300b130b0eefdf3d26caaf8bfa18f8e75ef4d
test-bench-deps: {}
maintainer: Hamish Mackenzie <Hamish.K.Mackenzie@googlemail.com>
synopsis: DOM library using JSFFI and GHCJS
changelog: ''
basic-deps:
base: <5
ghcjs-base: ! '>=0.2.0.0 && <0.3'
text: ! '>=0.... | homepage: ''
changelog-type: ''
hash: bacfbe77d69c77af8101764c8b521e43b051c73e06ddbfdfa21090b72ddeec9e
test-bench-deps: {}
maintainer: Hamish Mackenzie <Hamish.K.Mackenzie@googlemail.com>
synopsis: DOM library using JSFFI and GHCJS
changelog: ''
basic-deps:
base: <5
ghcjs-base: ! '>=0.2.0.0 && <0.3'
text: ! '>=0.... |
Update from Hackage at 2021-07-04T17:10:34Z | homepage: https://github.com/liisikerik/kawaii_parser
changelog-type: ''
hash: 5fc6d6ce1f39682c085fc140417eccdc186c9b3b500f1de0aeb4d3fe4859bec6
test-bench-deps: {}
maintainer: liisikerik@hotmail.com
synopsis: A simple parsing library.
changelog: ''
basic-deps:
base: <4.15
containers: -any
mtl: -any
all-versions:
... | homepage: https://github.com/liisikerik/kawaii_parser
changelog-type: ''
hash: 3811301f9773a8f579a79da24a9c38b814d8149eab91084c4f90a25992f81e08
test-bench-deps: {}
maintainer: liisikerik@hotmail.com
synopsis: A simple parsing library.
changelog: ''
basic-deps:
base: <4.15
containers: -any
mtl: -any
all-versions:
... |
Update Souvenirs to 1.4.0 (9) | Categories:
- Graphics
- Multimedia
License: GPL-3.0-or-later
AuthorName: Francois Valley
AuthorEmail: zorgluf@gmail.com
SourceCode: https://github.com/zorgluf/souvenirs-android
IssueTracker: https://github.com/zorgluf/souvenirs-android/issues
Donate: https://github.com/zorgluf/souvenirs-android/blob/main/README.md... | Categories:
- Graphics
- Multimedia
License: GPL-3.0-or-later
AuthorName: Francois Valley
AuthorEmail: zorgluf@gmail.com
SourceCode: https://github.com/zorgluf/souvenirs-android
IssueTracker: https://github.com/zorgluf/souvenirs-android/issues
Donate: https://github.com/zorgluf/souvenirs-android/blob/main/README.md... |
Add kolla_logs volume to kibana container | ---
- name: Starting Kibana container
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
image: "{{ kibana_image_full }}"
name: "kibana"
volumes:
- "{{ node_config_directory }}/kibana/:{{ container_config_directory }}/:ro"
- "/etc/localtime:/etc/local... | ---
- name: Starting Kibana container
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
image: "{{ kibana_image_full }}"
name: "kibana"
volumes:
- "{{ node_config_directory }}/kibana/:{{ container_config_directory }}/:ro"
- "/etc/localtime:/etc/local... |
Use correct name in task definition | platform: linux
image_resource:
type: docker-image
source:
repository: pcfkubo/kubo-ci
tag: stable
params:
ROUTING_CF_CLIENT_SECRET:
run:
path: git-kubo-deployment/ci/scripts/deploy-k8s-instance.sh
inputs:
- name: s3-kubo-release-tarball-tmp
- name: git-kubo-deployment
- name: s3-bosh-creds
- n... | platform: linux
image_resource:
type: docker-image
source:
repository: pcfkubo/kubo-ci
tag: stable
params:
ROUTING_CF_CLIENT_SECRET:
run:
path: git-kubo-deployment/ci/scripts/deploy-k8s-instance.sh
inputs:
- name: s3-kubo-release-tarball
- name: git-kubo-deployment
- name: s3-bosh-creds
- name:... |
Check github actions for dependency updates | version: 2
updates:
- package-ecosystem: maven
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 10
target-branch: master
reviewers:
- MarkEWaite
labels:
- dependencies
ignore:
- dependency-name: com.github.ben-manes.caffeine:caffeine
# caffeine 3.0.0 and later requires JDK... | version: 2
updates:
- package-ecosystem: maven
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 10
target-branch: master
reviewers:
- MarkEWaite
labels:
- dependencies
ignore:
- dependency-name: com.github.ben-manes.caffeine:caffeine
# caffeine 3.0.0 and later requires JDK... |
Split unit from integration tests | version: 2.1
jobs:
unit-tests:
parameters:
version:
type: string
docker:
- image: cimg/node:12.18
environment:
THUNDERBIRD_VERSION: << parameters.version >>
steps:
- checkout
- run: node --version
- run: npm install
- setup_remote_docker
- run: ... | version: 2.1
jobs:
unit-tests:
docker:
- image: cimg/node:12.18
steps:
- checkout
- run: node --version
- run: npm install
- run: ./test.sh
integration-tests:
docker:
- image: cimg/base:stable
parameters:
version:
type: string
environment:
... |
Update from Hackage at 2017-03-23T09:16:14Z | homepage: https://github.com/louispan/javascript-extras#readme
changelog-type: ''
hash: bef300b0fc5df31784383f71673339b25cf9cdfbb497a497b87b87674d2525ab
test-bench-deps: {}
maintainer: louis@pan.me
synopsis: Extra javascript functions when using GHCJS
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
text: ! '>=1.2 &... | homepage: https://github.com/louispan/javascript-extras#readme
changelog-type: ''
hash: 20dd8061d3304bd9876d6e1758929356e7f806547c211395865830179dd50774
test-bench-deps: {}
maintainer: louis@pan.me
synopsis: Extra javascript functions when using GHCJS
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
text: ! '>=1.2 &... |
Add "npm install" step to Gerrit's pipeline. | ---
platforms:
ubuntu1604:
build_targets:
- "//:release"
test_flags:
- "--test_tag_filters=-slow,-flaky,-docker"
test_targets:
- "//..."
ubuntu1804:
build_flags:
- "--define=ABSOLUTE_JAVABASE=/usr/lib/jvm/java-11-openjdk-amd64"
- "--host_javabase=@bazel_tools//tools/jdk... | ---
platforms:
ubuntu1604:
shell_commands:
- "npm install"
build_targets:
- "//:release"
test_flags:
- "--test_tag_filters=-slow,-flaky,-docker"
test_targets:
- "//..."
ubuntu1804:
shell_commands:
- "npm install"
build_flags:
- "--define=ABSOLUTE_JAVABASE=... |
Add Node.js 16 for testing | name: Node
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}... | name: Node
on:
- push
- pull_request
jobs:
test:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 16
- 14
- 12
steps:
- uses: actions/checkout@v2
- uses: actions/setup-no... |
Correct usage of context interpolation | name: Continupus Integration
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
BUILDFLAGS: -ldflags="-X github.com/bpicode/fritzctl/config.Version=undefined -X github.com/bpicode/fritzctl/config.Revision={{ github.sha }}"
steps:
- name: Set up Go 1.13
use... | name: Continupus Integration
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
BUILDFLAGS: -ldflags="-X github.com/bpicode/fritzctl/config.Version=undefined -X github.com/bpicode/fritzctl/config.Revision=${{ github.sha }}"
steps:
- name: Set up Go 1.13
us... |
Drop CI support for Node 10 | name: Node CI
on:
push:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
... | name: Node CI
on:
push:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 12
uses: actions/setup-node@v1
with:
node-version: 12
- run: npm ci
- run: npm test
- name: codecov
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.