Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Add node v0.7.x on Travis CI test runs. | language: node_js
node_js:
- 0.4
- 0.6
before_install: "npm install -g bob"
script: "bob clean lint test coverage"
| language: node_js
node_js:
- 0.4
- 0.6
- 0.7
before_install: "npm install -g bob"
script: "bob clean lint test coverage"
|
Add more nodes to run tests against | language: node_js
node_js:
- "0.10"
script:
npm run-script build | language: node_js
node_js:
- "0.10"
- "0.12"
- "4.1"
- "5.4"
script:
npm run-script build
|
Use xenial for Python 3.7 | sudo: false
# Following configures which base images are available to run tests
dist: trusty
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "pypy"
install:
- pip install tox-travis
script:
- tox
matrix:
include:
- python: "2.7"
env: TOXENV=flake8
| sudo: false
# Following configures which base images are available to run tests
dist: trusty
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
install:
- pip install tox-travis
script:
- tox
matrix:
include:
- python: "2.7"
env: TOXENV=flake8
# xenial is the only way to get ... |
Add Ruby 2.6, drop Ruby 2.3 | sudo: false
cache: bundler
language: ruby
rvm:
- 2.5
- 2.3
matrix:
include:
- rvm: 2.5
env: JEKYLL_VERSION=3.7.4
env:
matrix:
- JEKYLL_VERSION=3.8.5
branches:
only:
- master
before_install:
- gem update --system
script: script/cibuild
notifications:
irc:
on_success: change
on_failu... | sudo: false
cache: bundler
language: ruby
rvm:
- 2.6
- 2.4
matrix:
include:
- rvm: 2.5
env: JEKYLL_VERSION=3.7.4
env:
matrix:
- JEKYLL_VERSION=3.8.5
branches:
only:
- master
before_install:
- gem update --system
script: script/cibuild
notifications:
irc:
on_success: change
on_failu... |
Make sure weβre using the latest Bundler | language: ruby
rvm:
- 1.9.3
after_success:
- ! '[ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && curl -v -X DELETE -u $GITHUB_USER:$GITHUB_PASSWORD
"https://api.github.com/repos/$TRAVIS_REPO_SLUG/git/refs/tags/CURRENT"'
- ! '[ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "... | language: ruby
rvm:
- 1.9.3
before_install:
- gem install bundler
- gem uninstall bundler -v old.bundler.version
after_success:
- ! '[ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ] && curl -v -X DELETE -u $GITHUB_USER:$GITHUB_PASSWORD
"https://api.github.com/repos/$TRAVIS_REPO_SLUG/git/r... |
Install codecov and run in coverage | language: python
python:
- "3.6"
env:
- DJANGO_VERSION=2.0.2
# command to install dependencies
install:
- "pip install -q -e ."
- "pip install -q -r demo/requirements.txt"
- "pip install -q Django==$DJANGO_VERSION"
# command to run tests
script: "cd demo && python manage.py makemigrations && python manage.py... | language: python
python:
- "3.6"
env:
- DJANGO_VERSION=2.0.2
# command to install dependencies
install:
- "pip install -q -e ."
- "pip install -q -r demo/requirements.txt"
- "pip install -q Django==$DJANGO_VERSION"
- "pip install codecov"
# command to run tests
script: "cd demo && python manage.py makemigr... |
Use our own python3 distribution to build on Travis | sudo: false
language: python
python:
- "2.7"
addons:
apt:
packages:
- parallel
install:
- pip install futures
- pip install http://ftp.openquake.org/python-wheels/numpy-1.8.2-cp27-none-linux_x86_64.whl
- pip install http://ftp.openquake.org/python-wheels/scipy-0.16.0-cp27-none-linux_x86_64.whl
- ... | sudo: false
language: python
python:
- "3.5"
addons:
apt:
packages:
- wget
before_install:
- wget http://ftp.openquake.org/travis/openquake-env-setup-py3-linux64.run
env:
LD_LIBRARY_PATH=$HOME/openquake/lib
PATH=$HOME/openquake/lib:$PATH
install:
- ./openquake-env-setup-py3-linux64.run -- -... |
Fix executing coveralls on Travis | language: php
dist: trusty
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
matrix:
allow_failures:
- php: hhvm
include:
- php: "5.3"
dist: precise
before_install:
- composer self-update
install:
- composer install
# Last released... | language: php
dist: trusty
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
matrix:
allow_failures:
- php: hhvm
include:
- php: "5.3"
dist: precise
before_install:
- composer self-update
install:
- composer install
# Last released... |
Drop PHP 5.5 from Travis testing | sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
before_install:
## Disable xdebug
- phpenv config-rm xdebug.ini
## Update Composer
- composer self-update
## Install latest version of node
- nvm install node
install:
## Install Composer dependencies
- composer install --no-interaction --prefer-sou... | sudo: false
language: php
php:
- 5.6
- 7.0
before_install:
## Disable xdebug
- phpenv config-rm xdebug.ini
## Update Composer
- composer self-update
## Install latest version of node
- nvm install node
install:
## Install Composer dependencies
- composer install --no-interaction --prefer-source
befo... |
Add new ruby versions to TravisCI | language: ruby
matrix:
allow_failures:
- rvm: ruby-head
rvm:
- 2.1.10
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
- ruby-head
before_install:
# need this for ruby 1.9.3 and rspec
- gem update --system
- gem update bundler --force
| language: ruby
matrix:
allow_failures:
- rvm: ruby-head
rvm:
- 2.4
- 2.5
- 2.6
- 2.7
- ruby-head
before_install:
# need this for ruby 1.9.3 and rspec
- gem update --system
- gem update bundler --force
|
Test on older Node.js versions | language: node_js
node_js:
- 6.0
before_script:
- npm install -g grunt-cli
notifications:
email: false
| language: node_js
node_js:
- 0.10
- 0.12
- 4
- 6
before_script:
- npm install -g grunt-cli
notifications:
email: false
|
Fix pip install link for tangled (again) | language: python
python:
- "3.3"
install:
- pip install git://github.com/TangledWeb/tangled.git#egg=tangled
- pip install .
script: py.test
| language: python
python:
- "3.3"
install:
- pip install git+git://github.com/TangledWeb/tangled.git#egg=tangled
- pip install .
script: py.test
|
Add Python 3.8 to TravisCI configuration | language: python
python:
- '3.7'
cache:
pip: true
directories:
- $HOME/.cache/pre-commit
before_install:
- python --version
- pip install -U pip
install:
- pip install -r requirements.txt
- pip install -r requirements_test.txt
before_script:
- mv secrets_dummy.yaml secrets.yaml
- pre-commit instal... | language: python
python:
- '3.7'
- '3.8'
cache:
pip: true
directories:
- $HOME/.cache/pre-commit
before_install:
- pip install -U pip
install:
- pip install -r requirements.txt
- pip install -r requirements_test.txt
before_script:
- mv secrets_dummy.yaml secrets.yaml
- pre-commit install-hooks
scr... |
Use consistent calls for tests | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: 5.6
- php: hhvm
before_script:
- if [[ "$TRAVIS_PHP_VERSION" != "5.3" ]]; then sh -c "php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ &"; fi
script:
- php -l src/*
- if [[ "$TRAVIS_PHP_VERSION" != "5.3" ]]; then cd t... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: 5.6
- php: hhvm
before_script:
- if [[ "$TRAVIS_PHP_VERSION" != "5.3" ]]; then sh -c "php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ &"; fi
script:
- php -l src/*
- if [[ "$TRAVIS_PHP_VERSION" != "5.3" ]]; then sh -... |
Enable local folder sharing over NFS. | # - name: default
# source: .
# destination: /vagrant
# nfs: true
# mount_options: 'nolock,vers=3,udp,noatime'
# disabled: false
| - name: default
source: .
destination: /vagrant
nfs: true
mount_options: 'nolock,vers=3,udp,noatime'
|
Use the secure version of rustup.sh | # Use the language closest to rust, as rust itself is not supported
language: c
notifications:
email:
on_success: never
on_failure: always
install:
- sudo apt-get install libsdl1.2-dev
- curl http://www.rust-lang.org/rustup.sh | sudo sh -
script:
- make
- make test
- make opt
| # Use the language closest to rust, as rust itself is not supported
language: c
notifications:
email:
on_success: never
on_failure: always
install:
- sudo apt-get install libsdl1.2-dev
- curl https://static.rust-lang.org/rustup.sh | sudo sh -
script:
- make
- make test
- make opt
|
Test with Python 2.7 on Travis | dist: trusty
sudo: false
language: python
branches:
only:
- master
matrix:
include:
- python: 2.6
env: TOXENV=py26-test
- python: 3.6
env: TOXENV=py36-test
- python: 3.6
env: TOXENV=py36-docs
- python: 3.6
env: TOXENV=py36-doctest
install:
- pip install -U tox
scrip... | dist: trusty
sudo: false
language: python
branches:
only:
- master
matrix:
include:
- python: 2.7
env: TOXENV=py27-test
- python: 3.6
env: TOXENV=py36-test
- python: 3.6
env: TOXENV=py36-docs
- python: 3.6
env: TOXENV=py36-doctest
install:
- pip install -U tox
scrip... |
Test on windows with two node versions & only run `test:ava` | language: node_js
matrix:
include:
- os: linux
addons:
chrome: stable
node_js: 8.6
- os: linux
addons:
chrome: stable
node_js: node # Latest
- os: windows
filter_secrets: false # Secrets will otherwise break Windows builds
node_js: latest
script:
-... | language: node_js
matrix:
include:
- os: linux
addons:
chrome: stable
node_js: 8.6
- os: linux
addons:
chrome: stable
node_js: node # Latest
- os: windows
filter_secrets: false # Secrets will otherwise break Windows builds
node_js: 8.6
script: n... |
Use Ubuntu Trusty with G++ 4.8 | os:
- linux
- osx
language: node_js
node_js:
- 4
- 5
- 6
- 7
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install zmq; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CXX=g++-4.8; fi
- if [[ "$TRAVIS_OS_NAME" =... | os:
- linux
- osx
dist: trusty
language: node_js
node_js:
- 4
- 5
- 6
- 7
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install zmq; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ ... |
Update circleci/python:3.7.1 Docker digest to 3f14ef6 | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.1@sha256:d6f063b0a12ec7059d866f0819e8453c90a05710e26266e91a1dd5d8d3678dbb
working_directory: ~/repo
steps:
- checko... | # Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.1@sha256:3f14ef64bad2cca6fc88c9e497ef8032bac44f8f8a8f213135592413ea699e15
working_directory: ~/repo
steps:
- checko... |
Update from Hackage at 2019-04-27T07:06:43Z | homepage: https://github.com/tsahyt/solar#readme
changelog-type: ''
hash: f7ceda8d2251a7d86f685d66eb22bc30d5cddf3458793d3b26b031b27b2a1816
test-bench-deps: {}
maintainer: paul@tsahyt.com
synopsis: Simple library for solar calculations
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
time: ! '>=1.8 && <1.10'
all-vers... | homepage: https://github.com/tsahyt/solar#readme
changelog-type: ''
hash: 499ba03876cb045b5b8314285eedde11dd29d4bbf981c81bf908c69e99418764
test-bench-deps: {}
maintainer: paul@tsahyt.com
synopsis: Simple library for solar calculations
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
time: ! '>=1.8 && <1.10'
all-vers... |
Set server name not IP. | # Glynn setup
ftp_host: '78.47.17.26'
ftp_dir: '/public_html'
ftp_passive: true
# optional
ftp_port: 21 # default 21
ftp_secure: false # default false
# credentials
| # Glynn setup
ftp_host: 'dedi302.your-server.de'
ftp_dir: '/public_html'
ftp_passive: true
# optional
ftp_port: 21 # default 21
ftp_secure: false # default false
# credentials
|
Update python import reorder module to use python3 | repos:
- repo: git://github.com/pre-commit/pre-commit-hooks
rev: v2.2.1
hooks:
- id: trailing-whitespace
- id: flake8
entry: flake8 --ignore E402,W503,W504,E126
- id: check-added-large-files
exclude: '^.+?\.ttf$'
- id: debug-statements
- id: end-of-file-fixer
... | repos:
- repo: git://github.com/pre-commit/pre-commit-hooks
rev: v2.2.1
hooks:
- id: trailing-whitespace
- id: flake8
entry: flake8 --ignore E402,W503,W504,E126
- id: check-added-large-files
exclude: '^.+?\.ttf$'
- id: debug-statements
- id: end-of-file-fixer
... |
Use the 'docker_container' and 'docker_image' modules as 'docker' as been deprecated | ---
- hosts: 'localhost'
tasks:
- name: 'Ensure that we can connect to this host'
ping:
roles:
- role: 'ansible-role-docker'
become: true
tasks:
- name: 'Ensure that the docker daemon is functional'
become: true
docker_ping:
register: result
retries: 5
delay: ... | ---
- hosts: 'localhost'
tasks:
- name: 'Ensure that we can connect to this host'
ping:
roles:
- role: 'ansible-role-docker'
become: true
tasks:
- name: 'Ensure that the docker daemon is functional'
become: true
docker_ping:
register: result
retries: 5
delay: ... |
Upgrade base image for Read the Docs | version: 2
build:
os: "ubuntu-20.04"
tools:
python: "3.8"
python:
install:
- method: pip
path: .
extra_requirements:
- doc
- cesium
sphinx:
# fail_on_warning: true # Too hard, maybe one day?
fail_on_warning: false
| version: 2
build:
os: "ubuntu-22.04"
tools:
python: "3.8"
python:
install:
- method: pip
path: .
extra_requirements:
- doc
- cesium
sphinx:
# fail_on_warning: true # Too hard, maybe one day?
fail_on_warning: false
|
Drop author var from template | name-template: 'v$NEXT_PATCH_VERSION'
tag-template: 'v$NEXT_PATCH_VERSION'
branches:
- 'master'
- 'develop'
exclude-lables:
- 'release'
categories:
- title: 'π Features'
labels:
- 'enhancement'
- title: 'π Bug Fixes'
labels:
- 'bug'
- title: 'π Documentation'
labels:
- 'docu... | name-template: 'v$NEXT_PATCH_VERSION'
tag-template: 'v$NEXT_PATCH_VERSION'
branches:
- 'master'
- 'develop'
exclude-lables:
- 'release'
categories:
- title: 'π Features'
labels:
- 'enhancement'
- title: 'π Bug Fixes'
labels:
- 'bug'
- title: 'π Documentation'
labels:
- 'docu... |
Remove owasp dependency check because it's currently broken | # This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Build
on:
workflow_dispatch:
inputs:
git-ref:
description: Git Ref (Optional)
required: false
push:
... | # This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Build
on:
workflow_dispatch:
inputs:
git-ref:
description: Git Ref (Optional)
required: false
push:
... |
Update from Hackage at 2020-11-26T19:13:33Z | homepage: https://github.com/incertia/data-as
changelog-type: markdown
hash: 3ab6f1543c6cee2fec70f6950cd4ce1255d2e2e41ca1e5bd2730756bcd9e873f
test-bench-deps: {}
maintainer: incertia@incertia.net
synopsis: Simple extensible sum
changelog: |
# Revision history for data-as
## 0.0.0.1
* initial release
basic-deps:... | homepage: https://github.com/incertia/data-as
changelog-type: markdown
hash: 93950151a5434e49884b3b554d06602424b30a60b9ca7f89637ee3a2ef34cb5b
test-bench-deps: {}
maintainer: incertia@incertia.net
synopsis: Simple extensible sum
changelog: |
# Revision history for data-as
## 0.0.0.1
* initial release
basic-deps:... |
Allow multiple uploaders on the same page | 1.0.1: First version of Uploader
1.0.2: Added JavaScript events for change, upload success and remove upload
1.0.3: Fix multiple uploads occuring in newer builds
1.0.4: Corrected support for maxSize property
| 1.0.1: First version of Uploader
1.0.2: Added JavaScript events for change, upload success and remove upload
1.0.3: Fix multiple uploads occuring in newer builds
1.0.4: Corrected support for maxSize property
1.0.5: Allow multiple uploaders on the same page
|
Remove optipng from build artifacts | machine:
node:
version:
0.10.24
python:
version:
2.7.3
dependencies:
pre:
- wget http://downloads.sourceforge.net/project/optipng/OptiPNG/optipng-0.7.5/optipng-0.7.5.tar.gz
- tar xvf optipng-0.7.5.tar.gz
- cd optipng-0.7.5; ./configure; make; sudo checkinstall -y;
- make deps
... | machine:
node:
version:
0.10.24
python:
version:
2.7.3
dependencies:
pre:
- wget http://downloads.sourceforge.net/project/optipng/OptiPNG/optipng-0.7.5/optipng-0.7.5.tar.gz
- tar xvf optipng-0.7.5.tar.gz
- cd optipng-0.7.5; ./configure; make; sudo checkinstall -y;
- rm -rf opti... |
Remove getty service from Stretch | driver:
name: dokken
privileged: true # because Docker and SystemD/Upstart
chef_version: <%= ENV['CHEF_VERSION'] || 'current' %>
transport:
name: dokken
provisioner:
name: dokken
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: debian-7
driver:
image: dokken/debian-7
pi... | driver:
name: dokken
privileged: true # because Docker and SystemD/Upstart
chef_version: <%= ENV['CHEF_VERSION'] || 'current' %>
transport:
name: dokken
provisioner:
name: dokken
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: debian-7
driver:
image: dokken/debian-7
pi... |
Update from Hackage at 2017-06-11T14:09:28Z | homepage: http://github.com/nominolo/ghc-syb
changelog-type: ''
hash: dc4326e7ea0f8064ab782b7ed95ec79fd9ad87ef0b6cca8066020b8477435652
test-bench-deps:
ghc: -any
base: -any
ghc-syb-utils: -any
filepath: -any
ghc-paths: -any
directory: -any
maintainer: Thomas Schilling <nominolo@googlemail.com>
synopsis: Scr... | homepage: http://github.com/nominolo/ghc-syb
changelog-type: ''
hash: f136fb719b1d93eb54c189867c3176f3b64c87e0c9c7c2690c470a0f75e5d952
test-bench-deps:
ghc: -any
base: -any
ghc-syb-utils: -any
filepath: -any
ghc-paths: -any
directory: -any
maintainer: Thomas Schilling <nominolo@googlemail.com>
synopsis: Scr... |
Add Python3 wallaby unit tests | - job:
name: vitrage-dashboard-integration-tests
parent: horizon-integration-tests
required-projects:
- name: openstack/horizon
- name: openstack/vitrage
- name: openstack/python-vitrageclient
- name: openstack/vitrage-dashboard
roles:
- zuul: openstack-infra/devstack
... | - job:
name: vitrage-dashboard-integration-tests
parent: horizon-integration-tests
required-projects:
- name: openstack/horizon
- name: openstack/vitrage
- name: openstack/python-vitrageclient
- name: openstack/vitrage-dashboard
roles:
- zuul: openstack-infra/devstack
... |
Move COPY_TARGET ENV declaration inline | machine:
environment:
IMPORT_PATH: "github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME"
COPY_TARGET: echo $GOPATH | sed 's/:.*//'
dependencies:
override:
- mkdir -p "$COPY_TARGET/src/$IMPORT_PATH"
- rsync -azC --delete ./ "$COPY_TARGET/src/$IMPORT_PATH/"
test:
pre:
- go vet ./...
... | machine:
environment:
IMPORT_PATH: "github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME"
dependencies:
override:
- COPY_TARGET=$( echo $GOPATH | sed 's/:.*//' ) mkdir -p "$COPY_TARGET/src/$IMPORT_PATH"
- COPY_TARGET=$( echo $GOPATH | sed 's/:.*//' ) rsync -azC --delete ./ "$COPY_TARGET/src/$IM... |
Change test report output dir | machine:
python:
version: 2.7.9
dependencies:
pre:
- pip install coverage python-coveralls
- pip install --upgrade setuptools
- sh mecab_install.sh
test:
pre:
- python -m nltk.downloader maxent_treebank_pos_tagger punkt stopwords
- nosetests tests/scripts_test... | machine:
python:
version: 2.7.9
dependencies:
pre:
- pip install coverage python-coveralls
- pip install --upgrade setuptools
- sh mecab_install.sh
test:
pre:
- python -m nltk.downloader maxent_treebank_pos_tagger punkt stopwords
- nosetests tests/scripts_test... |
Build on tag / release creation. | general:
artifacts:
- build/vistk.js
test:
post:
- grunt
| general:
artifacts:
- build/vistk.js
deployment:
release:
tag: /v[0-9]+(\.[0-9]+)*/
owner: romsson
commands:
- grunt
- echo "Deployment script goes here".
|
Add Python3 xena unit tests | - project:
templates:
- check-requirements
- openstack-cover-jobs
- openstack-lower-constraints-jobs
- openstack-python3-wallaby-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
- blazar-tempest-plugin-base
- blazar-tempest-plu... | - project:
templates:
- check-requirements
- openstack-cover-jobs
- openstack-lower-constraints-jobs
- openstack-python3-xena-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
- blazar-tempest-plugin-base
- blazar-tempest-plugin... |
Remove id from test definition | ---
crosscompute: 0.8.4
kind: project
id: p1
name: Project 1
tools:
- id: t1
- id: t2
results:
- id: r1
- id: r2
datasets:
- id: d1
- id: d2
| ---
crosscompute: 0.8.4
kind: project
name: Project 1
tools:
- id: t1
- id: t2
results:
- id: r1
- id: r2
datasets:
- id: d1
- id: d2
|
Fix coverage.py version for codeclimate-test-reporter | dependencies:
override:
- pip install tox tox-pyenv codeclimate-test-reporter
- pyenv global 2.7.11 3.1.5 3.2.6 3.3.6 3.4.4 3.5.1 pypy-4.0.1
test:
override:
- tox
post:
- codeclimate-test-reporter
deployment:
stable:
branch: master
commands:
- tox python setup.py bdist_egg
... | dependencies:
override:
- pip install tox tox-pyenv coverage==4.3.4 codeclimate-test-reporter
- pyenv global 2.7.11 3.1.5 3.2.6 3.3.6 3.4.4 3.5.1 pypy-4.0.1
test:
override:
- tox
post:
- codeclimate-test-reporter
deployment:
stable:
branch: master
commands:
- tox python setup.py ... |
Change volume to where the app actually resides | version: "3"
services:
web:
build: .
volumes:
- .:/marli
container_name: marli
links:
- db
ports:
- "3000:3000"
environment:
MARLI_DB_HOST: db
PRIVILEGES_BASE_URL: https://privileges.library.nyu.edu
PRIVILEGES_SUBLIBRARY_CODE: nyu_ag_noaleph_MaRLI
LOGI... | version: "3"
services:
web:
build: .
volumes:
- .:/app
container_name: marli
links:
- db
ports:
- "3000:3000"
environment:
MARLI_DB_HOST: db
PRIVILEGES_BASE_URL: https://privileges.library.nyu.edu
PRIVILEGES_SUBLIBRARY_CODE: nyu_ag_noaleph_MaRLI
LOGIN_... |
Fix typo in GitHub URL | {% set name = "flask-table" %}
{% set version = "0.5.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/plumdog/{{ name }}/archive/{{ version }}.tar.gz
sha256: bb8a15307cd4ea1f2b6be93b3ffe60a397099827439b4c389d624bf9c2939086
build:
noarch: python
number: 0
scri... | {% set name = "flask-table" %}
{% set version = "0.5.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/plumdog/{{ name }}/archive/v{{ version }}.tar.gz
sha256: bb8a15307cd4ea1f2b6be93b3ffe60a397099827439b4c389d624bf9c2939086
build:
noarch: python
number: 0
scr... |
Add imports for scikit-beam 0.0.7 | package:
name: scikit-beam
version: build_for_windows
source:
git_url: https://github.com/ericdill/scikit-beam
git_rev: build_for_windows
build:
number: 0
requirements:
build:
- python
- setuptools
- numpy
- six
- cython
run:
- python
- numpy
- scipy
- six
- xray... | package:
name: scikit-beam
version: build_for_windows
source:
git_url: https://github.com/ericdill/scikit-beam
git_rev: build-for-windows
build:
number: 0
requirements:
build:
- python
- setuptools
- numpy
- six
- cython
run:
- python
- numpy
- scipy
- six
- xray... |
Fix incorrect template dest in reflector role | ---
reflector:
files:
- src: mirrorupgrade.hook.j2
dest: /etc/pacman.d/hooksl
- src: reflector.service.j2
dest: /etc/systemd/system/reflector.service
- src: reflector.timer.j2
dest: /etc/systemd/system/reflector.timer
| ---
reflector:
files:
- src: mirrorupgrade.hook.j2
dest: /etc/pacman.d/hooks/mirrorupgrade.hook
- src: reflector.service.j2
dest: /etc/systemd/system/reflector.service
- src: reflector.timer.j2
dest: /etc/systemd/system/reflector.timer
|
Remove nix flake check from github actions | name: build
on:
push:
branches: main
pull_request:
branches: main
jobs:
haskell:
strategy:
fail-fast: false
matrix:
include:
- { os: ubuntu-latest }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v15... | name: build
on:
push:
branches: main
pull_request:
branches: main
jobs:
haskell:
strategy:
fail-fast: false
matrix:
include:
- { os: ubuntu-latest }
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v15
... |
Add the 1.18 run step | # Automatically build the project and run any configured tests for every push
# and submitted pull request. This can help catch issues that only occur on
# certain platforms or Java versions, and provides a first line of defence
# against bad commits.
name: build
on: [ pull_request, push ]
jobs:
build:
strategy... | # Automatically build the project and run any configured tests for every push
# and submitted pull request. This can help catch issues that only occur on
# certain platforms or Java versions, and provides a first line of defence
# against bad commits.
name: build
on: [ pull_request, push ]
jobs:
build:
strategy... |
Remove Java 15 build now that 16 is active | # This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: "Build"
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
... | # This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: "Build"
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
... |
Install globally so that harp compile works. | box: wercker/nodejs
# Build definition
build:
# The steps that will be executed on build
steps:
# A step that executes `npm install` command
- npm-install
# A custom script step, name value is used in the UI
# and the code value contains the command that get executed
- script:
name: har... | box: wercker/nodejs
# Build definition
build:
# The steps that will be executed on build
steps:
- script:
name: harp compile
code: |
npm -g install
harp compile
deploy :
steps :
- script:
name: Deploy to octohost.
code: |-
git push $GIT_REMOTE ... |
Configure matrix for ruby versions | on: push
name: Build
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
RAILS_ENV: test
CI: true
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1'
bundler-cac... | on: push
name: Build
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [
2.7
]
env:
RAILS_ENV: test
CI: true
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Ruby
... |
Remove the `--no-suggest` flag in github action | name: Continuous Integration
on:
push:
branches:
- master
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/
pull_request: ~
jobs:
static-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: '7.3'
tools: ... | name: Continuous Integration
on:
push:
branches:
- master
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/
pull_request: ~
jobs:
static-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: '7.3'
coverag... |
Enable CodeClimate checks for guides | version: "2"
plugins:
rubocop:
enabled: true
config:
file: .rubocop.yml
channel: "rubocop-0-60" # need to keep this value the same as rubocop version
# https://docs.codeclimate.com/v1.0/docs/rubocop#section-using-rubocop-s-newer-versions
eslint:
enabled: true
ch... | version: "2"
plugins:
rubocop:
enabled: true
config:
file: .rubocop.yml
channel: "rubocop-0-60" # need to keep this value the same as rubocop version
# https://docs.codeclimate.com/v1.0/docs/rubocop#section-using-rubocop-s-newer-versions
eslint:
enabled: true
ch... |
Use v2 format for RTFD configuration, add some options | formats:
- htmlzip
- pdf
python:
version: 3
pip_install: true
extra_requirements:
- docs
| version: 2
formats:
- htmlzip
- pdf
build:
image: stable
python:
version: 3.7
install:
- method: pip
path: .
extra_requirements:
- docs
sphinx:
builder: html
configuration: docs/conf.py
fail_on_warning: true
|
Add astropy to env file | name: test_env
dependencies:
- python=3.5
- xarray
- dask
- numpy
- pytest
- future
- scipy
- flake8
- pip:
- codecov
- pytest-cov
- "--editable=git+https://github.com/xgcm/xgcm.git@master#egg=xgcm"
| name: test_env
dependencies:
- python=3.5
- xarray
- dask
- numpy
- pytest
- future
- scipy
- flake8
- astropy
- pip:
- codecov
- pytest-cov
- "--editable=git+https://github.com/xgcm/xgcm.git@master#egg=xgcm"
|
Fix ansi-wl-pprint dependency for older snapshots too | resolver: lts-7.13
packages:
- 'prettyprinter'
- 'prettyprinter-ansi-terminal'
- 'prettyprinter-compat-wl-pprint'
- 'prettyprinter-compat-ansi-wl-pprint'
- 'prettyprinter-convert-ansi-wl-pprint'
- 'prettyprinter-compat-annotated-wl-pprint'
- location:
git: https://github.com/quchen/... | resolver: lts-7.13
packages:
- 'prettyprinter'
- 'prettyprinter-ansi-terminal'
- 'prettyprinter-compat-wl-pprint'
- 'prettyprinter-compat-ansi-wl-pprint'
- 'prettyprinter-convert-ansi-wl-pprint'
- 'prettyprinter-compat-annotated-wl-pprint'
extra-deps:
- pgp-wordlist-0.1.0.2
- ansi-wl-ppr... |
Set up CI with Azure Pipelines | name: LinqToTypeScriptInDev
trigger:
- InDev
pool:
vmImage: 'ubuntu-16.04'
strategy:
matrix:
node_10_x:
node_version: 10.x
node_12_x:
node_version: 12.x
steps:
- task: NodeTool@0
inputs:
versionSpec: $(node_version)
- script: |
npm install -g typescript tslint@5.12.1 jest rollup... | name: LinqToTypeScriptInDev
trigger:
- InDev
pool:
vmImage: 'ubuntu-16.04'
strategy:
matrix:
node_10_x:
node_version: 10.x
node_12_x:
node_version: 12.x
steps:
- task: NodeTool@0
inputs:
versionSpec: $(node_version)
- script: |
npm install -g typescript tslint@5.12.1 jest rollup... |
Create separate NODE_ENVs for testing and production building | machine:
node:
version: 4.4.4
environment:
# We need to build React in a production environment.
NODE_ENV: production
dependencies:
# Gulp must be installed in the global environment.
pre:
- npm install -g gulp-cli
# Modules for compiling assets live in devDependencies, which are not
# inst... | machine:
node:
version: 4.4.4
environment:
NODE_ENV: test
dependencies:
# Gulp must be installed in the global environment.
pre:
- npm install -g gulp-cli
post:
- npm install -g aws-cli
test:
post:
# For Precog.
- cp -R build data index.html $CIRCLE_ARTIFACTS
# For hosting on mapz... |
Update CircleCI configuration for new Docker layout. | machine:
services:
- docker
dependencies:
override:
- docker info
- docker pull thewtex/itkultrasound-base
test:
override:
- mkdir ~/ITKUltrasound-build
- docker run -v ~/ITKUltrasound:/usr/src/ITKUltrasound -v ~/ITKUltrasound-build:/usr/src/ITKUltrasound-build thewtex/itkultrasound-base /us... | machine:
services:
- docker
dependencies:
override:
- docker info
- docker pull thewtex/itkultrasound-base
- docker pull thewtex/itkultrasound-test
test:
override:
- mkdir ~/ITKUltrasound-build
- docker run -v ~/ITKUltrasound:/usr/src/ITKUltrasound -v ~/ITKUltrasound-build:/usr/src/ITKUl... |
Move covarage to $CIRCLE_ARTIFACTS to see in CircleCI | dependencies:
pre:
- google-chrome --version
- wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
- sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
- sudo apt-get update
- sudo apt-get --only-... | dependencies:
pre:
- google-chrome --version
- wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
- sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
- sudo apt-get update
- sudo apt-get --only-... |
Stop testing Python 3.3 on Travis | sudo: false
language: python
matrix:
include:
- python: '2.7'
env: TOXENV=py27
- python: '3.3'
env: TOXENV=py33
- python: '3.4'
env: TOXENV=py34
- python: '3.5'
env: TOXENV=py35
- python: '3.6'
env: TOXENV=py36
- python: 'pypy'
env: TOXENV=pypy
- env: T... | sudo: false
language: python
matrix:
include:
- python: '2.7'
env: TOXENV=py27
- python: '3.4'
env: TOXENV=py34
- python: '3.5'
env: TOXENV=py35
- python: '3.6'
env: TOXENV=py36
- python: 'pypy'
env: TOXENV=pypy
- env: TOXENV=flake8
- env: TOXENV=checkspellin... |
Install correct Qt multimedia package for Travis builds | sudo: required
dist: trusty
language: cpp
compiler:
- gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq qt5-default libqt5svg5-dev libqt5multimedia5
script:
- mkdir build
- cd build
- qmake ..
- make
| sudo: required
dist: trusty
language: cpp
compiler:
- gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq qt5-default libqt5svg5-dev qtmultimedia5-dev
script:
- mkdir build
- cd build
- qmake ..
- make
|
Fix Travis CI for new pep257. | sudo: false
language: python
python:
- "3.3"
install:
- pip install flake8
- pip install pep257
script:
- flake8 . --max-line-length=80
- pep257 . --ignore=D202
notifications:
email: false
| sudo: false
language: python
python:
- "3.3"
install:
- pip install flake8
- pip install pep257
script:
- flake8 . --max-line-length=80
- pep257 . --ignore=D202 --ignore=D211
notifications:
email: false
|
Add jRuby and Rubinius in the recommended way in Travis CI | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-1.6.7
- jruby-head
- rbx-1.2.4
- rbx-head
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
|
Set rust version to 1.22.0 | dist: precise
language: rust
env:
global:
- LD_LIBRARY_PATH: /usr/local/lib
install:
- sudo add-apt-repository ppa:team-xbmc/ppa -y
- sudo apt-get update -q
- sudo apt-get install libsdl2-dev
| dist: precise
language: rust
rust:
- 1.22.0
env:
global:
- LD_LIBRARY_PATH: /usr/local/lib
install:
- sudo add-apt-repository ppa:team-xbmc/ppa -y
- sudo apt-get update -q
- sudo apt-get install libsdl2-dev
|
Enable windows builds in Travis | language: rust
osx_image: xcode9.2
rust:
- 1.28.0
- nightly
os:
- linux
- osx
matrix:
allow_failures:
- rust: nightly
cache:
directories:
- $HOME/.cargo
script:
- cd rust
- export CARGO_TARGET_DIR=/tmp/target
- export RUST_BACKTRACE=1
- RUSTFLAGS="-D warnings" cargo check --all || exit
... | language: rust
osx_image: xcode9.2
rust:
- 1.28.0
- nightly
os:
- linux
- osx
- windows
matrix:
allow_failures:
- rust: nightly
# windows runs in a Git Bash shell so these (should) work the same way as on *nix
cache:
directories:
- $HOME/.cargo
script:
- cd rust
- export CARGO_TARGET_DIR=... |
Add new mysql connector library | ---
language: python
python:
- '3.4'
- '3.3'
- '2.7'
env:
- DATABASE_URL=sqlite:///:memory:
- DATABASE_URL=postgresql+psycopg2://postgres@127.0.0.1/dataset
- DATABASE_URL=mysql+mysqlconnector://travis@127.0.0.1/dataset?charset=utf8
install:
- pip install -U pip wheel
- pip install --allow-external mysql-connector-pytho... | ---
language: python
python:
- '3.4'
- '3.3'
- '2.7'
env:
- DATABASE_URL=sqlite:///:memory:
- DATABASE_URL=postgresql+psycopg2://postgres@127.0.0.1/dataset
- DATABASE_URL=mysql+mysqlconnector://travis@127.0.0.1/dataset?charset=utf8
install:
- pip install -U pip wheel
- pip install mysqlclient flake8 psycopg2
before_scr... |
Change notification channel to avoid spam | language: node_js
node_js:
- "0.10"
notifications:
irc: "irc.freenode.net#kokarn"
| language: node_js
node_js:
- "0.10"
notifications:
irc: "irc.freenode.net#kokarnbuilds"
|
Add Node.js v6 to Travis-CI test matrix | sudo: false
language: node_js
node_js:
- '5'
- '4'
- 'iojs'
- '0.12'
- '0.10'
notifications:
slack:
secure: Yub5oEMfOzNDSAtXlC+B2IoALF7uMB8xX5l+FWy1PIKF4950Uelw1l9fN7Y6cXn+qPF8JxePcVCBn0HF5jp+MHRmLTUYqcCVxi10f5DkmTbDz31N40WiDMuo77fMlWgdieaLiHulbvbp93A6rSWyLCyjt9RvFit7JxWdcyqyDDk=
| sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
- 'iojs'
- '0.12'
- '0.10'
notifications:
slack:
secure: Yub5oEMfOzNDSAtXlC+B2IoALF7uMB8xX5l+FWy1PIKF4950Uelw1l9fN7Y6cXn+qPF8JxePcVCBn0HF5jp+MHRmLTUYqcCVxi10f5DkmTbDz31N40WiDMuo77fMlWgdieaLiHulbvbp93A6rSWyLCyjt9RvFit7JxWdcyqyDDk=
|
Remove jruby tests for the time being (failing) | language: ruby
cache:
bundler: true
directories:
- vendor/bundle
rvm:
- 2.3.1
- jruby-9.0.5.0
before_install:
- gem update --system '2.6.1'
- gem update bundler
- gem --version
script: "bundle exec rake test"
| language: ruby
cache:
bundler: true
directories:
- vendor/bundle
rvm:
- 2.3.1
before_install:
- gem update --system '2.6.1'
- gem update bundler
- gem --version
script: "bundle exec rake test"
|
Add `pandoc` to Travis-CI APT packages | sudo: false
dist: xenial
language: python
cache: pip
python:
- 3.6
- 3.7
- pypy3
before_install:
- pip install -r ci/requirements.txt
install:
- pip install .
script:
- coverage run --source=pronto -m unittest discover -v
- coverage xml --include "pronto/*"
after_success:
- codecov
- python-codacy-coverage -r cove... | sudo: false
dist: xenial
language: python
cache: pip
addons:
apt:
packages:
- pandoc
python:
- 3.6
- 3.7
- pypy3
before_install:
- pip install -r ci/requirements.txt
install:
- pip install .
script:
- coverage run --source=pronto -m unittest discover -v
- coverage xml --include "pronto/*"
after_success:... |
Add testing on Node v4 | language: node_js
node_js:
- '0.12'
- '0.10'
- '0.8'
- 'iojs'
before_install:
- npm install -g npm@~1.4.6
| sudo: false
language: node_js
node_js:
- '4'
- '0.12'
- '0.10'
- '0.8'
before_install:
- 'if [ "${TRAVIS_NODE_VERSION}" == "0.8" ]; then npm install -g npm@2.12.1; fi'
|
Build with gcc and clang | sudo: required
dist: bionic
language: c
install:
- sudo apt-get install -y --force-yes gcc make cmake libglib2.0-dev
- sudo apt-get install -y --force-yes autoconf automake libtool xutils-dev
- sudo apt-get install -y --force-yes jq
env:
matrix:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
before_script:
-... | sudo: required
dist: bionic
language: c
install:
- sudo apt-get install -y --force-yes gcc make cmake libglib2.0-dev
- sudo apt-get install -y --force-yes clang
- sudo apt-get install -y --force-yes autoconf automake libtool xutils-dev
- sudo apt-get install -y --force-yes jq
env:
matrix:
- BUILD_TYPE=Deb... |
Add CNAME file to GitHub pages | language: clojure
jdk:
- oraclejdk8
install:
- wget -O boot https://github.com/boot-clj/boot/releases/download/2.4.0/boot.sh
- chmod 755 boot
- ./boot -V
script:
- ./boot produce
after_success:
- cd target
- git init
- git config user.name "Travis CI"
- git config user.email "andrewdolby@gmail.com"
- git add .
- git co... | language: clojure
jdk:
- oraclejdk8
install:
- wget -O boot https://github.com/boot-clj/boot/releases/download/2.4.0/boot.sh
- chmod 755 boot
- ./boot -V
script:
- ./boot produce
after_success:
- cd target
- git init
- git config user.name "Travis CI"
- git config user.email "andrewdolby@gmail.com"
- echo "andrewdolby.... |
Upgrade Travis-CI builds to PG 9.4 and Python 3.5. (merge master) | language: python
python:
- "3.4"
- "2.7"
addons:
postgresql: "9.3"
before_install:
- export PATH=/usr/lib/postgresql/9.3/bin:$PATH
- sudo locale-gen --no-archive fr_FR.UTF-8
- sudo mkdir -p /extra/pg/ts1 /extra/pg/ts2
- sudo chown postgres:postgres /extra/pg/ts1 /extra/pg/ts2
- sudo apt-get update -qq
... | language: python
python:
- "3.5"
- "2.7"
addons:
postgresql: "9.4"
before_install:
- export PATH=/usr/lib/postgresql/9.4/bin:$PATH
- sudo locale-gen --no-archive fr_FR.UTF-8
- sudo mkdir -p /extra/pg/ts1 /extra/pg/ts2
- sudo chown postgres:postgres /extra/pg/ts1 /extra/pg/ts2
- sudo apt-get update -qq
... |
Support Node 6 and 7 | language: node_js
node_js:
- 4
- 5
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- 4
- 5
- 6
- 7
before_script:
- npm install -g grunt-cli
|
Add in custom netrc file for builds | language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- "2.0.0"
script: "bundle exec ruby ./spec_helper.rb"
| language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- "2.0.0"
script: "bundle exec ruby ./spec_helper.rb"
before_install:
- "# This entry was added for connecting to the Acquia Cloud API\nmachine cloudapi.acquia.com\n login me@acquia.com\n password t0ps3cret" > ~/.netrc
|
Add retry to `gem install bundler` for Travis | script: 'ci/travis.rb'
before_install:
- gem install bundler
rvm:
- 1.9.3
- 2.0.0
env:
- "GEM=railties"
- "GEM=ap,am,amo,as,av"
- "GEM=ar:mysql"
- "GEM=ar:mysql2"
- "GEM=ar:sqlite3"
- "GEM=ar:postgresql"
notifications:
email: false
irc:
on_success: change
on_failure: always
channels:
... | script: 'ci/travis.rb'
before_install:
- travis_retry gem install bundler
rvm:
- 1.9.3
- 2.0.0
env:
- "GEM=railties"
- "GEM=ap,am,amo,as,av"
- "GEM=ar:mysql"
- "GEM=ar:mysql2"
- "GEM=ar:sqlite3"
- "GEM=ar:postgresql"
notifications:
email: false
irc:
on_success: change
on_failure: always
... |
Add Code Climate to Travis CI. | language: node_js
node_js:
- "7.7.3" | language: node_js
node_js:
- "7.7.3"
addons:
code_climate:
repo_token: 34d7a7423409180c47b106b12a4db36271a9dbb743913aa2f4b2894d4c0bf967 |
Test on 2.071.0 and skip testing libasync on 2.067.1. | language: d
d:
# order: latest DMD, oldest DMD, LDC/GDC, remaining DMD versions
# this way the overall test time gets cut down (GDC/LDC are a lot
# slower tham DMD, so they should be started early), while still
# catching most DMD version related build failures early
- dmd-2.070.0
- dmd-2.067.1
- ldc-0.1... | language: d
d:
# order: latest DMD, oldest DMD, LDC/GDC, remaining DMD versions
# this way the overall test time gets cut down (GDC/LDC are a lot
# slower tham DMD, so they should be started early), while still
# catching most DMD version related build failures early
- dmd-2.071.0
- dmd-2.067.1
- ldc-0.1... |
Add Google chrome to Travis CI config | language: ruby
rvm:
- 2.4.4
before_install:
- curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - && sudo apt-get install -y nodejs
before_script:
- cd lib/assets && npm install && npm run bundle -- -p && cd -
- cp config/database_example.yml config/database.yml
- cp config/secrets_example.yml conf... | language: ruby
addons:
chrome: beta
rvm:
- 2.4.4
before_install:
- curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - && sudo apt-get install -y nodejs
before_script:
- cd lib/assets && npm install && npm run bundle -- -p && cd -
- cp config/database_example.yml config/database.yml
- cp config/... |
Update bundler on Travis CI | language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
| language: ruby
before_install:
- gem update bundler
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
|
Update dependencies for Travis CI | matrix:
include:
- os: linux
dist: xenial
sudo: false
- os: linux
dist: trusty
sudo: false
- os: osx
before_install:
- brew update
- brew list protobuf &>/dev/null || brew install protobuf
addons:
apt:
packages:
- libprotobuf-dev
- protobuf-c... | matrix:
include:
- os: linux
dist: bionic
sudo: false
- os: linux
dist: xenial
sudo: false
- os: linux
dist: trusty
sudo: false
- os: osx
before_install:
- brew update
- brew list protobuf &>/dev/null || brew install protobuf
addons:
apt:
... |
Work around Yarn 1.1.0 bug in Travis | ---
language: node_js
node_js:
- "6"
sudo: false
cache:
yarn: true
directories:
- $HOME/.npm
- $HOME/.cache # includes bowers cache
env:
matrix:
- EMBER_TRY_SCENARIO=ember-lts-2.4
- EMBER_TRY_SCENARIO=ember-lts-2.8
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
... | ---
language: node_js
node_js:
- "6"
sudo: false
cache:
yarn: true
directories:
- $HOME/.npm
- $HOME/.cache # includes bowers cache
env:
matrix:
- EMBER_TRY_SCENARIO=ember-lts-2.4
- EMBER_TRY_SCENARIO=ember-lts-2.8
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
... |
Add node.js 7 to build matrix | language: node_js
sudo: false
node_js:
- "6"
- "5"
- "4"
- "0.12"
- "0.10"
env:
- MONGODB_VERSION="2.6.11"
- MONGODB_VERSION="3.0.7"
- MONGODB_VERSION="3.2.0"
before_script:
- npm install -g istanbul
- npm install coveralls
- npm install mocha-lcov-reporter
-
- wget http://fastdl.mongodb.o... | language: node_js
sudo: false
node_js:
- "7"
- "6"
- "5"
- "4"
- "0.12"
- "0.10"
env:
- MONGODB_VERSION="2.6.11"
- MONGODB_VERSION="3.0.7"
- MONGODB_VERSION="3.2.0"
before_script:
- npm install -g istanbul
- npm install coveralls
- npm install mocha-lcov-reporter
-
- wget http://fastdl.m... |
Add Ruby 2.1.0 to Travis CI mix. | language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx
services:
- mongodb
| language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx
services:
- mongodb
|
Drop Ruby 2.0 and 2.1 | sudo: false
language: ruby
rvm:
- "2.0"
- "2.1"
- "2.2"
- "2.3.3"
- "2.4.1"
- "jruby-19mode"
before_script:
- git submodule update --init
- gem update bundler
- bundle install
- bundle update
script:
- make
| sudo: false
language: ruby
rvm:
- "2.2"
- "2.3.3"
- "2.4.1"
- "jruby-19mode"
before_script:
- git submodule update --init
- gem update bundler
- bundle install
- bundle update
script:
- make
|
Move Travis to 2.0 and sqlite3 | before_script:
- "echo 'test:\n adapter: mysql2\n database: journey_test\n user: root\n encoding: utf8' >config/database.yml"
- "bundle exec rake db:migrate RAILS_ENV=test"
rvm:
- "1.9.3"
| rvm:
- "2.0.0-p195"
|
Add Ruby 1.8.7 to Travis testing. | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
gemfile:
- gemfiles/rails3.1.gemfile
- gemfiles/rails3.2.gemfile
- gemfiles/rails4.0.gemfile
notifications:
email: false
campfire:
on_success: change
on_failure: always
rooms:
- secure: "gxEt3SeVn1kup6PfB6hiQu6eWsefmMEdd8U1qPSS6vlRjsM7... | language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- jruby-19mode
gemfile:
- gemfiles/rails3.1.gemfile
- gemfiles/rails3.2.gemfile
- gemfiles/rails4.0.gemfile
matrix:
exclude:
- rvm: 1.8.7
gemfile: gemfiles/rails4.0.gemfile
notifications:
email: false
campfire:
on_success: change
on_failu... |
Make sure pip and setuptools are up to date on Travis | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -r dev-requirements.txt
- python setup.py develop
script: python runtests.py
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install --upgrade pip setuptools
- pip install -r dev-requirements.txt
- pip install -e .
script: python runtests.py
|
Change Travis script for Makefile use | sudo: false
language: node_js
node_js:
- "0.12"
notifications:
irc:
channels:
- "irc.mozilla.org#pageshot"
on_success: change
template:
- "%{message}: %{repository}#%{build_number} (%{branch} - %{commit} : %{author}) %{build_url}"
before_install:
- "export DISPLAY=:99.0"
- "/sbin/start... | sudo: false
language: node_js
node_js:
- "0.12"
notifications:
irc:
channels:
- "irc.mozilla.org#pageshot"
on_success: change
template:
- "%{message}: %{repository}#%{build_number} (%{branch} - %{commit} : %{author}) %{build_url}"
before_install:
- "export DISPLAY=:99.0"
- "/sbin/start... |
Add Node v7 to Travis configuration | sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- "6"
- "5"
- "4"
before_install:
- npm i -g npm@^2.0.0
before_script:
- npm prune
after_success:
- 'curl -Lo travis_after_all.py https://git.io/travis_after_all'
- python travis_after_all.py
- ... | sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- "7"
- "6"
- "5"
- "4"
before_install:
- npm i -g npm@^2.0.0
before_script:
- npm prune
after_success:
- 'curl -Lo travis_after_all.py https://git.io/travis_after_all'
- python travis_after_all... |
Make service public for Sf 4 compatibility | services:
spyrit.util.inflector:
class: Spyrit\PropelDatagridBundle\Util\Inflector | services:
spyrit.util.inflector:
public: true
class: Spyrit\PropelDatagridBundle\Util\Inflector
|
Reduce the size of the git repository downloaded during TravisCI testing. | language: java
jdk:
- openjdk7
- oraclejdk7
before_install:
- rvm use 1.9.3
install:
- bundle install
script: buildr clean package
| language: java
jdk:
- openjdk7
- oraclejdk7
before_install:
- rvm use 1.9.3
install:
- bundle install
script: buildr clean package
git:
depth: 10
|
Use module name for unittest for Python 2 | dist: xenial
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
- 3.9-dev
- pypy2.7-6.0
- pypy3.5
env:
global:
- EXECUTING_SLOW_TESTS=1
- COVERALLS_PARALLEL=true
before_install:
- pip install --upgrade coveralls asttokens pytest setuptools setuptools_scm pep517
install:
- p... | dist: xenial
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
- 3.9-dev
- pypy2.7-6.0
- pypy3.5
env:
global:
- EXECUTING_SLOW_TESTS=1
- COVERALLS_PARALLEL=true
before_install:
- pip install --upgrade coveralls asttokens pytest setuptools setuptools_scm pep517
install:
- p... |
Enable building for PHP7.3 and 7.4 snapshot as well | matrix:
include:
- language: php
php: 7.2
os: linux
before_script:
- composer install
after_script:
- sh .travis.coverage.sh
env:
- COVERAGE_FLAGS="--coverage-text --coverage-clover=clover.xml"
- language: php
php: nightly
before_script:
... | matrix:
include:
- language: php
php: 7.2
os: linux
before_script:
- composer install
- language: php
php: 7.3
os: linux
before_script:
- composer install
after_script:
- sh .travis.coverage.sh
env:
- COVERAGE_FLAGS="--coverage-te... |
Fix cocoapods to v1 beta 2 |
language: objective-c
osx_image: xcode7.2
before_install:
- export LANG=en_US.UTF-8
install:
- gem install cocoapods --pre --no-document
- gem install xcpretty --no-document
- pod _1.0.0.beta.3_ install
- cd project && pod _1.0.0.beta.3_ install
script:
- rake travis
|
language: objective-c
osx_image: xcode7.2
before_install:
- export LANG=en_US.UTF-8
install:
- gem install cocoapods -v 1.0.0.beta.2 --no-document
- gem install xcpretty --no-document
- pod _1.0.0.beta.3_ install
- cd project && pod _1.0.0.beta.2_ install
script:
- rake travis
|
Enable Redis extension on Travis CI | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
install:
- composer install
before_script:
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
install:
- composer install
before_install:
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
|
Add force flags for homesick clone | language: bash
git:
submodules: false
before_script:
- gem install homesick
script:
- homesick clone "matthiasvegh/dotfiles"
- homesick symlink -f "dotfiles"
- homesick rc --force "dotfiles"
| language: bash
git:
submodules: false
before_script:
- gem install homesick
script:
- homesick clone --force "matthiasvegh/dotfiles"
- homesick symlink --force "dotfiles"
- homesick rc --force "dotfiles"
|
Switch Travis to build melodic | sudo: required
dist: trusty
language: generic
compiler:
- gcc
env:
matrix:
- ROS_DISTRO="kinetic" PRERELEASE=true
install:
- git clone https://github.com/ros-industrial/industrial_ci.git .ci_config
script:
- .ci_config/travis.sh
| sudo: required
dist: trusty
language: generic
compiler:
- gcc
env:
matrix:
- ROS_DISTRO="melodic" PRERELEASE=true
install:
- git clone https://github.com/ros-industrial/industrial_ci.git .ci_config
script:
- .ci_config/travis.sh
|
Add HHVM and HHVM nightly to Travis CI builds | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
before_script: composer install --no-dev
script: phpunit --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
| language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
before_script: composer install --no-dev
script: phpunit --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.cl... |
Build and test on node v4 and v5. | language: node_js
node_js:
- "0.10"
- "4.0"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- g++ -v
| language: node_js
node_js:
- "0.10"
- "4"
- "5"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- g++ -v
|
Remove out of date comment | sudo: false
language: node_js
os:
- linux
- osx
node_js:
# Node 11 is turned off because it blocks building until a security issue with node-sass is fixed.
- "node"
- "12"
- "10"
- "8"
before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
... | sudo: false
language: node_js
os:
- linux
- osx
node_js:
- "node"
- "12"
- "10"
- "8"
before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
sleep 3;
fi
script:
- npm install
- npm test
- npm r... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.