Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Revert "Remove pytorch version spec" | {% set name = "linear_operator" %}
{% set version = "0.1.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 81adc1aea9e98f3c4f07f5608eb77b689bc61793e9beebfea82155e9237bf1be
build:
noarch:... | {% set name = "linear_operator" %}
{% set version = "0.1.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 81adc1aea9e98f3c4f07f5608eb77b689bc61793e9beebfea82155e9237bf1be
build:
noarch:... |
Set locale to UTF-8 for fastlane | version: 2
jobs:
build:
macos:
xcode: '10.0.0'
environment:
GEM_HOME: .gem
GEM_PATH: .gem
steps:
- checkout
- run: gem install fastlane --no-rdoc --no-ri --no-document
- run: echo 'export PATH=$GEM_PATH:$PATH' >> $BASH_ENV
- run: make test_macOS
- run: make test_tvOS
... | version: 2
jobs:
build:
macos:
xcode: '10.0.0'
environment:
LANG: en_US.UTF-8
LC_ALL: en_US.UTF-8
GEM_HOME: .gem
GEM_PATH: .gem
steps:
- checkout
- run: gem install fastlane --no-rdoc --no-ri --no-document
- run: echo 'export PATH=$GEM_PATH:$PATH' >> $BASH_ENV
... |
FIx reference to silverstripe/userforms in yml moduleexists | ---
Only:
moduleexists: 'userforms'
---
DynamicList:
extensions:
- 'DynamicListUDFExtension'
| ---
Only:
moduleexists: 'silverstripe/userforms'
---
DynamicList:
extensions:
- 'DynamicListUDFExtension'
|
Update circleci/node to tag 8 | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:8
# Specify service dependencies here if necessary
# CircleCI main... | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:8@sha256:257fdc7e2949a9576e1a96364e0428d461d0505167c70dcc3e6c3825ce8a6557
... |
Enable code linter in CI | name: lint_python
on: [pull_request, push]
jobs:
lint_python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install bandit black codespell flake8 isort mypy pytest pyupgrade safety tox
- run: bandit --recursive --skip B105,B110,B31... | name: lint_python
on: [pull_request, push]
jobs:
lint_python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- run: pip install bandit black codespell flake8 isort mypy pytest pyupgrade safety tox
- run: bandit --recursive --skip B105,B110,B31... |
Add group vars for Ceph | ---
telegraf_plugins:
- name: mem
- name: system
- name: cpu
options:
percpu: "true"
totalcpu: "true"
fielddrop:
- "time_*"
- name: disk
options:
mountpoints:
- "/"
- name: diskio
options:
skip_serial_number: "true"
- name: procstat
options:
... | ---
telegraf_install_version: stable
# Configuration Variables
telegraf_tags:
telegraf_agent_interval: 10s
telegraf_round_interval: "true"
telegraf_metric_batch_size: "1000"
telegraf_metric_buffer_limit: "10000"
telegraf_collection_jitter: 0s
telegraf_flush_interval: 10s
telegraf_flush_jitter: 0s
telegraf_debug: "fa... |
Update from Hackage at 2020-10-06T09:32:29Z | homepage: https://github.com/nikita-volkov/attoparsec-data
changelog-type: ''
hash: 7d9225f77efab0ddb4b9b14b7d0e745993e4735fdab81c7222eb16dfe47a1a01
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Parsers for the standard Haskell data types
changelog: ''
basic-deps:
bytestring: ! '>=... | homepage: https://github.com/nikita-volkov/attoparsec-data
changelog-type: ''
hash: 763e4d773371acf15b86547276e649e1857d5e3b72cdfdb6f8dbe91f7e3518c8
test-bench-deps: {}
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
synopsis: Parsers for the standard Haskell data types
changelog: ''
basic-deps:
bytestring: '>=0.... |
Disable tests for CentOS temporarily | name: Dockertests
on:
[push]
jobs:
dockertests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
docker-image: [centos, debian, fedora, ubuntu]
steps:
- uses: actions/checkout@v2
- name: Setup docker container
run: |
docker build -t pyfakefs -f $GITHU... | name: Dockertests
on:
[push]
jobs:
dockertests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
docker-image: [debian, fedora, ubuntu]
steps:
- uses: actions/checkout@v2
- name: Setup docker container
run: |
docker build -t pyfakefs -f $GITHUB_WORKSP... |
Install timezone support in Circle tests | machine:
ruby:
version: ruby-2.3.0
database:
post:
- bundle exec rake test:prepare
- bundle exec rake db:migrate
general:
artifacts:
- "coverage"
| machine:
ruby:
version: ruby-2.3.0
database:
post:
- bundle exec rake test:prepare
- bundle exec rake db:migrate
- mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql
general:
artifacts:
- "coverage"
|
Deploy via Heroku instead of CircleCI | machine:
environment:
CODECLIMATE_REPO_TOKEN: 40fd488627355e3e12fd14b84e18e1e7b8ee40d2271823ecd2427f02f4aad61d
deployment:
production:
branch: production
commands:
- git push git@heroku.com:capacitor-prod.git $CIRCLE_SHA1:master
- heroku run rake db:migrate --app capacitor-prod
staging:
... | machine:
environment:
CODECLIMATE_REPO_TOKEN: 40fd488627355e3e12fd14b84e18e1e7b8ee40d2271823ecd2427f02f4aad61d
|
Update TinyBit launcher to 5.0 (17) | Categories:
- System
- Theming
License: GPL-3.0-only
AuthorName: TBog
SourceCode: https://github.com/TBog/TBLauncher
IssueTracker: https://github.com/TBog/TBLauncher/issues
AutoName: TinyBit launcher
RepoType: git
Repo: https://github.com/TBog/TBLauncher
Builds:
- versionName: '4.5'
versionCode: 14
com... | Categories:
- System
- Theming
License: GPL-3.0-only
AuthorName: TBog
SourceCode: https://github.com/TBog/TBLauncher
IssueTracker: https://github.com/TBog/TBLauncher/issues
AutoName: TinyBit launcher
RepoType: git
Repo: https://github.com/TBog/TBLauncher
Builds:
- versionName: '4.5'
versionCode: 14
com... |
Fix OS distribution target for Debian repositories | ---
# Ubuntu distributions specific vars
_redis_repository_keyserver: 'keyserver.ubuntu.com'
_redis_repository_key_id: '7E3F070089DF5277'
_redis_repositories:
- repo: 'deb http://packages.dotdeb.org stable all'
- repo: 'deb-src http://packages.dotdeb.org stable all'
| ---
# Ubuntu distributions specific vars
_redis_repository_keyserver: 'keyserver.ubuntu.com'
_redis_repository_key_id: '7E3F070089DF5277'
_redis_repositories:
- repo: >
deb http://packages.dotdeb.org
{{ ansible_distribution_release | lower }} all
- repo: >
deb-src http://packages.dotdeb.org
... |
Remove "write a program" from gigasecond exercise | ---
blurb: "Write a program that calculates the moment when someone has lived for 10^9 seconds."
source: "Chapter 9 in Chris Pine's online Learn to Program tutorial."
source_url: "http://pine.fm/LearnToProgram/?Chapter=09"
| ---
blurb: "Calculate the moment when someone has lived for 10^9 seconds."
source: "Chapter 9 in Chris Pine's online Learn to Program tutorial."
source_url: "http://pine.fm/LearnToProgram/?Chapter=09"
|
Set elasticsearch heap to 1G. | - hosts: doi-service
roles:
- common
- java
- postfix
- {role: db-backup, db: postgres}
- {role: postgresql, pg_version: "9.6"}
- {role: pg_instance, extensions: ["citext", "pgcrypto"]}
- {role: ansible-elasticsearch, es_version: 5.5.3, es_templates:false, es_instance_name: 'doi-elasticse... | - hosts: doi-service
roles:
- common
- java
- postfix
- {role: db-backup, db: postgres}
- {role: postgresql, pg_version: "9.6"}
- {role: pg_instance, extensions: ["citext", "pgcrypto"]}
- {role: ansible-elasticsearch, es_version: 5.5.3, es_templates:false, es_instance_name: 'doi-elasticse... |
Update setup-node and use caching | name: Tests
on:
push:
schedule:
# Every sunday at midnight
- cron: '0 0 * * 0'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm ci
- run: npm run lint
integration:
runs-on: ubuntu-latest
strategy:
matrix:
eslint: ["4.7",... | name: Tests
on:
push:
schedule:
# Every sunday at midnight
- cron: '0 0 * * 0'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm ci
- run: npm run lint
integration:
runs-on: ubuntu-latest
strategy:
matrix:
eslint: ["4.7",... |
Use container-based infrastructure, and turn on caching | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
services:
- redis
before_script:
- psql -U postgres -c 'CREATE DATABASE dummy_test'
- bundle exec rake db:migrate RAILS_ENV=test
| sudo: false
language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
services:
- redis
before_script:
- psql -U postgres -c 'CREATE DATABASE dummy_test'
- bundle exec rake db:migrate RAILS_ENV=test
|
Remove coverage, undo last commit | # http://conda.pydata.org/docs/travis.html
language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "3.4"
- "3.5"
- "3.6"
install:
- sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- wget https://... | # http://conda.pydata.org/docs/travis.html
language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "3.4"
- "3.5"
- "3.6"
install:
- sudo apt-get update
# We do this conditionally because it saves us some downloading if the
# version is the same.
- wget https://... |
Migrate to container-based Travis infrastructure | language: cpp
compiler:
- gcc
- clang
branches:
only:
- master
install:
- sudo apt-get update -qq
- sudo apt-get install -qq libqt4-dev
script:
- qmake
- make
- cd tests
- for i in ./tst_*; do ./$i; done
| language: cpp
compiler:
- gcc
- clang
branches:
only:
- master
sudo: false
addons:
apt:
packages:
- libqt4-dev
script:
- qmake && make
- cd tests
- for i in ./tst_*; do ./$i; done
|
Remove Python 3.2 from the testing matrix. | language: python
cache:
directories:
- $HOME/.cache/pip
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
env:
- DJANGO=1.7.7
- DJANGO=1.8.1
before_install:
- sudo apt-get install libgeoip-dev
install:
- pip install -q Django==$DJANGO
- pip install -e .[testing]
- start_cms_project.py testing testing_dir/ --... | language: python
cache:
directories:
- $HOME/.cache/pip
python:
- "2.7"
- "3.3"
- "3.4"
env:
- DJANGO=1.7.7
- DJANGO=1.8.1
before_install:
- sudo apt-get install libgeoip-dev
install:
- pip install -q Django==$DJANGO
- pip install -e .[testing]
- start_cms_project.py testing testing_dir/ --without-... |
Use "update-alternatives" to set GCC 5. | language: c++
sudo: true
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- make
- g++-5
before_install:
# Use GCC 5
- export CXX="g++-5" CC="gcc-5"
install:
# Install Boost 1.61
- cd ..
- wget https://sourceforge.net/projects/boos... | language: c++
sudo: true
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- make
- g++-5
before_install:
# Use GCC 5
- sudo update-alternatives --remove-all gcc
- sudo update-alternatives --remove-all g++
- sudo update-alternatives --in... |
Fix build error: excluded non supported ruby version from Puppet 3.0.0 and Puppet 3.1.0 | branches:
only:
- master
language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- ruby-head
script: "bundle exec rake spec SPEC_OPTS='--format documentation'"
env:
matrix:
- PUPPET_GEM_VERSION="~> 2.7.0"
- PUPPET_GEM_VERSION="~> 3.0.0"
- PUPPET_GEM_VERSION="~> 3.1.0"
- PUPPET_GEM_VERSION="~> 3.3.0"... | branches:
only:
- master
language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- ruby-head
script: "bundle exec rake spec SPEC_OPTS='--format documentation'"
env:
matrix:
- PUPPET_GEM_VERSION="~> 2.7.0"
- PUPPET_GEM_VERSION="~> 3.0.0"
- PUPPET_GEM_VERSION="~> 3.1.0"
- PUPPET_GEM_VERSION="~> 3.3.0"... |
Set ruby version to 2.1.1 when building on Travis-CI. | language: ruby
rvm:
- "ruby-2.1.0"
script:
- "bundle exec brakeman -z --skip-files config/initializers/secret_token.rb"
- "bundle exec rake db:migrate"
- "bundle exec rake spec:travisci"
env:
global:
- RAILS_ENV=ci
matrix:
- TEST_SUITE=unit
- TEST_SUITE=acceptance_1
- TEST_SUITE=acceptance_... | language: ruby
rvm:
- "ruby-2.1.1"
script:
- "bundle exec brakeman -z --skip-files config/initializers/secret_token.rb"
- "bundle exec rake db:migrate"
- "bundle exec rake spec:travisci"
env:
global:
- RAILS_ENV=ci
matrix:
- TEST_SUITE=unit
- TEST_SUITE=acceptance_1
- TEST_SUITE=acceptance_... |
Update config.yml with new e-mail | language: node_js
node_js:
- "node"
before_install:
- npm install -g npm@latest
notifications:
email:
recipients:
- kalyons@mit.edu
on_success: never
on_failure: always
| language: node_js
node_js:
- "node"
before_install:
- npm install -g npm@latest
notifications:
email:
recipients:
- kevinandrewlyons@gmail.com
on_success: never
on_failure: always
|
Revert "minor: remove bundler args" | language: ruby
rvm:
- 1.8.7
- 1.9.3
- ruby-head
- jruby-head
script: bundle exec rake test:ruby
notifications:
email: false
#TODO: flowdock: [api token]
services:
- mongodb
branches:
only:
- master
- release
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
rvm:
- 1.8.7
- 1.9.3
- ruby-head
- jruby-head
bundler_args: --without deployment
script: bundle exec rake test:ruby
notifications:
email: false
#TODO: flowdock: [api token]
services:
- mongodb
branches:
only:
- master
- release
matrix:
allow_failures:
- rvm: ruby-head... |
Use Ruby 2.2.4 on Travis CI | language: ruby
rvm:
- 2.2.1
script: bundle exec middleman build --verbose | language: ruby
rvm:
- 2.2.4
script: bundle exec middleman build --verbose
|
Update Go versions in Travis config | language: go
go:
- 1.3
- 1.4
- tip
services:
- rabbitmq
before_script: ./bin/ci/before_build.sh
script: make
matrix:
allow_failures:
- go: tip
notifications:
email:
- michael@rabbitmq.com
| language: go
go:
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- tip
services:
- rabbitmq
before_script: ./bin/ci/before_build.sh
script: make
matrix:
allow_failures:
- go: tip
notifications:
email:
- michael@rabbitmq.com
|
Disable Node.js v0.8 integration tests | language: node_js
node_js:
- "0.8"
- "0.10"
notifications:
irc:
channels:
- "chat.freenode.net#montage"
on_success: false
template:
- "%{author} broke the %{repository} tests on %{branch}: %{build_url}"
| language: node_js
node_js:
- "0.10"
notifications:
irc:
channels:
- "chat.freenode.net#montage"
on_success: false
template:
- "%{author} broke the %{repository} tests on %{branch}: %{build_url}"
|
Disable PHPCS check in Travis for the moment | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
global:
- PLUGIN_NAME=FakeSeeder
- REQUIRE=""
matrix:
- DB=mysql CAKE_VERSION=2.7
matrix:
fast_finish: true
allow_failures:
- php: 7.0
- php: hhvm
include:
- php: 5.4
env:
- COVERALLS=1 DB=mysql ... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
global:
- PLUGIN_NAME=FakeSeeder
- REQUIRE=""
matrix:
- DB=mysql CAKE_VERSION=2.7
matrix:
fast_finish: true
allow_failures:
- php: 7.0
- php: hhvm
include:
- php: 5.4
env:
- COVERALLS=1 DB=mysql ... |
Remove Go 1.5 from the Travis continuous build. | language: go
go_import_path: go.universe.tf/netboot
go:
- 1.5
- 1.6
- 1.7
- tip
os:
- linux
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y atftp
install:
- go get github.com/Masterminds/glide
- go get github.com/golang/lint/golint
before_script:
script:
- glide install
- GO15V... | language: go
go_import_path: go.universe.tf/netboot
go:
- 1.6
- 1.7
- tip
os:
- linux
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y atftp
install:
- go get github.com/Masterminds/glide
- go get github.com/golang/lint/golint
before_script:
script:
- glide install
- GO15VENDOREXP... |
Test on trusty (Ubuntu 14.04) with openjdk8 | language: scala
scala:
- 2.12.1
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.ivy2
- $HOME/.sbt/launchers
script:
- ./sbt test
# Trick to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
| language: scala
scala:
- 2.12.1
dist: trusty
jdk:
- openjdk8
cache:
directories:
- $HOME/.ivy2
- $HOME/.sbt/launchers
script:
- ./sbt test
# Trick to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
|
Upgrade go to 1.6 and try enabling tip | language: go
go:
- 1.5
# Temporarily disable until Travis CI is fast again
#- tip
cache:
directories:
- ~/.platformio
- ~/.shellcheck
addons:
apt:
packages:
- libi2c-dev
# shellcheck is not in Travis' Ubuntu
#- shellcheck
install:
- pip install... | language: go
go:
- 1.6
- tip
cache:
directories:
- ~/.platformio
- ~/.shellcheck
addons:
apt:
packages:
- libi2c-dev
# shellcheck is not in Travis' Ubuntu
#- shellcheck
install:
- pip install --user --upgrade platformio
- platformio lib install... |
Enable fast_finish on Travis CI | language: ruby
rvm:
- 2.2.3
- 2.3.1
- ruby-head
branches:
only:
- "master"
- "/^release-/"
before_install: gem install bundler
matrix:
include:
- rvm: jruby-9.0.5.0
env: DISABLE_NOKOGIRI=1
- rvm: jruby-9.0.5.0
env: DISABLE_NOKOGIRI=0
allow_failures:
- rvm: jruby-9.0.5.0
... | language: ruby
rvm:
- 2.2.3
- 2.3.1
- ruby-head
branches:
only:
- "master"
- "/^release-/"
before_install: gem install bundler
matrix:
fast_finish: true
include:
- rvm: jruby-9.0.5.0
env: DISABLE_NOKOGIRI=1
- rvm: jruby-9.0.5.0
env: DISABLE_NOKOGIRI=0
allow_failures:
- rvm:... |
Add Windows build config to Travis | language: go
sudo: false
dist: trusty
env:
HUGO_BUILD_TAGS="extended"
git:
depth: false
go:
- 1.11
- tip
os:
- linux
- osx
matrix:
allow_failures:
- go: tip
fast_finish: true
install:
- mkdir -p $HOME/src
- mv $HOME/gopath/src/github.com/gohugoio/hugo $HOME/src
- export TRAVIS_BUILD_DIR=$HOME/... | language: go
sudo: false
dist: trusty
env:
global:
- HUGO_BUILD_TAGS="extended"
git:
depth: false
go:
- 1.11
- tip
os:
- linux
- osx
- windows
matrix:
allow_failures:
- go: tip
fast_finish: true
exclude:
- os: windows
go: tip
install:
- mkdir -p $HOME/src
- mv $HOME/gopath/src/githu... |
Install the appropriate packages for 0mq 3 | before_install:
- sudo apt-add-repository ppa:chris-lea/zeromq -y
- sudo apt-get update
- sudo apt-get install zeromq3 -y
language: ruby
rvm:
- 2.0.0
cache: bundler
| before_install:
- sudo apt-add-repository ppa:chris-lea/zeromq -y
- sudo apt-get update
- sudo apt-get install libzmq3 libzmq3-dev -y
language: ruby
rvm:
- 2.0.0
cache: bundler
|
Test agains builds on Travis | language: node_js
node_js:
- "node"
env:
- BROWSERS=PhantomJS
- BROWSERS=jsdom
- BROWSERS=Firefox
- BROWSERS=Chrome
- BROWSERS=Safari
- BROWSERS=Edge18
- BROWSERS=Edge17
- BROWSERS=Edge16
- BROWSERS=Edge15
- BROWSERS=Edge14
- BROWSERS=Edge13
- BROWSERS=IE11
- BROWSERS=IE10
- BROWSERS=IE9
... | language: node_js
node_js:
- "node"
env:
- BROWSERS=PhantomJS
- BROWSERS=jsdom
- BROWSERS=Firefox
- BROWSERS=Chrome
- BROWSERS=Safari
- BROWSERS=Edge18
- BROWSERS=Edge17
- BROWSERS=Edge16
- BROWSERS=Edge15
- BROWSERS=Edge14
- BROWSERS=Edge13
- BROWSERS=IE11
- BROWSERS=IE10
- BROWSERS=IE9
... |
Build with Node.js 10 on Travis CI. | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
|
Install pulseaudio... maybe it works? | language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
before_install:
- "sudo apt-get update -qq"
- "sudo apt-get install -qq python-numpy python-scipy python-nose python-matplotlib ipython python-pyaudio libasound2 libasound2-plugins libasound-dev alsa-base"
- "sudo ldconfig"
... | language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
before_install:
- "sudo apt-get update -qq"
- "sudo apt-get install -qq python-numpy python-scipy python-nose python-matplotlib ipython python-pyaudio libasound2 libasound2-plugins libasound-dev pulseaudio alsa-base"
- "sudo ldc... |
Stop testing on Node.js 6 | sudo: false
language: node_js
cache:
directories:
- ~/.npm
notifications:
email: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- graphviz
- plotutils
- imagemagick
- librsvg2-bin
- build-essential
- g++-4.8
env:
- CXX=g++-4.8
node_js:
- '... | sudo: false
language: node_js
cache:
directories:
- ~/.npm
notifications:
email: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- graphviz
- plotutils
- imagemagick
- librsvg2-bin
- build-essential
- g++-4.8
env:
- CXX=g++-4.8
node_js:
- '... |
Add PHP7.3 and nightly build to Travis CI configuration | sudo: false
language: php
php:
- 5.6
- 7.0
- 7.1
script:
# Syntax check all php files and fail for any error text in STDERR
- '! find . -type f -name "*.php" -exec php -d error_reporting=32767 -l {} \; 2>&1 >&- | grep "^"'
| sudo: false
language: php
php:
- 5.6
- 7.0
- 7.3
- nightly
matrix:
allow_failures:
- php: nightly
script:
# Syntax check all php files and fail for any error text in STDERR
- '! find . -type f -name "*.php" -exec php -d error_reporting=32767 -l {} \; 2>&1 >&- | grep "^"'
|
Add ruby 2.3 to the build matrix | language: ruby
sudo: false
cache: bundler
rvm:
- 2.0
- 2.1
- 2.2
- rbx-2
- jruby
matrix:
allow_failures:
- rvm: rbx-2
- rvm: jruby
before_install: bundle update --quiet
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.0
- 2.1
- 2.2
- 2.3.0
- rbx-2
- jruby
matrix:
allow_failures:
- rvm: rbx-2
- rvm: jruby
before_install: bundle update --quiet
|
Update Travis config in accordance with new bin/setup logic | language: ruby
dist: xenial
cache: bundler
rvm:
- 2.6
env:
- GNUPGHOME=/tmp/fauna_fake_gpg_home RAILS_ENV=test
script:
- RAILS_ENV=test bundle exec rake --trace spec
before_script:
- psql -c 'create database fauna_development;' -U postgres
- psql -c 'create database fauna_test;' -U postgres
- cp config/data... | language: ruby
dist: xenial
cache: bundler
rvm:
- 2.6
env:
- GNUPGHOME=/tmp/fauna_fake_gpg_home RAILS_ENV=test
script:
- RAILS_ENV=test bundle exec rake --trace spec
before_script:
- psql -c 'create database fauna_development;' -U postgres
- psql -c 'create database fauna_test;' -U postgres
- cp config/data... |
Install bower on Travis CI | language: node_js
node_js:
- "0.10"
before_install:
- npm install -g grunt-cli
| language: node_js
node_js:
- "0.10"
before_install:
- npm install -g bower grunt-cli
|
Update Travis to use 1.7 | sudo: true
language: go
go:
- 1.5.3
addons:
apt:
packages:
- fuse
script:
- make
notifications:
email: jesse.szwedko@gmail.com
| sudo: true
language: go
go:
- 1.7
addons:
apt:
packages:
- fuse
script:
- make
notifications:
email: jesse.szwedko@gmail.com
|
Use Java8 for Codacy code coverage publishing | language: java
before_install:
- sudo apt-get install jq
- wget -O ~/codacy-coverage-reporter-assembly-latest.jar $(curl https://api.github.com/repos/codacy/codacy-coverage-reporter/releases/latest | jq -r .assets[0].browser_download_url)
jdk:
- openjdk7
- oraclejdk8
after_success:
- mvn jacoco:report cover... | language: java
before_install:
- sudo apt-get install jq
- wget -O ~/codacy-coverage-reporter-assembly-latest.jar $(curl https://api.github.com/repos/codacy/codacy-coverage-reporter/releases/latest | jq -r .assets[0].browser_download_url)
jdk:
- openjdk7
- oraclejdk8
after_success:
- mvn jacoco:report cover... |
Test against latest Node version | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
matrix:
fast_finish: true
script: npm test --coverage
after_script: codeclimate < coverage/lcov.info
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
- 'nodejs'
matrix:
fast_finish: true
script: npm test --coverage
after_script: codeclimate < coverage/lcov.info
|
Add Python 3.5 and 3.6 to Travis. | language: python
python:
- "pypy"
- 2.6
- 2.7
- 3.3
- 3.4
matrix:
include:
- python: "3.2"
install:
- pip install jsonschema==2.3.0
script:
- python setup.py test
install:
- pip install coveralls
script:
- coverage run --source=jsonmerge setup.py test
after_success:
- c... | language: python
python:
- "pypy"
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
matrix:
include:
- python: "3.2"
install:
- pip install jsonschema==2.3.0
script:
- python setup.py test
install:
- pip install coveralls
script:
- coverage run --source=jsonmerge setup.py test
afte... |
Include Registrar & Designer defaults in OAuth2 role | - name: Configure OAuth2 clients
hosts: all
become: True
gather_facts: True
vars_files:
- "roles/common_vars/defaults/main.yml"
- "roles/edxapp/defaults/main.yml"
- "roles/insights/defaults/main.yml"
- "roles/ecommerce/defaults/main.yml"
- "roles/credentials/defaults/main.yml"
- "roles/d... | - name: Configure OAuth2 clients
hosts: all
become: True
gather_facts: True
vars_files:
- "roles/common_vars/defaults/main.yml"
- "roles/edxapp/defaults/main.yml"
- "roles/insights/defaults/main.yml"
- "roles/ecommerce/defaults/main.yml"
- "roles/credentials/defaults/main.yml"
- "roles/d... |
Add git to circle image | version: 2
jobs:
build:
working_directory: /PySyft
docker:
- image: docker:latest
steps:
- checkout
- setup_remote_docker
- run:
name: Build application Docker image
command: |
docker build -t pysyft .
- run:
name: Run tests
... | version: 2
jobs:
build:
working_directory: /PySyft
docker:
- image: docker:latest
steps:
# Ensure your image has git, otherwise the checkout step will fail
- run: apt-get -qq update; apt-get -y install git
- checkout
- setup_remote_docker
- run:
name: Build ap... |
Remove unauthorized npm update command | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:7.10
# Specify service dependencies here if necessary
# Circ... | # Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:7.10
# Specify service dependencies here if necessary
# Circ... |
Edit config.yml for initial site. | ########################### EDIT YOUR SETTINGS HERE
# Site settings
title: Brume # give your site a title
email: you@example.com # put your email address in here; optional
# edit your site description; keep it brief
description: > # this just means to ignore newlines until "baseurl:"
Brume is simple. It's easy to use... | ########################### EDIT YOUR SETTINGS HERE
# Site settings
title: Noah McMullen's Cool Blog for Adults # give your site a title
email: noahmcmlln@gmail.com # put your email address in here; optional
# edit your site description; keep it brief
description: > # this just means to ignore newlines until "baseurl:"... |
Update Timer +X to 1.2.2 (6) | Categories:
- Time
License: Apache-2.0
AuthorName: Humberto Fraga
AuthorEmail: humberto.fraga+fdroid512@gmail.com
SourceCode: https://gitlab.com/humbertofraga/timerx
IssueTracker: https://gitlab.com/humbertofraga/timerx/issues
AutoName: Timer +X
RepoType: git
Repo: https://gitlab.com/humbertofraga/timerx.git
Build... | Categories:
- Time
License: Apache-2.0
AuthorName: Humberto Fraga
AuthorEmail: humberto.fraga+fdroid512@gmail.com
SourceCode: https://gitlab.com/humbertofraga/timerx
IssueTracker: https://gitlab.com/humbertofraga/timerx/issues
AutoName: Timer +X
RepoType: git
Repo: https://gitlab.com/humbertofraga/timerx.git
Build... |
Bump Nginx image to ami-1e2d7469 | ---
aws_region: eu-west-1
internal_root_domain: dmdev
user_ips:
- 0.0.0.0/0
dev_user_ips:
- 127.0.0.1/32
api:
instance_type: t2.micro
min_instance_count: 1
max_instance_count: 2
search_api:
instance_type: t2.micro
min_instance_count: 1
max_instance_count: 2
admin_frontend:
instance_type: t2.micro... | ---
aws_region: eu-west-1
internal_root_domain: dmdev
user_ips:
- 0.0.0.0/0
dev_user_ips:
- 127.0.0.1/32
api:
instance_type: t2.micro
min_instance_count: 1
max_instance_count: 2
search_api:
instance_type: t2.micro
min_instance_count: 1
max_instance_count: 2
admin_frontend:
instance_type: t2.micro... |
Update to the latest schedulers | ---
mesos_version: 0.22.0
marathon_version: 0.8.1
chronos_version: 2.3.2
zookeeper_version: 3.4.6
| ---
mesos_version: 0.22.1
marathon_version: 0.8.2
chronos_version: 2.3.4
zookeeper_version: 3.4.6
|
Use 'geerlingguy.security' on master instances | ---
dependencies:
- { role: geerlingguy.jenkins }
| ---
dependencies:
- { role: geerlingguy.security }
- { role: geerlingguy.jenkins }
|
Add site-dev and site-prod services which extend site service | version: '2'
services:
postgresql:
image: postgres:9.4
expose:
- "5432"
elasticsearch:
image: elasticsearch:1.7
expose:
- "9200"
- "9300"
redis:
image: redis:3.0
expose:
- "6379"
site:
build:
context: site
args:
MB_OAUTH_CLIENT_ID: MBOAuthC... | version: '2'
services:
postgresql:
image: postgres:9.4
expose:
- "5432"
elasticsearch:
image: elasticsearch:1.7
expose:
- "9200"
- "9300"
redis:
image: redis:3.0
expose:
- "6379"
site:
build:
context: site
args:
MB_OAUTH_CLIENT_ID: MBOAuthC... |
Exclude bin from code climate. | languages:
PHP: true
JavaScript: true
exclude_paths:
- "tests/*"
- "*/uw-brand/*" | languages:
PHP: true
JavaScript: true
exclude_paths:
- "tests/*"
- "bin/*"
- "*/uw-brand/*" |
Add run options in the CI configuration | tools:
external_code_coverage:
timeout: 2000
filter:
excluded_paths:
- 'tests'
- 'sam.php'
| tools:
external_code_coverage:
timeout: 2000
runs: 8
filter:
excluded_paths:
- 'tests'
- 'sam.php'
|
Add testweb container for use in Codeship (CI/CD) tests | db:
image: mariadb:10
environment:
MYSQL_ROOT_PASSWORD: r00tp@ss!
MYSQL_DATABASE: test
MYSQL_USER: silauth
MYSQL_PASSWORD: silauth
web:
image: silintl/ssp-base:latest
env_file:
- ./common.env
depends_on:
- db
volumes:
- ./:/data/vendor/simpl... | db:
image: mariadb:10
environment:
MYSQL_ROOT_PASSWORD: r00tp@ss!
MYSQL_DATABASE: test
MYSQL_USER: silauth
MYSQL_PASSWORD: silauth
web:
image: silintl/ssp-base:latest
env_file:
- ./common.env
depends_on:
- db
- testweb
volumes:
- ./:... |
Set SYMFONY_ENV when deploying the container | ---
- name: Create directory to keep configfile
file:
dest: "/opt/openconext/spdashboard"
state: directory
owner: root
group: root
mode: 0770
- name: Place the configfile
template:
src: parameters.yml.j2
dest: /opt/openconext/spdashboard/parameters.yml
owner: root
group: root
... | ---
- name: Create directory to keep configfile
file:
dest: "/opt/openconext/spdashboard"
state: directory
owner: root
group: root
mode: 0770
- name: Place the configfile
template:
src: parameters.yml.j2
dest: /opt/openconext/spdashboard/parameters.yml
owner: root
group: root
... |
Move the yubikey setup to the end as auth problems with ensue if a playbook fails half way | ---
- include: networking.yml
- include: nvidia.yml
- include: programs.yml
- include: i3wm.yml
- include: google_chrome.yml
- include: chromium_browser.yml
- include: virtualbox.yml
- include: git.yml
- include: ansible.yml
- include: x11.yml
- include: function_keys.yml
- include: scripts.yml
- include: sounds.yml
- ... | ---
- include: networking.yml
- include: nvidia.yml
- include: programs.yml
- include: i3wm.yml
- include: google_chrome.yml
- include: chromium_browser.yml
- include: virtualbox.yml
- include: git.yml
- include: ansible.yml
- include: x11.yml
- include: function_keys.yml
- include: scripts.yml
- include: sounds.yml
- ... |
Make the demo use the default key mykey | heat_template_version: 2013-05-23
parameters:
public_net_id:
type: string
description: uuid of a network to use for floating ip addresses
demo_net_id:
type: string
description: uuid of a subnet on the fixed network to use for creating ports
demo_subnet_id:
type: string
description: uuid... | heat_template_version: 2013-05-23
parameters:
public_net_id:
type: string
description: uuid of a network to use for floating ip addresses
demo_net_id:
type: string
description: uuid of a subnet on the fixed network to use for creating ports
demo_subnet_id:
type: string
description: uuid... |
Deploy to RubyGems on passing ruby 2.0.0. | language: ruby
before_install:
- gem update bundler
- bundle version
rvm:
- "1.9.3"
- "2.0.0"
- "2.1"
- "2.2"
- ruby-head
- jruby-19mode
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: jruby-19mode
deploy:
provider: rubygems
api_key:
secure: BQQeiJ84RINkM5Pxm7zF... | language: ruby
before_install:
- gem update bundler
- bundle version
rvm:
- "1.9.3"
- "2.0.0"
- "2.1"
- "2.2"
- ruby-head
- jruby-19mode
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: jruby-19mode
deploy:
provider: rubygems
api_key:
secure: BQQeiJ84RINkM5Pxm7zF... |
Update from Hackage at 2017-10-08T10:23:13Z | homepage: https://github.com/louispan/stm-extras#readme
changelog-type: ''
hash: 918fcc38da244702bb6366c9fdde23e60093715c89bcc65f77b6948f9092ca60
test-bench-deps: {}
maintainer: louis@pan.me
synopsis: Extra STM functions
changelog: ''
basic-deps:
stm: ! '>=2.4 && <3'
base: <6
all-versions:
- '0.1.0.2'
author: Louis... | homepage: https://github.com/louispan/stm-extras#readme
changelog-type: ''
hash: d1297db3f48eb54f2cc6322af6033de016e222583ddcdf70bace6518e649caa4
test-bench-deps: {}
maintainer: louis@pan.me
synopsis: Extra STM functions
changelog: ''
basic-deps:
stm: ! '>=2.4 && <3'
base: <6
all-versions:
- '0.1.0.2'
- '0.1.0.3'
a... |
Update from Hackage at 2019-06-07T13:14:58Z | homepage: https://github.com/lspitzner/bindynamic
changelog-type: ''
hash: 449d4e5cf87f2a97ce61e9861f36645cdc03c5cf00746f14215a1c109a9df16e
test-bench-deps: {}
maintainer: Lennart Spitzner <hexagoxel@hexagoxel.de>
synopsis: A variation of Data.Dynamic.Dynamic with a Binary instance
changelog: ''
basic-deps:
bytestrin... | homepage: https://github.com/lspitzner/bindynamic
changelog-type: ''
hash: c318379a2496ea10802a8dd036783066dedfed0732f932568ea2b41e64800257
test-bench-deps: {}
maintainer: Lennart Spitzner <hexagoxel@hexagoxel.de>
synopsis: A variation of Data.Dynamic.Dynamic with a Binary instance
changelog: ''
basic-deps:
bytestrin... |
Add python3.7 to GitHub action | name: CrackMapExec Tests & Build
on: [push]
jobs:
test:
name: CrackMapExec Tests on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
... | name: CrackMapExec Tests & Build
on: [push]
jobs:
test:
name: CrackMapExec Tests on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
... |
Improve searchability of docker config | version: '2'
services:
c2s-frontend:
image: "nhsuk/connecting-to-services:${DOCKER_IMAGE_TAG}"
environment:
NODE_ENV: production
HOTJAR_ANALYTICS_TRACKING_ID: ${HOTJAR_ANALYTICS_TRACKING_ID}
GOOGLE_ANALYTICS_TRACKING_ID: ${GOOGLE_ID}
WEBTRENDS_ANALYTICS_TRACKING_ID: ${WEBTRENDS_ANALY... | version: '2'
services:
c2s-frontend:
image: "nhsuk/connecting-to-services:${DOCKER_IMAGE_TAG}"
environment:
API_BASE_URL: 'http://nearby-services-api.nearby-services-api:3001'
GOOGLE_ANALYTICS_TRACKING_ID: ${GOOGLE_ID}
HOTJAR_ANALYTICS_TRACKING_ID: ${HOTJAR_ANALYTICS_TRACKING_ID}
NOD... |
Use release target branch in changelog compare URL | name: "Update Changelog"
on:
release:
types: [released]
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.ref_name }}
- name: Update Changelog
uses: stefanzweifel/changelog-updater-action@v1... | name: "Update Changelog"
on:
release:
types: [released]
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.ref_name }}
- name: Update Changelog
uses: stefanzweifel/changelog-updater-action@v1... |
Add shake 0.18.3 to extra deps | # For more information, see: http://docs.haskellstack.org/en/stable/yaml_configuration.html
# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
resolver: lts-13.21
extra-deps:
# We need a newer happy (see #16825)
- git: https://github.com/simonmar/happy.git
comm... | # For more information, see: http://docs.haskellstack.org/en/stable/yaml_configuration.html
# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
resolver: lts-13.21
extra-deps:
# We need a newer happy (see #16825)
- git: https://github.com/simonmar/happy.git
comm... |
Install vim on the virtual | - hosts: all
name: APT
tasks:
- name: Refresh APT repo
# Only run "update_cache=yes" if the last one is more than 3600 seconds ago
apt: update_cache=yes cache_valid_time=3600
sudo: yes | - hosts: all
name: APT
tasks:
- name: Refresh APT repo
# Only run "update_cache=yes" if the last one is more than 3600 seconds ago
apt: update_cache=yes cache_valid_time=3600
sudo: yes
- name: Install VIM
apt: pkg={{ item }} state=installed update_cache=true install_recommends=yes... |
Update from Hackage at 2017-06-09T05:37:56Z | homepage: https://github.com/swift-nav/loup
changelog-type: ''
hash: 85173a22e5228cc4808dc3b8df0ad34ea8aaf6b02979735f62e750233c32f0eb
test-bench-deps: {}
maintainer: Mark Fine <dev@swiftnav.com>
synopsis: Amazon Simple Workflow Service Wrapper for Work Pools.
changelog: ''
basic-deps:
amazonka: -any
optparse-generi... | homepage: https://github.com/swift-nav/loup
changelog-type: ''
hash: 844e7756441466d6c72996359c07326a416e79f994bc325b5859e1df3fcba008
test-bench-deps: {}
maintainer: Mark Fine <dev@swiftnav.com>
synopsis: Amazon Simple Workflow Service Wrapper for Work Pools.
changelog: ''
basic-deps:
amazonka: -any
bytestring: -an... |
Fix installing Girder Python package | ---
- name: Install build dependencies
apt:
name: "{{ item }}"
sudo: yes
with_items:
- git
# - build-essential
# - python-dev
- python-tk
- tcl8.6-dev
- tk8.6-dev
- libffi-dev
- libssl-dev
- name: Download
git:
repo: "https://github.com/girder/girder.git"
dest: "{{ gi... | ---
- name: Install build dependencies
apt:
name: "{{ item }}"
sudo: yes
with_items:
- git
# - build-essential
# - python-dev
- python-tk
- tcl8.6-dev
- tk8.6-dev
- libffi-dev
- libssl-dev
- name: Download
git:
repo: "https://github.com/girder/girder.git"
dest: "{{ gi... |
Make usre mongodb is running. | ---
# sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
- name: Add MongoDB apt key
apt_key: id=7F0CEB10
url=hkp://keyserver.ubuntu.com:80
tags:
- install
- mongodb
- name: Add MongoDB repository
apt_repository: repo='deb http://downloads-distro.mongodb.org/repo/ub... | ---
# sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
- name: Add MongoDB apt key
apt_key: id=7F0CEB10
url=hkp://keyserver.ubuntu.com:80
tags:
- install
- mongodb
- name: Add MongoDB repository
apt_repository: repo='deb http://downloads-distro.mongodb.org/repo/ub... |
Add Slack channel for Ukrainian localization | channels:
- name: kubernetes-docs-ar
- name: kubernetes-docs-de
- name: kubernetes-docs-es
- name: kubernetes-docs-fr
- name: kubernetes-docs-hi
- name: kubernetes-docs-id
- name: kubernetes-docs-it
- name: kubernetes-docs-ja
- name: kubernetes-docs-ko
- name: kubernetes-docs-pt
- name: kubernetes... | channels:
- name: kubernetes-docs-ar
- name: kubernetes-docs-de
- name: kubernetes-docs-es
- name: kubernetes-docs-fr
- name: kubernetes-docs-hi
- name: kubernetes-docs-id
- name: kubernetes-docs-it
- name: kubernetes-docs-ja
- name: kubernetes-docs-ko
- name: kubernetes-docs-pt
- name: kubernetes... |
Replace npm with yarn at CircleCI | machine:
node:
version: 6.1.0
test:
override:
- npm run ci
- if [[ -e junitresults.xml ]]; then cp junitresults.xml $CIRCLE_TEST_REPORTS/test-results.xml; fi
post:
- npm run semantic-release || true
| machine:
node:
version: 6.1.0
environment:
YARN_VERSION: 0.18.1
PATH: "${PATH}:${HOME}/.yarn/bin:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
dependencies:
pre:
- |
if [[ ! -e ~/.yarn/bin/yarn || $(yarn --version) != "${YARN_VERSION}" ]]; then
echo "Download and install Yar... |
Fix enabling user systemd unit files | ---
- name: enable bluetooth
systemd:
name: bluetooth.service
enabled: yes
state: started
- name: restart pulseaudio as user
systemd:
name: pulseaudio.service
scope: user
state: restarted
become: yes
become_user: "{{ user.name }}"
environment:
XDG_RUNTIME_DIR: "/run/user/{{ user.u... | ---
- name: enable bluetooth
systemd:
name: bluetooth.service
enabled: yes
state: started
- name: restart pulseaudio as user
systemd:
name: pulseaudio.service
scope: user
state: restarted
become: yes
become_user: "{{ user.name }}"
environment:
XDG_RUNTIME_DIR: "/run/user/{{ user.u... |
Add Ruby 3.0 to CI workflow | ---
name: CI
on:
push:
branches:
- master
paths-ignore:
- "bin/**"
- "*.md"
pull_request:
branches:
- master
paths-ignore:
- "bin/**"
- "*.md"
jobs:
tests:
name: Ruby ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
... | ---
name: CI
on:
push:
branches:
- master
paths-ignore:
- "bin/**"
- "*.md"
pull_request:
branches:
- master
paths-ignore:
- "bin/**"
- "*.md"
jobs:
tests:
name: Ruby ${{ matrix.ruby }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
... |
Update QuickTiles to 1.3 (13) | Categories:
- Development
- Multimedia
- System
License: GPL-3.0-or-later
AuthorName: Asdoi
AuthorEmail: asdoi@t-online.de
SourceCode: https://gitlab.com/asdoi/quick-tiles
IssueTracker: https://gitlab.com/asdoi/quick-tiles/issues
Changelog: https://gitlab.com/asdoi/quick-tiles/-/releases
AutoName: QuickTiles
Re... | Categories:
- Development
- Multimedia
- System
License: GPL-3.0-or-later
AuthorName: Asdoi
AuthorEmail: asdoi@t-online.de
SourceCode: https://gitlab.com/asdoi/quick-tiles
IssueTracker: https://gitlab.com/asdoi/quick-tiles/issues
Changelog: https://gitlab.com/asdoi/quick-tiles/-/releases
AutoName: QuickTiles
Re... |
Remove clippy checks for now | on: push
name: Continuous integration
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
services:
postgres:
image: postgres:11.6
env:
POSTGRES_PASSWORD:
ports:
- 5432:5432
options: --healt... | on: push
name: Continuous integration
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
services:
postgres:
image: postgres:11.6
env:
POSTGRES_PASSWORD:
ports:
- 5432:5432
options: --healt... |
Use github run_id as coveralls job id | name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 12.x
- 14.x
- 16.x
react-version:
- ^16.8.0
- ^17.0.0
steps:
- uses: actions/checkout@v2
- uses: browser-actions/... | name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 12.x
- 14.x
- 16.x
react-version:
- ^16.8.0
- ^17.0.0
steps:
- uses: actions/checkout@v2
- uses: browser-actions/... |
Remove Python 3.4 from Travis config (might as well end things with Travis on a green light!). | language: python
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
cache: pip
before_cache: rm -f $HOME/.cache/pip/log/debug.log
install: pip install .[test] codecov
script: pytest
after_success: codecov
| language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
cache: pip
before_cache: rm -f $HOME/.cache/pip/log/debug.log
install: pip install .[test] codecov
script: pytest
after_success: codecov
|
Add tests to another versions of php | language: php
php:
- '7.2'
install:
- composer self-update
- composer install
script: composer test
| language: php
php:
- '7.2'
- '7.1'
install:
- composer self-update
- composer install
script: composer test
|
Enable fast_finish and allow failures for tip in TravisCI | language: go
go:
- 1.9
- tip
env:
- DEP_VERSION="0.3.2"
notifications:
email: false
before_install:
- curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep
- chmod +x $GOPATH/bin/dep
install:
- dep ensure
script:
- go vet ./...
- go test -v... | language: go
go:
- 1.9
- tip
env:
- DEP_VERSION="0.3.2"
matrix:
allow_failures:
- go: tip
fast_finish: true
notifications:
email: false
before_install:
- curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep
- chmod +x $GOPATH/bin/dep
ins... |
Add Node.js 0.10 to Travis-CI | language: node_js
# test on two node.js versions: 0.6 and 0.8
node_js:
- 0.6
- 0.8
| language: node_js
# test on two node.js versions: 0.6, 0.8 and 0.10
node_js:
- 0.6
- 0.8
- 0.10
|
Make sure Chrome is there on CI | language: java
jdk:
- oraclejdk8
env:
- NODE_VERSION=7.2.0
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
install:
- nvm install $NODE_VERSION
- npm install
script:
- nvm use $NODE_VERSION
- npm test
cache:
directories:
- node_mod... | sudo: required
dist: trusty
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
language: java
jdk:
- oraclejdk8
env:
- NODE_VERSION=7.2.0
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3
install:
- nvm install $NODE_VERSION
- npm instal... |
Test Python 3.* at Travis | sudo: false
branches:
only:
- master
language: python
python:
- 2.6
- 2.7
install:
- python setup.py -q install
- pip install --use-mirrors simplejson coverage
script: python build.py analyse
notifications:
email: false
irc:
channels:
- "irc.freenode.org#aspen"
on_success: change
on... | sudo: false
branches:
only:
- master
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
install:
- python setup.py -q install
- pip install --use-mirrors simplejson coverage
script: python build.py analyse
notifications:
email: false
irc:
channels:
- "irc.freenode.org#aspen"
o... |
Remove remaining redundant RuboCop config | inherit_gem:
rubocop-govuk:
- config/default.yml
- config/rails.yml
inherit_mode:
merge:
- Exclude
# This app does not use ActiveRecord
Rails/DynamicFindBy:
Whitelist:
- find_by_key
- find_by_id
| inherit_gem:
rubocop-govuk:
- config/default.yml
- config/rails.yml
inherit_mode:
merge:
- Exclude
|
Update plugin descriptor for new resource locations | plugins:
- loader: java_plain
id: "${project.rootProject.name.toLowerCase()}"
name: "${project.rootProject.name}"
version: "${project.version}"
main-class: ca.stellardrift.permissionsex.sponge.PermissionsExPlugin
description: "${project.description}"
links:
homepage: "${project.opinionat... | plugins:
- loader: java_plain
id: "${project.rootProject.name.toLowerCase()}"
name: "${project.rootProject.name}"
version: "${project.version}"
main-class: ca.stellardrift.permissionsex.sponge.PermissionsExPlugin
description: "${project.description}"
links:
homepage: "${project.indra.scm... |
Disable autodeploy of worksapce branch | machine:
node:
version: 7.10.1
dependencies:
pre:
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
deployment:
production:
branch: master
tag: /v[0-9]+(\.[0-9]+)*/
commands:
- npm run deploy
- npm publish || true
- node utils/grafana.js
workspace:
branch... | machine:
node:
version: 7.10.1
dependencies:
pre:
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
deployment:
production:
branch: master
tag: /v[0-9]+(\.[0-9]+)*/
commands:
- npm run deploy
- npm publish || true
- nodejs utils/grafana.js
|
Add git username for circleci | version: 2
jobs:
build:
working_directory: ~/circleci-geogson
docker:
- image: circleci/openjdk:8-jdk-browsers
steps:
- checkout
- restore_cache:
key: circleci-geogson-{{ checksum "pom.xml" }}
- run: mvn package
- save_cache:
paths:
- ~/... | version: 2
jobs:
build:
working_directory: ~/circleci-geogson
docker:
- image: circleci/openjdk:8-jdk-browsers
steps:
- checkout
- restore_cache:
key: circleci-geogson-{{ checksum "pom.xml" }}
- run: mvn package
- save_cache:
paths:
- ~/... |
Update CV of Torchlight to 1.3 (4) | Categories:
- System
License: GPL-3.0-only
WebSite: https://www.secuso.informatik.tu-darmstadt.de/en/secuso-home/
SourceCode: https://github.com/SecUSo/privacy-friendly-torchlight
IssueTracker: https://github.com/SecUSo/privacy-friendly-torchlight/issues
AutoName: Torchlight
Description: |-
Simple application to... | Categories:
- System
License: GPL-3.0-only
WebSite: https://www.secuso.informatik.tu-darmstadt.de/en/secuso-home/
SourceCode: https://github.com/SecUSo/privacy-friendly-torchlight
IssueTracker: https://github.com/SecUSo/privacy-friendly-torchlight/issues
AutoName: Torchlight
Description: |-
Simple application to... |
Set license to LGPL-3.0-or-later for SPDX compatibility | {% set name = "zen3geo" %}
{% set version = "0.3.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/zen3geo-{{ version }}.tar.gz
sha256: 09e84306809d03899155510f75dff83023e301c95bb0835b7bf5c34e58c72720
build:
noarch: python
s... | {% set name = "zen3geo" %}
{% set version = "0.3.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/zen3geo-{{ version }}.tar.gz
sha256: 09e84306809d03899155510f75dff83023e301c95bb0835b7bf5c34e58c72720
build:
noarch: python
s... |
Install lxml from GitHub instead of apt hack | language: python
os:
- linux
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
- nightly
env:
global:
- VENV_ARGS="--system-site-packages"
install:
- pip install -U pip setuptools
- pip install .
- pip install PyYAML
- pip install coverage
- pip install coveralls
script:
- coverage run --source=exchangelib setup.py test
af... | language: python
os:
- linux
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
- nightly
install:
- pip install -U pip setuptools
- pip install cython
- pip install git+ssh://git@github.com/lxml/lxml.git
- pip install .
- pip install PyYAML
- pip install coverage
- pip install coveralls
script:
- coverage run --source=exchangeli... |
Allow failures on PHP master | language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
- master
matrix:
allow_failures:
- php: 7.4snapshot
sudo: false
install:
- composer install
script:
- ./vendor/bin/phpunit
notifications:
email: false
| language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
- master
matrix:
allow_failures:
- php: 7.4snapshot
- php: master
sudo: false
install:
- composer install
script:
- ./vendor/bin/phpunit
notifications:
email: false
|
Enable caching and run on Xenial | rvm:
- 2.1
- 2.2
- 2.3
- 2.4
bundler_args: --jobs 7
branches:
only:
- master
before_install:
- gem install bundler
script: bundle exec rake travis:ci
notifications:
hipchat:
on_change: true
on_failure: true
on_success: false
on_pull_requests: false
rooms:
# Build Statuse... | language: ruby
cache: bundler
dist: xenial
sudo: false
rvm:
- 2.1
- 2.2
- 2.3
- 2.4
bundler_args: --jobs 7
branches:
only:
- master
before_install:
- gem install bundler
script: bundle exec rake travis:ci
notifications:
hipchat:
on_change: true
on_failure: true
on_success: false
... |
Revert to Go 1.6 to see if that fixes Travis | language: go
go:
- 1.6.1
branches:
only:
- master
install: make
script:
- make test
sudo: false
| language: go
go:
- 1.6
branches:
only:
- master
install: make
script:
- make test
sudo: false
|
Make the site's URL a variable (for easier deployment testing) | language: go
go:
- master
addons:
ssh_known_hosts: overflod.chary.us
before_install:
- openssl aes-256-cbc -K $encrypted_da0730754d12_key -iv $encrypted_da0730754d12_iv -in travis_rsa.enc -out travis_rsa -d
- chmod 600 travis_rsa
- mv travis_rsa ~/.ssh/id_rsa
install:
- ./scripts/install-hugo.sh
jobs:
... | language: go
go:
- master
addons:
ssh_known_hosts: overflod.chary.us
before_install:
- openssl aes-256-cbc -K $encrypted_da0730754d12_key -iv $encrypted_da0730754d12_iv -in travis_rsa.enc -out travis_rsa -d
- chmod 600 travis_rsa
- mv travis_rsa ~/.ssh/id_rsa
install:
- ./scripts/install-hugo.sh
jobs:
... |
Add DFE branding for DFE subdomain | ---
site: dfe_media
host: media.education.gov.uk
redirection_date: 23rd April 2013
tna_timestamp: 20130123124929
title: Department for Education
furl: www.gov.uk/dfe
homepage: https://www.gov.uk/government/organisations/department-for-education
| ---
site: dfe_media
host: media.education.gov.uk
redirection_date: 23rd April 2013
tna_timestamp: 20130123124929
title: Department for Education
furl: www.gov.uk/dfe
homepage: https://www.gov.uk/government/organisations/department-for-education
css: department-for-education
---
|
Update from Hackage at 2017-04-28T21:48:04Z | homepage: https://git.alokat.org/hpg
changelog-type: ''
hash: 5950e9c1c6a091ccf8da9547c2743534bf77bcbfabff95ef9254ed022edc88de
test-bench-deps: {}
maintainer: fritjof@alokat.org
synopsis: 'no'
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
random: -any
all-versions:
- '0.2'
- '0.3'
author: Fritjof Bornebusch
lat... | homepage: https://git.alokat.org/hpg
changelog-type: ''
hash: 80246472e24bdbd9852cd6eb239862984616e5bc4b83d453a98a2068c64e3de6
test-bench-deps: {}
maintainer: fritjof@alokat.org
synopsis: 'no'
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
random: -any
all-versions:
- '0.2'
- '0.3'
- '0.4'
author: Fritjof Borneb... |
Fix to match logo spelling and branding | title: Squirrely Girl Produce
email: squirrely.girl.produce@gmail.com
description: >
Hobby farm exploring Joel Salatin's pastured poultry techniques
with ducks and geese.
theme: minima
markdown: kramdown
kramdown:
input: GFM
hard_wrap: false
repository: sgproduce/sgproduce.github.io
collections:
ideas:
ou... | title: Squirrelly Girl Produce
email: squirrelly.girl.produce@gmail.com
description: Turning grass into eggs through portable pens on pasture
theme: minima
markdown: kramdown
kramdown:
input: GFM
hard_wrap: false
repository: sgproduce/sgproduce.github.io
collections:
ideas:
output: true
plans:
output: t... |
Update Windows C++ make-specs to new version 4.0.0 | name: Windows C++ make-specs
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Windows-mkspecs:
uses: steinwurf/windows-mkspecs-action/.github/workflows... | name: Windows C++ make-specs
on:
workflow_dispatch:
inputs:
extra_resolve_options:
description: "Extra Resolve Options"
required: false
schedule:
- cron: "0 1 * * *" # 3 AM CET
push:
pull_request:
jobs:
Windows-mkspecs:
uses: steinwurf/windows-mkspecs-action/.github/workflows... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.