Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Print planemo version for future debugging | language: python
python: 2.7
install:
- pip install git+git://github.com/galaxyproject/planemo.git@master
script:
- planemo shed_lint --report_level warn --tools --fail_level error --recursive .
| language: python
python: 2.7
install:
- pip install git+git://github.com/galaxyproject/planemo.git@master
script:
- planemo --version
- planemo shed_lint --report_level warn --tools --fail_level error --recursive .
|
Update Travis CI config to Ruby 2.7.0 | language: ruby
rvm: 2.5.3
script: bundle exec thor test:all
sudo: false
| language: ruby
rvm: 2.7.0
script: bundle exec thor test:all
sudo: false
|
Remove 2.6 from the build since Django 1.7 doesn't support it. | language: python
python:
- "3.3"
- "3.2"
- "2.7"
- "2.6"
- "pypy"
env:
- TESTSUITE=unit
- TESTSUITE=functional
- TESTSUITE=smoke
install:
- pip install -r requirements/development.txt
- pip install coveralls
script:
- "coverage run manage.py test -v 1 tests.$TESTSUITE"
- coverage report --fail-under 80
a... | language: python
python:
- "3.3"
- "3.2"
- "2.7"
- "pypy"
env:
- TESTSUITE=unit
- TESTSUITE=functional
- TESTSUITE=smoke
install:
- pip install -r requirements/development.txt
- pip install coveralls
script:
- "coverage run manage.py test -v 1 tests.$TESTSUITE"
- coverage report --fail-under 80
after_succe... |
Add iojs to allow_failures because it can't compile fibers. | language: node_js
node_js:
- "6.0"
- "5.0"
- "4.0"
- "iojs"
- "0.12"
- "0.11"
- "0.10"
- "0.8"
matrix:
allow_failures:
- node_js: "0.10"
- node_js: "0.8"
| language: node_js
node_js:
- "6.0"
- "5.0"
- "4.0"
- "iojs"
- "0.12"
- "0.11"
- "0.10"
- "0.8"
matrix:
allow_failures:
- node_js: "iojs"
- node_js: "0.10"
- node_js: "0.8"
|
Use develop version of doc-builder-testing | sudo: required
services:
- docker
language: node_js
node_js:
- '6'
before_script:
- git clone -b develop https://github.com/ONLYOFFICE/web-apps.git ../web-apps
jobs:
include:
- stage: Formulas tests
script:
- npm install -g node-qunit-phantomjs
- node-qunit-phantomjs cell/.unit-tests/F... | sudo: required
services:
- docker
language: node_js
node_js:
- '6'
before_script:
- git clone -b develop https://github.com/ONLYOFFICE/web-apps.git ../web-apps
jobs:
include:
- stage: Formulas tests
script:
- npm install -g node-qunit-phantomjs
- node-qunit-phantomjs cell/.unit-tests/F... |
Update Travis config and added additional PHP environments to test against. | language: php
php:
- 5.3
- 5.4
- hhvm
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install
script: phpunit | language: php
sudo: false
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
install:
- composer install --prefer-source --no-interaction
script:
- composer test
|
Fix ordering of rgw docker tasks so directory is created befor fetch | ---
- name: check if a cluster is already running
shell: "docker ps | grep -sq 'ceph/daemon'"
register: ceph_health
changed_when: false
failed_when: false
- include: checks.yml
when: ceph_health.rc != 0
- include: pre_requisite.yml
- include: fetch_configs.yml
- include: dirs_permissions.yml
- include: sel... | ---
- name: check if a cluster is already running
shell: "docker ps | grep -sq 'ceph/daemon'"
register: ceph_health
changed_when: false
failed_when: false
- include: checks.yml
when: ceph_health.rc != 0
- include: pre_requisite.yml
- include: dirs_permissions.yml
# NOTE (jimcurtis): dirs_permissions.yml mus... |
Fix config to allow statsd metric to be received | version: "3"
services:
web:
build: web
command: python app.py
ports:
- "5000:5000"
volumes:
- ./web:/code # modified here to take into account the new app path
links:
- redis
environment:
- DATADOG_HOST=datadog # used by the web app to initialize the Datadog library
redis... | version: "3"
services:
web:
build: web
command: python app.py
ports:
- "5000:5000"
volumes:
- ./web:/code # modified here to take into account the new app path
links:
- redis
environment:
- DATADOG_HOST=datadog # used by the web app to initialize the Datadog library
redis... |
Adjust PYTHONPATH env vars on worker/scheduler | nginx:
image: nginx:1.9.7
ports:
- "80:80"
volumes:
- ./www:/usr/share/nginx/html
worker:
build: worker
links:
- graphdb
- redis
volumes:
- ./www:/www
- ./d1lod:/d1lod
- ./glharvest:/glharvest
scheduler:
build: scheduler
links:
- graphdb
- redis
volumes:
-... | nginx:
image: nginx:1.9.7
ports:
- "80:80"
volumes:
- ./www:/usr/share/nginx/html
worker:
build: worker
links:
- graphdb
- redis
volumes:
- ./www:/www
- ./d1lod:/d1lod
- ./glharvest:/glharvest
environment:
- PYTHONPATH='$PYTHONPATH:/glharvest:/d1lod/
scheduler:
buil... |
Revert "Revert "added pipenv so locks can happen inside of docker"" | version: '3'
services:
shell:
build: .
image: eemeter_shell
stdin_open: true
tty: true
entrypoint: /bin/sh
volumes:
- .:/app
- /app/tests/__pycache__/
docs:
image: eemeter_shell
ports:
- "${HOST_PORT_DOCS:-8000}:8000"
entrypoint: make -C docs livehtml
volum... | version: '3'
services:
shell:
build: .
image: eemeter_shell
stdin_open: true
tty: true
entrypoint: /bin/sh
volumes:
- .:/app
- /app/tests/__pycache__/
docs:
image: eemeter_shell
ports:
- "${HOST_PORT_DOCS:-8000}:8000"
entrypoint: make -C docs livehtml
volum... |
Add image name for local builds | # You also need the Dockerfile_Server file, put it in the same directory as this file.
# Build and create a container with: docker-compose up -d --build
# You may set the version of the server when an update is released, see "args"
#
# Attach to the container with: docker-compose exec lunamultiplayer /bin/ash
version:... | # You also need the Dockerfile_Server file, put it in the same directory as this file.
# Build and create a container with: docker-compose up -d --build
# You may set the version of the server when an update is released, see "args"
#
# Attach to the container with: docker-compose exec lunamultiplayer /bin/ash
version:... |
Move docker registry to port 5001 | ---
##########################
# betacloud
betacloud_cobbler: no
betacloud_firewall: no
betacloud_networking: no
betacloud_proxy: no
betacloud_system_hardening: yes
betacloud_management_interface: enp0s8
##########################
# services
ara_server_host: "{{ hostvars[inventory_hostname]['ansible_' + betacloud_m... | ---
##########################
# betacloud
betacloud_cobbler: no
betacloud_firewall: no
betacloud_networking: no
betacloud_proxy: no
betacloud_system_hardening: yes
betacloud_management_interface: enp0s8
##########################
# services
ara_server_host: "{{ hostvars[inventory_hostname]['ansible_' + betacloud_m... |
Work around weird pip upgrade bug | ---
- name: Install Miniconda packages
shell: "{{ miniconda_install_dir|default('/opt/miniconda') }}/bin/conda install {{ item }} --yes"
with_items:
- pip
tags:
- traptor
- miniconda
- name: Miniconda pip install traptor
shell: "{{ miniconda_install_dir|default('/opt/miniconda') }}/bin/pip install ... | ---
- name: Install Miniconda packages
shell: "{{ miniconda_install_dir|default('/opt/miniconda') }}/bin/conda install {{ item }} --yes"
with_items:
- pip
tags:
- traptor
- miniconda
- name: Miniconda pip install traptor
shell: "{{ miniconda_install_dir|default('/opt/miniconda') }}/bin/pip install ... |
Make updatedBy field of Section nullable | Ojs\JournalBundle\Entity\Section:
type: entity
repositoryClass: Ojs\JournalBundle\Entity\SectionRepository
table: section
cache:
usage: NONSTRICT_READ_WRITE
manyToOne:
journal:
targetEntity: Journal
joinColumn:
name: journal_id
referencedCol... | Ojs\JournalBundle\Entity\Section:
type: entity
repositoryClass: Ojs\JournalBundle\Entity\SectionRepository
table: section
cache:
usage: NONSTRICT_READ_WRITE
manyToOne:
journal:
targetEntity: Journal
joinColumn:
name: journal_id
referencedCol... |
Fix navigation params for obstavle detecting | obstacle_range: 12.0
raytrace_range: 15.0
# footprint for KIT-C5 new model
footprint: [[0.07, -0.30], [0.07, 0.30], [-0.43, 0.30], [-0.43, -0.30]]
inflation_radius: 0.5
cost_scaling_factor: 7.0
rigin_z: 0.0
z_resolution: 0.2
z_voxels: 0.2
publish_voxel_map: false
max_obstacle_height: 0.4
min_obstacle_height: 0.05
obs... | obstacle_range: 12.0
raytrace_range: 15.0
# footprint for KIT-C5 new model
footprint: [[0.07, -0.30], [0.07, 0.30], [-0.43, 0.30], [-0.43, -0.30]]
inflation_radius: 0.5
cost_scaling_factor: 7.0
rigin_z: 0.0
z_resolution: 0.2
z_voxels: 0.2
publish_voxel_map: false
max_obstacle_height: 0.8
min_obstacle_height: 0.1
obse... |
ADD new Metricbeat features for 5.2 | metricbeat.modules:
- module: system
metricsets:
- cpu
- load
- core
- diskio
- filesystem
- fsstat
- memory
- network
- process
enabled: true
period: 10s
processes: ['.*']
- module: redis
metricsets: ["info"]
enabled: true
period: 10s
hosts: ["127.0.0.1:6379"]
- ... | metricbeat.modules:
- module: system
metricsets:
- cpu
- load
- core
- diskio
- filesystem
- fsstat
- memory
- network
- process
- socket
enabled: true
period: 10s
processes: ['.*']
cgroups: true
- module: redis
metricsets: ["info"]
enabled: true
period: 10s
... |
Update Conscrypt Provider to 3 (3) | Categories:
- System
License: MIT
AuthorName: Mendhak
AuthorWebSite: https://code.mendhak.com/
SourceCode: https://github.com/mendhak/Conscrypt-Provider
IssueTracker: https://github.com/mendhak/Conscrypt-Provider/issues
Changelog: https://github.com/mendhak/Conscrypt-Provider/releases
AutoName: Conscrypt Provider
R... | Categories:
- System
License: MIT
AuthorName: Mendhak
AuthorWebSite: https://code.mendhak.com/
SourceCode: https://github.com/mendhak/Conscrypt-Provider
IssueTracker: https://github.com/mendhak/Conscrypt-Provider/issues
Changelog: https://github.com/mendhak/Conscrypt-Provider/releases
AutoName: Conscrypt Provider
R... |
Remove unused dependency from analyzer | name: analyzer
version: 0.24.1-alpha.0
author: Dart Team <misc@dartlang.org>
description: Static analyzer for Dart.
homepage: http://www.dartlang.org
environment:
sdk: '>=0.8.10+6 <2.0.0'
dependencies:
args: '>=0.12.1 <0.13.0'
logging: '>=0.9.0 <0.10.0'
path: '>=0.9.0 <2.0.0'
watcher: '>=0.9.0 <0.10.0'
dev_de... | name: analyzer
version: 0.24.1-alpha.0
author: Dart Team <misc@dartlang.org>
description: Static analyzer for Dart.
homepage: http://www.dartlang.org
environment:
sdk: '>=0.8.10+6 <2.0.0'
dependencies:
args: '>=0.12.1 <0.13.0'
path: '>=0.9.0 <2.0.0'
watcher: '>=0.9.0 <0.10.0'
dev_dependencies:
typed_mock: '>=... |
Remove trailing comma and add exact time. | title: Cross-site scripting (XSS) vulnerability in Paypal-Merchant-SDK-PHP
link: https://github.com/paypal/merchant-sdk-php/tree/v3.9.1
cve: CVE-2017-6099
branches:
2.x:
time: ~,
versions: ['>=2.0.0', '<=2.11.118']
master:
time: 2017-03-31,
versions: ['>=3... | title: Cross-site scripting (XSS) vulnerability in Paypal-Merchant-SDK-PHP
link: https://github.com/paypal/merchant-sdk-php/tree/v3.9.1
cve: CVE-2017-6099
branches:
2.x:
time: ~
versions: ['>=2.0.0', '<=2.11.118']
master:
time: 2017-03-31 08:33:00
versions:... |
Fix paths of cache and artifacts | name: CI
on: [push]
jobs:
posix-build-on-ubuntu:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: posix
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: src
key: ${{runner.os}}-src
- run: sudo ... | name: CI
on: [push]
jobs:
posix-build-on-ubuntu:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: posix
steps:
- uses: actions/checkout@v2
- run: sudo apt-get install libgtk-3-dev libsqlite3-dev libxml2-dev unzip uuid-dev zlib1g-dev
- run: make... |
Set autoname of Badge Magic | Categories:
- Connectivity
License: Apache-2.0
SourceCode: https://github.com/fossasia/badge-magic-android
IssueTracker: https://github.com/fossasia/badge-magic-android/issues
Name: Badge Magic
Summary: Create Symbols and Text on LED Name Badges using Bluetooth
Description: The Badge Magic Android app lets you creat... | Categories:
- Connectivity
License: Apache-2.0
SourceCode: https://github.com/fossasia/badge-magic-android
IssueTracker: https://github.com/fossasia/badge-magic-android/issues
Name: Badge Magic
AutoName: Badge Magic
Summary: Create Symbols and Text on LED Name Badges using Bluetooth
Description: The Badge Magic Andr... |
Revert "Added enabled field to Entity\User." | Ciscaja\Uhsa\UserBundle\Entity\User:
type: entity
table: ciscaja_uhsa_users
id:
id:
type: integer
generator: { strategy: AUTO }
fields:
username:
type: string
length: 256
unique: true
password:
type: string
length: 256
email:
type: string
len... | Ciscaja\Uhsa\UserBundle\Entity\User:
type: entity
table: ciscaja_uhsa_users
id:
id:
type: integer
generator: { strategy: AUTO }
fields:
username:
type: string
length: 256
unique: true
password:
type: string
length: 256
email:
type: string
len... |
Update example config to reflect OAuth Stream use | app:
asset_domain: static.mydomain.com
domain: mydomain.com
name: Prey Fetcher
prowl_provider_key: PROWL_PROVIDER_KEY_HERE
version: "3.x"
database:
development:
adapter: sqlite3
database: development.sqlite3
test:
adapter: sqlite3
database: test.sqlite3
production:
adapter: mysql
... | app:
asset_domain: static.mydomain.com
domain: mydomain.com
name: Prey Fetcher
prowl_provider_key: PROWL_PROVIDER_KEY_HERE
version: "3.x"
database:
development:
adapter: sqlite3
database: development.sqlite3
test:
adapter: sqlite3
database: test.sqlite3
production:
adapter: mysql
... |
Set configuration for new rails cops | # https://rubocop.readthedocs.io/en/latest/configuration/#inheritance
# If you override a setting in a project's local .rubocop.yml file
# you must add the pre-existing exceptions found here as well.
require: rubocop-rails
AllCops:
Exclude:
- db/schema.rb
Rails/NotNullColumn:
Enabled: false
Rails/Reversible... | # https://rubocop.readthedocs.io/en/latest/configuration/#inheritance
# If you override a setting in a project's local .rubocop.yml file
# you must add the pre-existing exceptions found here as well.
require: rubocop-rails
AllCops:
Exclude:
- db/schema.rb
Rails/NotNullColumn:
Enabled: false
Rails/Reversible... |
Create “datagrid” import with “datagrid_toolbar” import and “datagrid” block - CR fixes | layout:
actions:
- '@setBlockTheme':
themes: 'layout_mobile.html.twig'
- '@remove':
id: __datagrid_toolbar_extra_actions
- '@remove':
id: __datagrid_toolbar_tools_container
- '@move':
id: __datagrid_toolbar_actions
parentId:... | layout:
actions:
- '@setBlockTheme':
themes: 'layout_mobile.html.twig'
- '@remove':
id: __datagrid_toolbar_extra_actions
- '@remove':
id: __datagrid_toolbar_tools_container
- '@move':
id: __datagrid_toolbar_actions
parentId:... |
Use Rust 1.9.0 or later | language: rust
sudo: false
addons:
apt:
packages:
- libssl-dev
rust:
- nightly
- beta
- 1.8.0
scirpt:
- cargo test
| language: rust
sudo: false
addons:
apt:
packages:
- libssl-dev
rust:
- nightly
- beta
- 1.9.0
scirpt:
- cargo test
|
Remove test support for Go 1.6, and 1.7 | sudo: required
language: go
go:
- 1.6
- 1.7
- 1.8
- 1.9
services:
- docker
install:
- make setup
script:
- make test
- test -n "$TRAVIS_TAG" || make snapshot
after_success:
- export BUILD_DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
- export VCS_REF=$(git rev-parse --short HEAD)
- docker login -u="$DOCKE... | sudo: required
language: go
go:
- 1.8
- 1.9
services:
- docker
install:
- make setup
script:
- make test
- test -n "$TRAVIS_TAG" || make snapshot
after_success:
- export BUILD_DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ")
- export VCS_REF=$(git rev-parse --short HEAD)
- docker login -u="$DOCKER_USERNAME" -p="... |
Use `thor spec` for Travis | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- ruby-head
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- ruby-head
script: thor spec
|
Add pypy to Travis configuration | language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev" # 3.7 development branch
- "nightly"
install:
- true
script:
- ./ci-test.sh
| language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev" # 3.7 development branch
- "nightly"
- "pypy3"
install:
- true
script:
- ./ci-test.sh
|
Update Go version to 1.10.3 | language: go
go: 1.8.1
sudo: false
env:
global:
- UNAME="$(uname | tr '[:upper:]' '[:lower:]')"
addons:
artifacts:
paths:
- './build/$UNAME/amd64/jb-server'
target_paths:
- 'travis-ci/jupiter-brain/$TRAVIS_BUILD_NUMBER/$TRAVIS_JOB_NUMBER'
- 'travis-ci/jupiter-brain/$(git describe --always --... | language: go
go: '1.10.3'
sudo: false
env:
global:
- UNAME="$(uname | tr '[:upper:]' '[:lower:]')"
addons:
artifacts:
paths:
- './build/$UNAME/amd64/jb-server'
target_paths:
- 'travis-ci/jupiter-brain/$TRAVIS_BUILD_NUMBER/$TRAVIS_JOB_NUMBER'
- 'travis-ci/jupiter-brain/$(git describe --always... |
Add workaround for osx java build. | # language setting
language: java
# build systems
os:
- linux
- osx
# jdk tag
jdk:
- oraclejdk8
# include
branches:
only:
- master
# notify
notifications:
email:
recipients:
- develop@schlegel11.de
| # language setting
language: java
# build systems
os:
- linux
- osx
# workaround for osx builds
before_install:
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then "wget --no-cookies --no-check-certificate --header \"Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie\" http://downloa... |
Use postgres 9.4 with postgis 2.2 | # This is the config file for building TileStache and running the test suite
# with Travis-ci.org
language: python
python:
- "2.7"
addons:
postgresql: "9.3"
apt:
packages:
- postgresql-9.3-postgis-2.2
virtualenv:
system_site_packages: true
services:
- memcached
before_install:
- sudo apt-get... | # This is the config file for building TileStache and running the test suite
# with Travis-ci.org
language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
services:
- memcached
before_install:
- sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable
- sudo apt-get update -qq
- sudo ... |
Fix dumb pip install typo | language: python
python:
- "2.6"
- "2.7"
# command to install dependencies
install:
- "pip install ."
- if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then pip install -r requirements-dev.txt; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install -r pre-commit flake8; fi
- "pip install -r requirements.... | language: python
python:
- "2.6"
- "2.7"
# command to install dependencies
install:
- "pip install ."
- if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then pip install -r requirements-dev.txt; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install pre-commit flake8; fi
- "pip install -r requirements.txt... |
Change target ruby versions for testing | sudo: false
cache: bundler
language: ruby
rvm:
- 2.2.6
- 2.3.3
- 2.4.1
script:
- bundle exec rubocop
- bundle exec rspec
| sudo: false
cache: bundler
language: ruby
rvm:
- 2.5.8
- 2.6.6
- 2.7.1
script:
- bundle exec rubocop
- bundle exec rspec
|
Set Travis CI to test against Python 3.7 | language: python
sudo: false
python:
- "2.7"
- "3.5"
- "3.6"
branches:
only:
- master
- develop
install:
- pip install --upgrade pip setuptools wheel
- pip install --upgrade pytest
- pip install six
- pip install codecov
- pip install pytest-cov
- pip install pyte... | language: python
sudo: required
dist: xenial
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
branches:
only:
- master
- develop
install:
- pip install --upgrade pip setuptools wheel
- pip install --upgrade pytest
- pip install six
- pip install codecov
- pip install pytest... |
Use indent width of 2 for consistency with appveyor.yml | language: cpp
os: osx
env:
matrix:
- CONFIGURATION=Debug
- CONFIGURATION=Release
install:
- brew install qt5
- export PATH=/usr/local/opt/qt5/bin:$PATH
before_script:
- mkdir build && cd build
- cmake .. -DCMAKE_BUILD_TYPE=$CONFIGURATION
script:
- cmake --build . --config $CO... | language: cpp
os: osx
env:
matrix:
- CONFIGURATION=Debug
- CONFIGURATION=Release
install:
- brew install qt5
- export PATH=/usr/local/opt/qt5/bin:$PATH
before_script:
- mkdir build && cd build
- cmake .. -DCMAKE_BUILD_TYPE=$CONFIGURATION
script:
- cmake --build . --config $CONFIGURATION
- cmak... |
Make sure Grunt is installed on Travis | language: node_js
node_js:
- "0.10"
notifications:
irc:
channels:
- "irc.mozilla.org#fxa"
use_notice: false
skip_join: false
before_install:
- npm config set spin false
script:
- npm run outdated
- npm test | language: node_js
node_js:
- "0.10"
notifications:
irc:
channels:
- "irc.mozilla.org#fxa"
use_notice: false
skip_join: false
before_install:
- npm config set spin false
before_script:
- npm i grunt-cli -g
- npm run outdated
- grunt validate-shrinkwrap --force
script:
- npm test
|
Use Python 3.4 (available in Ubuntu trusty) to test virtualenv | language: python
python:
- "3.2"
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get install -qq libgdal1h
- sudo apt-get install -qq python-gdal
script:
py.test scarplet/tests
| language: python
python:
- "3.4"
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get install -qq libgdal1h
- sudo apt-get install -qq python-gdal
script:
py.test scarplet/tests
|
Add missing dependency for Travis | language: csharp
solution: Agiil.sln
install:
- mkdir -p ~/.mono
- cp Tools/mono.config ~/.mono/config
- nuget restore Agiil.sln
- nuget install NUnit.ConsoleRunner -Version 3.6.1 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Debug Agiil.sln
- ls -l Tests/Agiil.Tests.Web.Sass/bin/Debug
-... | language: csharp
solution: Agiil.sln
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libstdc++6
install:
- mkdir -p ~/.mono
- cp Tools/mono.config ~/.mono/config
- nuget restore Agiil.sln
- nuget install NUnit.ConsoleRunner -Version 3.6.1 -OutputDirectory testrunner
script:
- xbuild... |
Use Go 1.4 for building. | language: go
go:
- tip
before_script:
- go get golang.org/x/tools/cmd/cover
- go get github.com/axw/gocov/gocov
- go get github.com/modocache/gover
- go get github.com/mattn/goveralls
script:
- go test -coverprofile=core.coverprofile ./core
- go test -coverprofile=backends.coverprofile ./backends
- go tes... | language: go
go:
- 1.4
before_script:
- go get golang.org/x/tools/cmd/cover
- go get github.com/axw/gocov/gocov
- go get github.com/modocache/gover
- go get github.com/mattn/goveralls
script:
- go test -coverprofile=core.coverprofile ./core
- go test -coverprofile=backends.coverprofile ./backends
- go tes... |
Update renovatebot/github-action action to v32.202.4 | name: Renovate-Dry-Run
on:
workflow_dispatch:
inputs:
pac_to_use:
description: "Name of the workflow secret to use"
type: string
required: true
branch:
description: "Branch that renovate should operate on"
type: string
required: true
jobs:
renovate:
... | name: Renovate-Dry-Run
on:
workflow_dispatch:
inputs:
pac_to_use:
description: "Name of the workflow secret to use"
type: string
required: true
branch:
description: "Branch that renovate should operate on"
type: string
required: true
jobs:
renovate:
... |
Update from Hackage at 2016-12-30T10:47:05Z | homepage: https://github.com/danpalmer/yesod-auth-nopassword#readme
changelog-type: ''
hash: 043e33fc14442ee0acb0575a0e5e938f944a8a4b71d2e00406fec3f999fa4926
test-bench-deps: {}
maintainer: dan@danpalmer.me
synopsis: A plugin for Yesod to provide email-only authentication.
changelog: ''
basic-deps:
yesod-core: ! '>=1... | homepage: https://github.com/danpalmer/yesod-auth-nopassword#readme
changelog-type: ''
hash: 45012764c5adc5473d0e8bfe04bbe3e3db6e7b5ed47a13cf2c08843bc5c9a9fd
test-bench-deps: {}
maintainer: dan@danpalmer.me
synopsis: A plugin for Yesod to provide email-only authentication.
changelog: ''
basic-deps:
yesod-core: ! '>=1... |
Remove code coverage requirements for now | comment: false
coverage:
status:
patch:
default:
target: '95'
project:
default:
target: '95' | comment: false
coverage:
status:
patch:
default:
target: '10'
project:
default:
target: '10'
|
Use bundler cache for actions | name: Test and deploy
on:
- push
- workflow_dispatch
jobs:
test_and_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@21351ecc0a7c196081abca5dc55b08f085efe09a
with:
ruby-version: 2.6.3
- name: Install dependencies
... | name: Test and deploy
on:
- push
- workflow_dispatch
jobs:
test_and_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@21351ecc0a7c196081abca5dc55b08f085efe09a
with:
ruby-version: 2.6.3
bundler: 2.1.4
bundle... |
Add summer IT Helpdesk hours | name: IT Helpdesk
category: Help and Support
schedule:
- title: Hours
hours:
# - {days: [Mo, Tu, We, Th], from: '7:45am', to: '11:00pm'}
# - {days: [Fr], from: '7:45am', to: '5:00pm'}
# - {days: [Su], from: '1:30pm', to: '11:00pm'}
breakSchedule:
fall: []
thanksgiving: []
winter: []
in... | name: IT Helpdesk
category: Help and Support
schedule:
- title: Hours
hours:
# - {days: [Mo, Tu, We, Th], from: '7:45am', to: '11:00pm'}
# - {days: [Fr], from: '7:45am', to: '5:00pm'}
# - {days: [Su], from: '1:30pm', to: '11:00pm'}
- {days: [Mo, Tu, We, Th], from: '7:30am', to: '4:30pm'}
... |
Disable building on JDK 13 in CI | # This file is used as part of a matrix build in Jenkins where the
# values below are included as an axis of the matrix.
# This axis of the build matrix represents the versions of Java with
# which Elasticsearch will be built. Valid Java versions are 'java'
# or 'openjdk' followed by the major release number.
ES_BUI... | # This file is used as part of a matrix build in Jenkins where the
# values below are included as an axis of the matrix.
# This axis of the build matrix represents the versions of Java with
# which Elasticsearch will be built. Valid Java versions are 'java'
# or 'openjdk' followed by the major release number.
ES_BUI... |
Split deployment into two jobs | name: Publish Extension
on:
push:
tags:
- "*"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- run: npm ci && npm install
- name: Publish to Open VSX Registry
uses: HaaLe... | name: Publish Extension
on:
push:
tags:
- "*"
jobs:
deploy-open-vsx:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- run: npm ci && npm install
- name: Publish to Open VSX Registry
us... |
Update from Hackage at 2022-05-07T22:44:44Z | homepage: https://github.com/DanBurton/tardis
changelog-type: ''
hash: 62b9f0f10ec171dfdad106c30cf238b5f819b21d984c44b434835251a169b13a
test-bench-deps:
base: '>=4.8 && <5'
tardis: -any
maintainer: danburton.email@gmail.com
synopsis: Bidirectional state monad transformer
changelog: ''
basic-deps:
base: '>=4.8 && ... | homepage: https://github.com/DanBurton/tardis
changelog-type: ''
hash: 638f33438da09c98f601b4840917a4f530f2cffe05a0dbafd120bcf6b02033cf
test-bench-deps:
base: '>=4.8 && <5'
tardis: -any
maintainer: danburton.email@gmail.com
synopsis: Bidirectional state monad transformer
changelog: ''
basic-deps:
base: '>=4.8 && ... |
Test on latest versions of MRI | language: ruby
rvm:
- 2.3.3
- 2.2.6
- 2.1.9
before_install:
- sudo apt-get update -yq && sudo apt-get install -y graphviz
- gem install bundler -v 1.14.4
| language: ruby
rvm:
- 2.7.1
- 2.6.6
- 2.5.8
- 2.4.10
- 2.3.8
- 2.2.6
- 2.1.9
before_install:
- sudo apt-get update -yq && sudo apt-get install -y graphviz
- gem install bundler -v 1.14.4
|
Add Node 8 and 10. Remove Node 8. | # Test against this version of Node.js
environment:
matrix:
# node.js
- nodejs_version: "7"
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install
# Post-install test scripts... | # Test against this version of Node.js
environment:
matrix:
# node.js
- nodejs_version: "8"
- nodejs_version: "10"
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install
# ... |
Fix config for taxes in quebec in 2012 | taxes:
GST:
versions:
- starts: 2011-01-01
ends: 2013-12-31
percentage: 5
states:
qc:
rules:
- starts: 0001-01-01
ends: 2020-12-31
same_state: [GST, QST]
same_country: GST
taxes:
QST:
versions:
- starts: 2011-01-01
... | taxes:
GST:
versions:
- starts: 2011-01-01
ends: 2013-12-31
percentage: 5
states:
qc:
rules:
- starts: 0001-01-01
ends: 2020-12-31
same_state: [GST, QST]
same_country: GST
taxes:
QST:
versions:
- starts: 2011-01-01
... |
Add on-success statement to example actionchain | chain:
- name: task1
ref: core.ask
params:
tag: developers
users:
- testu
- name: task2
ref: core.local
params:
cmd: echo "Reached task 2!"
| chain:
- name: task1
ref: core.ask
params:
tag: developers
users:
- testu
on-success: "task2"
- name: task2
ref: core.local
params:
cmd: echo "Reached task 2!"
|
Enforce repo yaml privacy key. | leakDetectionExemptions:
- ruleId: 'ip_addresses'
filePaths:
- '/src/test/scala/uk/gov/hmrc/bobby/domain/VersionSpec.scala'
- '/src/test/scala/uk/gov/hmrc/bobby/repos/NexusSpec.scala' | leakDetectionExemptions:
- ruleId: 'ip_addresses'
filePaths:
- '/src/test/scala/uk/gov/hmrc/bobby/domain/VersionSpec.scala'
- '/src/test/scala/uk/gov/hmrc/bobby/repos/NexusSpec.scala'
repoVisibility: public_0C3F0CE3E6E6448FAD341E7BFA50FCD333E06A20CFF05FCACE61154DDBBADF71
|
Add fb chat to stag | imports:
- { resource: config.yml }
monolog:
handlers:
main:
type: fingers_crossed
action_level: error
handler: grouped_main
nested:
type: stream
path: %kernel.logs_dir%/%kernel.environment%.log
level: debug
... | imports:
- { resource: config.yml }
monolog:
handlers:
main:
type: fingers_crossed
action_level: error
handler: grouped_main
nested:
type: stream
path: %kernel.logs_dir%/%kernel.environment%.log
level: debug
... |
Remove debian meta info because tests run only against Ubuntu 12.04 to 16.10 | ---
galaxy_info:
author: Mikael Gibert
description: OrientDB installation
license: MIT
min_ansible_version: 1.6
platforms:
- name: EL
versions:
- 7
- name: Ubuntu
versions:
- all
- name: Debian
versions:
- all
categories:
- database
- database:nosq... | ---
galaxy_info:
author: Mikael Gibert
description: OrientDB installation
license: MIT
min_ansible_version: 1.6
platforms:
- name: EL
versions:
- 7
- name: Ubuntu
versions:
- all
categories:
- database
- database:nosql
|
Add db symlink deploy task | # SQLite version 3.x
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
#
database: &common
adapter: sqlite3
pool: 5
timeout: 5000
#
# Postgres
# Ensure the Postgress gem is defined in your Gemfile
# gem 'pg'
#
# database: &common
# adapter: postgresql or pg
# username: username
#... | # SQLite version 3.x
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
#
database: &common
adapter: sqlite3
pool: 5
timeout: 5000
#
# Postgres
# Ensure the Postgress gem is defined in your Gemfile
# gem 'pg'
#
# database: &common
# adapter: postgresql or pg
# username: username
#... |
Set revision as master for apid modules. | package: github.com/30x/apid_build
import:
- package: github.com/30x/apid
- package: github.com/spf13/viper
- package: github.com/apigee-labs/transicator
- package: github.com/30x/apidApigeeSync
- package: github.com/30x/apidGatewayDeploy
- package: github.com/30x/apidVerifyAPIKey
| package: github.com/30x/apid/cmd/apid
import:
- package: github.com/30x/apid
version: master
- package: github.com/spf13/viper
- package: github.com/apigee-labs/transicator
- package: github.com/30x/apidApigeeSync
version: master
- package: github.com/30x/apidGatewayDeploy
version: master
- package: github.com/30... |
Fix location of chronos.service systemd file for Ubuntu 15.10 | chronos_apt_repo: "deb http://repos.mesosphere.io/{{ansible_distribution|lower}} {{ansible_distribution_release|lower|replace('wily','vivid')}} main"
chronos_system_service_config_file: "/etc/systemd/system/multi-user.target.wants/chronos.service"
| chronos_apt_repo: "deb http://repos.mesosphere.io/{{ansible_distribution|lower}} {{ansible_distribution_release|lower|replace('wily','vivid')}} main"
chronos_system_service_config_file: "/lib/systemd/system/chronos.service"
|
Revert "Fix fluentd config name" | ---
dependencies:
- role: telusdigital.apt-repository
repository_key: "0x9ecbec467f0ceb10"
repository_url: "deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen"
- role: telusdigital.logrotate
logrotate_name: mongod
- role: telusdigital.fluentd
fluentd_config_name: mongodb
fl... | ---
dependencies:
- role: telusdigital.apt-repository
repository_key: "0x9ecbec467f0ceb10"
repository_url: "deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen"
- role: telusdigital.logrotate
logrotate_name: mongod
- role: telusdigital.fluentd
fluentd_sources:
- path: "{{ ... |
Replace Node 15 with 16 in CI tests. | name: CI
on:
push:
branches-ignore:
- "dependabot/**"
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node:
- 10
- 12
- 14
- 15
os:
- ubuntu-latest
- macos-latest
... | name: CI
on:
push:
branches-ignore:
- "dependabot/**"
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node:
- 10
- 12
- 14
- 16
os:
- ubuntu-latest
- macos-latest
... |
Add RD Admin Portal Credentials after installation 2 | ---
- name: Installing PPTPD Server for RadiusDesk (Ubuntu 14+)
apt:
name="pptpd"
state=present
- name: Configuring PPTPD Server for RadiusDesk (Ubuntu 14+)
template:
dest="/etc/pptpd.conf"
src="pptpd/pptpd.conf.j2"
- name: Configuring RadiusDesk to Use PPTPD Server (Ubuntu 14+)
tem... | ---
- name: Installing PPTPD Server for RadiusDesk (Ubuntu 14+)
apt:
name="pptpd"
state=present
- name: Configuring PPTPD Server for RadiusDesk (Ubuntu 14+)
template:
dest="/etc/pptpd.conf"
src="pptpd/pptpd.conf.j2"
- name: Configuring RadiusDesk to Use PPTPD Server (Ubuntu 14+)
tem... |
Switch back to www-data and include become: yes | ---
# A simple one-off playbook that gathers basic usage information from OpenedX hosts.
# This is used by the `activity_csv` management command.
- hosts: all
vars:
# This should be overridden to be more unique.
local_output_dir: /tmp/
remote_output_filename: /tmp/activity_report
tasks:
# We have t... | ---
# A simple one-off playbook that gathers basic usage information from OpenedX hosts.
# This is used by the `activity_csv` management command.
- hosts: all
vars:
# This should be overridden to be more unique.
local_output_dir: /tmp/
remote_output_filename: /tmp/activity_report
tasks:
# We have t... |
Configure GitHub to test on Node 12 and above | name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['10', '11', '12', '13', '14']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
check-latest: true
- run: npm i... | name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['12', '13', '14']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
check-latest: true
- run: npm install
... |
Add significant query strings for VOA site | ---
site: voa
whitehall_slug: valuation-office-agency
homepage: https://www.gov.uk/government/organisations/valuation-office-agency
tna_timestamp: 20141002130923
host: www.voa.gov.uk
homepage_furl: www.gov.uk/voa
aliases:
- voa.gov.uk
- app.voa.gov.uk
- cti.voa.gov.uk
- manuals.voa.gov.uk
- www.manuals.voa.gov.uk
| ---
site: voa
whitehall_slug: valuation-office-agency
homepage: https://www.gov.uk/government/organisations/valuation-office-agency
tna_timestamp: 20141002130923
host: www.voa.gov.uk
homepage_furl: www.gov.uk/voa
aliases:
- voa.gov.uk
- app.voa.gov.uk
- cti.voa.gov.uk
- manuals.voa.gov.uk
- www.manuals.voa.gov.uk
optio... |
Enable Brakeman and Bundler-Audit in CodeClimate | engines:
rubocop:
enabled: true
scss-lint:
enabled: true
fixme:
enabled: true
duplication:
enabled: true
config:
languages:
- ruby
- javascript
ratings:
paths:
- "**.rb"
- "**.scss"
| engines:
rubocop:
enabled: true
scss-lint:
enabled: true
fixme:
enabled: true
duplication:
enabled: true
config:
languages:
- ruby
- javascript
brakeman:
enabled: true
bundler-audit:
enabled: true
ratings:
paths:
- "**.rb"
- "**.scss"
- Gemfile.lock... |
Remove `TRAVIS*` environment variables from regular compose file. We only need them on Travis CI. | version: "2"
services:
celery:
command: entrypoint.sh setup-django.sh celery.sh
extends: django
celerybeat:
command: entrypoint.sh setup-django.sh celerybeat.sh
extends: django
celeryflower:
command: entrypoint.sh setup-django.sh celeryflower.sh
extends: django
django:
command: entry... | version: "2"
services:
celery:
command: entrypoint.sh setup-django.sh celery.sh
extends: django
celerybeat:
command: entrypoint.sh setup-django.sh celerybeat.sh
extends: django
celeryflower:
command: entrypoint.sh setup-django.sh celeryflower.sh
extends: django
django:
command: entry... |
Enforce brackets for symbol arrays in RuboCop | AllCops:
DefaultFormatter: clang
DisplayCopNames: true
TargetRubyVersion: 2.2
Layout/IndentArray:
Enabled: false
Layout/IndentHash:
Enabled: false
EnforcedStyle: align_braces
Layout/IndentHeredoc:
Enabled: false
Layout/MultilineBlockLayout:
Enabled: false
Layout/SpaceInsideHashLiteralBraces:
EnforcedS... | AllCops:
DefaultFormatter: clang
DisplayCopNames: true
TargetRubyVersion: 2.2
Layout/IndentArray:
Enabled: false
Layout/IndentHash:
Enabled: false
EnforcedStyle: align_braces
Layout/IndentHeredoc:
Enabled: false
Layout/MultilineBlockLayout:
Enabled: false
Layout/SpaceInsideHashLiteralBraces:
EnforcedS... |
Update target Ruby version for Rubocop | AllCops:
TargetRubyVersion: 2.4
Exclude:
- 'node_modules/**/*'
NewCops: enable
# Customize rules
Layout/LineLength:
Max: 100
Exclude:
- bin/**/*
- config/**/*
- test/**/*
Metrics/ClassLength:
Exclude:
- test/**/*
Metrics/BlockLength:
Exclude:
- test/**/*
- lib/tasks/**/*
Me... | AllCops:
TargetRubyVersion: 2.6
Exclude:
- 'node_modules/**/*'
NewCops: enable
# Customize rules
Layout/LineLength:
Max: 100
Exclude:
- bin/**/*
- config/**/*
- test/**/*
Metrics/ClassLength:
Exclude:
- test/**/*
Metrics/BlockLength:
Exclude:
- test/**/*
- lib/tasks/**/*
Me... |
Update isort recipe to version 4.2.15 | {% set version = "4.2.14" %}
{% set md5 = "555938e24911062b2febab248b419788" %}
package:
name: isort
version: {{ version }}
source:
fn: isort-{{version}}.tar.gz
url: https://pypi.io/packages/source/i/isort/isort-{{ version }}.tar.gz
md5: {{ md5 }}
build:
script: python setup.py install --single-version... | {% set version = "4.2.15" %}
{% set md5 = "34915a2ce60e6fe3dbcbf5982deef9b4" %}
package:
name: isort
version: {{ version }}
source:
fn: isort-{{version}}.tar.gz
url: https://pypi.io/packages/source/i/isort/isort-{{ version }}.tar.gz
md5: {{ md5 }}
build:
script: python setup.py install --single-version... |
Use the actual RHEL7 repository so it would stay up-to-date | ---
# Setup all of our php-fpm related repositories.
- name: Install repositories
yum: pkg={{item}} state=present
with_items:
- "https://dl.iuscommunity.org/pub/ius/stable/Redhat/7/x86_64/ius-release-1.0-15.ius.el7.noarch.rpm"
when: distro == "rhel7"
- name: Install repositories
yum: pkg={{item}} state=p... | ---
# Setup all of our php-fpm related repositories.
- name: Install repositories
yum: pkg={{item}} state=present
with_items:
- "https://rhel7.iuscommunity.org/ius-release.rpm"
when: distro == "rhel7"
- name: Install repositories
yum: pkg={{item}} state=present
ignore_errors: yes
with_items:
- "h... |
Add nuage rest server port to haproxy firewall rules. | ---
galaxy_info:
author: Jason DeTiberus
description: OpenShift haproxy loadbalancer
company: Red Hat, Inc.
license: Apache License, Version 2.0
min_ansible_version: 1.9
platforms:
- name: EL
versions:
- 7
dependencies:
- role: openshift_facts
- role: os_firewall
os_firewall_allow:
- service: ... | ---
galaxy_info:
author: Jason DeTiberus
description: OpenShift haproxy loadbalancer
company: Red Hat, Inc.
license: Apache License, Version 2.0
min_ansible_version: 1.9
platforms:
- name: EL
versions:
- 7
dependencies:
- role: openshift_facts
- role: os_firewall
os_firewall_allow:
- service: ... |
Update Save to… to 1.6 (6) | Categories:
- Navigation
License: CDDL-1.0
SourceCode: https://notabug.org/Umnik/SaveTo
IssueTracker: https://notabug.org/Umnik/SaveTo/issues
AutoName: Save to…
RepoType: git
Repo: https://notabug.org/Umnik/SaveTo.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: '1.0'
subdir: app
gradle:
... | Categories:
- Navigation
License: CDDL-1.0
SourceCode: https://notabug.org/Umnik/SaveTo
IssueTracker: https://notabug.org/Umnik/SaveTo/issues
AutoName: Save to…
RepoType: git
Repo: https://notabug.org/Umnik/SaveTo.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: '1.0'
subdir: app
gradle:
... |
Update utilities script for synchronizing /etc/hosts with inventory file | ---
- hosts: all
tasks:
- blockinfile:
dest: /etc/hosts
block: "{{ hostvars[item].ansible_host }} {{ item }}"
marker: "# {mark} ANSIBLE MANAGED BLOCK {{ item }}"
with_items: "{{ groups['all'] }}"
become: true
| ---
- hosts: all
tasks:
- authorized_key:
user: vagrant
key: "{{ lookup('file', '/vagrant_data/id_rsa.pub') }}"
- lineinfile:
dest: /etc/hosts
regexp: '.*127\.0\.0\.1.*{{ inventory_hostname }}'
state: absent
become: true
- blockinfile:
dest: /e... |
Add start of Upgrading chapter | site_name: PortPHP Documentation
theme: readthedocs
pages:
- index.md
- quickstart.md
- readers.md
- writers.md
- stepaggregator.md
- contributing.md
site_url: http://portphp.org
repo_url: https://github.com/portphp/portphp
markdown_extensions:
- toc:
baselevel: 3
permalink: true
- admonition
| site_name: PortPHP Documentation
theme: readthedocs
pages:
- index.md
- quickstart.md
- readers.md
- writers.md
- stepaggregator.md
- upgrading.md
- contributing.md
site_url: http://portphp.org
repo_url: https://github.com/portphp/portphp
markdown_extensions:
- toc:
baselevel: 3
permalink: true
- admoni... |
Use prooph/php:7.0-fpm as image for php | nginx:
image: prooph/nginx:www
ports:
- 8080:80
- 443:443
- 10081:10081
- 10082:10082
links:
- php:php
volumes_from:
- dataphp
php:
image: prooph/php:5.6-fpm-xdebug
links:
- mariadb:mariadb
volumes_from:
- dataphp
environment:
- ADAPTER=mysql
dataphp:
imag... | nginx:
image: prooph/nginx:www
ports:
- 8080:80
- 443:443
- 10081:10081
- 10082:10082
links:
- php:php
volumes_from:
- dataphp
php:
image: prooph/php:7.0-fpm
links:
- mariadb:mariadb
volumes_from:
- dataphp
environment:
- ADAPTER=mysql
dataphp:
image: debi... |
Set source directory as bind volume for development | version: '3.4'
volumes:
postgresql:
services:
web:
build:
context: .
volumes:
- /app/media
- /app/templates/docs
ports:
- 8000:8000
stdin_open: true
tty: true
depends_on:
- db
db:
image: postgres:11
ports:
- 5432:5432
volumes:
- postgr... | version: '3.4'
volumes:
postgresql:
media:
services:
web:
build:
context: .
volumes:
- type: volume
source: media
target: /app/media
volume:
nocopy: true
- type: bind
source: .
target: /app
ports:
- 8000:8000
stdin_open: tr... |
Add CRLF line endings for Appveyor | # Test against this version of Node.js
environment:
matrix:
- nodejs_version: '0.12'
- nodejs_version: '4'
# Latest version of Node
- nodejs_version: '5'
- nodejs_version: '1'
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Insta... | # CRLF Line Endings
init:
- git config --global core.autocrlf true
# Test against this version of Node.js
environment:
matrix:
- nodejs_version: '0.12'
- nodejs_version: '4'
# Latest version of Node
- nodejs_version: '5'
- nodejs_version: '1'
# Install scripts. (runs after repo cloning)
instal... |
Configure git before doing a push | name: Publish to npm
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- run: yarn install --frozen-lockfile
- run: yarn test
- run: yarn build
pu... | name: Publish to npm
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- run: yarn install --frozen-lockfile
- run: yarn test
- run: yarn build
pu... |
Remove version number from nightly | version: "1.0.0-nightly.${BUILDID}"
rpm_version: "1.0.0~nightly${BUILDID}"
deb_version: "1.0.0~nightly${BUILDID}"
| version: "nightly.${BUILDID}"
rpm_version: "nightly${BUILDID}"
deb_version: "nightly${BUILDID}"
|
Add local overrides to e2e example | name: e2e_example
environment:
sdk: '>=1.9.1 <2.0.0'
dependencies:
build: ^0.9.0
build_barback: ^0.2.0
dev_dependencies:
build_runner: ^0.3.2
transformers:
- e2e_example:
$include: 'web/*.txt'
| name: e2e_example
environment:
sdk: '>=1.9.1 <2.0.0'
dependencies:
build: ^0.9.0
build_barback: ^0.2.0
dev_dependencies:
build_runner: ^0.3.2
transformers:
- e2e_example:
$include: 'web/*.txt'
dependency_overrides:
build:
path: ../build
build_barback:
path: ../build_barback
build_runner:
... |
Increase sqlite pool to avoid puma errors | # SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
#
default: &default
adapter: sqlite3
pool: 5
timeout: 5000
development:
<<: *default
database: db/development.sqlite3
# Warning: The database defined as "test" will be erased and
# re-gene... | # SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
#
default: &default
adapter: sqlite3
pool: 10
timeout: 5000
development:
<<: *default
database: db/development.sqlite3
# Warning: The database defined as "test" will be erased and
# re-gen... |
Use Drupal 8.0.2 rather than 8.0.x | ---
api: 2
# Basic Drush Make file for Drupal. Be sure to update the drupal_major_version
# variable inside config.yml if you change the major version in this file.
# Drupal core (major version, e.g. 6.x, 7.x, 8.x).
core: "8.x"
projects:
# Core.
drupal:
type: "core"
download:
# Drupal core branch ... | ---
api: 2
# Basic Drush Make file for Drupal. Be sure to update the drupal_major_version
# variable inside config.yml if you change the major version in this file.
# Drupal core (major version, e.g. 6.x, 7.x, 8.x).
core: "8.x"
projects:
# Core.
drupal:
type: "core"
download:
# Drupal core branch ... |
Update Travis config to use Xcode 9 | language: objective-c
osx_image: xcode8
xcode_workspace: ReceptionKit.xcworkspace
xcode_scheme: ReceptionKit
install:
- ./Scripts/install_swiftlint.sh
# Temporarily disable xctool: https://github.com/travis-ci/travis-ci/issues/3986
# xcodebuild runs swiftlint automatically
script:
# - swiftlint
# - xctool test -w... | language: objective-c
osx_image: xcode9
xcode_workspace: ReceptionKit.xcworkspace
xcode_scheme: ReceptionKit
install:
- ./Scripts/install_swiftlint.sh
# Temporarily disable xctool: https://github.com/travis-ci/travis-ci/issues/3986
# xcodebuild runs swiftlint automatically
script:
# - swiftlint
# - xctool test -w... |
Add conf files copying before in CI | language: python
services:
- mysql
python:
- "3.6"
install: "pip install -r requirements.txt"
script: python -m unittest
before_script:
- mysql -u root -e 'CREATE DATABASE salam_bot;'
- orator migrate -c config/database.py -p database/migrations/ -f
notifications:
email: false
| language: python
services:
- mysql
python:
- "3.6"
install: "pip install -r requirements.txt"
script: python -m unittest
before_script:
- cp config/app.example.py config/app.py
- cp config/database.example.py config/database.py
- mysql -u root -e 'CREATE DATABASE salam_bot;'
- orator migrate -c c... |
Make linter warnings fatal on Travis | sudo: false
language: node_js
node_js:
- 8
before_script:
- cd door-open-service/node-backend
script:
- npm install
- npm run lint
| sudo: false
language: node_js
node_js:
- 8
before_script:
- cd door-open-service/node-backend
script:
- npm install
- npm run lint -- --max-warnings=0
|
Switch to higher memory Travis | language: java
sudo: false
dist: trusty
jdk:
- oraclejdk8
- oraclejdk9
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
script: ./gradlew -I gradle/travis.gradle check --stacktrace
| language: java
sudo: required
dist: trusty
jdk:
- oraclejdk8
- oraclejdk9
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
script: ./gradlew -I gradle/travis.gradle check
|
Remove support for node.js 0.8. | language: node_js
# test on two node.js versions: 0.8 0.10
node_js:
- 0.8
- 0.10
# configure notifications (email, IRC, campfire etc)
# please update this section to your needs!
#notifications:
# irc: "irc.freenode.org#travis"
| language: node_js
# test on one node.js version: 0.10
node_js:
- 0.10
# configure notifications (email, IRC, campfire etc)
# please update this section to your needs!
#notifications:
# irc: "irc.freenode.org#travis"
|
Fix testing with Django 1.11. Currently only rc1. | language: python
cache: pip
sudo: false
python:
- 2.7
- 3.4
- 3.5
env:
- DJANGO='>=1.10,<1.11' WAGTAIL='>=1.8,<1.9'
- DJANGO='>=1.10,<1.11' WAGTAIL='>=1.9,<1.10'
- DJANGO='>=1.11,<1.12' WAGTAIL='>=1.8,<1.9'
- DJANGO='>=1.11,<1.12' WAGTAIL='>=1.9,<1.10'
services:
- postgresql: "9.2"
before_script:
... | language: python
cache: pip
sudo: false
python:
- 2.7
- 3.4
- 3.5
env:
- DJANGO='>=1.10,<1.11' WAGTAIL='>=1.8,<1.9'
- DJANGO='>=1.10,<1.11' WAGTAIL='>=1.9,<1.10'
- DJANGO='>=1.11rc1,<1.12' WAGTAIL='>=1.8,<1.9'
- DJANGO='>=1.11rc1,<1.12' WAGTAIL='>=1.9,<1.10'
services:
- postgresql: "9.2"
before_scri... |
Add `addons` and change to use `xenial` image | language: generic
dist: trusty
sudo: false
notifications:
email:
on_success: never
on_failure: change
script:
- curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh
- npm run flow
env:
matrix:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
| language: generic
notifications:
email:
on_success: never
on_failure: change
script:
- curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh
- npm run flow
env:
matrix:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
dist: xenial
addons:
apt:
packages:
- build-e... |
Add Django 1.3 to the Travis configuration | language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO="django>=1.5,<1.6 --use-mirrors"
- DJANGO="django>=1.4,<1.5 --use-mirrors"
install:
- pip install $DJANGO
script: python setup.py test
notifications:
email:
- jklaiho@iki.fi
| language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO="django>=1.5,<1.6 --use-mirrors"
- DJANGO="django>=1.4,<1.5 --use-mirrors"
- DJANGO="django>=1.3,<1.4 --use-mirrors"
install:
- pip install $DJANGO
script: python setup.py test
notifications:
email:
- jklaiho@iki.fi
|
Drop symfony < 2.8 support | language: php
php: 5.6
env:
- SYMFONY_VERSION="2.1.*"
- SYMFONY_VERSION="2.2.*"
- SYMFONY_VERSION="2.3.*"
- SYMFONY_VERSION="2.4.*"
- SYMFONY_VERSION="2.5.*"
- SYMFONY_VERSION="2.6.*"
- SYMFONY_VERSION="2.7.*"
- SYMFONY_VERSION="2.8.*"
- SYMFONY_VERSION="3.0.*"
- SYMFONY_VERSIO... | language: php
php:
- "5.6"
- "7.0"
- hhvm
- nightly
env:
- SYMFONY_VERSION="2.8.*"
- SYMFONY_VERSION="3.0.*"
- SYMFONY_VERSION="3.1.*"
before_script:
- composer require --no-update symfony/framework-bundle:${SYMFONY_VERSION}
- composer install --prefer-source
script: bin/phpunit... |
Fix fmt check for OSX build | language: go
go:
- 1.x
- master
os:
- linux
- osx
before_install:
- go get github.com/golang/lint/golint
- go get github.com/mattn/goveralls
install:
- echo "This is an override of the default install deps step in travis."
before_script:
- go vet $(go list ./... | grep -v vendor)
- test -z "$(gof... | language: go
go:
- 1.x
- master
os:
- linux
- osx
before_install:
- go get github.com/golang/lint/golint
- go get github.com/mattn/goveralls
install:
- echo "This is an override of the default install deps step in travis."
before_script:
- go vet $(go list ./... | grep -v vendor)
- test -z "$(gof... |
Remove rbx 1.9 from CI. Some bug in it. | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-19mode
- jruby-18mode
- rbx-19mode
- rbx-18mode
- ruby-head
- ree | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-19mode
- jruby-18mode
#- rbx-19mode # Not working on travis
- rbx-18mode
- ruby-head
- ree |
Set Travis back to fail on warnings | language: r
cache: packages
sudo: false
r:
- bioc-release
- bioc-devel
warnings_are_errors: false
| language: r
cache: packages
sudo: false
r:
- bioc-release
- bioc-devel
|
Include the protoc compiler in the builds. | language: cpp
compiler:
- gcc
- clang
script: scons
before_install:
- sudo add-apt-repository -y ppa:boost-latest/ppa
- sudo apt-get update -qq
- sudo apt-get install -y libprotobuf-dev libboost1.55-all-dev
env:
- RIAK_CPP_BUILD_DEBUG=yes
- RIAK_CPP_BUILD_DEBUG=no
matrix:
fast_finish: true | language: cpp
compiler:
- gcc
- clang
script: scons
before_install:
- sudo add-apt-repository -y ppa:boost-latest/ppa
- sudo apt-get update -qq
- sudo apt-get install -y libprotobuf-dev protobuf-compiler libboost1.55-all-dev
env:
- RIAK_CPP_BUILD_DEBUG=yes
- RIAK_CPP_BUILD_DEBUG=no
matrix:
fast_finish: true |
Update CI script to check-bootstrap | language: c
compiler:
- clang
- gcc
script: ./configure CFLAGS=-fsanitize=address LDFLAGS=-fsanitize=address && make check
env:
global:
- ASAN_OPTIONS=detect_leaks=0
matrix:
include:
- os: linux
include:
- os: osx
#osx_image: xcode8
| language: c
compiler:
- clang
- gcc
script:
- ./configure CFLAGS=-fsanitize=address LDFLAGS=-fsanitize=address
- make bootstrap
- make check-bootstrap
env:
global:
- ASAN_OPTIONS=detect_leaks=0
matrix:
include:
- os: linux
include:
- os: osx
#osx_image: xcode8
|
Drop installation step, cause it is not required. | language: java
jdk:
- openjdk6
- oraclejdk7
- oraclejdk8
script: "mvn --show-version --errors --batch-mode -Prun-its clean verify"
cache:
directories:
- $HOME/.m2
branches:
except:
- gh-pages
notifications:
email:
- khmarbaise@apache.org
| language: java
jdk:
- openjdk6
- oraclejdk7
- oraclejdk8
# We don't need an install before
# we run the unit and integration tests.
install: true
script: "mvn --show-version --errors --batch-mode -Prun-its clean verify"
cache:
directories:
- $HOME/.m2
branches:
except:
- gh-pages
notifications... |
Update config to reflect hackspace | # Site settings
title: Potteries Hackspace
description: A clean minimal Theme for Jekyll
email: admin@potterieshackspace.org
baseurl: /
url: "http://potterieshackspace.github.io"
#favicon
favicon: /favicon.png
#feed
feedburner_username: maangalabs
#twitter
twitter_username: pranavrajs
github_username: pranavrajs
#li... | title: Potteries Hackspace
description: The Potteries Hackspace website.
email: admin@potterieshackspace.org
baseurl: /
url: "http://potterieshackspace.github.io"
favicon: /favicon.png
feedburner_username:
twitter_username: potterieshacks
github_username: PotteriesHackspace
google_analytics_id:
gplus_username:
fb_user... |
Change repo ownership to group | # This file describes this Open edX repo, as described in OEP-2:
# https://open-edx-proposals.readthedocs.io/en/latest/oep-0002-bp-repo-metadata.html#specification
nick: ctlg
openedx-release: {ref: master}
owner: jmyatt
oeps:
oep-2: true
oep-7: true
oep-18: true
tags:
- webservice
| # This file describes this Open edX repo, as described in OEP-2:
# https://open-edx-proposals.readthedocs.io/en/latest/oep-0002-bp-repo-metadata.html#specification
nick: ctlg
openedx-release: {ref: master}
owner:
type: team
team: edx/course-discovery-admins
oeps:
oep-2: true
oep-7: true
oep-18: true
t... |
Fix date for last book | - date: 2015-10-28
generated: true
isbn: 9782757854655
- date: 2015-10-05
generated: true
isbn: 9782290032725
- date: 2015-11-12
generated: true
isbn: 9782811215729
- date: 2015-12-03
generated: true
isbn: 9782070457748
- date: 2015-12-10
generated: true
isbn: 9782266233200
- date: 2015-01-02
gene... | - date: 2015-10-28
generated: true
isbn: 9782757854655
- date: 2015-10-05
generated: true
isbn: 9782290032725
- date: 2015-11-12
generated: true
isbn: 9782811215729
- date: 2015-12-03
generated: true
isbn: 9782070457748
- date: 2015-12-10
generated: true
isbn: 9782266233200
- date: 2016-01-02
isbn... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.