Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Disable git shallow clone for check license script | env:
global:
TEST_BRANCH: $TRAVIS_BRANCH
before_script:
# Rename the branch we're on, so that it's not in the way for the
# subsequent fetch. It's ok if this fails, it just means we're not on any
# branch.
- git branch -m temp-branch || true
# Git trick: Fetch directly into our local br... | # Disable git shallow clone. We need full history for validating copyright year of each file.
git:
depth: false
env:
global:
TEST_BRANCH: $TRAVIS_BRANCH
before_script:
# Rename the branch we're on, so that it's not in the way for the
# subsequent fetch. It's ok if this fails, it just means we'... |
Update to use Docker Container | language: node_js
node_js:
- "0.10"
script:
- "npm run-script ci"
| language: node_js
node_js:
- "0.10"
sudo: false
script:
- "npm run-script ci"
|
Add boost_system to continuous build | before_script:
- sudo apt-get install libboost-program-options-dev
- sudo apt-get install libboost-regex-dev
- sudo apt-get install libboost-test-dev
- sudo apt-get install flex
- autoreconf -ifv
- ./configure
script: make
after_script:
- make check
- ./tests/run-system-tests.pl
| before_script:
- sudo apt-get install libboost-program-options-dev
- sudo apt-get install libboost-regex-dev
- sudo apt-get install libboost-test-dev
- sudo apt-get install libboost-system-dev
- sudo apt-get install flex
- autoreconf -ifv
- ./configure
script: make
after_script:
- make check
- ./tests/run-syst... |
Add ability to unittest puppet 4 | ---
sudo: false
language: ruby
bundler_args: --without system_tests
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
matrix:
fast_finish: true
include:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSI... | ---
sudo: false
language: ruby
bundler_args: --without system_tests
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
matrix:
fast_finish: true
include:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSI... |
Update from Hackage at 2019-03-08T19:02:08Z | homepage: http://github.com/bgamari/svm-light-utils
changelog-type: ''
hash: 9bfaa73ed833c07e4e166e7638eb656f497d8279be6289893f9b076462ca1bfb
test-bench-deps: {}
maintainer: bgamari@gmail.com
synopsis: Parsers and formatters for the SVMlight input file format
changelog: ''
basic-deps:
bytestring: ! '>=0.10 && <0.11'
... | homepage: http://github.com/bgamari/svm-light-utils
changelog-type: ''
hash: aa5adc315ae6be09b79e5e44951d43969898eaa1105991425fb90e185e773657
test-bench-deps: {}
maintainer: bgamari@gmail.com
synopsis: Parsers and formatters for the SVMlight input file format
changelog: ''
basic-deps:
bytestring: ! '>=0.10 && <0.11'
... |
Add group write permissions to rotated logs. | # Documentation: https://galaxy.ansible.com/list#/roles/1117
logrotate_scripts:
- name: wordpress-sites
path: "{{ www_root }}/**/logs/*.log"
options:
- weekly
- maxsize 50M
- missingok
- rotate 8
- compress
- delaycompress
- notifempty
- create 0640 {{ web_user ... | # Documentation: https://galaxy.ansible.com/list#/roles/1117
logrotate_scripts:
- name: wordpress-sites
path: "{{ www_root }}/**/logs/*.log"
options:
- weekly
- maxsize 50M
- missingok
- rotate 8
- compress
- delaycompress
- notifempty
- create 0660 {{ web_user ... |
Update the readthedocs table of content | site_name: Ada Database Objects
docs_dir: docs
pages:
- Introduction: index.md
- Installation: Installation.md
- Tutorial: Tutorial.md
- Session: ADO_Sessions.md
- Database Statement: ADO_Statements.md
- Model Mapping: Model.md
- Trouble shotting: Debugging.md
theme: readthedocs
| site_name: Ada Database Objects
docs_dir: docs
pages:
- Introduction: index.md
- Installation: Installation.md
- Tutorial: Tutorial.md
- Session: ADO_Sessions.md
- Database Statement: ADO_Statements.md
- Model Mapping: ADO_Model.md
- Trouble shotting: Debugging.md
theme: readthedocs
|
Change back to original Postgres image | version: '2'
services:
jekyll:
#image: codefordc2/housing-insights-jekyll
build:
context: docs
command:
- jekyll serve --watch --incremental --force_polling
volumes:
- ./docs:/srv/jekyll
ports:
- "4000:4000"
web:
... | version: '2'
services:
jekyll:
#image: codefordc2/housing-insights-jekyll
build:
context: docs
command:
- jekyll serve --watch --incremental --force_polling
volumes:
- ./docs:/srv/jekyll
ports:
- "4000:4000"
web:
... |
Fix some docker development environment issues. | version: "2"
services:
db:
image: mdillon/postgis:10-alpine
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
ports:
- "9001:5432"
web:
build:
context: .
environment:
PORT: 9000
DB_HOSTNAME: db
DB_PORT: 5432
DB_USERNAME: postgres
... | version: "2"
services:
db:
image: mdillon/postgis:10-alpine
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
ports:
- "9001:5432"
web:
build:
context: .
environment:
PORT: 9000
DB_HOSTNAME: db
DB_PORT: 5432
DB_USERNAME: postgres
... |
Disable some modules by default | # velox: velox.yaml
%YAML 1.1
---
modules:
- layout_tile
- layout_grid
- wallpaper
- spawn
- mpd
border_width: 2
--- !velox:layout_tile
master_factor: 0.5
master_count: 1
column_count: 1
--- !velox:mpd
host: localhost
port: 6600
timeout: 2000
--- !velox:wallpaper
# NOTE: This path is relative to th... | # velox: velox.yaml
%YAML 1.1
---
modules:
- layout_tile
- layout_grid
# - wallpaper
# - spawn
# - mpd
border_width: 2
--- !velox:layout_tile
master_factor: 0.5
master_count: 1
column_count: 1
# --- !velox:mpd
# host: localhost
# port: 6600
# timeout: 2000
# --- !velox:wallpaper
# # NOTE: This path... |
Stop testing against Ruby 1.9.3 in Travis | language: ruby
rvm:
- 2.1.4
- 1.9.3
gemfile:
- gemfiles/Gemfile.rails3
- gemfiles/Gemfile.rails4
addons:
code_climate:
repo_token: 7ec6fd701b7d2b206cdd233c2202b6e11c8ba6af01f8a93f5e24595008ac20a0
| language: ruby
rvm:
- 2.1.4
gemfile:
- gemfiles/Gemfile.rails3
- gemfiles/Gemfile.rails4
addons:
code_climate:
repo_token: 7ec6fd701b7d2b206cdd233c2202b6e11c8ba6af01f8a93f5e24595008ac20a0
|
Drop Go 1.7.5, 1.8, add 1.7.6, 1.8.3, 1.9rc2 | language: go
go:
- 1.7.5
- 1.8
install:
- go get github.com/golang/lint/golint
script:
- golint -set_exit_status
- go vet $(go list ./...)
- go test $(go list ./...)
sudo: false
| language: go
go:
- 1.7.6
- 1.8.3
- 1.9rc2
install:
- go get github.com/golang/lint/golint
script:
- golint -set_exit_status
- go vet $(go list ./...)
- go test $(go list ./...)
sudo: false
|
Use generic "beta" version for testing in Travis. | language: rust
sudo: true
rust:
- nightly
- 1.0.0-beta.3
after_success: |
cargo clean;
cargo test --no-run;
sudo apt-get update &&
sudo apt-get install libcurl4-openssl-dev libelf-dev libdw-dev binutils-dev &&
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
tar xzf master.tar.gz ... | language: rust
sudo: true
rust:
- nightly
- beta
after_success: |
cargo clean;
cargo test --no-run;
sudo apt-get update &&
sudo apt-get install libcurl4-openssl-dev libelf-dev libdw-dev binutils-dev &&
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
tar xzf master.tar.gz &&
mkd... |
Use Node.js 15 for build | language: node_js
node_js:
- "stable"
cache:
directories:
- node_modules
script:
- yarn build
- yarn test
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
local_dir: build
on:
branch: master
| language: node_js
node_js:
- 15
cache:
directories:
- node_modules
script:
- yarn build
- yarn test
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
local_dir: build
on:
branch: master
|
Update Travis-CI to correct an error | language: java
jdk:
- oraclejdk8
branches:
only:
- master
- develop
install: ./gradlew assemble -P -PsonatypeUsername=argius -PsonatypePassword=''
script: ./gradlew test -P -PsonatypeUsername=argius -PsonatypePassword=''
| language: java
jdk:
- oraclejdk8
branches:
only:
- master
- develop
install: ./gradlew assemble -P -PsonatypeUsername=argius -PsonatypePassword=dummy
script: ./gradlew test -P -PsonatypeUsername=argius -PsonatypePassword=dummy
|
Fix unit tests with lowest dependencies | sudo: false
language: php
php:
- 7.1
- 7.2
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
env:
matrix:
- PREFER_LOWEST = "--prefer-lowest --prefer-stable"
- PREFER_LOWEST = ""
before_script:
- travis_retry composer self-update
- travis_ret... | sudo: false
language: php
php:
- 7.1
- 7.2
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
env:
matrix:
- PREFER_LOWEST="--prefer-lowest --prefer-stable"
- PREFER_LOWEST=""
before_script:
- travis_retry composer self-update
- travis_retry c... |
Use the recommended preset from eslint-plugin-chai-expect | env:
mocha: true
plugins:
- chai-expect
- chai-friendly
- mocha
extends:
- plugin:chai-friendly/recommended
# Override from root `.eslintrc.yml`
rules:
# Disabling this rule in favor of mocha/prefer-arrow-callback
# https://github.com/lo1tuma/eslint-plugin-mocha/blob/master/docs/rules/prefer-arrow-call... | env:
mocha: true
plugins:
- chai-friendly
- mocha
extends:
- plugin:chai-expect/recommended
- plugin:chai-friendly/recommended
# Override from root `.eslintrc.yml`
rules:
# Disabling this rule in favor of mocha/prefer-arrow-callback
# https://github.com/lo1tuma/eslint-plugin-mocha/blob/master/docs/rule... |
Switch to release version of xctool to fix Travis build errors | language: objective-c
before_install:
- brew update
- brew uninstall xctool
- brew install xctool --HEAD
script:
- rake server:start test test:building_without_core_data
| language: objective-c
before_install:
- brew update
- brew uninstall xctool
- brew install xctool
script:
- rake server:start test test:building_without_core_data
|
Drop pypy and pypy3 support, as support was dropped by Django | language: python
sudo: false
cache:
- pip
python:
- "2.7"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
env:
matrix:
- DJANGO="Django<1.9,>=1.8"
- DJANGO="Django<1.10,>=1.9"
- DJANGO="-e git+https://github.com/django/django.git@master#egg=Django"
matrix:
allow_failures:
- env: DJANGO="-e git+https:... | language: python
sudo: false
cache:
- pip
python:
- "2.7"
- "3.4"
- "3.5"
env:
matrix:
- DJANGO="Django<1.9,>=1.8"
- DJANGO="Django<1.10,>=1.9"
- DJANGO="-e git+https://github.com/django/django.git@master#egg=Django"
matrix:
allow_failures:
- env: DJANGO="-e git+https://github.com/django/dja... |
Test also srcdeps-maven on Travis CI | language: java
# Enable container-based infrastructure
# see http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2/repository
- $HOME/.m2/wrapper
script:
- ./mvnw -Prun-its clean install | language: java
# Enable container-based infrastructure
# see http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2/repository
- $HOME/.m2/wrapper
install:
- ./mvnw -version
# license plugin requires full git history
- git fetch --unsha... |
Add more recent Ruby to the build matrix | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
branches:
only:
- master
| rvm:
- 1.8.7
- 1.9.3
- 2.1.0
- jruby
branches:
only:
- master
|
Disable Chef 12 & Ruby 2.1 | language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.4
cache: bundler
env:
- CHEF_VERSION="~> 11.0"
- CHEF_VERSION="~> 12.0"
- CHEF_VERSION="~> 13.0"
matrix:
exclude:
- rvm: 2.0.0
env: CHEF_VERSION="~> 12.0"
- rvm: 2.0.0
env: CHEF_VERSION="~> 13.0"
- rvm: 2.1
env: CHEF_VERSION="~> 13.0"
- rvm: 2.2
... | language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.4
cache: bundler
env:
- CHEF_VERSION="~> 11.0"
- CHEF_VERSION="~> 12.0"
- CHEF_VERSION="~> 13.0"
matrix:
exclude:
- rvm: 2.0.0
env: CHEF_VERSION="~> 12.0"
- rvm: 2.0.0
env: CHEF_VERSION="~> 13.0"
- rvm: 2.1
env: CHEF_VERSION="~> 12.0"
- rvm: 2.1
... |
Update mono versions to build | language: csharp
sudo: false
mono:
- 4.8.1
- latest
os:
- linux
- osx
matrix:
exclude:
- os: osx
mono: latest
allow_failures:
- os: osx
- mono: latest
fast_finish: true
script:
- ./build.sh --target "Travis" | language: csharp
sudo: false
mono:
- 4.6.2 # in most common distros
- 4.2.1 # in Ubuntu LTS
- 5.0.1 # latest stable
os:
- linux
- osx
matrix:
exclude:
- os: osx
mono: 5.0.1
allow_failures:
- os: osx
- mono: 5.0.1
fast_finish: true
script:
- ./build.sh --target "Travis" |
Test on io.js 2.5.0 or later | sudo: false
cache:
directories:
- node_modules
git:
depth: 1
language: node_js
node_js:
- "0.12"
- "iojs-v2.4.0"
before_install:
- npm install -g grunt-cli
script: grunt travis
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/7a0fcab3f65f36d44ac5
on_success: always # optio... | sudo: false
cache:
directories:
- node_modules
git:
depth: 1
language: node_js
node_js:
- "0.12"
- "iojs-v2.4.0"
- "iojs"
before_install:
- npm install -g grunt-cli
script: grunt travis
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/7a0fcab3f65f36d44ac5
on_success: alwa... |
Fix MAF dependency pip install | sudo: required
dist: trusty
language: c++
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libhdf5-7 libhdf5-dev; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install hdf5 || echo "a brew error co... | sudo: required
dist: trusty
language: c++
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libhdf5-7 libhdf5-dev; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install hdf5 || echo "a brew error co... |
Allow build failures on Ruby 1.8 and head | language: ruby
rvm:
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
- rbx-head
- ree
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
notifications:
email:
- dendoh@gmail.com
| language: ruby
rvm:
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
- rbx-head
- ree
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
matrix:
allow_failures:
- rvm: jruby-18mode
- rvm: rbx-18mode
- rvm: rbx-head
- rvm: ree
- rvm: 1.8.7
- rvm: ruby-head
n... |
Update Travis CI to Node 4.4 | language: node_js
node_js:
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
- "iojs"
before_script:
- npm install -g grunt-cli
script: grunt test
after_script:
- codeclimate-test-reporter < coverage/lcov.info
addons:
code_climate:
repo_token: 55d134419444a71f8a409bfe7e0fe1c2cfcce91260612924a1fe731... | language: node_js
node_js:
- "4.4"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
- "iojs"
before_script:
- npm install -g grunt-cli
script: grunt test
after_script:
- codeclimate-test-reporter < coverage/lcov.info
addons:
code_climate:
repo_token: 55d134419444a71f8a409bfe7e0fe1c2cfcce91260612924a1fe731... |
Update Meshenger to 2.1.0 (210) | Categories:
- Phone & SMS
- Connectivity
- Internet
License: GPL-3.0-only
WebSite: https://github.com/meshenger-app/meshenger-android
SourceCode: https://github.com/meshenger-app/meshenger-android
IssueTracker: https://github.com/meshenger-app/meshenger-android/issues
AutoName: Meshenger
RepoType: git
Repo: htt... | Categories:
- Phone & SMS
- Connectivity
- Internet
License: GPL-3.0-only
WebSite: https://github.com/meshenger-app/meshenger-android
SourceCode: https://github.com/meshenger-app/meshenger-android
IssueTracker: https://github.com/meshenger-app/meshenger-android/issues
AutoName: Meshenger
RepoType: git
Repo: htt... |
Remove zuul merger datadog monitor setup | - name: install zuul check
copy:
src: zuul_server.py
dest: "{{ datadog_file_dir }}/zuul_server.py"
notify: restart dd-agent
- name: monitor zuul merger count
datadog_monitor:
api_key: "{{ secrets.datadog.api_key }}"
app_key: "{{ secrets.datadog.ansible_app_key }}"
name: zuul merger count
s... | - name: install zuul check
copy:
src: zuul_server.py
dest: "{{ datadog_file_dir }}/zuul_server.py"
notify: restart dd-agent
|
Add nightly Python to Travis | dist: xenial
language: python
python:
- "3.6"
- "3.7"
script:
- python setup.py build install
| dist: xenial # required for Python >= 3.7
language: python
python:
- "3.6"
- "3.7"
- "nightly"
script:
- python setup.py build install
|
Use Firefox 50.1.0 for Travis | sudo: false
language: cpp
compiler:
- gcc
env:
- FX_VERSION="49.0.2"
matrix:
fast_finish: true
#allow_failures:
# - env: FX_CHANNEL="beta"
notifications:
email: false
install:
- if [ $FX_VERSION = "49.0.2" ]; then
wget -O tarball "https://archive.mozilla.org/pub/firefox/tinderbox-... | sudo: false
language: cpp
compiler:
- gcc
env:
- FX_VERSION="50.1.0"
matrix:
fast_finish: true
#allow_failures:
# - env: FX_CHANNEL="beta"
notifications:
email: false
install:
- if [ $FX_VERSION = "50.1.0" ]; then
wget -O tarball "http://archive.mozilla.org/pub/firefox/tinderbox-b... |
Set the LD_LIBRARY_PATH env var | language: rust
rust:
- stable
env:
global:
- LIBSODIUM_VERSION="1.0.16"
- SODIUM_LIB_DIR="$HOME/libsodium-$LIBSODIUM_VERSION/lib"
- SODIUM_INC_DIR="$HOME/libsodium-$LIBSODIUM_VERSION/include"
install:
- ./.travis/install-libsodium.sh
cache:
cargo: true
apt: true
directories:
- $HOME/libsodiu... | language: rust
rust:
- stable
env:
global:
- LIBSODIUM_VERSION="1.0.16"
- SODIUM_LIB_DIR="$HOME/libsodium-$LIBSODIUM_VERSION/lib"
- SODIUM_INC_DIR="$HOME/libsodium-$LIBSODIUM_VERSION/include"
- LD_LIBRARY_PATH="$SODIUM_LIB_DIR:$LD_LIBRARY_PATH"
install:
- ./.travis/install-libsodium.sh
cache:
ca... |
Test on Nod.js 12 and teh ios, plz | language: node_js
node_js:
- "0.10"
| language: node_js
node_js:
- "0.10"
- "0.12"
- iojs
|
Add ruby-2.1.3 to rvm versions | language: ruby
rvm:
- 1.9.3
- 2.0.0
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.3
|
Switch to macOS for the builds | ---
language: node_js
node_js:
- '6'
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- g++-5
cache:
directories:
- node_modules
before_script:
- sh -e /etc/init.d/xvfb start
- sleep 5
script:
- make compile
- make lint
- make test
env:
global:
- DISPLAY=99.0
- CXX=... | ---
os:
- osx
language: node_js
node_js:
- '6'
cache:
directories:
- node_modules
script:
- make compile
- make lint
- make test
|
Send the test server to the bg | language: node_js
node_js:
- 0.10
env:
matrix:
- BROWSER=chrome BVER=stable
- BROWSER=chrome BVER=beta
- BROWSER=chrome BVER=unstable
# - BROWSER=firefox BVER=stable
# - BROWSER=firefox BVER=beta
# - BROWSER=firefox BVER=aurora
before_script:
node test/server.js
before_install:
- mkdir ... | language: node_js
node_js:
- 0.10
env:
matrix:
- BROWSER=chrome BVER=stable
- BROWSER=chrome BVER=beta
- BROWSER=chrome BVER=unstable
# - BROWSER=firefox BVER=stable
# - BROWSER=firefox BVER=beta
# - BROWSER=firefox BVER=aurora
before_script:
- node test/server.js &
before_install:
- mk... |
Call different mvn goals upon builds | language: java
sudo: false
cache:
directories:
- $HOME/.m2
jdk:
- openjdk7
| language: java
sudo: false
cache:
directories:
- $HOME/.m2
jdk:
- openjdk7
install: mvn clean install -DskipTests=true -q
# Run unit and integration tests
script: mvn verify -B -q
|
Change Node version from 0.11 to .0.12 in Travis | language: node_js
node_js:
- "0.11"
- "0.10"
script: make test
| language: node_js
node_js:
- "0.12"
- "0.10"
script: make test
|
Move to condaci 0.2.1, quieter CI notifications | env:
global:
- BINSTAR_USER: menpo
- PYTHON_VERSION: 2.7
install:
- wget https://raw.githubusercontent.com/jabooth/condaci/v0.2.0/condaci.py -O condaci.py
- python condaci.py setup $PYTHON_VERSION --channel $BINSTAR_USER
- export PATH=$HOME/miniconda/bin:$PATH
script:
- python condaci.py auto ./conda --bins... | env:
global:
- BINSTAR_USER: menpo
- PYTHON_VERSION: 2.7
install:
- wget https://raw.githubusercontent.com/jabooth/condaci/v0.2.1/condaci.py -O condaci.py
- python condaci.py setup $PYTHON_VERSION --channel $BINSTAR_USER
- export PATH=$HOME/miniconda/bin:$PATH
script:
- python condaci.py auto ./conda --bins... |
Add pwd to the log chmod | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer install -n
- chmod 0777 tests/_log -R
script: "`pwd`/bin/codecept run -c `pwd`/codeception.yml" | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer install -n
- "chmod 0777 `pwd`/tests/_log -R"
script: "`pwd`/bin/codecept run -c `pwd`/codeception.yml" |
Drop support for deprecated rubies (1.8.7, ree, etc) | # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
language: "ruby"
script: "bundle exec rake"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- ree
| # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
language: "ruby"
script: "bundle exec rake"
rvm:
- 1.9.2
- 1.9.3
- jruby-19mode
- rbx
|
Install Istanbul and Proof at Travis CI. | sudo: false
language: node_js
node_js:
- '12'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '12'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
|
Remove php 5.5 from allowed Travis build failures | language: php
php:
- 5.3
- 5.4
- 5.5
matrix:
allow_failures:
- php: 5.5
before_install:
- composer self-update --no-interaction --ansi
- composer config notify-on-install false
install:
- composer install --dev --no-progress --no-interaction --ansi --prefer-source
script:
- vendor/bin/phpunit --conf... | language: php
php:
- 5.3
- 5.4
- 5.5
before_install:
- composer self-update --no-interaction --ansi
- composer config notify-on-install false
install:
- composer install --dev --no-progress --no-interaction --ansi --prefer-source
script:
- vendor/bin/phpunit --configuration phpunit.xml.dist
after_script:
... |
Make Travis test only with the current LTS versions of node | sudo: false
branches:
only:
- master
language: node_js
cache:
directories:
- node_modules
node_js:
- "7"
- "8"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- npm run test | sudo: false
branches:
only:
- master
language: node_js
cache:
directories:
- node_modules
node_js:
- "10"
- "12"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- npm run test |
Test against JRuby in both Ruby 1.8 and 1.9 mode | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- rbx
- ree
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx
- ree
|
Remove ruby 1.9.3 from Travis CI build | language: ruby
rvm:
- 2.1.1
- 2.0.0
- 1.9.3
script: bundle exec rake
addons:
code_climate:
repo_token: fb989d7074228d42d517d6eaae724e7d4ce1a0c5e7cd3ba38e7433fa63c646eb | language: ruby
rvm:
- 2.1.1
- 2.0.0
script: bundle exec rake
addons:
code_climate:
repo_token: fb989d7074228d42d517d6eaae724e7d4ce1a0c5e7cd3ba38e7433fa63c646eb
|
Fix Travis by installing GhostScript. | language: perl
install: ""
script: make -j `nproc` && make test && make release
sudo: false
env:
global:
secure: jK5oSckHD3h+gKlkzB81TGdFmhO78HiUKk/BCV5PMWVeEwJfS+FeA8Sxj52atnE5BP8pIIWt50uxhZZ0WM3QmXZeo7LCBm5YWj+EHFIf/N157YOV710B7biyesydPvSScHFdwapgv8b7TlyBPn24Gm6bW+daynVE03BgRYK4Klc=
after_success: travis-github... | language: perl
install: ""
script: make -j `nproc` && make test && make release
sudo: false
addons:
apt:
packages: ghostscript
env:
global:
secure: jK5oSckHD3h+gKlkzB81TGdFmhO78HiUKk/BCV5PMWVeEwJfS+FeA8Sxj52atnE5BP8pIIWt50uxhZZ0WM3QmXZeo7LCBm5YWj+EHFIf/N157YOV710B7biyesydPvSScHFdwapgv8b7TlyBPn24Gm6bW+daynVE... |
Fix TravisCI to apt-get protoc behind the scenes so the build can continue | language: java
jdk:
- oraclejdk7
- oraclejdk8
- openjdk7
# Allow running on a container instead of a traditional VM
sudo: false
# show the logging of tests, and there's no need to run the daemon on a single-use container
script: ./gradlew check -iS --no-daemon
| language: groovy
addons:
apt:
packages:
- protobuf-compiler
jdk:
- oraclejdk7
- oraclejdk8
- openjdk7
# Allow running on a container instead of a traditional VM
sudo: false
# show the logging of tests, and there's no need to run the daemon on a single-use container
script: ./gradlew check -iS --no... |
Configure Travis for Firefox required by tests | language: ruby
rvm:
- 2.3.1
script:
- bundle exec rake db:migrate --trace
- RAILS_ENV=test bundle exec rake db:migrate --trace
- bundle exec rake db:test:prepare
- bundle exec rspec -fd spec/
| language: ruby
rvm:
- 2.3.1
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3 # give xvfb some time to start
script:
- bundle exec rake db:migrate --trace
- RAILS_ENV=test bundle exec rake db:migrate --trace
- bundle exec rake db:test:prepare
- bundle exec rspec -fd spec/
|
Add dependency to TravisCI for ruby-magic. | language: ruby
rvm:
- 2.2
services:
- postgresql
before_script:
- cp config/database.yml.travis config/database.yml
- psql -c 'create database travis_ci_test;' -U postgres
script:
- bundle exec rake spec
- bundle exec rake cucumber
| language: ruby
rvm:
- 2.2
addons:
apt_packages:
- libmagic-dev
services:
- postgresql
before_script:
- cp config/database.yml.travis config/database.yml
- psql -c 'create database travis_ci_test;' -U postgres
script:
- bundle exec rake spec
- bundle exec rake cucumber
|
Test Node 9 instead of 7 on Travis | language: node_js
node_js:
- 8
- 7
- 6
- 4
before_install:
- yarn config set no-progress
- yarn global add greenkeeper-lockfile@1
install:
- yarn
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
notifications:
email: true
after_success: npm run coverage
| language: node_js
node_js:
- 9
- 8
- 6
- 4
before_install:
- yarn config set no-progress
- yarn global add greenkeeper-lockfile@1
install:
- yarn
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
notifications:
email: true
after_success: npm run coverage
|
Update golang version in CI | language: go
sudo: false
go:
- 1.4.3
- 1.5.1
- tip
install:
- go get github.com/golang/lint/golint
script:
- test -z "$(golint ./... | tee /dev/stderr)"
- go test -v ./...
- go test -v -bench .
matrix:
allow_failures:
- go: tip
| language: go
sudo: false
go:
- 1.5
- 1.5.1
- 1.5.2
- 1.5.3
- 1.6
- tip
install:
- go get github.com/golang/lint/golint
script:
- test -z "$(golint ./... | tee /dev/stderr)"
- go test -v ./...
- go test -v -bench .
matrix:
allow_failures:
- go: tip
|
Test python versions upto 3.8 | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
install:
- pip install .
script:
- python setup.py test | language: python
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- pip install .
script:
- python setup.py test |
Test on 1.13 and kill sshd after tests | language: rust
cache: cargo
rust:
- nightly
- beta
- 1.10.0
before_script:
- ssh-keygen -t rsa -b 2048 -N "" -f ~/.ssh/id_rsa
- cp ~/.ssh/id_rsa.pub ~/.ssh/authorized_keys
- ssh -oStrictHostKeyChecking=no -Nf -D 127.0.0.1:8080 localhost
script:
- cargo test
| language: rust
cache: cargo
rust:
- nightly
- 1.13.0
before_script:
- ssh-keygen -t rsa -b 2048 -N "" -f ~/.ssh/id_rsa
- cp ~/.ssh/id_rsa.pub ~/.ssh/authorized_keys
- ssh -oStrictHostKeyChecking=no -Nf -D 127.0.0.1:8080 localhost
script:
- cargo test
after_script:
- killall sshd
|
Use Rubygems 1.8.25 for now... | before_install: gem update --system 2.0.2
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
- ree
script: bundle exec rspec --color --format documentation
| before_install: gem update --system 1.8.25
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
- ree
script: bundle exec rspec --color --format documentation
|
Change Travis config to build on Linux/OSX | language: cpp
compiler:
- clang
- gcc
env:
- DEFINES=standard
- DEFINES=PUGIXML_WCHAR_MODE
script: make test defines=$DEFINES -j2
| language: cpp
os:
- linux
- osx
env:
- DEFINES=standard
- DEFINES=PUGIXML_WCHAR_MODE
script: make test defines=$DEFINES -j2
|
Fix OSX build on Travis. | language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
mono:
- 4.0.5
os:
- linux
- osx
osx_image: xcode7.1
branches:
only:
- master
- release
- dev
- /^(.*\/)?ci-.*$/
scrip... | language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
mono:
- 4.0.5
os:
- linux
- osx
osx_image: xcode7.1
branches:
only:
- master
- release
- dev
- /^(.*\/)?ci-.*$/
befor... |
Remove support for Ruby 1.9.2 | before_install: gem install bundler -v 1.2.3
rvm:
- 1.9.3
- 1.9.2
- 1.8.7
- jruby
# whitelist
branches:
only:
- master
notifications:
email:
- cukes-devs@googlegroups.com
irc:
- "irc.freenode.org#cucumber"
| before_install: gem install bundler -v 1.2.3
rvm:
- 1.9.3
- 1.8.7
- jruby
# whitelist
branches:
only:
- master
notifications:
email:
- cukes-devs@googlegroups.com
irc:
- "irc.freenode.org#cucumber"
|
Hide Travis notification email from forks | # Doc: http://manuel.manuelles.nl/blog/2012/06/22/integrate-travis-ci-into-grunt/
sudo: false
language: node_js
node_js:
- "0.10"
cache:
directories:
- node_modules
notifications:
email:
recipients:
- developer@onsip.com
on_success: change
on_failure: always
| # Doc: http://manuel.manuelles.nl/blog/2012/06/22/integrate-travis-ci-into-grunt/
sudo: false
language: node_js
node_js:
- "0.10"
cache:
directories:
- node_modules
notifications:
email:
recipients:
secure: fe88XKh8U+bt2eSkZFKPG//d1i/pYEcG9WqXGRwRd1YzrhM9DVOUPXN5xhNADgfBK0PNZUEga+UMlAcrtt6PgBDZ... |
Exclude LICENSE.txt from the build |
# SEO settings
title: "Markdown Guide"
description: "A concise introduction to Markdown designed for novice and intermediate users."
keywords: "Markdown, Markdown language, Markdown syntax, Markdown guide, Markdown cheatsheet, Markdown help, Markdown tutorial"
url: https://markdownguide.org # site url
baseurl: "" # ap... |
# SEO settings
title: "Markdown Guide"
description: "A concise introduction to Markdown designed for novice and intermediate users."
keywords: "Markdown, Markdown language, Markdown syntax, Markdown guide, Markdown cheatsheet, Markdown help, Markdown tutorial"
url: https://markdownguide.org # site url
baseurl: "" # ap... |
Make release URLs pretty - it is impossible to make the URLs match the old site 100%. |
# Site settings
title: Apache Guacamole
# Build settings
markdown: kramdown
# Custom collections
collections:
# All Apache Guacamole releases
releases:
output: true
permalink: /release/release-notes-:title
# Pseudo-pages describing direct links to other pages (possibly external)
lin... |
# Site settings
title: Apache Guacamole
# Build settings
markdown: kramdown
# Custom collections
collections:
# All Apache Guacamole releases
releases:
output: true
permalink: /releases/:title/
# Pseudo-pages describing direct links to other pages (possibly external)
links:
... |
Update from Hackage at 2020-07-08T21:37:51Z | homepage: ''
changelog-type: markdown
hash: 955dd661c455fcdee191d640fb23b8fad60d7accd2af2f349e3119505945364b
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Curated list of CDN imports for lucid.
changelog: |
# Changelog for lucid-cdn
## (v0.1.0.0)
* Add bootstrap CSS and JS v.4.5.0.
* Add ... | homepage: ''
changelog-type: markdown
hash: 9a43ddebf5bd020f8f7065345d659d7fb91ddd39b8fffc3ad92884fb7b36249f
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Curated list of CDN imports for lucid.
changelog: |
# Changelog for lucid-cdn
## (v0.1.0.0)
* Add bootstrap CSS and JS v.4.5.0.
* Add ... |
Update for the new Travis containers | # Travis CI configuration file
language: c
script: make check
compiler:
- clang
- gcc
| # Travis CI configuration file
sudo: false
language: c
script: make check
compiler:
- clang
- gcc
os:
- linux
- osx
|
Make coverity run only on coverity_check branch | language: c
script: make
compiler:
- clang
- gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libusb-1.0-0-dev
env:
global:
- secure: CtAND8k/8Lfs6o4dmrD9Jp4yLjLQRrv5TZA1MkhSO/LRfViKlbzy7ENv1/ku0xgtnsegFRDFY75/dLHxZUiax5TGNVrHqpkkGSE9h2a5YYHxbOtINb8Hdzk+S2/EN9YPmrOEX1ZjMg/wH08c3MntdW6gDUuddQh... | language: c
script: make
compiler:
- clang
- gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libusb-1.0-0-dev
env:
global:
- secure: CtAND8k/8Lfs6o4dmrD9Jp4yLjLQRrv5TZA1MkhSO/LRfViKlbzy7ENv1/ku0xgtnsegFRDFY75/dLHxZUiax5TGNVrHqpkkGSE9h2a5YYHxbOtINb8Hdzk+S2/EN9YPmrOEX1ZjMg/wH08c3MntdW6gDUuddQh... |
Simplify Travis configuration, add retry for pip | language: python
python: 2.7
env:
- TOX_ENV=py27
- TOX_ENV=py34
install:
- pip install -e '.[develop]'
script:
- tox -e $TOX_ENV
| language: python
env:
- TOXENV=py27
- TOXENV=py34
install:
- travis_retry pip install -e '.[develop]'
script:
- tox
|
Enable Gradle build scan on Travis | language: java
jdk:
- oraclejdk8
script:
- ./gradlew build -s
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| language: java
jdk:
- oraclejdk8
script:
- ./gradlew build -s --scan
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
|
Fix Travis to use coverage | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
install:
- make deps
- make deps-test
script:
- make test
after_success:
- coveralls
| language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
install:
- make deps
- make deps-test
script:
- coverage run --source=yarg runtest.py
after_success:
- coveralls
|
Add support for PHP 7.4 | language: php
php:
- 7.2
- 7.3
cache:
directories:
- ~/.composer/cache/files
before_install:
- phpenv config-rm xdebug.ini || true
install:
- composer update
script:
- composer validate --strict
- composer analyse
- composer test
| language: php
php:
- 7.2
- 7.3
- 7.4
cache:
directories:
- ~/.composer/cache/files
before_install:
- phpenv config-rm xdebug.ini || true
install:
- composer update
script:
- composer validate --strict
- composer analyse
- composer test
|
Disable doc test until Travis provides appledoc | ---
language: objective-c
before_script:
- sudo easy_install cpp-coveralls
script:
- xctool -project genstrings2.xcodeproj -scheme "Static Library" test -arch x86_64 ONLY_ACTIVE_ARCH=NO
- appledoc -o /tmp .
after_success:
- ./coveralls.rb --extension m --exclude-folder Demo --exclude-folder Test --exclude-fold... | ---
language: objective-c
before_script:
- sudo easy_install cpp-coveralls
script:
- xctool -project genstrings2.xcodeproj -scheme "Static Library" test -arch x86_64 ONLY_ACTIVE_ARCH=NO
# - appledoc -o /tmp .
after_success:
- ./coveralls.rb --extension m --exclude-folder Demo --exclude-folder Test --exclude-fol... |
Use build matrix to do OSX. | language: python
os:
- linux
- osx
python:
- "2.7"
- "3.5"
sudo: required
install:
- source install_conda.sh
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a... | language: python
matrix:
include:
- os: linux
sudo: required
python: 2.7
env: TOXENV=py27
- os: linux
sudo: required
python: 3.5
env: TOXENV=py35
- os: osx
language: generic
env: TOXENV=py27
- os: osx
language: generic
env: TOXENV=py35
instal... |
Stop trying to uninstall xquartz | language: objective-c
osx_image: xcode7.3
rvm: system
install:
# Travis comes with Postgres 9.4 data, so we much clear it out
- rm -rf /usr/local/var/postgres
# We are testing installation of homebrew, so should uninstall everything
- brew cask list | xargs -t -I % brew cask zap %
- brew list | xargs -t -I %... | language: objective-c
osx_image: xcode7.3
rvm: system
install:
# Travis comes with Postgres 9.4 data, so we much clear it out
- rm -rf /usr/local/var/postgres
# We are testing installation of homebrew, so should uninstall everything (except xquartz)
- brew cask list | grep -v xquartz | xargs -t -I % brew cask ... |
Remove HHVM and PHP 5.6 from Travis configuration | sudo: false
language: php
dist: trusty
matrix:
include:
- php: 5.6
- php: 7.0
- php: 7.1
env: ANALYSIS='true'
- php: hhvm
- php: 5.6
env: COMPOSER_ARGS='--prefer-lowest'
- php: nightly
allow_failures:
- php: nightly
before_script:
- composer update $COMPOSER_ARGS
scrip... | sudo: false
language: php
dist: trusty
matrix:
include:
- php: 7.0
- php: 7.1
env: ANALYSIS='true'
- php: nightly
allow_failures:
- php: nightly
before_script:
- composer update $COMPOSER_ARGS
script:
- if [[ "$ANALYSIS" != 'true' ]]; then vendor/bin/phpunit ; fi
- if [[ "$ANALYSIS"... |
Set JOBS=2 (best build time) | language: cpp
matrix:
include:
- compiler: clang
env: CXX_SCONS="-Qunused-arguments -fcolor-diagnostics" WARNING_CXXFLAGS="-Wno-unused-function -Wno-uninitialized -Wno-array-bounds -Wno-parentheses -Wno-char-subscripts -Wno-internal-linkage-in-inline"
before_install:
- echo 'yes' | sudo add-apt-repositor... | language: cpp
matrix:
include:
- compiler: clang
env: CXX_SCONS="-Qunused-arguments -fcolor-diagnostics" WARNING_CXXFLAGS="-Wno-unused-function -Wno-uninitialized -Wno-array-bounds -Wno-parentheses -Wno-char-subscripts -Wno-internal-linkage-in-inline"
before_install:
- echo 'yes' | sudo add-apt-repositor... |
Enable node 0.6 on Travis CI. | language: "node_js"
node_js:
- "0.10"
- "0.8"
# - "0.6"
# - "0.4"
before_install:
- "npm install istanbul -g"
- "npm install coveralls -g"
script: "make ci-travis"
after_success:
- "make submit-cov-to-coveralls"
| language: "node_js"
node_js:
- "0.10"
- "0.8"
- "0.6"
before_install:
- "npm install istanbul -g"
- "npm install coveralls -g"
script: "make ci-travis"
after_success:
- "make submit-cov-to-coveralls"
|
Test with latest Ruby version | language: ruby
cache: bundler
sudo: false
rvm:
- 2.4.0
- 2.3.3
- 2.2.6
after_success:
- bundle exec codeclimate-test-reporter
| language: ruby
cache: bundler
sudo: false
rvm:
- 2.4.1
- 2.3.3
- 2.2.6
after_success:
- bundle exec codeclimate-test-reporter
|
Test against Python 3.4 on Travis | language: python
python: 2.7
env:
- TOX_ENV=pypy
- TOX_ENV=py33
- TOX_ENV=py27
- TOX_ENV=py26
- TOX_ENV=flake8
install:
- pip install tox
script:
- tox -e $TOX_ENV
| language: python
python: 2.7
env:
- TOX_ENV=pypy
- TOX_ENV=py34
- TOX_ENV=py33
- TOX_ENV=py27
- TOX_ENV=py26
- TOX_ENV=flake8
install:
- pip install tox
script:
- tox -e $TOX_ENV
|
Simplify CI matrix (think about the environment) | language: elixir
elixir:
- 1.6
- 1.7
- 1.8
- 1.9
otp_release:
- 19.3
- 20.3
- 21.0
- 22.0
matrix:
exclude:
- elixir: 1.6
otp_release: 21.0
- elixir: 1.6
otp_release: 22.0
- elixir: 1.7
otp_release: 19.3
- elixir: 1.7
otp_release: 20.3
- elixir: 1.8
otp... | language: elixir
matrix:
include:
- elixir: 1.6
otp_release: 19.3
- elixir: 1.7
otp_release: 21.0
- elixir: 1.8
otp_release: 21.0
- elixir: 1.9
otp_release: 22.0
sudo: false
env:
global:
- ELIXIR_ASSERT_TIMEOUT=2000
matrix:
- COWBOY_VERSION=1.0
- COWBOY_VERSION=... |
Make build steps explicit and include docs | language: rust
env:
global:
- secure: M4HTVbFfu9zsmkOJwW7o01lNZmVDaAbfIqHRAp9bFvPoDZCsjEZclAqGAq+l3TYCKqyuWjYI5qRn/h6YScI69/Kd0ocGktKlqzf36GnsMweUNRYWii8iTNDW6Bf/aKFfn/WYWPX7T9gVMpHLJ4jWxQL90xg7pmceeTsgoMfIqMo=
after_script:
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
| language: rust
env:
global:
- secure: M4HTVbFfu9zsmkOJwW7o01lNZmVDaAbfIqHRAp9bFvPoDZCsjEZclAqGAq+l3TYCKqyuWjYI5qRn/h6YScI69/Kd0ocGktKlqzf36GnsMweUNRYWii8iTNDW6Bf/aKFfn/WYWPX7T9gVMpHLJ4jWxQL90xg7pmceeTsgoMfIqMo=
script:
- rustc --version
- cargo --version
- cargo build --verbose
- cargo test --ve... |
Use xenial for all builds | language: python
cache: pip
install: travis_retry pip install -U tox
script: tox
jobs:
fast_finish: true
include:
- { python: '3.6', env: TOXENV=lint }
- { python: '2.7', env: TOXENV=py27 }
- { python: '3.5', env: TOXENV=py35 }
- { python: '3.6', env: TOXENV=py36 }
- { python: '3.7', env: TOXENV=py37, di... | language: python
dist: xenial
cache: pip
install: travis_retry pip install -U tox
script: tox
jobs:
fast_finish: true
include:
- { python: '3.6', env: TOXENV=lint }
- { python: '2.7', env: TOXENV=py27 }
- { python: '3.5', env: TOXENV=py35 }
- { python: '3.6', env: TOXENV=py36 }
- { python: '3.7', env: TO... |
Remove incompatible node versions from testing | language: node_js
node_js:
- "0.12"
- "0.10"
- "0.8"
- "0.6"
| language: node_js
node_js:
- "0.12"
- "0.10"
|
Use go v1.4 instead of v1.3.3 | language: go
go: 1.3.3
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
install:
- export PATH=$PATH:${GOPATH%%:*}/bin:${GOPATH##:*}/bin
- go get -t github.com/anonx/sunplat... | language: go
go: 1.4
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
install:
- export PATH=$PATH:${GOPATH%%:*}/bin:${GOPATH##:*}/bin
- go get -t github.com/anonx/sunplate/... |
Add 2.5.1 to test matrix | language: ruby
rvm:
- 2.3.1
- 2.4.2
script: rake test TESTOPTS="-v"
| language: ruby
rvm:
- 2.3.1
- 2.4.2
- 2.5.1
script: rake test TESTOPTS="-v"
|
Update Travis config with an explicit script | language: go
go:
- tip
- 1.5
- 1.4
- 1.3
sudo: false
| language: go
go:
- tip
- 1.5
- 1.4
- 1.3
sudo: false
install:
- go get golang.org/x/tools/cmd/cover
script:
- go test -v -cover .
|
Use Travis standard email notification scheme | language: java
script: ./.travis-build.sh
sudo: false
jdk:
- oraclejdk8
# - oraclejdk7
- openjdk7
notifications:
email:
- annotation-tools-dev@googlegroups.com
after_success:
- |
if [[ ($TRAVIS_BRANCH == master) &&
($TRAVIS_PULL_REQUEST == false) &&
( (! $TRAVIS_JOB_NUMBE... | language: java
script: ./.travis-build.sh
sudo: false
jdk:
- oraclejdk8
# - oraclejdk7
- openjdk7
after_success:
- |
if [[ ($TRAVIS_BRANCH == master) &&
($TRAVIS_PULL_REQUEST == false) &&
( (! $TRAVIS_JOB_NUMBER == *.*) || ($TRAVIS_JOB_NUMBER == *.1) ) ]] ; then
curl -LO... |
Test Python 3.8 and simplify matrix as Xenial is the default | language: python
matrix:
include:
- python: 2.7
- python: 3.4
- python: 3.5
- python: 3.6
- python: 3.7
dist: xenial
install:
- python setup.py install
script:
python src/tests/test.py -v
| language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
install:
- python setup.py install
script:
python src/tests/test.py -v
|
Drop Django 1.7 test support | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- DJANGO="django==1.7.10"
- DJANGO="django==1.8.7"
install:
- pip install $DJANGO
- pip install celery==3.1.16
- pip install django-enumfield==1.2
- pip install django-extensions==1.5.1
- pip install django-model-utils==2.4
- pip i... | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- DJANGO="django==1.8.7"
install:
- pip install $DJANGO
- pip install celery==3.1.16
- pip install django-enumfield==1.2
- pip install django-extensions==1.5.1
- pip install django-model-utils==2.4
- pip install shortuuid==0.4.2
- ... |
Remove bundler install line from Travis config. | language: ruby
rvm:
- 2.2.3
before_install: gem install bundler -v 1.10.6
notifications:
email: false
| language: ruby
rvm:
- 2.2.3
notifications:
email: false
|
Update Travis CI script to build OpenCV from scratch | language: node_js
before_install: sudo apt-get update && sudo apt-get install opencv | language: node_js
before_install:
- sudo apt-get update
- sudo apt-get install build-essential cmake pkg-config
- git clone --branch=master https://github.com/Itseez/opencv.git opencv
- mkdir opencv-build
- cd opencv-build/
- cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_DOCS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_SHARED_L... |
Add Appraisal support to Travis | sudo: false
language: ruby
rvm:
- 2.4.1
- 2.3.4
- 2.2.7
before_install:
- gem install bundler -v 1.15.3
addons:
code_climate:
repo_token: 9706e71f85fc2b64de770bd8964808d70b0ddfcbc78beaadcc96fd7fc26f5903
after_success:
- bundle exec codeclimate-test-reporter
| sudo: false
language: ruby
rvm:
- 2.4.1
- 2.3.4
- 2.2.7
before_install:
- gem install bundler -v 1.15.3
gemfile:
- gemfiles/rails_4.0.gemfile
- gemfiles/rails_4.1.gemfile
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rspec_3.0.gemfile
- gemfiles/... |
Make something that can be found just knowing the branch and sha. | sudo: false
language: go
go: 1.4.2
before_install:
- export PATH=$HOME/gopath/bin:$PATH
- go get github.com/tools/godep
script:
- godep go test ./...
- make deb-local
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then pip install --user awscli && ~/.local/bin/aws s3 cp --acl public-read deb/*.deb s3://heroku-hsup; fi
noti... | sudo: false
language: go
go: 1.4.2
before_install:
- export PATH=$HOME/gopath/bin:$PATH
- go get github.com/tools/godep
script:
- godep go test ./...
- make deb-local
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then b="build-$TRAVIS_BRANCH-$TRAVIS_COMMIT.tgz"; pip install --user awscli && cd deb && tar -czf $b *.deb && ... |
Delete branch info from Travis config | language: python
python:
- "3.5"
- "3.6"
branches:
- master
- readme_bages
install:
- pip install -r requirements.txt
- pip install codecov
script:
- python3 -m pytest tests --cov app --cov-report html
- coverage run -m pytest tests --cov app --cov-report html
after_success:
- codecov
| language: python
python:
- "3.5"
- "3.6"
install:
- pip install -r requirements.txt
- pip install codecov
script:
- python3 -m pytest tests --cov app --cov-report html
- coverage run -m pytest tests --cov app --cov-report html
after_success:
- codecov
|
Fix the repo name for deployment | sudo: false
language: erlang
otp_release:
- 17.5
addons:
apt:
packages:
- xsltproc
env:
- BUILD_DIR=$HOME/rabbitmq-public-umbrella CONSUL_VERSION=0.5.2 RABBIT_TAG=v3_5_4
install:
- $TRAVIS_BUILD_DIR/travis-umbrella-setup.sh
- $TRAVIS_BUILD_DIR/travis-install-consul.sh
script: cd $BUILD_DIR/autoclust... | sudo: false
language: erlang
otp_release:
- 17.5
addons:
apt:
packages:
- xsltproc
env:
- BUILD_DIR=$HOME/rabbitmq-public-umbrella CONSUL_VERSION=0.5.2 RABBIT_TAG=v3_5_4
install:
- $TRAVIS_BUILD_DIR/travis-umbrella-setup.sh
- $TRAVIS_BUILD_DIR/travis-install-consul.sh
script: cd $BUILD_DIR/autoclust... |
Test Ruby 2.7 on CI | sudo: false
language: ruby
install: gem install minitest timecop coveralls
rvm:
- 2.3.5
- 2.4.9
- 2.5.7
- 2.6.5
script: rake test
| sudo: false
language: ruby
install: gem install minitest timecop coveralls
rvm:
- 2.3.5
- 2.4.10
- 2.5.8
- 2.6.6
- 2.7.2
script: rake test
|
Use sudo and trusty on Travis CI for shellcheck | language: python
# Use container-based infrastructure
sudo: false
addons:
apt:
packages:
- shellcheck
- libffi-dev
- libssl-dev
- nodejs
matrix:
include:
- env: TOX_ENV=py27
- env: TOX_ENV=py35
cache:
directories:
- $HOME/.cache/pip
before_install:
- curl -sL https:/... | language: python
sudo: required
dist: trusty
matrix:
include:
- env: TOX_ENV=py27
- env: TOX_ENV=py35
cache:
directories:
- $HOME/.cache/pip
before_install:
- curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
- sudo apt-get install -y libffi-dev libssl-dev nodejs shellcheck
install... |
Add 17.01-rc1 Erlang version to build on Travis-CI | language: erlang
notifications:
recipients:
- eduardo@gurgel.me
otp_release:
- R16B
- R16B01
- R16B02
script: mix test
install: mix deps.get
before_install:
- mkdir -p vendor/elixir
- wget -q https://github.com/elixir-lang/elixir/releases/download/v0.12.4/Precompiled.zip && unzip -qq Precompiled.zip -d ... | language: erlang
notifications:
recipients:
- eduardo@gurgel.me
otp_release:
- R16B
- R16B01
- R16B02
- 17.0-rc1
script: mix test
install: mix deps.get
before_install:
- mkdir -p vendor/elixir
- wget -q https://github.com/elixir-lang/elixir/releases/download/v0.12.4/Precompiled.zip && unzip -qq Precom... |
Make Travis cache the directory where Go Modules are stored | version: ~> 1.0
language: go
go_import_path: github.com/google/monologue
go:
- 1.13
env:
global:
- GO111MODULE=on
jobs:
include:
- name: go mod tidy
install: skip
before_script: go mod tidy -v
script: git diff --exit-code -- go.mod go.sum
- name: test with coverage
env:
... | version: ~> 1.0
language: go
go_import_path: github.com/google/monologue
go:
- 1.13
cache:
directories:
- $GOPATH/pkg/mod
env:
global:
- GO111MODULE=on
jobs:
include:
- name: go mod tidy
install: skip
before_script: go mod tidy -v
script: git diff --exit-code -- go.mod go.sum
... |
Add auto deploy to heroku | language: node_js
node_js:
- 0.10
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm start > /dev/null &
- npm run update-webdriver
- sleep 1 # give server time to start
script:
- node_modules/.bin/karma start test/karma.conf.js --no-auto-watch --single-run --reporters=dots --bro... | language: node_js
node_js:
- 0.1
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm start > /dev/null &
- npm run update-webdriver
- sleep 1
script:
- node_modules/.bin/karma start test/karma.conf.js --no-auto-watch --single-run --reporters=dots
--browsers=Firefox
- node_modules/.bin/protracto... |
Remove deprecated Sudo key from TravisCI config | language: csharp
mono: none
sudo: required
dotnet: 3.1
matrix:
include:
- os: linux
dist: bionic
- os: osx
dotnet: 3.1.100
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
script:
- dotnet restore ./LiteDB/LiteDB.csproj
- dotnet build ./LiteD... | language: csharp
mono: none
dotnet: 3.1
matrix:
include:
- os: linux
dist: bionic
- os: osx
dotnet: 3.1.100
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
script:
- dotnet restore ./LiteDB/LiteDB.csproj
- dotnet build ./LiteDB/LiteDB.csproj... |
Clean up ruby versions to test | language: ruby
rvm:
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- 2.1.3
- 2.1.4
- 2.1.5
| language: ruby
rvm:
- 2.0
- 2.1
- 2.2
|
Test Node.js v6 (LTS) instead of v5 | sudo: false
language: node_js
os:
- linux
- osx
node_js:
- node
- "5"
- "4"
- "0.12"
script: npm run travis
after_success:
- cat ./coverage/lcov.info | node_modules/.bin/coveralls --verbose
- cat ./coverage/coverage.json | node_modules/codecov.io/bin/codecov.io.js
- rm -rf ./coverage
| sudo: false
language: node_js
os:
- linux
- osx
node_js:
- "7"
- "6"
- "4"
- "v0.12.17"
script: npm run travis
after_success:
- cat ./coverage/lcov.info | node_modules/.bin/coveralls --verbose
- cat ./coverage/coverage.json | node_modules/codecov.io/bin/codecov.io.js
- rm -rf ./coverage
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.