Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Remove lines instead of commenting | language: ruby
cache: bundler
bundler_args: '--without production development'
#rvm:
#- 2.3.0
env: DATABASE_URL=postgres://postgres@localhost/timeoverflow_test
before_script:
- bundle exec rake db:setup
# allow elasticsearch to be ready - https://docs.travis-ci.com/user/database-setup/#ElasticSearch
- sleep 10
... | language: ruby
cache: bundler
bundler_args: '--without production development'
env: DATABASE_URL=postgres://postgres@localhost/timeoverflow_test
before_script:
- bundle exec rake db:setup
# allow elasticsearch to be ready - https://docs.travis-ci.com/user/database-setup/#ElasticSearch
- sleep 10
services:
- ela... |
Use upload and install scripts | language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "3.5"
- "3.6"
install:
# Install Anaconda
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget ... | language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "3.5"
- "3.6"
install:
- bash libs/travis-conda-scripts/install.sh
script:
- echo "No tests to run..."
deploy:
skip_cleanup: true
after_success:
- bash libs/travis-conda-scripts/upload.sh
|
Add jruby-head to the list of rubies that are allowed to fail | language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci"
rvm:
- 1.9.3
- 2.0.0
- ruby-head
- rbx-19mode
matrix:
include:
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUBY_... | language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci"
rvm:
- 1.9.3
- 2.0.0
- ruby-head
- rbx-19mode
matrix:
include:
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUBY_... |
Stop building Node 0.6 builds | language: node_js
node_js:
- stable
- "0.11"
- "0.10"
- "0.8"
- "0.6"
- iojs
- iojs-v1.0.4
before_install:
npm install -g npm@'>=1.4.3'
notifications:
email: false
| language: node_js
node_js:
- stable
- "0.11"
- "0.10"
- "0.8"
- iojs
- iojs-v1.0.4
before_install:
npm install -g npm@'>=1.4.3'
notifications:
email: false
|
Remove puppet 2.7.0 from CI | ---
language: ruby
bundler_args: --without development
before_install: rm Gemfile.lock || true
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.0
script: bundle exec rake test
env:
- PUPPET_VERSION="~> 2.7.0"
- PUPPET_VERSION="~> 3.2.0"
- PUPPET_VERSION="~> 3.3.0"
- PUPPET_VERSION="~> 3.4.0"
- PUPPET_VERSION="~> 3.... | ---
language: ruby
bundler_args: --without development
before_install: rm Gemfile.lock || true
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.0
script: bundle exec rake test
env:
- PUPPET_VERSION="~> 3.2.0"
- PUPPET_VERSION="~> 3.3.0"
- PUPPET_VERSION="~> 3.4.0"
- PUPPET_VERSION="~> 3.5.0"
- PUPPET_VERSION="~> 3.... |
Speed up ci with cache. | language: cpp
sudo: required
services:
- docker
dist: trusty
os: linux
env:
- JOB=build
- JOB=lint
- JOB=test
install: skip
before_script:
- if [ ! -d "${HOME}/.cache" ]; then mkdir ${HOME}/.cache; fi
- cp scripts/AGREEMENT.txt ${HOME}/.cache/.apollo_agreement.txt
- ./apollo_docker.sh clean
... | language: cpp
sudo: required
services:
- docker
dist: trusty
os: linux
env:
- JOB=build
- JOB=lint
- JOB=test
cache:
directories:
- $HOME/.cache/bazel
install: skip
before_script:
- if [ ! -d "${HOME}/.cache" ]; then mkdir ${HOME}/.cache; fi
- cp scripts/AGREEMENT.txt ${HOME}/.cache/.apollo_... |
Add PHP7 to build matrix | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: hhvm
- php: hhvm-nightly
before_script:
- composer install
script:
- vendor/bin/atoum --test-ext
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- nightly
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: nightly
- php: hhvm
- php: hhvm-nightly
before_script:
- composer install
script:
- vendor/bin/atoum --test-ext
|
Change build tools version for CI | language: android
env:
global:
- ADB_INSTALL_TIMEOUT=8 # 8 minutes (2 minutes by default)
android:
components:
- tools
- platform-tools
- build-tools-25.0.3
- android-24
- android-22
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
... | language: android
env:
global:
- ADB_INSTALL_TIMEOUT=8 # 8 minutes (2 minutes by default)
android:
components:
- tools
- platform-tools
- build-tools-27.0.3
- android-24
- android-22
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
... |
Fix for CONNECTORS-1684 Merged revision(s) 1895842-1895847 from manifoldcf/branches/CONNECTORS-1684: | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... |
Add Ruby 2.5.0 to the build matrix | language: ruby
bundler_args: --without development --path vendor/bundle
before_install:
- gem install bundler
- gem update bundler
- bundle install
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
- ruby-head
- jruby-head
- rbx-3
- jruby-9.1.2.0
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
-... | language: ruby
bundler_args: --without development --path vendor/bundle
before_install:
- gem update --system
- gem install bundler
- gem update bundler
- bundle install
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
- 2.5.0
- ruby-head
- jruby-head
- rbx-3
- jruby-9.1.2.0
matrix:
allow_failures:
- rvm: rub... |
Update Travis CI Configuration Go Version | language: go
script: true
sudo: false
go:
- 1.4
- tip
before_install:
- go get github.com/golang/lint/golint
script:
- $HOME/gopath/bin/golint ./...
- go test -v ./...
| language: go
script: true
sudo: false
go:
- 1.6
- tip
before_install:
- go get github.com/golang/lint/golint
script:
- $HOME/gopath/bin/golint ./...
- go test -v ./...
|
Remove unsupported PHP version from Travis | language: php
php:
- 7.1
- 7.0
- 5.6
- 5.5
- 5.4
- nightly
matrix:
fast_finish: true
include:
- php: 5.4
env: SYMFONY_VERSION=2.7.*
- php: 5.6
env: SYMFONY_VERSION=2.7.*
- php: 5.6
env: SYMFONY_VERSION=2.8.*
- php: 5.6
... | language: php
php:
- 7.1
- 7.0
- 5.6
- nightly
matrix:
fast_finish: true
include:
- php: 5.4
env: SYMFONY_VERSION=2.7.*
- php: 5.6
env: SYMFONY_VERSION=2.7.*
- php: 5.6
env: SYMFONY_VERSION=2.8.*
- php: 5.6
env: SYMFONY_VE... |
Add zoe logging to the test coverage metrics | language: python
python:
- "3.4"
- "3.5"
install:
- pip install -r requirements.txt
before_script:
script:
- PYTHONPATH=. py.test --cov=zoe_cmd --cov=zoe_lib --cov=zoe_web --cov=zoe_master --cov=zoe_observer
| language: python
python:
- "3.4"
- "3.5"
install:
- pip install -r requirements.txt
before_script:
script:
- PYTHONPATH=. py.test --cov=zoe_cmd --cov=zoe_lib --cov=zoe_web --cov=zoe_master --cov=zoe_observer --cov=zoe_logger
|
Remove node v0.6 since it doesn't have peerDependencies for AwsSum | language: node_js
node_js:
- "0.6"
- "0.8"
- "0.10"
| language: node_js
node_js:
- "0.8"
- "0.10"
|
Upgrade the version of Xcode used by Travis CI | language: ruby
os: osx
rvm: system
before_install:
- export TRAVIS_COMMIT="$(git rev-parse --verify -q HEAD)"
- if [ -f ".git/shallow" ]; then travis_retry git fetch --unshallow; fi
- HOMEBREW_REPOSITORY="$(brew --repo)"
- sudo chown -R "$USER" "$HOMEBREW_REPOSITORY"
- git -C "$HOMEBREW_REPOSITORY" reset --h... | language: ruby
rvm: system
os: osx
osx_image: xcode10.1
before_install:
- export TRAVIS_COMMIT="$(git rev-parse --verify -q HEAD)"
- if [ -f ".git/shallow" ]; then travis_retry git fetch --unshallow; fi
- HOMEBREW_REPOSITORY="$(brew --repo)"
- sudo chown -R "$USER" "$HOMEBREW_REPOSITORY"
- git -C "$HOMEBREW... |
Fix CI build for 1.9.3 | language: ruby
bundler_args: --without debug release
rvm:
- 1.9.3
- 2.0.0
- rbx-2
- jruby-19mode
- jruby-head
- ruby-head
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
| language: ruby
bundler_args: --without debug release
before_install:
- gem install bundler
rvm:
- 1.9.3
- 2.0.0
- rbx-2
- jruby-19mode
- jruby-head
- ruby-head
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
|
Add more node verions to Travis CI | language: node_js
node_js:
- iojs-v1
- iojs-v2
- iojs-v3
- 4
- 0.12
matrix:
allow_failures:
- node_js: "0.10"
fast_finish: true
script: "npm run-script test"
after_script:
- "npm install coveralls codecov.io"
- "cat ./coverage/lcov.info | coveralls"
- "cat ./coverage/coverage.json | ./node_modul... | language: node_js
node_js:
- iojs-v1
- iojs-v2
- iojs-v3
- 6
- 5
- 4
- 0.12
matrix:
allow_failures:
- node_js: "0.10"
fast_finish: true
script: "npm run-script test"
after_script:
- "npm install coveralls codecov.io"
- "cat ./coverage/lcov.info | coveralls"
- "cat ./coverage/coverage.json | ... |
Drop Travis targets for Node 0.6 and 0.8 | language: node_js
node_js:
- 0.6
- 0.8
- 0.12
- 4
- 5
| language: node_js
node_js:
- 0.12
- 4
- 5
|
Add bin directory to path | language: python
python:
- "2.7"
install: "pip install -r requirements.txt"
script:
- git config --global user.email "Brickstertwo@users.noreply.github.com"
- git config --global user.name "Marcus Rosenow"
- nosetests
| language: python
python:
- "2.7"
install: "pip install -r requirements.txt"
script:
- git config --global user.email "Brickstertwo@users.noreply.github.com"
- git config --global user.name "Marcus Rosenow"
- export PATH="$PATH:$TRAVIS_BUILD_DIR/bin"
- nosetests
|
Make sure dependencies are up-to-date | language: php
cache:
directories:
- $HOME/.composer/cache
php:
- 7.1
- nightly
- hhvm
matrix:
allow_failures:
- php: nightly
- php: hhvm
install:
- export PATH="$PATH:$HOME/.composer/vendor/bin"
- if php -v | grep -q 'PHP 7'; then composer tools; fi
- composer globa... | language: php
cache:
directories:
- $HOME/.composer/cache
php:
- 7.1
- nightly
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: nightly
- php: hhvm
install:
- export PATH="$PATH:$HOME/.composer/vendor/bin"
- if php -v | grep -q 'PHP 7'; then composer tools; f... |
Fix before_script to work with HHVM | language: php
php:
- 5.3
- 5.4
- 5.5
- hhvm
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev
script: phpunit --coverage-clover clover
after_success:
- curl -sL https://bit.ly/artifact-uploader | php
matrix:
allow_failures:
- php: hhvm
| language: php
php:
- 5.3
- 5.4
- 5.5
- hhvm
before_script:
- wget http://getcomposer.org/composer.phar
- php composer.phar install --dev
script: phpunit --coverage-clover clover
after_success:
- curl -sL https://bit.ly/artifact-uploader | php
matrix:
allow_failures:
- php: hhvm
|
Test against stable versions explicitly | language: rust
sudo: false
rust:
- stable
- beta
- nightly
| language: rust
sudo: false
rust:
- 1.0.0
- 1.1.0
- 1.2.0
- beta
- nightly
|
Install latest bundler on Travis. | # configuration settings for http://travis-ci.org
language: ruby
rvm:
- 1.9.2
bundler_args: --without development assets
before_script:
- "bundle exec rake db:migrate ; RAILS_ENV=test rake db:migrate"
script: TRAVIS=1 bundle exec rspec spec
notifications:
email: false
branches:
only:
- master | # configuration settings for http://travis-ci.org
language: ruby
rvm:
- 1.9.2
before_install:
- gem install bundler
bundler_args: --without development assets
before_script:
- "bundle exec rake db:migrate ; RAILS_ENV=test rake db:migrate"
script: TRAVIS=1 bundle exec rspec spec
notifications:
email: fals... |
Switch back to stable ChefDK builds for testing | sudo: required
dist: trusty
# install the pre-release chef-dk. Use chef-stable-precise to install the stable release
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- ma... | sudo: required
dist: trusty
# install the pre-release chef-dk. Use chef-stable-precise to install the stable release
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- mas... |
Remove Vault 0.6.0 from build testing. | language: java
jdk:
- openjdk12
sudo: required
env:
matrix:
- VAULT_VER=0.6.0
- VAULT_VER=0.6.5
- VAULT_VER=0.7.0
- VAULT_VER=0.7.3
- VAULT_VER=0.8.0
- VAULT_VER=0.8.3
- VAULT_VER=0.9.0
- VAULT_VER=0.9.6
- VAULT_VER=0.10.4
- VAULT_VER=0.11.6
- VAULT_VER=1.0.3
- VAU... | language: java
jdk:
- openjdk12
sudo: required
env:
matrix:
- VAULT_VER=0.6.5
- VAULT_VER=0.7.0
- VAULT_VER=0.7.3
- VAULT_VER=0.8.0
- VAULT_VER=0.8.3
- VAULT_VER=0.9.0
- VAULT_VER=0.9.6
- VAULT_VER=0.10.4
- VAULT_VER=0.11.6
- VAULT_VER=1.0.3
- VAULT_VER=1.1.5
- VAU... |
Use castxml-macosx.tar.gz for macOS archive | sudo: true
language: cpp
os:
- osx
compiler:
- clang
cache:
directories:
- "$HOME/Library/Caches/Homebrew"
script:
- brew update && brew install llvm
- mkdir -p ../CastXMLSuperbuild-build && cd ../CastXMLSuperbuild-build
- brew list llvm | grep LLVMConfig.cmake
- cmake -DUSE_SYSTEM_LLVM:BOOL=ON -DLLVM_DIR=/usr/loc... | sudo: true
language: cpp
os:
- osx
compiler:
- clang
cache:
directories:
- "$HOME/Library/Caches/Homebrew"
script:
- brew update && brew install llvm
- mkdir -p ../CastXMLSuperbuild-build && cd ../CastXMLSuperbuild-build
- brew list llvm | grep LLVMConfig.cmake
- cmake -DUSE_SYSTEM_LLVM:BOOL=ON -DLLVM_DIR=/usr/loc... |
Add more different rubies to test | language: ruby
rvm:
# - "1.8.7"
- "1.9.2"
# - "1.9.3"
# - jruby-18mode # JRuby in 1.8 mode
# - jruby-19mode # JRuby in 1.9 mode
# - rbx-18mode
# - rbx-19mode
# uncomment this line if your project needs to run something other than `rake`:
script: bundle exec rspec spec | language: ruby
rvm:
- "1.8.7"
- "1.9.2"
- "1.9.3"
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
# - rbx-18mode
# - rbx-19mode
# uncomment this line if your project needs to run something other than `rake`:
script: bundle exec rspec spec
|
Add blank client id and secret env vars | language: ruby
rvm:
- 2.1.5
- 2.2.3
before_install: gem install bundler -v 1.10.6
cache: bundler
sudo: false
fast_finish: true
env:
- USER_ID=
notifications:
email:
on_success: always
on_failure: always
| language: ruby
rvm:
- 2.1.5
- 2.2.3
before_install: gem install bundler -v 1.10.6
cache: bundler
sudo: false
fast_finish: true
env:
- USER_ID=
- SYNAPSE_PAYMENTS_CLIENT_ID=
- SYNAPSE_PAYMENTS_CLIENT_SECRET=
notifications:
email:
on_success: always
on_failure: always
|
Fix an error in the coverage arguments. | language: python
python:
- "2.7"
- "3.3"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y python-gtk2
install:
- pip install behave colormath coverage coveralls multipledispatch networkx numpy>=1.7
script:
- coverage run --source toyplot --omit toyplot/testing.py -m nose
- coverage run ... | language: python
python:
- "2.7"
- "3.3"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y python-gtk2
install:
- pip install behave colormath coverage coveralls multipledispatch networkx numpy>=1.7
script:
- coverage run --source toyplot --omit toyplot/testing.py -m nose
- coverage run ... |
Add automatic deployments via Travis | language: node_js
node_js:
- "5"
script:
- npm test
| language: node_js
node_js:
- stable
cache:
yarn: true
directories:
- node_modules
install:
- yarn
script:
- yarn test
deploy:
provider: npm
email: joel@oblador.se
api_key:
secure: "T7XJiVK5NW+8D8/Fo4NMM2kaU54MRFWmRf2b3hVpUIN8padSslLSxTqphB0A4GbiqMRj3POQfrtizD3e5riGwC1niv3HMus8FP6DcsOoIYOFvg/CXnsLSvyOsNQ... |
Allow builds against Go tip to fail | language: go
go:
- 1.6
- tip
install: true # Bypass installing deps on travis to force vendoring
script: go test -v -race ./...
| language: go
go:
- 1.6
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
install: true # Bypass installing deps on travis to force vendoring
script: go test -v -race ./...
|
Remove NPM self-update from TravisCI | language: node_js
node_js:
- "8"
- "6"
- "4"
before_install:
- npm update -g npm
- npm install -g grunt-cli
sudo: false
| language: node_js
node_js:
- "8"
- "6"
- "4"
before_install:
- npm install -g grunt-cli
sudo: false
|
Test on latest node 4 version | language: node_js
sudo: false
node_js:
- "4.2"
- "stable"
| language: node_js
sudo: false
node_js:
- "4"
- node
|
Use node 10 on TravisCI | language: node_js
cache:
yarn: true
directories:
- node_modules
before_install:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
node_js:
- "8"
script:
- yarn test
- yarn de... | language: node_js
cache:
yarn: true
directories:
- node_modules
before_install:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
node_js:
- "10"
script:
- yarn test
- yarn d... |
Test against Node.js version 8 at Travis CI | sudo: false
language: node_js
node_js:
- "7"
- "6"
addons:
apt:
packages:
- imagemagick
script:
- npm run lint
- npm test
cache:
directories:
- node_modules
matrix:
fast_finish: true
| sudo: false
language: node_js
node_js:
- "8"
- "6"
addons:
apt:
packages:
- imagemagick
script:
- npm run lint
- npm test
cache:
directories:
- node_modules
matrix:
fast_finish: true
|
Use public release for CI | language: objective-c
notifications:
email:
on_success: never
on_failure: change
env:
- ATOM_CHANNEL=beta
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
branches:
only:
- master
| language: objective-c
notifications:
email:
on_success: never
on_failure: change
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
branches:
only:
- master
|
Remove build command and replace with pack command for src projects as pack will run a build anyway. | language: CSharp
mono:
- latest
install:
- curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_BRANCH=dev sh && source ~/.dnx/dnvm/dnvm.sh
- dnvm upgrade
- dnu restore
env:
- DNX_BUILD_VERSION=$TRAVIS_BRANCH-$TRAVIS_BUILD_NUMBER
script:
- dnu build --configuration R... | language: CSharp
mono:
- latest
install:
- curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_BRANCH=dev sh && source ~/.dnx/dnvm/dnvm.sh
- dnvm upgrade
- dnu restore
env:
- DNX_BUILD_VERSION=$TRAVIS_BRANCH-$TRAVIS_BUILD_NUMBER
script:
- dnu pack --configuration Re... |
Drop support for oldest versions of node | language: node_js
node_js:
- "5"
- "5.1"
- "4"
- "4.2"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
- "0.8"
- "0.6"
- "iojs"
| language: node_js
node_js:
- "5"
- "5.1"
- "4"
- "4.2"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
- "iojs"
|
Remove xvfb for saucelabs. Use wct instead of polymer-cli | sudo: false
dist: trusty
language: node_js
node_js: 8.0
cache:
directories:
- node_modules
addons:
firefox: latest
google-chrome: latest
install:
- npm install
- bower install
before_script:
- gulp lint version:check
- xvfb-run -s '-screen 0 1024x768x24' polymer test
script:
- if [[ "$TRAVIS_EV... | sudo: false
dist: trusty
language: node_js
node_js: 8.0
cache:
directories:
- node_modules
addons:
firefox: latest
google-chrome: latest
install:
- npm install
- bower install
before_script:
- gulp lint version:check
- xvfb-run -s '-screen 0 1024x768x24' wct
script:
- if [[ "$TRAVIS_EVENT_TYPE"... |
Use latest DITA-OT version (3.0.2) for CI builds | sudo: false
language: java
jdk:
- oraclejdk8
env:
global:
- DITA_OT_VERSION=3.0.1
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
| sudo: false
language: java
jdk:
- oraclejdk8
env:
global:
- DITA_OT_VERSION=3.0.2
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
|
Add PHP 7.2 to Travis-CI build | language: php
php:
- 7.0
- 7.1
- nightly
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/parallel-lint src tests
- vendor/bin/phpcs --config-set ignore_warnings_on_exit 1
- vendor/bin/phpcs --standard=psr2 src
-... | language: php
php:
- 7.0
- 7.1
- 7.2
- nightly
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/parallel-lint src tests
- vendor/bin/phpcs --config-set ignore_warnings_on_exit 1
- vendor/bin/phpcs --standard=psr2... |
Test against one more Ruby. | language: ruby
rvm:
- 1.9.2
env: DISPLAY=:99.0
before_script:
- mysql -e 'create database stizun_test;'
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
bundler_args: --without development
# uncomment this line if your project needs to run something other than `rake`:
script: bundle exec rake stizun:te... | language: ruby
rvm:
- 1.9.2
- 1.9.3
env: DISPLAY=:99.0
before_script:
- mysql -e 'create database stizun_test;'
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
bundler_args: --without development
# uncomment this line if your project needs to run something other than `rake`:
script: bundle exec rake... |
Remove unit test run altogether | language: csharp
solution: SharpHaven.sln
mono:
- latest
install:
- nuget restore SharpHaven.sln
- nuget install NUnit.Runners -Version 2.6.3 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release SharpHaven.sln
- mono ./testrunner/NUnit.Runners.2.6.3/tools/nunit-console.exe -nologo \
... | language: csharp
solution: SharpHaven.sln
mono:
- latest
install:
- nuget restore SharpHaven.sln
- nuget install NUnit.Runners -Version 2.6.3 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release SharpHaven.sln |
Fix NUnit for Travis CI | ## Travis CI Integration
language: csharp
solution: libgame.sln
install:
- nuget restore libgame.sln
- nuget install NUnit.Runners -OutputDirectory testrunner
script:
- xbuild mono-addins/Mono.Addins/Mono.Addins.csproj
- xbuild libgame.sln
- mono ./testrunner/NUnit.Runners*/tools/nunit-console.exe... | ## Travis CI Integration
language: csharp
solution: libgame.sln
install:
- nuget restore libgame.sln
- nuget install NUnit.Runners -OutputDirectory testrunner
script:
- xbuild mono-addins/Mono.Addins/Mono.Addins.csproj
- xbuild libgame.sln
- mono ./testrunner/NUnit.ConsoleRunner.3.5.0/tools/nunit3... |
Add a workaround for problematic `curl` issue | language: node_js
node_js:
- "5.5"
- "5.0"
- "4.2"
before_install: npm set progress=false
install: npm install
before_script:
- rvm install 2.2.3
- rvm use 2.2.3
# - ruby --version
- gem install jekyll --no-rdoc --no-ri --pre
# - jekyll --version
# - node_modules/.bin/grunt --version
# - node_module... | language: node_js
node_js:
- "5.5"
- "5.0"
- "4.2"
before_install:
- npm set progress=false
- export PATH=$(python -c 'from sys import argv;from collections import OrderedDict as od;print(":".join(od((p,None) for p in argv[1].split(":") if p.startswith("/")).keys()))' "$PATH")
install: npm install
before_scri... |
Remove matrix in Travis CI config | os:
- linux
- osx
matrix:
include:
- os: osx
osx_image: xcode8.3
addons:
apt:
sources:
- sourceline: 'deb https://dl.yarnpkg.com/debian/ stable main'
key_url: 'https://dl.yarnpkg.com/debian/pubkey.gpg'
packages:
- yarn
env:
- NODE_VERSION="9"
script: ./scripts/travis-buil... | os:
- linux
- osx
addons:
apt:
sources:
- sourceline: 'deb https://dl.yarnpkg.com/debian/ stable main'
key_url: 'https://dl.yarnpkg.com/debian/pubkey.gpg'
packages:
- yarn
env:
- NODE_VERSION="9"
script: ./scripts/travis-build.sh
|
Update Travis CI config to run most tests on OpenJDK 8 | language: ruby
rvm:
- jruby-19mode
- jruby-9.0.5.0
- jruby-head
matrix:
allow_failures:
- rvm: jruby-head
jdk:
- openjdk7
sudo: false
# cache:
# directories:
# - $HOME/.m2/repository
env:
global:
- JAVA_OPTS="-Xmx512m"
before_install:
- gem install bundler
- gem update bundler
inst... | language: ruby
rvm:
- jruby-19mode
- jruby-9.0.5.0
- jruby-head
matrix:
include:
- jdk: openjdk7
- env: INTEG_SUITE="spec:disk spec:jar"
allow_failures:
- rvm: jruby-head
jdk:
- openjdk8
env:
matrix:
- INTEG_SUITE=spec:all
global:
- JAVA_OPTS="-Xmx512m"
sudo: false
cache:
dir... |
Exclude trunk tests from Python 2.6 | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
env:
- DJANGO=Django==1.4.10
- DJANGO=Django==1.5.5
- DJANGO=Django==1.6.2
- DJANGO=https://github.com/django/django/tarball/master
install:
- pip install --use-mirrors $DJANGO
- pip install --use-mirrors coverage coveralls
script: coverage run -a... | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
env:
- DJANGO=Django==1.4.10
- DJANGO=Django==1.5.5
- DJANGO=Django==1.6.2
- DJANGO=https://github.com/django/django/tarball/master
install:
- pip install --use-mirrors $DJANGO
- pip install --use-mirrors coverage coveralls
script: coverage run -a... |
Fix integration between Travis and Coverall | language: java
after_success:
- mvn clean cobertura:cobertura coveralls:cobertura
| language: java
after_success:
- mvn clean cobertura:cobertura coveralls:report
|
Remove now default 'sudo: false' | sudo: false
language: python
python:
- pypy
- pypy3
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
install:
- pip install -rrequirements-dev.txt coveralls
script:
- coverage run --source sass,sassc,sassutils -m pytest sasstests.py
- flake8 .
after_success:
- coveralls
cache:
directories:
- $HOME/.cache/pip
| language: python
python:
- pypy
- pypy3
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
install:
- pip install -rrequirements-dev.txt coveralls
script:
- coverage run --source sass,sassc,sassutils -m pytest sasstests.py
- flake8 .
after_success:
- coveralls
cache:
directories:
- $HOME/.cache/pip
|
Add code coverage, only package on deploy | sudo: false
language: java
cache:
directories:
- "$HOME/.m2/repository"
jdk:
- oraclejdk8
- oraclejdk7
- openjdk6
after_success:
mvn package
deploy:
provider: releases
api_key:
secure: CkiqeHfVkf6HeYW6wpBDg8j4GcW3+6I3EKqPXX8CI3oZdM32RU2jU8Jo977g2tLpMvPQRMO+pFXUMTBU1ScTG7eQz0fYoseoCfrTNU2ANHh6vdrIVEvxKXAj... | sudo: false
language: java
cache:
directories:
- "$HOME/.m2/repository"
jdk:
- oraclejdk8
- oraclejdk7
- openjdk6
after_success:
- bash <(curl -s https://codecov.io/bash)
before_deploy:
mvn package
deploy:
provider: releases
api_key:
secure: CkiqeHfVkf6HeYW6wpBDg8j4GcW3+6I3EKqPXX8CI3oZdM32RU2jU8Jo977g2... |
Use weblablib instead of weblablib.py as source | language: python
services:
- redis
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
install:
- python setup.py install
- pip install python-coveralls nose
script:
coverage run --source=weblablib.py -m nose
after_success:
coveralls
| language: python
services:
- redis
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
install:
- python setup.py install
- pip install python-coveralls nose
script:
coverage run --source=weblablib -m nose
after_success:
coveralls
|
Use latest DITA-OT version (2.5.1) for CI builds | sudo: false
language: java
jdk:
- oraclejdk8
env:
global:
- DITA_OT_VERSION=2.5
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
| sudo: false
language: java
jdk:
- oraclejdk8
env:
global:
- DITA_OT_VERSION=2.5.1
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
|
Remove Go 1.8 from Travis-CI | language: go
go:
- 1.8.x
- 1.9.x
- tip
matrix:
allow_failures:
- go: tip
fast_finish: true
script:
- go test -v ./...
| language: go
go:
- 1.9.x
- 1.10.x
- tip
matrix:
allow_failures:
- go: tip
fast_finish: true
script:
- go test -v ./...
|
Use the latest version of java 8. | sudo: false
language: java
jdk:
- oraclejdk8
env:
global:
- SONATYPE_USERNAME=ralscha23
- secure: RiyNF3cW/HnO5/olysHLVAsEZeGEkE0BS6+ZduDTQUkr4VGJRYAaPtLdkwHVsojT0GcZQrQ4+3ciQwgxwhVeAQKkUfAk5rMAS8KvNXxZg3iXeTjkXr+RtE67SV4fQaeoWHKRvTrvW2NUzMCc1VM6zIwBpsjNazUxI0P3K2b/UBQ=
after_success:
- python addsettings... | sudo: false
addons:
apt:
packages:
- oracle-java8-installer
language: java
jdk:
- oraclejdk8
env:
global:
- SONATYPE_USERNAME=ralscha23
- secure: RiyNF3cW/HnO5/olysHLVAsEZeGEkE0BS6+ZduDTQUkr4VGJRYAaPtLdkwHVsojT0GcZQrQ4+3ciQwgxwhVeAQKkUfAk5rMAS8KvNXxZg3iXeTjkXr+RtE67SV4fQaeoWHKRvTrvW2NUzMCc1VM6zIw... |
Use Ubuntu 16 / xenial per default | sudo: false
language: python
python:
- "2.7"
# - "3.3" # End-of-life September 2017
- "3.4"
- "3.5"
- "3.6"
- "3.7"
dist: xenial
install:
- pip install tox-travis
- pip install flake8
script:
- tox
# - flake8 . # Now part of tox.ini
| sudo: false
language: python
dist: xenial # Ubuntu 16, required for Python 3.7+
python:
- "2.7"
# - "3.3" # End-of-life September 2017
- "3.4"
- "3.5"
- "3.6"
- "3.7"
install:
- pip install tox-travis
- pip install flake8
script:
- tox
# - flake8 . # Now part of tox.ini
|
Update CMake using apt addon and change cmocka install to not require root | sudo: required
language: c
install:
- wget https://cmocka.org/files/1.0/cmocka-1.0.1.tar.xz
- tar xvf cmocka-1.0.1.tar.xz
- cd cmocka-1.0.1
- mkdir build
- cd build
- cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug -DWITH_STATIC_LIB=1 ..
- sudo make install
- cd ../..
- rm... | language: c
addons:
apt:
sources:
- kubuntu-backports
packages:
- cmake
before_install: cmake --version
install:
- wget https://cmocka.org/files/1.0/cmocka-1.0.1.tar.xz
- tar xvf cmocka-1.0.1.tar.xz
- cd cmocka-1.0.1
- mkdir build
- cd build
- cmake... |
Remove coveralls key since it's a public project | language: node_js
node_js:
- '4'
env:
matrix:
- TASK=lint
- TASK=unittest GUI=1
global:
secure: m1hVHTy/jgPlj2Z79Gt++NFKKUIBMYtOVtU9WbQSTpAesspPvNZbfirUSdo/50rfLD9UWO9RGITWbBx9JJ6QakbxN0reTC40O/dbJOWmhr97vZwLNENmfqfgAttb3U1WYC0BcdYo3XsKz/8dsQVhXHDLgq+WUeyj+y7Ku+R71pZgJxDuTCzyUCEXGotVMwMtWx6JjlZtyjyJX+Ec8Em2... | language: node_js
node_js:
- '4'
env:
matrix:
- TASK=lint
- TASK=unittest GUI=1
cache:
directories:
- node_modules
before_install:
- npm install -g npm@3
- npm --version
before_script:
- if [ $GUI ]; then export DISPLAY=:99.0 && sh -e /etc/init.d/xvfb start && sleep 3; fi
script:
- npm run $TASK
|
Allow failures in ruby HEAD and rbx | language: ruby
rvm:
- 2.0.0
- 1.9.3
- rbx-19mode
- jruby-19mode
| language: ruby
rvm:
- 2.0.0
- 1.9.3
- ruby-head
- rbx-19mode
- jruby-19mode
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx-19mode
|
Remove obsolete Riak client hackery. | language: python
python:
- "2.6"
- "2.7"
matrix:
include:
# Test on pypy without coverage, because it's unnecessary and very slow.
- python: "pypy"
env: NO_COVERAGE="1"
services:
- redis-server
install:
# We easy_install a binary riak_pb package because pip install needs `protoc'.
- "easy_inst... | language: python
python:
- "2.6"
- "2.7"
matrix:
include:
# Test on pypy without coverage, because it's unnecessary and very slow.
- python: "pypy"
env: NO_COVERAGE="1"
services:
- redis-server
install:
- "pip install -r requirements.pip"
- "pip install coverage"
- "pip install overalls"
scr... |
Fix gulp task executed for PRs. | language: node_js
sudo: false
node_js: stable
addons:
sauce_connect: true
firefox: latest
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
before_script:
- npm install
script:
-... | language: node_js
sudo: false
node_js: stable
addons:
sauce_connect: true
firefox: latest
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
before_script:
- npm install
script:
-... |
Add Travis script for test | language: go
go:
- 1.6
- 1.7
- master
install:
- go get github.com/fatih/color
- go get github.com/boltdb/bolt | language: go
go:
- 1.6
- 1.7
- master
install:
- go get github.com/fatih/color
- go get github.com/boltdb/bolt
script: go test |
Revert to Python 3.4 for Travis | language: python
python:
- "3.5_with_system_site_packages"
virtualenv:
system_site_packages: true
before_install:
- sudo apt-add-repository -y ppa:ubuntugis/ubuntugis-unstable
- sudo apt-get update
- sudo apt-get install -qq gdal-bin
- sudo apt-get install -qq python-gdal python3-gdal
- sudo... | language: python
python:
- "3.4"
virtualenv:
system_site_packages: true
before_install:
- sudo apt-add-repository -y ppa:ubuntugis/ubuntugis-unstable
- sudo apt-get update
- sudo apt-get install -qq gdal-bin
- sudo apt-get install -qq python-gdal python3-gdal
- sudo apt-get install fftw3 lib... |
Fix build error for TravisCI in Node.js v0.8 | language: node_js
node_js:
- 0.8
- 0.10
| before_install:
- '[ "${TRAVIS_NODE_VERSION}" != "0.8" ] || npm install -g npm@1.4.28'
- npm install -g npm@latest
language: node_js
node_js:
- 0.8
- 0.10
|
Extend support to py 2.6 -- 3.4 | language: python
python:
- "2.7"
# command to install dependencies
install:
- pip install -r requirements.txt -r requirements-testing.txt
- pip install coveralls
# command to run tests
script: py.test
after_success: coveralls
| language: python
python:
- "2.7"
- "2.6"
- "3.3"
- "3.4"
install:
- pip install -r requirements.txt -r requirements-testing.txt
- pip install coveralls
script: py.test
after_success: coveralls
|
Change 'highlighter' from pygments to rouge | # General Jekyll Config
highlighter: pygments
url: http://jwoest.github.io
lsi: false
exclude: [LICENSE, CNAME, README.md, .gitignore, Gemfile, Gemfile.lock]
| # General Jekyll Config
highlighter: rouge
url: http://jwoest.github.io
lsi: false
exclude: [LICENSE, CNAME, README.md, .gitignore, Gemfile, Gemfile.lock]
|
Set CI fuzz to be 30 seconds. | name: CIFuzz
on: [pull_request]
jobs:
Fuzzing:
runs-on: ubuntu-latest
steps:
- name: Build Fuzzers
id: build
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
with:
oss-fuzz-project-name: 'jsonschema'
dry-run: false
- name: Run Fuzzers
uses: google... | name: CIFuzz
on: [pull_request]
jobs:
Fuzzing:
runs-on: ubuntu-latest
steps:
- name: Build Fuzzers
id: build
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
with:
oss-fuzz-project-name: 'jsonschema'
dry-run: false
- name: Run Fuzzers
uses: google... |
Update ruby versions of circleci | version: 2.1
jobs:
test:
parameters:
ruby-version:
type: string
docker:
- image: cimg/ruby:<< parameters.ruby-version >>-browsers
steps:
- checkout
- run: bundle install
- run: bundle exec rspec
workflows:
all-tests:
jobs:
- test:
matrix:
... | version: 2.1
jobs:
test:
parameters:
ruby-version:
type: string
docker:
- image: cimg/ruby:<< parameters.ruby-version >>-browsers
steps:
- checkout
- run: bundle install
- run: bundle exec rspec
workflows:
all-tests:
jobs:
- test:
matrix:
... |
Update from Hackage at 2017-09-16T20:05:01Z | homepage: https://github.com/alx741/graphite#readme
changelog-type: ''
hash: 15f8589f38c3afeb3ad778ef253de5822a814ee16789588f2a5df3087977af08
test-bench-deps:
base: -any
hspec: -any
graphite: -any
QuickCheck: -any
maintainer: alx@sillybytes.net
synopsis: Graphs and networks library
changelog: ''
basic-deps:
b... | homepage: https://github.com/alx741/graphite#readme
changelog-type: ''
hash: cdb10a73f6a4b2e96938d1a045c97433f3897dc9dfd299eba4aa229c0d5d4ab5
test-bench-deps:
base: -any
hspec: -any
graphite: -any
QuickCheck: -any
maintainer: alx@sillybytes.net
synopsis: Graphs and networks library
changelog: ''
basic-deps:
b... |
Upgrade compose version on example | version: '3'
services:
dipex:
image: amancevice/dipex
build: .
environment:
AWS_ACCESS_KEY_ID:
AWS_SECRET_ACCESS_KEY:
TEST:
volumes:
- ~/.aws:/root/.aws:ro
| version: '3.5'
services:
dipex:
image: amancevice/dipex
build: .
environment:
AWS_ACCESS_KEY_ID:
AWS_SECRET_ACCESS_KEY:
TEST:
volumes:
- ~/.aws:/root/.aws:ro
|
Update Highpoint South Christmas visit slots | ---
name: Highpoint South
nomis_id: HPI
address:
- Stradishall
- 'CB8 9YG '
email: socialvisits.highpoint@hmps.gsi.gov.uk
enabled: true
estate: Highpoint
phone: 01440 743134
slot_anomalies:
2015-08-31:
- 1400-1600
slots:
fri:
- 1430-1630
mon:
- 1400-1600
sat:
- 1400-1600
sun:
- 0900-1100
- 1400-16... | ---
name: Highpoint South
nomis_id: HPI
address:
- Stradishall
- 'CB8 9YG '
email: socialvisits.highpoint@hmps.gsi.gov.uk
enabled: true
estate: Highpoint
phone: 01440 743134
slot_anomalies:
2015-08-31:
- 1400-1600
2015-12-24:
- 1400-1600
slots:
fri:
- 1430-1630
mon:
- 1400-1600
sat:
- 1400-1600
su... |
Install CocoaPods on OS X boxes | json:
travis_build_environment:
use_tmpfs_for_builds: false
home: /Users/travis
group: staff
rvm:
default: 1.9.3
rubies:
- name: 1.8.7
- name: 1.9.3
gems:
- bundler
- rake
- cocoapods
recipes:
- homebrew
- travis_build_environment::osx
- rvm::multi
| json:
travis_build_environment:
use_tmpfs_for_builds: false
home: /Users/travis
group: staff
rvm:
default: 1.9.3
rubies:
- name: 1.8.7
- name: 1.9.3
gems:
- bundler
- rake
- cocoapods
recipes:
- homebrew
- travis_build_environment::osx
- rvm::multi
- coc... |
Update funding with GitHub Sponsors link | # These are supported funding model platforms
# github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
liberapay: eproxus
| # These are supported funding model platforms
github: [eproxus]
liberapay: eproxus
|
Update from Hackage at 2017-01-05T14:44:20Z | homepage: ''
changelog-type: ''
hash: 6468bf251bdb9628edfc0d50ea1989664e538e0f96711ef4fbb3b0e4a08f2526
test-bench-deps: {}
maintainer: Simon Marlow <marlowsd@gmail.com>
synopsis: Knowledge of GHC's installation directories
changelog: ''
basic-deps:
base: ! '>=3 && <5'
all-versions:
- '0.1'
- '0.1.0.1'
- '0.1.0.2'
- '... | homepage: ''
changelog-type: ''
hash: b47858cf533ae8d72bd422106bcb9e075ae477ab2e537f59ffe437277840bcef
test-bench-deps: {}
maintainer: Simon Marlow <marlowsd@gmail.com>
synopsis: Knowledge of GHC's installation directories
changelog: ''
basic-deps:
base: ! '>=3 && <5'
all-versions:
- '0.1'
- '0.1.0.1'
- '0.1.0.2'
- '... |
Update Test Kitchen platforms to the latest | driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-5.11
- name: centos-6.8
- name: centos-7.2
- name: debian-7.11
- name: debian-8.5
- name: fedora-24
run_list: yum::dnf_yum_compat
- name: opensuse-13.2
- name: opensuse-leap-42.1
- name: ubuntu-12.04
- name: ubunt... | driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-5.11
- name: centos-6.8
- name: centos-7.2
- name: debian-7.11
- name: debian-8.6
- name: fedora-25
run_list: yum::dnf_yum_compat
- name: opensuse-13.2
- name: opensuse-leap-42.1
- name: ubuntu-12.04
- name: ubunt... |
Update docker cloud api env property | redis:
image: 'redis:latest'
api:
image: 'craftship/phonebox-api:latest'
links:
- redis
ports:
- '80:8080'
volumes:
- /usr/src/app
workers:
image: 'craftship/phonebox-workers:latest'
links:
- redis
volumes:
- /usr/src/app
environment:
- TWILIO_SID
- TWILIO_TOKEN
- TWILI... | redis:
image: 'redis:latest'
api:
image: 'craftship/phonebox-api:latest'
links:
- redis
ports:
- '80:8080'
volumes:
- /usr/src/app
environment:
- TWILIO_FROM_NUMBER
- TWILIO_TO_NUMBER
workers:
image: 'craftship/phonebox-workers:latest'
links:
- redis
volumes:
- /usr/src/app... |
Rename 'build' job to 'test' for GitHub Actions | # This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
j... | # This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
j... |
Configure legacy domain to preserve path for repoint | ---
site: bis_dius
whitehall_slug: department-for-business-innovation-skills
host: www.dius.gov.uk
redirection_date: 13th December 2012
tna_timestamp: 20121212135622
title: Department for Business, Innovation & Skills
furl: www.gov.uk/bis
homepage: https://www.gov.uk/government/organisations/department-for-business... | ---
site: bis_dius
whitehall_slug: department-for-business-innovation-skills
host: www.dius.gov.uk
redirection_date: 13th December 2012
tna_timestamp: 20121212135622
title: Department for Business, Innovation & Skills
furl: www.gov.uk/bis
homepage: https://www.gov.uk/government/organisations/department-for-business... |
Update HMP Aylesbury Christmas slots | ---
name: Aylesbury
nomis_id: AYI
address: |-
Bierton Road
postcode: HP20 1EH
email_address: socialvisits.aylesbury@hmps.gsi.gov.uk
phone_no: 01296 444099
enabled: true
private: false
closed: false
adult_age: 10
recurring:
mon:
- 1415-1615
tue:
- 1415-1615
thu:
- 1415-1615
sat:
- 1400-1545
sun:
- ... | ---
name: Aylesbury
nomis_id: AYI
address: |-
Bierton Road
postcode: HP20 1EH
email_address: socialvisits.aylesbury@hmps.gsi.gov.uk
phone_no: 01296 444099
enabled: true
private: false
closed: false
adult_age: 10
recurring:
mon:
- 1415-1615
tue:
- 1415-1615
thu:
- 1415-1615
sat:
- 1400-1545
sun:
- ... |
Add sitemap gem for sitemap generation | # Site settings
title: Blog by Hilzu
email: hilzu@iki.fi
description: >
Random thoughts mostly about technology and especially about web stack.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "https://blog.hilzu.moe" # the base hostname & protocol for your site
twitter_username: ze_hilda
github_username: hi... | # Site settings
title: Blog by Hilzu
email: hilzu@iki.fi
description: >
Random thoughts mostly about technology and especially about web stack.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "https://blog.hilzu.moe" # the base hostname & protocol for your site
twitter_username: ze_hilda
github_username: hi... |
Allow nightly failures again until the ring mess is cleaned up | language: rust
dist: trusty
sudo: false
rust:
- nightly
- stable
- beta
env:
- TARGET=none
- TARGET=wasm32-unknown-unknown
- TARGET=asmjs-unknown-emscripten
- TARGET=wasm32-unknown-emscripten
script:
- nvm install 9
- ./ci.sh
| language: rust
dist: trusty
sudo: false
rust:
- nightly
- stable
- beta
matrix:
allow_failures:
- rust: nightly
env:
- TARGET=none
- TARGET=wasm32-unknown-unknown
- TARGET=asmjs-unknown-emscripten
- TARGET=wasm32-unknown-emscripten
script:
- nvm install 9
- ./ci.sh
|
Allow TravisCI failures on jruby and rbx 1.9 mode | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- ruby-head
- jruby-head
- ree
script: bundle exec rake spec_travis
gemfile: .travis.gemfile
before_script:
- mysql -e 'create database sequel_test;'
- psql -c 'create database sequel_test;' -U po... | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- ruby-head
- jruby-head
- ree
script: bundle exec rake spec_travis
gemfile: .travis.gemfile
before_script:
- mysql -e 'create database sequel_test;'
- psql -c 'create database sequel_test;' -U po... |
Fix Nodejs version for Travis | language: node_js
node_js:
- "6.1.x"
- "5.11.x" | language: node_js
node_js:
- "6.9.2"
- "5.12.0" |
Add numexpr. We really need a requirements.txt file. | language: python
python:
- "2.7"
# - "3.3"
# - "3.4"
notifications:
email: false
before_install:
# - "sudo apt-get update"
- "sudo apt-get install libhdf5-serial-dev"
install:
- "pip install pep8 pylint tables bokeh scipy"
# TODO: Move tables, etc. to requirements.txt, specify versions.
script:
- "pylint... | language: python
python:
- "2.7"
# - "3.3"
# - "3.4"
notifications:
email: false
before_install:
# - "sudo apt-get update"
- "sudo apt-get install libhdf5-serial-dev"
install:
- "pip install pep8 pylint tables bokeh numexpr scipy"
# TODO: Move tables, etc. to requirements.txt, specify versions.
script:
-... |
Exclude legacy/regression builds on exotic rvms. | before_script:
- "sh -e /etc/init.d/xvfb start"
script: "DISPLAY=:99.0 bundle exec rake"
rvm:
- "1.8.7"
- "1.9.2"
- "1.9.3"
- "ree"
- "jruby"
- "rbx"
env:
- "RAILS_VERSION=rails2"
- "RAILS_VERSION=rails2_3_5"
- "RAILS_VERSION=rails3"
- "RAILS_VERSION=pojs-rspec1"
- "RAILS_VERSION=pojs-rspec2"
| before_script:
- "sh -e /etc/init.d/xvfb start"
script: "DISPLAY=:99.0 bundle exec rake"
rvm:
- "1.8.7"
- "1.9.2"
- "1.9.3"
- "ree"
- "jruby"
- "rbx"
env:
- "RAILS_VERSION=rails2"
- "RAILS_VERSION=rails2_3_5"
- "RAILS_VERSION=rails3"
- "RAILS_VERSION=pojs-rspec1"
- "RAILS_VERSION=pojs-rspec2"
matr... |
Print the output of `gofmt -d` (if any) | name: go-presubmit
on:
push:
branches: ['master']
pull_request:
paths: ['go/**', '.github/workflows/presubmit-go.yml']
defaults:
run:
working-directory: go
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: gofmt
run: test -z "$(gofmt -d .)"
... | name: go-presubmit
on:
push:
branches: ['master']
pull_request:
paths: ['go/**', '.github/workflows/presubmit-go.yml']
defaults:
run:
working-directory: go
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: gofmt
run: test -z "$(gofmt -d . | t... |
Update dry-core and remove dry-equalizer from runtime deps | name: dry-validation
codacy_id: f30e3ff5ec304c55a73868cdbf055c67
gemspec:
authors: ["Piotr Solnica"]
email: ["piotr.solnica@gmail.com"]
summary: "Validation library"
files: ["config/*.yml"]
development_dependencies:
- bundler
- rake
- rspec
runtime_dependencies:
- [concurrent-ruby, "~> 1.0"]... | name: dry-validation
codacy_id: f30e3ff5ec304c55a73868cdbf055c67
gemspec:
authors: ["Piotr Solnica"]
email: ["piotr.solnica@gmail.com"]
summary: "Validation library"
files: ["config/*.yml"]
development_dependencies:
- bundler
- rake
- rspec
runtime_dependencies:
- [concurrent-ruby, "~> 1.0"]... |
Remove input from plugin type. | ---
profile::base::windows::app::packages:
- 7zip
- git
- putty
- winscp
- flashplayerplugin
- adobereader
- googlechrome
- vmwarevsphereclient
- firefox
- vim
profile::base::windows::time::ntp_servers:
- fw.fr.lan
- us.pool.ntp.org
profile::base::windows::time::timezone: 'Mountain Standard Tim... | ---
profile::base::windows::app::packages:
- 7zip
- git
- putty
- winscp
- flashplayerplugin
- adobereader
- googlechrome
- vmwarevsphereclient
- firefox
- vim
profile::base::windows::time::ntp_servers:
- fw.fr.lan
- us.pool.ntp.org
profile::base::windows::time::timezone: 'Mountain Standard Tim... |
Build using v2 of the picolisp-action | name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
arch: ['src', 'src64']
version: ['17.12', '18.6', '18.12', '19.6', '19.12', '20.6', 'latest', 'pil21']
steps:
- uses: actions/checkout@v1
- uses: aw/picolisp-action@48d0... | name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
arch: ['src', 'src64']
version: ['17.12', '18.6', '18.12', '19.6', '19.12', '20.6', 'latest', 'pil21']
steps:
- uses: actions/checkout@v1
- uses: aw/picolisp-action@v2
... |
Add Python 3.4 to path, it has pip. | version: '{branch}-{build}'
build_script:
- cmd: ./gradlew.bat assemble
test_script:
- cmd: ./gradlew.bat check
on_finish:
- pip install --user codecov
- codecov -e OS -f build/reports/jacoco/test/jacocoTestReport.xml
# TODO submit multiple junit xml or combine all into single file
- ps: |
$url = "htt... | version: '{branch}-{build}'
build_script:
- cmd: ./gradlew.bat assemble
test_script:
- cmd: ./gradlew.bat check
on_finish:
- "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%"
- pip install codecov
- codecov -e OS -f build/reports/jacoco/test/jacocoTestReport.xml
# TODO submit multiple junit xml or combin... |
Add openjdk11 to Travis configuration | language: java
jdk: openjdk8
env: NODE_VERSION=8
before_install: nvm install $NODE_VERSION
jobs:
include:
- stage: "Shared Module"
name: "Build"
script: ./gradlew :shared:build
- name: "Tests"
script: ./gradlew :shared:test -i
- stage: "Language Server"
name: "Tests"
script:... | language: java
jdk:
- openjdk8
- openjdk11
env: NODE_VERSION=8
before_install: nvm install $NODE_VERSION
jobs:
include:
- stage: "Shared Module"
name: "Build"
script: ./gradlew :shared:build
- name: "Tests"
script: ./gradlew :shared:test -i
- stage: "Language Server"
name: "Te... |
Stop building for 5.5 since it's EOL. Our current dependent version of PHPUnit requires 5.6+, though the library itself should still be OK for PHP 5.5+ for now | language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script: composer install
env:
- PHRETS_TESTING_USERNAME=fake PHRETS_TESTING_PASSWORD=fake
script: phpunit --coverage-text
| language: php
php:
- 5.6
- 7.0
- hhvm
before_script: composer install
env:
- PHRETS_TESTING_USERNAME=fake PHRETS_TESTING_PASSWORD=fake
script: phpunit --coverage-text
|
Remove `stable` from test suite | language: node_js
before_install:
- npm i -g npm
node_js:
- 4
- 6
- 8
- stable
| language: node_js
before_install:
- npm i -g npm
node_js:
- 4
- 6
- 8
|
Update config YAML with Elise's info | # Site Settings
title: Lagrange
tagline: a minimalist Jekyll theme
description:
baseurl: #"/Lagrange"
url: #"https://lenpaul.github.io"
github:
url: #"https://lenpaul.github.io/Lagrange"
author:
name: "Paul Le"
email: "l.ng... | # Site Settings
title: My Life Unlearned
tagline: this is a tagline
description:
baseurl: #""
url: #"https://lenpaul.github.io"
github:
url: #"http://elisepotts.github.io"
author:
name: "Elise Marie Potts"
email: "elise.pot... |
Add default page number for sources | PolitikportalBundle_homepage:
pattern: /hello/{name}
defaults: { _controller: PolitikportalBundle:Front:index }
source:
pattern: /source/{source}
defaults: { _controller: PolitikportalBundle:Sources:getSource }
sources:
pattern: /sources/{page}
defaults: { _controller: PolitikportalBund... | PolitikportalBundle_homepage:
pattern: /hello/{name}
defaults: { _controller: PolitikportalBundle:Front:index }
source:
pattern: /source/{source}
defaults: { _controller: PolitikportalBundle:Sources:getSource }
sources:
pattern: /sources/{page}
defaults: { _controller: PolitikportalBund... |
Create password from using apache htpasswd command | ---
- hosts: webservers
sudo: yes
tasks:
- name: Write gunicorn config file
template: src=assets/gunicorn.j2 dest=/etc/init/ecep.conf
notify:
- restart gunicorn
- name: Write nginx config file
template: src=assets/nginx.j2 dest=/etc/nginx/sites-available/ecep.conf
notify:
- resta... | ---
- hosts: webservers
sudo: yes
tasks:
- name: Write gunicorn config file
template: src=assets/gunicorn.j2 dest=/etc/init/ecep.conf
notify:
- restart gunicorn
- command: touch /etc/nginx/.htpasswd
- name: Creating User/Password to sign into staging server
command: htpasswd -b /etc/ngi... |
Use master branch for versionbot | name: versionist
on:
push:
branches:
- "main"
jobs:
versionist:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
persist-credentials: false
# requires with 'repo' access.
# using GITHUB_TOKEN will NOT trigger other work... | name: versionist
on:
push:
branches:
- "master"
jobs:
versionist:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
persist-credentials: false
# requires with 'repo' access.
# using GITHUB_TOKEN will NOT trigger other wo... |
Update SubHub to 1.1.1 (3) | Categories:
- Multimedia
License: GPL-3.0-only
AuthorName: FunkyMuse
AuthorWebSite: https://funkymuse.dev/
SourceCode: https://github.com/FunkyMuse/Aurora
IssueTracker: https://github.com/FunkyMuse/Aurora/issues
Changelog: https://github.com/FunkyMuse/Aurora/releases
Donate: https://patreon.com/funkymuse
AutoName: S... | Categories:
- Multimedia
License: GPL-3.0-only
AuthorName: FunkyMuse
AuthorWebSite: https://funkymuse.dev/
SourceCode: https://github.com/FunkyMuse/Aurora
IssueTracker: https://github.com/FunkyMuse/Aurora/issues
Changelog: https://github.com/FunkyMuse/Aurora/releases
Donate: https://patreon.com/funkymuse
AutoName: S... |
Make sure core is ready for standalone | name: Java
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17' ]
steps:
- name: checkout
uses: actions/checkout@v2
- name: set up jdk
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
... | name: Java
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '8', '11', '17' ]
steps:
- name: checkout
uses: actions/checkout@v2
- name: set up jdk
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
... |
Update from Hackage at 2017-06-22T20:27:23Z | homepage: https://github.com/fgaz/yabi
changelog-type: ''
hash: bdbeacafd9f3d10097914ca03f838e909e237d57f26a4ef1973b6102a64b01b3
test-bench-deps: {}
maintainer: fgaz@users.noreply.github.com
synopsis: Yet Another Brainfuck Interpreter
changelog: ''
basic-deps:
base: ==4.*
word8: -any
all-versions:
- '0.1.0.0'
- '0.... | homepage: https://github.com/fgaz/yabi
changelog-type: ''
hash: d82e20fbccf326d863127d619850ecd07a2978a7db3812683a55b37c6417012b
test-bench-deps: {}
maintainer: fgaz@users.noreply.github.com
synopsis: Yet Another Brainfuck Interpreter
changelog: ''
basic-deps:
base: ==4.*
word8: -any
all-versions:
- '0.1.0.0'
- '0.... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.