Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Update which Node.js versions to run tests on | language: node_js
node_js:
- 4
- 5
- 6
- 7
notifications:
email:
recipients:
- office@alexanderwallin.com
on_success: change
on_failure: change
webhooks:
urls:
- https://webhooks.gitter.im/e/0ed18fd9b3e529b3c2cc
on_success: change # options: [always|never|change] default: a... | language: node_js
node_js:
- 12
- 14
- 16
notifications:
email:
recipients:
- office@alexanderwallin.com
on_success: change
on_failure: change
webhooks:
urls:
- https://webhooks.gitter.im/e/0ed18fd9b3e529b3c2cc
on_success: change # options: [always|never|change] default: alwa... |
Revert changes to spacedhan transform yml file | ---
:transforms:
-
:direction: both
:rules:
- ":: [[㆒-㆟㈠-㉇㊀-㊰㋀-㋋㍘-㍰㍻-㍿㏠-㏾ 🈐-🈒🈔-🈺🉀-🉈🉐🉑][:Ideographic:][:sc=Han:]];"
- ":: fullwidth-halfwidth;"
- "。 > '.';"
- "$terminalPunct = [\\.\\,\\:\\;\\?\\!.,:?!。、;[:Pe:][:Pf:]];"
- "$initialPunct = [:Ps:][:Pi:];"
- "[[:Ideogra... | ---
:transforms:
-
:direction: both
:rules:
- ":: [[㆒-㆟㈠-㉇㊀-㊰㋀-㋋㍘-㍰㍻-㍿㏠-㏾ 🈐-🈒🈔-🈺🉀-🉈🉐🉑][:ideographic:][:sc=han:]];"
- ":: fullwidth-halfwidth;"
- "。 > '.';"
- "$terminalPunct = [\\.\\,\\:\\;\\?\\!.,:?!。、;[:Pe:][:Pf:]];"
- "$initialPunct = [:Ps:][:Pi:];"
- "[[:Ideogra... |
Remove gcc7 and gcc8 tests. Replace clang8 with clang11. | name: Unit Tests Ubuntu
on: [ push ]
jobs:
build:
name: ${{ matrix.compiler_name }}
runs-on: ubuntu-latest
strategy:
matrix:
compiler_name: [build_gcc7, build_gcc8, build_gcc9, build_gcc10, build_clang8, build_clang9, build_clang10]
include:
- compiler_name: build_gcc7
... | name: Unit Tests Ubuntu
on: [ push ]
jobs:
build:
name: ${{ matrix.compiler_name }}
runs-on: ubuntu-latest
strategy:
matrix:
compiler_name: [build_gcc9, build_gcc10, build_clang9, build_clang10, build_clang11]
include:
- compiler_name: build_gcc9
c_compiler: ... |
Add step to register all JVMs with jenv | ---
- name: Install jenv
git: >
repo=git://github.com/gcuisinier/jenv.git
dest=~/.jenv
tags: update
- name: Set current JVM
shell: 'jenv global {{ dotfiles.jvm.version }}'
- name: Create ~/.bin
file: dest=~/.bin state=directory
# HACK: Ansible won't link relative files?!
# https://github.com/ansible/... | ---
- name: Install jenv
git: >
repo=git://github.com/gcuisinier/jenv.git
dest=~/.jenv
tags: update
- name: Register all JVMs
shell: 'jenv add {{ item }}/Contents/Home'
with_fileglob:
- /Library/Java/JavaVirtualMachines/*
- name: Set current JVM
shell: 'jenv global {{ dotfiles.jvm.version }}'
-... |
Remove iwyu debugging and install libclang-common-9-dev. | name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
# Unfortunately available Marketplace Actions for this are in a mess, so we do it manually.
run: |
sudo apt-get update -y
sudo apt-get ... | name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
# Unfortunately available Marketplace Actions for this are in a mess, so we do it manually.
# Also iwyu is missing a dependency on libclang-common-0-de... |
Update from Hackage at 2017-04-08T21:18:16Z | homepage: https://github.com/hvr/token-bucket
changelog-type: markdown
hash: 41232cfabd4ba8e217d2b78f0f897d5a245756cf525c9a84c5ba2c695b533576
test-bench-deps:
base: ! '>=4.6 && <4.10'
time: ! '>=1.4 && <1.7'
token-bucket: -any
maintainer: hvr@gnu.org
synopsis: Rate limiter using lazy bucket algorithm
changelog: !... | homepage: https://github.com/hvr/token-bucket
changelog-type: markdown
hash: a36253bf7bafd131327019f3ccac6b02cf8b6ca3db45c05e578fd600f856730e
test-bench-deps:
base: ! '>=4.6 && <4.10'
time: ! '>=1.4 && <1.7'
token-bucket: -any
maintainer: hvr@gnu.org
synopsis: Rate limiter using lazy bucket algorithm
changelog: !... |
Use correct windows syntax for current directory | name: Audit bugsnag-go dependency licenses
on: [push, pull_request]
jobs:
license-audit:
runs-on: ${{matrix.os}}-latest
defaults:
run:
working-directory: 'go/src/github.com/bugsnag/bugsnag-go/v2'
strategy:
matrix:
os: [ubuntu, windows]
steps:
- uses: actions/checkout... | name: Audit bugsnag-go dependency licenses
on: [push, pull_request]
jobs:
license-audit:
runs-on: ${{matrix.os}}-latest
defaults:
run:
working-directory: 'go/src/github.com/bugsnag/bugsnag-go/v2'
strategy:
matrix:
os: [ubuntu, windows]
steps:
- uses: actions/checkout... |
Remove test from node < 14 | # GitHub actions
# https://docs.github.com/en/free-pro-team@latest/actions
name: ci-test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
node_version: [10.14.2, 14.x, 15.x, 16.x, 17.x]
steps:
- uses: actions/checkout@v2
- name: setup Node.js v${{ m... | # GitHub actions
# https://docs.github.com/en/free-pro-team@latest/actions
name: ci-test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
node_version: [14.x, 15.x, 16.x, 17.x]
steps:
- uses: actions/checkout@v2
- name: setup Node.js v${{ matrix.nod... |
Change Travis CI e-mail notifications | language: php
php:
- 5.5
- 5.6
- 7.0
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-source | language: php
php:
- 5.5
- 5.6
- 7.0
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-source
notifications:
email:
on_failure: change
on_success: never |
Add node 8 to the list of versions to check | language: node_js
node_js:
- "4"
- "6"
env:
- CXX=g++-4.8
install:
- npm install
script:
- ant test
branches:
only:
- master
- development
sudo: required
dist: precise
| language: node_js
node_js:
- "4"
- "6"
- "8"
env:
- CXX=g++-4.8
install:
- npm install
script:
- ant test
branches:
only:
- master
- development
sudo: required
dist: precise
|
Use libgeos-c1 instead of libgeos-dev. | language: ruby
rvm:
- 2.2.3
- 2.1.7
- 2.0.0
- 1.9.3
- rbx-2
before_install:
- sudo apt-get update
- sudo apt-get install libgeos-dev
| language: ruby
rvm:
- 2.2.3
- 2.1.7
- 2.0.0
- 1.9.3
- rbx-2
before_install:
- sudo apt-get update
- sudo apt-get install -y libgeos-c1
|
Change Coverity Scan branch to use 'dev' instead of master. | # Travis CI integration -- https://travis-ci.org/troglobit/libuev
language: c
compiler:
- gcc
- clang
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "ikQcWMCLFoxq0+wMiqrNT5HRn0d4e3AxuF8V... | # Travis CI integration -- https://travis-ci.org/troglobit/libuev
language: c
compiler:
- gcc
- clang
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "ikQcWMCLFoxq0+wMiqrNT5HRn0d4e3AxuF8V... |
Remove support for old Python 3.x versions | language: python
python:
- '2.7'
- '3.3'
- '3.4'
- '3.5'
install: pip install .
script: python -m phabricator.tests.test_phabricator
deploy:
provider: pypi
user: disqus
password:
secure: AJ7zSLd6BgI4W8Kp3KEx5O40bUJA91PkgLTZb5MnCx4/8nUPlkk+LqvodaiiJQEGzpP8COPvRlzJ/swd8d0P38+Se6V83wA43MylimzrgngO6t3... | language: python
python:
- '2.7'
- '3.5'
install: pip install .
script: python -m phabricator.tests.test_phabricator
deploy:
provider: pypi
user: disqus
password:
secure: AJ7zSLd6BgI4W8Kp3KEx5O40bUJA91PkgLTZb5MnCx4/8nUPlkk+LqvodaiiJQEGzpP8COPvRlzJ/swd8d0P38+Se6V83wA43MylimzrgngO6t3c/lXa/aMnrRzSpSfK5... |
Use the right config file | language: python
cache: pip
services:
- redis-server
python:
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "nightly"
install:
- pip install coveralls
- pip install codecov
- pip install .
- pushd client
- python setup.py install
- popd
script:
- coverage run --source=uwhoisd uwhoisd/__init__.py e... | language: python
cache: pip
services:
- redis-server
python:
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "nightly"
install:
- pip install coveralls
- pip install codecov
- pip install .
- cp travis_config/uwhoisd.ini extra/uwhoisd.ini
- pushd client
- python setup.py install
- popd
script:
- ... |
Add coverage flags for issolating reports | language: objective-c
osx_image: xcode8
before_install:
- gem install xcpretty
script:
- cd Examples
- xcodebuild -version
- xcodebuild -project DynamicColorExample.xcodeproj -scheme iOSTests -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 6" -configuration Release GCC_INSTRUMENT_PROGRAM_F... | language: objective-c
osx_image: xcode8
before_install:
- gem install xcpretty
script:
- cd Examples
- xcodebuild -version
- xcodebuild -project DynamicColorExample.xcodeproj -scheme iOSTests -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 6" -configuration Release GCC_INSTRUMENT_PROGRAM_F... |
Remove JRuby from Travis Rubies for now | language: ruby
bundler_args: --without extras osx
rvm:
- 1.9.3
- jruby-19mode
- rbx-19mode
| language: ruby
bundler_args: --without extras osx
rvm:
- 1.9.3
- rbx-19mode
|
Make sure that at least npm@3 is installed on Travis. | language: node_js
node_js:
- "8"
- "7"
- "6"
- "5"
- "4"
sudo: false
| language: node_js
node_js:
- "8"
- "7"
- "6"
- "5"
- "4"
sudo: false
before_install: if [[ `npm -v | cut -d . -f 1` -lt 3 ]]; then npm i -g npm@3; fi
|
Disable test:SecEncodeTransformTests on Travis CI | language: objective-c
cache:
directories:
- vendor/bundle
install:
- bundle install --path=vendor/bundle --binstubs=vendor/bin
script:
- bundle exec rake test:ios test:osx test:SecEncodeTransformTests
branches:
only:
- master
env:
global:
- LANG=en_US.UTF-8
- LC_ALL=en_US.UTF-8
| language: objective-c
cache:
directories:
- vendor/bundle
install:
- bundle install --path=vendor/bundle --binstubs=vendor/bin
script:
- bundle exec rake test:ios test:osx
branches:
only:
- master
env:
global:
- LANG=en_US.UTF-8
- LC_ALL=en_US.UTF-8
|
Update python versions to test against | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install: "pip install -r requirements.txt"
script:
- python setup.py install
- make test
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install: "pip install -r requirements.txt"
script:
- python setup.py install
- make test
|
Use Python 3 on Travis. | language: python
python:
- "2.7"
before_install:
- wget -O ta-lib-0.4.0-src.tar.gz http://sourceforge.net/projects/ta-lib/files/ta-lib/0.4.0/ta-lib-0.4.0-src.tar.gz/download
- tar xvzf ta-lib-0.4.0-src.tar.gz
- pushd ta-lib; ./configure; make; sudo make install; popd
- export LD_LIBRARY_PATH=/usr/local/lib:$L... | language: python
python:
- "2.7"
- "3.3"
before_install:
- wget -O ta-lib-0.4.0-src.tar.gz http://sourceforge.net/projects/ta-lib/files/ta-lib/0.4.0/ta-lib-0.4.0-src.tar.gz/download
- tar xvzf ta-lib-0.4.0-src.tar.gz
- pushd ta-lib; ./configure; make; sudo make install; popd
- export LD_LIBRARY_PATH=/usr/lo... |
Exclude postgres tests on hhvm | before_script:
- composer self-update
- composer install
- mysql -e 'create database phinx_testing;'
- psql -c 'create database phinx_testing;' -U postgres
language: php
php:
- 5.3
- 5.4
- 5.5
- hhvm
script:
- phpunit --coverage-text --coverage-clover=coverage.clover
- wget https://scrut... | before_script:
- composer self-update
- composer install
- mysql -e 'create database phinx_testing;'
- psql -c 'create database phinx_testing;' -U postgres
language: php
php:
- 5.3
- 5.4
- 5.5
- hhvm
script:
- phpunit --coverage-text --coverage-clover=coverage.clover
- wget https://scrut... |
Use version 0.11 of node path; version 0.12 breaks the build | language: node_js
node_js: 0.10
before_install:
- "npm install -g coffee-script"
- "npm install path"
- "npm install util"
- "cake build"
script: "cake test"
notifications:
email: false
branches:
except:
- experimental
- 1.43
- commands
| language: node_js
node_js: 0.10
before_install:
- "npm install -g coffee-script"
- "npm install path@0.11"
- "npm install util"
- "cake build"
script: "cake test"
notifications:
email: false
branches:
except:
- experimental
- 1.43
- commands
|
Move show build result with tree after success | language: rust
rust:
- nightly
addons:
apt:
packages:
- tree
install:
- git clone --depth 1 https://github.com/steveklabnik/rustbook.git
- cd rustbook && cargo build --release && cd ..
script:
- rustbook/target/release/rustbook build text/ book/
- tree book
| language: rust
rust:
- nightly
addons:
apt:
packages:
- tree
install:
- git clone --depth 1 https://github.com/steveklabnik/rustbook.git
- cd rustbook && cargo build --release && cd ..
script:
- rustbook/target/release/rustbook build text/ book/
after_success:
- tree book
|
Move npm install to before_install step | sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: true
node_js:
- stable
- 5
- 4
- 0.12
before_script:
- npm install npm@latest
- npm prune
after_success:
- 'curl -Lo travis_after_all.py https://git.io/travis_after_all'
- python travis_after_all.py
- 'expor... | sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: true
node_js:
- stable
- 5
- 4
- 0.12
before_install:
- npm install -g npm@latest
before_script:
- npm prune
after_success:
- 'curl -Lo travis_after_all.py https://git.io/travis_after_all'
- python travis_afte... |
Update Travis configuration to use node 7 | sudo: false
language: node_js
node_js:
- 6
before_script:
- npm install -g gulp
script:
- gulp web:build:dev
- gulp release
| sudo: false
language: node_js
node_js:
- 6
- 7
before_script:
- npm install -g gulp
script:
- gulp web:build:dev
- gulp release
|
Clean up old cocoapods correctly | language: objective-c
osx_image: xcode8
xcode_workspace: kushki-ios.xcworkspace
xcode_scheme: kushki-ios
xcode_sdk: iphonesimulator10.0
branches:
only:
- master
podfile: ./Podfile
before_install:
- gem uninstall cocoapods
- gem install cocoapods:1.1.0.rc.3
script:
- ./pipeline/01-unit.sh
- ./pipeline/02-l... | language: objective-c
osx_image: xcode8
xcode_workspace: kushki-ios.xcworkspace
xcode_scheme: kushki-ios
xcode_sdk: iphonesimulator10.0
branches:
only:
- master
podfile: ./Podfile
before_install:
- gem install cocoapods:1.1.0.rc.3
- gem cleanup cocoapods
script:
- ./pipeline/01-unit.sh
- ./pipeline/02-lin... |
Add task to ensure Jenkins is started after installation tasks | ---
# Tasks file for jenkins
- name: Load the OS specific varibles
include_vars: "{{ role_path }}/vars/{{ ansible_os_family }}.yml"
- include: install_debian.yml
tags:
- install
- jenkins
when: ansible_os_family == "Debian"
- name : Restart jenkins if new version installed
include : "{{ role_path }}... | ---
# Tasks file for jenkins
- name: Load the OS specific varibles
include_vars: "{{ role_path }}/vars/{{ ansible_os_family }}.yml"
- include: install_debian.yml
tags:
- install
- jenkins
when: ansible_os_family == "Debian"
- name : Ensure Jenkins is started
become : True
service :
name : "{... |
Update from Hackage at 2016-09-30T09:06:14+00:00 | homepage: https://github.com/NorfairKing/validity#readme
changelog-type: ''
hash: 25bbcfd02fecac3567e8b51f8e9b321fdbc9f2a664922edc82f6be7309e5ca91
test-bench-deps:
base: -any
hspec: -any
QuickCheck: ! '>=2.8 && <2.9'
genvalidity: -any
maintainer: syd.kerckhove@gmail.com
synopsis: Testing utilities for the valid... | homepage: https://github.com/NorfairKing/validity#readme
changelog-type: ''
hash: acbd2b6a01beae165fe33bde5f91130b0a5c76f03b8760ae78d5d5162c7c13c3
test-bench-deps:
base: -any
hspec: -any
QuickCheck: ! '>=2.8 && <2.9'
genvalidity: -any
maintainer: syd.kerckhove@gmail.com
synopsis: Testing utilities for the valid... |
Disable RegexpLiteral cop in Guardfile |
LineLength:
Max: 100
AlignHash:
# Alignment of entries using hash rocket as separator. Valid values are:
#
# key - left alignment of keys
# 'a' => 2
# 'bb' => 3
# separator - alignment of hash rockets, keys are right aligned
# 'a' => 2
# 'bb' => 3
# table - left alignment of keys, hash ro... |
LineLength:
Max: 100
AlignHash:
# Alignment of entries using hash rocket as separator. Valid values are:
#
# key - left alignment of keys
# 'a' => 2
# 'bb' => 3
# separator - alignment of hash rockets, keys are right aligned
# 'a' => 2
# 'bb' => 3
# table - left alignment of keys, hash ro... |
Update Circle CI for goreleaser | # Golang CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-go/ for more details
version: 2
jobs:
test:
docker:
# specify the version
- image: circleci/golang:1.11
working_directory: /go/src/github.com/mpppk/hlb
steps:
- checkout
# specify any bash c... | # Golang CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-go/ for more details
version: 2
jobs:
test:
docker:
# specify the version
- image: circleci/golang:1.11
working_directory: /go/src/github.com/mpppk/hlb
steps:
- checkout
# specify any bash c... |
Use JDK 11 in github CI action | ---
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Cache Gradle packages
uses: actions/cache@v2
with:
... | ---
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Cache Gradle packages
uses:... |
Enable database push job for account-api in integration | # govuk_env_sync::tasks:
# "push_account_api_production_daily":
# ensure: "present"
# hour: "5"
# minute: "0"
# action: "push"
# dbms: "postgresql"
# storagebackend: "s3"
# database: "account-api_production"
# database_hostname: "account-api-postgres"
# temppath: "/tmp/account_api_... | govuk_env_sync::tasks:
"push_account_api_production_daily":
ensure: "present"
hour: "5"
minute: "0"
action: "push"
dbms: "postgresql"
storagebackend: "s3"
database: "account-api_production"
database_hostname: "account-api-postgres"
temppath: "/tmp/account_api_production"
url: "... |
Set nodePort as service type | #apiVersion: apps/v1beta1
#kind: Deployment
#metadata:
# name: nginx
# labels:
# app: symfony
#spec:
# replicas: 1
# strategy:
# type: Recreate
# template:
# metadata:
# labels:
# app: symfony
# tier: backend
# spec:
# restartPolicy: Always
# containers:
# - name: ngin... | apiVersion: v1
kind: Pod
metadata:
name: nginx-pod
labels:
app: nginx
spec:
volumes:
- name: www-storage
persistentVolumeClaim:
claimName: www-claim
containers:
- name: www-container
image: nginx
ports:
- containerPort: 80
name: "http-server"
volumeMo... |
Update from Forestry.io - Updated Forestry configuration | ---
hide_body: false
fields:
- name: date
label: Date
type: datetime
hidden: false
default: ''
- name: title
label: Title
type: text
hidden: false
default: ''
- name: subtitle
label: Subtitle
type: text
hidden: false
default: ''
- type: file
name: feature_image
label: Featured Image
descri... | ---
hide_body: false
fields:
- name: date
label: Date
type: datetime
hidden: false
default: ''
- name: title
label: Title
type: text
hidden: false
default: ''
- name: subtitle
label: Subtitle
type: text
hidden: false
default: ''
- type: file
name: feature_image
label: Featured Image
descri... |
Define a variable that contains the root path. | ---
- hosts: vagrant
tasks:
- name: update apt cache
apt: update-cache=yes cache_valid_time=3600
sudo: yes
- name: upgrade distro
apt: upgrade=yes
sudo: yes
- name: install packages
action: apt pkg={{ item }} state=installed
with_items:
- python-setuptools
... | ---
- hosts: vagrant
vars:
- root: /srv/yoyo
tasks:
- name: update apt cache
apt: update-cache=yes cache_valid_time=3600
sudo: yes
- name: upgrade distro
apt: upgrade=yes
sudo: yes
- name: install packages
action: apt pkg={{ item }} state=installed
with_items:
... |
Package up nupkg even without readonlysourcetree | version: 1.0.{build}
skip_tags: true
image: Visual Studio 2015
configuration: Release
environment:
VisualStudioVersion: 14.0
cache:
- '%USERPROFILE%\.nuget\packages -> **\project.json'
- 'obj\tools -> tools\**'
before_build:
- ps: .\init.ps1
build:
project: src\GitLink.sln
parallel: true
verbosity: minimal
arti... | version: 1.0.{build}
skip_tags: true
image: Visual Studio 2015
configuration: Release
environment:
VisualStudioVersion: 14.0
cache:
- '%USERPROFILE%\.nuget\packages -> **\project.json'
- 'obj\tools -> tools\**'
before_build:
- ps: .\init.ps1
build:
project: src\GitLink.sln
parallel: true
verbosity: minimal
arti... |
Update from Hackage at 2017-12-15T06:50:06Z | homepage: ''
changelog-type: ''
hash: 75479889212c155bfc845a72b9bdb8cfd34cb0b608904dd1888a9cdb3204627b
test-bench-deps: {}
maintainer: Alex Lang <me@alang.ca>
synopsis: Bindings to the QuadProg++ quadratic programming library
changelog: ''
basic-deps:
base: ! '>=4.5 && <5.1'
hmatrix: ! '>=0.16'
vector: ! '>=0.9'
... | homepage: ''
changelog-type: ''
hash: 2209e2d2995766fba607961fa7aa75adcfc4c41a94e54e62d44768e2090bcf56
test-bench-deps: {}
maintainer: Alex Lang <me@alang.ca>
synopsis: Bindings to the QuadProg++ quadratic programming library
changelog: ''
basic-deps:
base: ! '>=4.5 && <5.1'
hmatrix: ! '>=0.16'
vector: ! '>=0.9'
... |
Switch to dashes in errand name | - type: replace
path: /instance_groups/-
value:
azs: [z1]
lifecycle: errand
instances: 1
jobs:
- name: migrate_mysql_to_credhub
properties:
app_name: nfs-broker
domain: ((system_domain))
cf:
admin_password: ((cf_admin_password))
admin_user: admin... | - type: replace
path: /instance_groups/-
value:
azs: [z1]
lifecycle: errand
instances: 1
jobs:
- name: migrate_mysql_to_credhub
properties:
app_name: nfs-broker
domain: ((system_domain))
cf:
admin_password: ((cf_admin_password))
admin_user: admin... |
Correct typo in build script | kind: pipeline
type: kubernetes
name: default
steps:
- name: build site
image: jojomi/hugo
commands:
- hugo
- name: build server
image: golang
commands:
- CG0_ENABLED=0 go build -s server -ldflags '-s' src/main.go
| kind: pipeline
type: kubernetes
name: default
steps:
- name: build site
image: jojomi/hugo
commands:
- hugo
- name: build server
image: golang
commands:
- CG0_ENABLED=0 go build -o server -ldflags '-s' src/main.go
|
Rename service to match bundle name | services:
hexanet_statsd_swarrot.processor.statsd:
class: Hexanet\SwarrotStatsdBundle\Configurator\StatsdProcessorConfigurator
arguments:
- "@event_dispatcher"
| services:
hexanet_swarrot_statsd.processor.statsd:
class: Hexanet\SwarrotStatsdBundle\Configurator\StatsdProcessorConfigurator
arguments:
- "@event_dispatcher"
|
Remove resourceNames from the role | apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: collaborator
namespace: visibility
rules:
- apiGroups:
- apps
- extensions
resources:
- daemonsets
resourceNames:
- logging-agent
verbs:
- create
- update
- patch
- delete
---
kind: RoleBinding
apiVersion: rbac.authorization.k... | apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: collaborator
namespace: visibility
rules:
- apiGroups:
- apps
- extensions
resources:
- daemonsets
verbs:
- create
- update
- patch
- delete
---
kind: RoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: collabor... |
Fix Travis caching for Yarn | sudo: false
language: node_js
node_js:
- stable
env:
- BROWSER=ChromeCi
- BROWSER=Firefox
cache:
directories:
- node_modules
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
after_success:
- node_modules/.bin/codecov
branches:
only:
... | sudo: false
language: node_js
node_js:
- stable
env:
- BROWSER=ChromeCi
- BROWSER=Firefox
cache: yarn
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
after_success:
- node_modules/.bin/codecov
branches:
only:
- master
- next
|
Include mysql username and password | version: '2'
services:
app:
depends_on:
- db
image: redisforlosers/lpl_wiki
volumes:
- ./:/app
ports:
- 10000:10000
container_name: wiki
phpmyadmin:
depends_on:
- db
image: phpmyadmin/phpmyadmin
ports:
- 8888:80
container_name: phpmyadmin-wiki
db:
image: mysql:5.7
volumes:
-... | version: '2'
services:
app:
depends_on:
- db
image: redisforlosers/lpl_wiki
volumes:
- ./:/app
ports:
- 10000:10000
container_name: wiki
phpmyadmin:
depends_on:
- db
image: phpmyadmin/phpmyadmin
ports:
- 8888:80
container_name: phpmyadmin-wiki
db:
image: mysql:5.7
volumes:
-... |
Change apache volumes to read only. | version: '2'
networks:
front:
back:
services:
mt:
build: .
volumes:
- /etc/localtime:/etc/localtime:ro
- ./site:/site
- ./pid:/pid
- ./movabletype:/mt
networks:
- front
- back
ports:
- 3000:3000
apache:
build: docker/apache
volumes:
- /e... | version: '2'
networks:
front:
back:
services:
mt:
build: .
volumes:
- /etc/localtime:/etc/localtime:ro
- ./site:/site
- ./pid:/pid
- ./movabletype:/mt
networks:
- front
- back
ports:
- 3000:3000
apache:
build: docker/apache
volumes:
- /e... |
Add sh in shell script. | language: python
python:
- '2.7'
- '3.5'
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y nodejs npm
install:
- npm install -g eclint
- pip install -r requirements.txt
script:
- flake8
- eclint check */*.py
- "sudo ./.travis/run_test.sh"
| language: python
python:
- '2.7'
- '3.5'
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y nodejs npm
install:
- npm install -g eclint
- pip install -r requirements.txt
script:
- flake8
- eclint check */*.py
- "sudo sh ./.travis/run_test.sh"
|
Clean up and Add note | # travis file
# https://docs.travis-ci.com/user/customizing-the-build
language: node_js
node_js:
- 7.7.3
env:
- CXX=g++-4.8 NODE_ENV=production
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- graphicsmagick
cache:
directories:
- node_modules
services:
... | # travis file
# https://docs.travis-ci.com/user/customizing-the-build
language: node_js
node_js:
- 7.7.3
env:
- CXX=g++-4.8 NODE_ENV=production
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- graphicsmagick
cache:
directories:
- node_modules
services:
... |
Update dotfile links for arch | ---
- defaults:
link:
create: true
force: true
glob: true
relink: true
- link:
~/.ssh/config: ssh/main
~/.bash_aliases: sh/.bash_aliases
~/.bashrc: sh/.bashrc
# ~/.zshrc: sh/.zshrc
~/.vimrc: vim/.vimrc
~/.config/Code/User/settings.json: code/settings.json
~/.devi... | ---
- defaults:
link:
create: true
force: true
glob: true
relink: true
- link:
~/.config/git/ignore: git/gitignore
~/.ssh/config: ssh/main
~/.bash_aliases: sh/.bash_aliases
~/.bashrc: sh/.bashrc
~/.zshrc: sh/.zshrc
~/.zsh_custom/themes/bleblanc.zsh-theme: sh/bleblanc... |
Update Kinoko to 2.0.3 (45) | AntiFeatures:
- NonFreeNet
Categories:
- Graphics
- Reading
License: MIT
SourceCode: https://github.com/gsioteam/kinoko
IssueTracker: https://github.com/gsioteam/kinoko/issues
AutoName: Kinoko
Summary: Awesome manga reader
RepoType: git
Repo: https://github.com/gsioteam/kinoko.git
Builds:
- versionName: 2.0.... | AntiFeatures:
- NonFreeNet
Categories:
- Graphics
- Reading
License: MIT
SourceCode: https://github.com/gsioteam/kinoko
IssueTracker: https://github.com/gsioteam/kinoko/issues
AutoName: Kinoko
Summary: Awesome manga reader
RepoType: git
Repo: https://github.com/gsioteam/kinoko.git
Builds:
- versionName: 2.0.... |
Update from Hackage at 2019-09-21T16:33:53Z | homepage: https://github.com/peti/hackage-db#readme
changelog-type: ''
hash: f3289e03dfe266dce9bf8c2134275b96dc1165812d981440c904079f3f2ed201
test-bench-deps: {}
maintainer: Peter Simons <simons@cryp.to>
synopsis: Access cabal-install's Hackage database via Data.Map
changelog: ''
basic-deps:
exceptions: -any
bytest... | homepage: https://github.com/peti/hackage-db#readme
changelog-type: ''
hash: 1e22e4c3fa415c5f3f32be20730e1350af1d6804ffd400476373e2da912a7dc0
test-bench-deps: {}
maintainer: Peter Simons <simons@cryp.to>
synopsis: Access cabal-install's Hackage database via Data.Map
changelog: ''
basic-deps:
exceptions: -any
bytest... |
Add owner for files Add cleans up at the end Inverts backup and DB roles | ---
##
## Install base configuration for all servers
##
- name: Install the minimum Ansible + Linux configuration
hosts: all
remote_user: root # It's important here
roles:
- base
- terminal
##
## Install webserver configuration
##
- name: Install the base config for serving content
hosts: front-se... | ---
##
## Install base configuration for all servers
##
- name: Install the minimum Ansible + Linux configuration
hosts: all
remote_user: root # It's important here
roles:
- base
- terminal
##
## Install webserver configuration
##
- name: Install the base config for serving content
hosts: front-se... |
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
- type: directory
path: _portfolio
label: Portfolio
create: all
match: "**/*"
upload_dir: assets
public_path: "/assets"
front_mat... | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: directory
path: _pages
label: _Pages
create: all
match: "**/*"
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
- type: directory
path: _portfolio
label: Portfolio
... |
Make sure we install QtPy on RTD | name: glueviz
dependencies:
- pyqt
- numpy
- matplotlib
- pandas
- astropy
- dill
- h5py
- scipy
- scikit-image
- ipython
- ipykernel
- qtconsole
- traitlets
- pygments
- pyzmq
- mock
- pytest
- python>=3
| name: glueviz
channels:
- conda-forge
dependencies:
- qtpy
- pyqt
- numpy
- matplotlib
- pandas
- astropy
- dill
- h5py
- scipy
- scikit-image
- ipython
- ipykernel
- qtconsole
- traitlets
- pygments
- pyzmq
- mock
- pytest
- python>=3
|
Update CV of Mastercom Workbook to 4.0 (400) | AntiFeatures:
- NonFreeNet
Categories:
- Science & Education
- Internet
License: GPL-3.0-or-later
AuthorName: Stypox
AuthorEmail: stypox@pm.me
SourceCode: https://github.com/Stypox/mastercom-workbook
IssueTracker: https://github.com/Stypox/mastercom-workbook/issues
Changelog: https://github.com/Stypox/mastercom-w... | AntiFeatures:
- NonFreeNet
Categories:
- Science & Education
- Internet
License: GPL-3.0-or-later
AuthorName: Stypox
AuthorEmail: stypox@pm.me
SourceCode: https://github.com/Stypox/mastercom-workbook
IssueTracker: https://github.com/Stypox/mastercom-workbook/issues
Changelog: https://github.com/Stypox/mastercom-w... |
Stop and uninstall apache2 if present | ---
- name: Allow traffic on the reverse proxy port
ufw: rule=allow port={{ reverse_proxy_port }}
- include: directory_structure.yml
- include: ssh.yml
- include: replication.yml
when: replicator
- include: deploy.yml
when: replicator
- include: restart.yml
| ---
- name: Allow traffic on the reverse proxy port
ufw: rule=allow port={{ reverse_proxy_port }}
- name: Stop Apache
service: name=apache2 state=stopped
- name: Uninstall Apache if present
apt: name=apache2 state=absent
- include: directory_structure.yml
- include: ssh.yml
- include: replication.yml
when: r... |
Create app.son-log and set its ownership to ec2-user | ---
- name: start filebeat
shell: systemctl start filebeat
sudo: true
- name: setsebook command
shell: setsebool -P httpd_can_network_connect=1
sudo: true
- name: kill current app process if needed
shell: pkill supervisord
sudo: true
ignore_errors: yes
- name: start application
shell: supervisord -c /da... | ---
- name: start filebeat
shell: systemctl start filebeat
sudo: true
- name: setsebook command
shell: setsebool -P httpd_can_network_connect=1
sudo: true
- name: create app log if it doesn't exist
shell: touch /data-act/app.json-log
ignore_errors: yes
- name: set owner of app log to ec2-user
shell: chown... |
Install Pygments before checking README syntax for publish jobs | - name: Install docutils for the README check
# NOTE(dhellmann): We install this unconstrained because we expect
# setuptools to expect the most recent version anyway. We use a
# virtualenv to avoid conflicts with system packages due to pip10
# and later.
pip:
name: docutils
virtualenv: "{{ check_pyth... | - name: Install docutils for the README check
# NOTE(dhellmann): We install this unconstrained because we expect
# setuptools to expect the most recent version anyway. We use a
# virtualenv to avoid conflicts with system packages due to pip10
# and later.
pip:
name: docutils
virtualenv: "{{ check_pyth... |
Move coverage reporting to master only | machine:
php:
version: 7.1.6
dependencies:
pre:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install -n
- go get github.com/aktau/github-release
- wget -O box.phar https://github.com/box-project/box2/releases/download/2.7.5/box-2.7.5.phar
test:
post:
- php vendor/... | machine:
php:
version: 7.1.6
dependencies:
pre:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install -n
- go get github.com/aktau/github-release
- wget -O box.phar https://github.com/box-project/box2/releases/download/2.7.5/box-2.7.5.phar
test:
post:
- php vendor/... |
Add python >= 3.6 version restriction | {% set name = "removestar" %}
{% set version = "1.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: ece95f52afa7fb293767b39bba2fc1f0ffa12a711dea7676128f2b6f31668af9
build:
noarch: python... | {% set name = "removestar" %}
{% set version = "1.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: ece95f52afa7fb293767b39bba2fc1f0ffa12a711dea7676128f2b6f31668af9
build:
noarch: python... |
Fix typographical error in nf_conntrack metrics | ---
# 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 ... |
Update GitHub action for Xcode 12.3 | name: Vienna
on: pull_request
jobs:
test:
name: Test
runs-on: macos-11.0
steps:
- name: Use Xcode 12
run: sudo xcode-select -s "/Applications/Xcode_12.2.app"
- name: Install SwiftLint
run: brew install swiftlint
- name: Set up Git repository
uses: actions/checkout@v1
-... | name: Vienna
on: pull_request
jobs:
test:
name: Test
runs-on: macos-11.0
steps:
- name: Use Xcode 12.3
run: sudo xcode-select -s "/Applications/Xcode_12.3.app"
- name: Set up Git repository
uses: actions/checkout@v2
- name: Build Xcode project
run: xcodebuild -project Vien... |
Fix reference to varnish version in jinja variable | ---
- name: Ensure Varnish dependencies are installed.
yum: name={{ item }} state=present
with_items:
- gcc
- libedit-devel
- initscripts
- name: Add Varnish repository.
yum:
name: https://repo.varnish-cache.org/redhat/varnish-{{ varnish_version }}.el6.rpm
state: present
when: ansible_distr... | ---
- name: Ensure Varnish dependencies are installed.
yum: name={{ item }} state=present
with_items:
- gcc
- libedit-devel
- initscripts
- name: Add Varnish repository.
yum:
name: "https://repo.varnish-cache.org/redhat/varnish-{{ varnish_version }}.el6.rpm"
state: present
when: ansible_dis... |
Adjust tf base -> kiva_pod_base | frame_id: /base
initial_orientation: [0.001, -0.034, 0.039, 0.999]
initial_x: 1.453
initial_y: 0.042
initial_z: 0.406
object_a: 0.2
object_b: 0.2
object_g: 0.0
object_r: 0.0
object_type: cube
object_x: 0.865
object_y: 0.865
object_z: 1.0
publish_tf: true
tf_frame: kiva_pod_base
| frame_id: /base
initial_orientation: [0.002, -0.034, 0.014, 0.999]
initial_x: 1.409
initial_y: 0.022
initial_z: 0.403
object_a: 0.2
object_b: 0.2
object_g: 0.0
object_r: 0.0
object_type: cube
object_x: 0.865
object_y: 0.865
object_z: 1.0
publish_tf: true
tf_frame: kiva_pod_base
|
Enable expeditor agents for master and test release branch | # Documentation available at https://expeditor-docs.es.chef.io/
github:
# The file where the MAJOR.MINOR.PATCH version is kept. The version in this file
# is bumped automatically via the `built_in:bump_version` merge_action.
version_file: "VERSION"
# The file where our CHANGELOG is kept. This file is updated a... | # Documentation available at https://expeditor-docs.es.chef.io/
github:
# The file where the MAJOR.MINOR.PATCH version is kept. The version in this file
# is bumped automatically via the `built_in:bump_version` merge_action.
version_file: "VERSION"
# The file where our CHANGELOG is kept. This file is updated a... |
Add environment variables to Keter configuration | exec: ../zoomhub
host: 104.130.230.137
| exec: ../zoomhub
host: 104.130.230.137
env:
DATA_PATH: '/mnt/datavolume/zoomhub/data'
HASHIDS_SALT: 'CHANGE-ME-IN-PRODUCTION'
|
Fix typo in prod build config | builders:
versions:
import: 'tool/write_versions.dart'
build_to: cache
builder_factories: ["writeVersions"]
build_extensions: {"$package$": ["lib/versions.json"]}
targets:
prepare:
builders:
"|versions":
enabled: true
auto_apply_builders: false
sources:
- "$package$"... | builders:
versions:
import: 'tool/write_versions.dart'
build_to: cache
builder_factories: ["writeVersions"]
build_extensions: {"$package$": ["lib/versions.json"]}
targets:
prepare:
builders:
"|versions":
enabled: true
auto_apply_builders: false
sources:
- "$package$"... |
Update from Hackage at 2017-01-27T18:32:17Z | homepage: https://github.com/m-arnold/graflog#readme
changelog-type: ''
hash: e01c9df88ec2359dedef1024441e860f13d6548fcc8e100b89c1c3901fb3deb8
test-bench-deps:
base: -any
hspec: -any
text: -any
graflog: -any
containers: -any
test-fixture: -any
mtl: -any
aeson: -any
maintainer: marnold@cj.com
synopsis: M... | homepage: https://github.com/m-arnold/graflog#readme
changelog-type: ''
hash: 004bc101d49df5b8df3b09a850154a660d365f5af05146ba52e2c300ee3a6f2b
test-bench-deps:
base: -any
hspec: -any
text: -any
graflog: -any
containers: -any
test-fixture: -any
mtl: -any
aeson: -any
maintainer: marnold@cj.com
synopsis: M... |
Update from Hackage at 2017-09-22T01:37:51Z | homepage: https://github.com/AndrewRademacher/mallard
changelog-type: ''
hash: 2ed554294585f05a4b3540a8e9d1983160861ca176fd9736a92357e99eccf66b
test-bench-deps: {}
maintainer: andrewrademacher@icloud.com
synopsis: Database migration and testing as a library.
changelog: ''
basic-deps:
exceptions: -any
hasql: -any
... | homepage: https://github.com/AndrewRademacher/mallard
changelog-type: ''
hash: a77e778341c87072741ebcac7f0680c83171916b9cfe59caf26eff7247ca17a5
test-bench-deps: {}
maintainer: andrewrademacher@icloud.com
synopsis: Database migration and testing as a library.
changelog: ''
basic-deps:
exceptions: -any
hasql: -any
... |
Update from Hackage at 2016-02-02T03:21:18+0000 | homepage: https://github.com/PolyglotSymposium/mappy
changelog-type: ''
hash: 55e35e4d408ebcd6e6cd5972a3d284dd377e889902bfbcfc0600491be9d0e571
test-bench-deps:
base: -any
mappy: -any
hspec: -any
parsec: -any
containers: -any
QuickCheck: -any
maintainer: mjg.py3@gmail.com
synopsis: A functional programming l... | homepage: https://github.com/PolyglotSymposium/mappy
changelog-type: ''
hash: 2fbad40a00c75bb83730506aef01e936bb024ab35358c35d2c05060399ad625c
test-bench-deps:
base: -any
mappy: -any
hspec: -any
parsec: -any
containers: -any
QuickCheck: -any
maintainer: mjg.py3@gmail.com
synopsis: A functional programming l... |
Update from Hackage at 2015-12-03T07:16:09+0000 | homepage: https://github.com/jekor/haskell-sscgi
changelog-type: ''
hash: 3dd54f5b9a9ee0d119de246055165e756e5f483772ee8e7e7125fda92612a27b
test-bench-deps: {}
maintainer: jekor@jekor.com
synopsis: Simple SCGI Library
changelog: ''
basic-deps:
bytestring: -any
case-insensitive: -any
base: ! '>=4 && <6'
container... | homepage: https://github.com/jekor/haskell-sscgi
changelog-type: ''
hash: 0da59e7e0410e05d92a191680dc907e4aff072356320663232020461568b91e9
test-bench-deps: {}
maintainer: jekor@jekor.com
synopsis: Simple SCGI Library
changelog: ''
basic-deps:
bytestring: -any
case-insensitive: -any
base: ! '>=4 && <6'
container... |
Remove PHP 5.5 from Travis matrix | language: php
php:
- 7.1
- 7.0
- 5.6
- 5.5
- hhvm
- nightly
os:
- linux
# osx/php testing not supported by travis
before_script:
- mysql -e 'create database travis_app_test;'
install:
- composer install
- npm install
#JS tools installed by npm required for validation only, not for app execution or dev... | language: php
php:
- 7.1
- 7.0
- 5.6
- hhvm
- nightly
os:
- linux
# osx/php testing not supported by travis
before_script:
- mysql -e 'create database travis_app_test;'
install:
- composer install
- npm install
#JS tools installed by npm required for validation only, not for app execution or development... |
Fix deprecation after upgrading Jekyll to version 3.7.3 | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the se... | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the se... |
Check CAPI2 core files for valid YAML syntax | # Configuration for pre-commit (https://pre-commit.com/), a tool to run
# formatters, linters, and other productivity tools before a commit.
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.5.0
hooks:
- id: check-ast
- id: check-builtin-literals
- id: check-case-conflict
- id: check-doc... | # Configuration for pre-commit (https://pre-commit.com/), a tool to run
# formatters, linters, and other productivity tools before a commit.
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.5.0
hooks:
- id: check-ast
- id: check-builtin-literals
- id: check-case-conflict
- id: check-doc... |
Update package.json when update dependencies | # c.f. https://dependabot.com/docs/config-file/
version: 1
update_configs:
- package_manager: "javascript"
directory: "/"
update_schedule: "daily"
default_assignees:
- sue445
allowed_updates:
- match:
# Disable. Only top-level dependencies (and security patches for subdepend... | # c.f. https://dependabot.com/docs/config-file/
version: 1
update_configs:
- package_manager: "javascript"
directory: "/"
update_schedule: "daily"
default_assignees:
- sue445
allowed_updates:
- match:
# Disable. Only top-level dependencies (and security patches for subdepend... |
Add assignee to Dependabot config | version: 2
updates:
- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "weekly"
| version: 2
updates:
- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "weekly"
assignees:
- "jgarber623"
|
Package changes: Ruby 2.1, GCC, doxygen | passengers:
- dotfile
- homebrew
- vundle
- rvm
- git_repo
- npm
directory_name: "tilde"
rubies:
- ruby-1.9.3
- ruby-2.0.0
- ruby-2.1.0
brews:
- the_silver_searcher
- arangodb
- chicken
- clisp
- gcc48
- git
- graphviz
- haskell-platform
- htop-osx
- hub
- imagemagick
- leiningen
- libxml2
- jq
- macvim:
- --override... | passengers:
- dotfile
- homebrew
- vundle
- rvm
- git_repo
- npm
directory_name: "tilde"
rubies:
- ruby-1.9.3
- ruby-2.0.0
- ruby-2.1.0
- ruby-2.1.1
brews:
- the_silver_searcher
- arangodb
- chicken
- clisp
- doxygen
- git
- graphviz
- haskell-platform
- htop-osx
- hub
- imagemagick
- leiningen
- libxml2
- jq
- macvim:... |
Upgrade Cassandra version from 3.0.8 -> 3.0.9 | dsc_version: 3.0.8-1
cassandra_version: 3.0.8
cassandra_tools_version: 3.0.8
dse_version: 4.7.0-1
tablesnap_version: debian/0.7.1-3
| dsc_version: 3.0.9-1
cassandra_version: 3.0.9
cassandra_tools_version: 3.0.9
dse_version: 4.7.0-1
tablesnap_version: debian/0.7.1-3
|
Update Warner's Bio per his request | name: "Warner Moore"
twitter: "warnermoore"
bio: "Warner Moore is a technology and information security leader who is passionate about technology innovation and entrepreneurship having worked with technology focused businesses nearly his entire career. When not scaling technology and teams at CoverMyMeds, he contribute... | name: "Warner Moore"
twitter: "warnermoore"
bio: "Warner Moore is a technology and information security leader who is passionate about innovation and entrepreneurship having worked with tech-focused businesses nearly his entire career. When not scaling platforms and teams at CoverMyMeds, he contributes back to the comm... |
Change the port from the default one | commandListener:
zookeeper: 127.0.0.1:9092
eventStore:
zookeeper: 127.0.0.1:9092
eventPublisher:
zookeeper: 127.0.0.1:9092
| server:
applicationConnectors:
- type: http
port: 9902
adminConnectors:
- type: http
port: 9802
commandListener:
zookeeper: 127.0.0.1:9092
eventStore:
zookeeper: 127.0.0.1:9092
eventPublisher:
zookeeper: 127.0.0.1:9092
|
Use the integrated repo infra jobs for testing | ---
# Copyright 2017, 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 2017, 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 ... |
Move pytest install later in CI steps | version: 2
jobs:
build:
docker:
- image: python:3.6
steps:
- checkout
- run: pip install pytest==5.4.3
- run: python3 setup.py sdist
- run: pip3 install dist/webp-*.tar.gz
- run: pytest tests/
| version: 2
jobs:
build:
docker:
- image: python:3.6
steps:
- checkout
- run: python3 setup.py sdist
- run: pip3 install dist/webp-*.tar.gz
- run: pip install pytest==5.4.3
- run: pytest tests/
|
Add retention limit and working-directory | # Perform a Gradle `build` which includes `assemble`, `check`, `test` of the projects.
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to ru... | # Perform a Gradle `build` which includes `assemble`, `check`, `test` of the projects.
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to ru... |
Add translated links for the footer links | privacy:
title: footer_link_privacy_policy
url: '/it/privacy-policy/'
legal:
title: footer_link_legal_notes
url: '/it/note-legali/'
| privacy:
it:
title: footer_link_privacy_policy
url: '/it/privacy-policy/'
en:
title: footer_link_privacy_policy
url: '/en/privacy-policy/'
legal:
it:
title: footer_link_legal_notes
url: '/it/note-legali/'
en:
title: footer_link_legal_notes
url: '/en/note-legali/'
|
Fix the reno format of image-clients-as-library | ---
features:
- Define image service clients as libraries
The following image service clients are defined as library interface,
so the other projects can use these modules as stable libraries
without any maintenance changes.
**image_members_client**
**namespaces_client**
**resource_types... | ---
features:
- |
Define image service clients as libraries
The following image service clients are defined as library interface,
so the other projects can use these modules as stable libraries
without any maintenance changes.
* image_members_client
* namespaces_client
* resource_ty... |
Add a deploy step to push robo.phar up to GitHub after a tag build passes. | language: php
branches:
# Only test the master branch and SemVer tags.
only:
- master
- /^[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+.*$/
php:
- 7.0
- 5.6
- 5.5
sudo: false
cache:
directories:
- vendor
- $HOME/.composer/cache
before_script:
- 'if [ "$TRAVIS_PHP_VERSION" = "5.5" ]; then r... | language: php
branches:
# Only test the master branch and SemVer tags.
only:
- master
- /^[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+.*$/
php:
- 7.0
- 5.6
- 5.5
sudo: false
cache:
directories:
- vendor
- $HOME/.composer/cache
before_script:
- 'if [ "$TRAVIS_PHP_VERSION" = "5.5" ]; then r... |
Test against Node.js 0.9, but allow failures | language: node_js
node_js:
- 0.8
| language: node_js
node_js:
- 0.8
- 0.9
matrix:
allow_failures:
- node_js: 0.9 |
Use global to specify jruby env | language: ruby
rvm:
- ruby-head
- 2.2.2
- 2.1.6
- 2.0.0
- rbx-2
- 1.9.3
sudo: false
cache: bundler
env:
matrix:
- "TEMPLATE=simple MODE=compiled"
- "TEMPLATE=simple MODE=parsing"
- "TEMPLATE=simple MODE=tilt"
- "TEMPLATE=escaped MODE=compiled ESCAPE=1"
matrix:
include:
- rvm: jruby-h... | language: ruby
rvm:
- ruby-head
- 2.2.2
- 2.1.6
- 2.0.0
- rbx-2
- 1.9.3
sudo: false
cache: bundler
env:
global: "JRUBY_OPTS=-Xcext.enabled=true"
matrix:
- "TEMPLATE=simple MODE=compiled"
- "TEMPLATE=simple MODE=parsing"
- "TEMPLATE=simple MODE=tilt"
- "TEMPLATE=escaped MODE=compiled ESCA... |
Change Travis to build against node 0.10 and 0.12. Drop 0.8. | language: java
jdk:
- oraclejdk8
- oraclejdk7
env:
- NODE_VERSION="0.11"
- NODE_VERSION="0.10"
- NODE_VERSION="0.8"
before_install:
- nvm install $NODE_VERSION
before_script:
- npm install
script:
- npm test
notifications:
email:
on_success: "never"
| language: java
jdk:
- oraclejdk8
- oraclejdk7
env:
- NODE_VERSION="0.12"
- NODE_VERSION="0.10"
before_install:
- nvm install $NODE_VERSION
before_script:
- npm install
script:
- npm test
notifications:
email:
on_success: "never"
|
Use a more recent nodejs version | language: node_js
install:
- npm install
before_script:
- bower install
script:
- grunt
| language: node_js
node_js: 6
install:
- npm install
before_script:
- bower install
script:
- grunt
|
Remove iojs-v2 from list of node environments for testing | sudo: false
language: node_js
matrix:
include:
- node_js: iojs-v1
- node_js: iojs-v2
- node_js: "0.10"
- node_js: "0.12"
env: COVERALLS=1
after_success:
- if [ "x$COVERALLS" = "x1" ]; then npm run coveralls; fi
| sudo: false
language: node_js
matrix:
include:
- node_js: iojs-v1
- node_js: "0.10"
- node_js: "0.12"
env: COVERALLS=1
after_success:
- if [ "x$COVERALLS" = "x1" ]; then npm run coveralls; fi
|
Rename matrix key to jobs in Travis config | os: linux
dist: xenial
language: python
python:
- 3.8
- 3.7
- 3.6
- 3.5
- 3.4
- nightly
- pypy3
env: TOXENV=py,coveralls
matrix:
include:
- python: "3.8"
env: TOXENV=stylecheck,docs-html
- python: "2.7"
env: TOXENV=py27,coveralls
allow_failures:
- python: nightly
- python... | os: linux
dist: xenial
language: python
python:
- 3.8
- 3.7
- 3.6
- 3.5
- 3.4
- nightly
- pypy3
env: TOXENV=py,coveralls
jobs:
include:
- python: "3.8"
env: TOXENV=stylecheck,docs-html
- python: "2.7"
env: TOXENV=py27,coveralls
allow_failures:
- python: nightly
- python: ... |
Add support to ppc64le for debian build | language: minimal
services: docker
sudo: required
env:
- DOCKER_FILE=".travis/Dockerfile.fedora-rawhide"
- DOCKER_FILE=".travis/Dockerfile.debian-testing"
before_install:
# Create a docker image called "myimage".
- docker build -t myimage -f "$DOCKER_FILE" .
before_script:
# Create a docker container from ... | language: minimal
arch:
- amd64
- ppc64le
services: docker
sudo: required
env:
- DOCKER_FILE=".travis/Dockerfile.fedora-rawhide"
- DOCKER_FILE=".travis/Dockerfile.debian-testing"
jobs:
exclude:
- arch: ppc64le
env: DOCKER_FILE=".travis/Dockerfile.fedora-rawhide"
before_install:
# Create a docker ... |
Install wheels for pip, so caching becomes quicker | language: python
cache: pip
python:
- "2.7_with_system_site_packages"
- 3.4
before_install:
- sudo apt-get update -qq
- if [[ $TRAVIS_PYTHON_VERSION == *"2."* ]]; then sudo apt-get install python-numpy python-scipy; fi
- if [[ $TRAVIS_PYTHON_VERSION == *"3."* ]]; then sudo apt-get install python3-nu... | language: python
cache: pip
python:
- "2.7_with_system_site_packages"
- 3.4
before_install:
- sudo apt-get update -qq
- if [[ $TRAVIS_PYTHON_VERSION == *"2."* ]]; then sudo apt-get install python-numpy python-scipy; fi
- if [[ $TRAVIS_PYTHON_VERSION == *"3."* ]]; then sudo apt-get install python3-nu... |
Add Pod Lib Lint to Build Step to verify | language: objective-c
cache: cocoapods
podfile: Example/Podfile
before_install:
- gem install cocoapods # Since Travis is not always on latest version
osx_image: xcode7.3
script:
- java -version
- set -o pipefail && xctool -workspace Example/OCSlimProject.xcworkspace -scheme BuildTestAllTargets-iOS -sdk iphonesimulato... | language: objective-c
cache: cocoapods
podfile: Example/Podfile
before_install:
- gem install cocoapods # Since Travis is not always on latest version
osx_image: xcode7.3
script:
- set -o pipefail && java -version
- set -o pipefail && xctool -workspace Example/OCSlimProject.xcworkspace -scheme BuildTestAllTargets-iOS -... |
Add new CI API key | language: python
python:
- '2.7'
- '3.3'
- 'pypy'
env:
global:
- APIKEY=NkExMzEzRDYzQ0EyRTA5NEJCQTJDMUY1N0IwNDk4QkQ=
script: python setup.py run_tests -k $(echo $APIKEY|base64 -d)
notifications:
email:
on_success: never
on_failure: always
irc:
channels:
... | language: python
python:
- '2.7'
- '3.3'
- 'pypy'
env:
global:
- APIKEY=MTI2Njc1RDNENEJDOUU5QzVBMTBEQjJDMTdDQUNFOTI=
script: python setup.py run_tests -k $(echo $APIKEY|base64 -d)
notifications:
email:
on_success: never
on_failure: always
irc:
channels:
... |
Update Travis CI to test latest NodeJS v5.x.x | language: node_js
node_js:
- 'stable'
- '4'
- '0.12'
- '0.10'
| language: node_js
node_js:
- '5'
- '4'
- '0.12'
- '0.10'
|
Add HHVM to Travis matrix | language: php
php:
- 5.5
- 5.4
- 5.3
- 5.3.3
before_script:
- composer install --dev --prefer-source | language: php
php:
- 5.3
- 5.4
- 5.5
- hhvm
matrix:
allow_failures:
- php: hhvm
install:
- composer install --prefer-dist --dev
|
Disable phpspec run until we have a spec. | language: php
php:
- 5.5
- 5.6
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction --dev
script:
- phpspec run
- vendor/bin/phpunit -c phpunit.xml
matrix:
allow_failures:
- php: hhvm
fash_finish: true
| language: php
php:
- 5.5
- 5.6
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction --dev
script:
- vendor/bin/phpunit -c phpunit.xml
matrix:
allow_failures:
- php: hhvm
fash_finish: true
|
Fix build on Travis, harder | # Travis CI (http://travis-ci.org/) is a continuous integration service for
# open source projects. This file configures it to run unit tests for rtfblog.
language: go
go:
- 1.4
- 1.5
- tip
before_install:
- go get -v golang.org/x/tools/cmd/vet
- go get -v golang.org/x/tools/cmd/cover
- go ge... | # Travis CI (http://travis-ci.org/) is a continuous integration service for
# open source projects. This file configures it to run unit tests for rtfblog.
language: go
go:
- 1.4
- 1.5
- tip
before_install:
- go get -v golang.org/x/tools/cmd/vet
- go get -v golang.org/x/tools/cmd/cover
- go ge... |
Include PHP 7.4 into the CI pipeline | sudo: false
language: php
php:
- "7.3"
- "7.2"
- "7.1"
- "7.0"
script: ./test/run
| language: php
php:
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
script: ./test/run
|
Print all logs in case of error. | language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "3.6"
install:
- sudo apt-get update
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:... | language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "3.6"
install:
- sudo apt-get update
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.