Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Test on CentOS 6.9 in TK | driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: centos-6.8
- name: centos-7.3
- name: debian-7.11
- name: debian-8.7
- name: fedora-25
- name: opensuse-leap-42.2
- name: ubuntu-14.04
- name: ubuntu-16.04
suites:
- na... | driver:
name: vagrant
provisioner:
name: chef_zero
deprecations_as_errors: true
verifier:
name: inspec
platforms:
- name: centos-6.9
- name: centos-7.3
- name: debian-7.11
- name: debian-8.7
- name: fedora-25
- name: opensuse-leap-42.2
- name: ubuntu-14.04
- name: ubuntu-16.04
suites:
- na... |
Switch Travis builds to container-based infrastructure | language: java
deploy:
provider: releases
api_key:
secure: "TNJvlQATVHiGIDYGuMpWJLl0/CSskfWJQGWp8YNlC1bAiUfalAU2a/d+85uRVaa09qSPeXBQkyxC6e/pzvPOMCgA9Uv+c9f4JyajHCq6qppuYaET4N6+1W0d/1EHJFPq3g1ElGkIZYqN8sPjm4JU+FK/48yI8KAev/r2wsVmo0A="
file-glob: true
file: "build/libs/dynmap-structures-*-all.jar"
skip_clea... | language: java
deploy:
provider: releases
api_key:
secure: "TNJvlQATVHiGIDYGuMpWJLl0/CSskfWJQGWp8YNlC1bAiUfalAU2a/d+85uRVaa09qSPeXBQkyxC6e/pzvPOMCgA9Uv+c9f4JyajHCq6qppuYaET4N6+1W0d/1EHJFPq3g1ElGkIZYqN8sPjm4JU+FK/48yI8KAev/r2wsVmo0A="
file-glob: true
file: "build/libs/dynmap-structures-*-all.jar"
skip_clea... |
Set DATABASE_URL on Travis CI | language: ruby
rvm:
- 1.9.2
- 1.9.3
| language: ruby
env: DATABASE_URL="sqlite::memory:"
rvm:
- 1.9.2
- 1.9.3
|
Upgrade package php version in tests | language: php
php:
- 7.2
- 7.3
- 7.4
before_install:
- composer self-update
install:
- composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml
after_success:
- bash <(curl -s https://codecov.io/bash) -f coverage.xml
| language: php
php:
- 7.2
- 7.3
- 7.4
- 8.0
before_install:
- composer self-update
install:
- composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml
after_success:
- bash <(curl -s https://codecov.io/bash) -f coverage.xml
|
Revert "Remove some shell piping to try to un-hang the pip install" | language: python
python:
- "2.6"
env:
- CFLAGS=-O0
branches:
only:
- master
install:
- "uname -a"
- "lsb_release -a"
- "sudo apt-get install moreutils"
- "bash -ex .travis/upgrade-couchdb.sh | ts"
- "git clone https://github.com/dimagi/commcarehq-venv.git"
- "time (bash -e .travis/quietly-run-install.sh | ... | language: python
python:
- "2.6"
env:
- CFLAGS=-O0
branches:
only:
- master
install:
- "uname -a"
- "lsb_release -a"
- "sudo apt-get install moreutils"
- "bash -ex .travis/upgrade-couchdb.sh | ts"
- "git clone https://github.com/dimagi/commcarehq-venv.git"
- "time (bash -e .travis/quietly-run-install.sh | ... |
Use official nightly in line with rustlibdir | # Use the language closest to rust, as rust itself is not supported
language: c
notifications:
email:
on_success: never
on_failure: always
before_install:
- yes | sudo add-apt-repository ppa:hansjorg/rust
- sudo apt-get update
install:
- sudo apt-get install rust-nightly nasm
- ./downloadrustlibdir.... | # Use the language closest to rust, as rust itself is not supported
language: c
notifications:
email:
on_success: never
on_failure: always
before_install:
- curl http://static.rust-lang.org/dist/rust-nightly-x86_64-unknown-linux-gnu.tar.gz | tar -xz
install:
- sudo apt-get install rust-nightly nasm
- ... |
Install test bower components in Travis CI | language: node_js
node_js:
- 'stable'
os:
- linux
- osx
before_install:
- npm install -g gulp bower
install:
- npm install
- bower install
- gulp build
| language: node_js
node_js:
- 'stable'
os:
- linux
- osx
before_install:
- npm install -g gulp bower
install:
- npm install
- bower install
- cd test && bower install && cd ../
- gulp build
|
Add cocoapods and bundler options to cache | sudo: false
osx_image: xcode7
language: objective-c
cache:
edge: true
directories:
- .nvm
- node_modules
- vendor/bundle
before_install:
- brew reinstall nvm
- mkdir -p .nvm
- export NVM_DIR="$PWD/.nvm"
- source $(brew --prefix nvm)/nvm.sh
install:
- nvm install 5
- npm install -g react-nati... | sudo: false
osx_image: xcode7
language: objective-c
cache:
edge: true
bundler: true
cocoapods: true
directories:
- .nvm
- node_modules
- vendor/bundle
before_install:
- brew reinstall nvm
- mkdir -p .nvm
- export NVM_DIR="$PWD/.nvm"
- source $(brew --prefix nvm)/nvm.sh
install:
- nvm insta... |
Add temporary test fix to correct some problems with jruby builds | language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci:metrics"
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- ruby-head
- rbx-2
matrix:
include:
- rvm: jruby
env: JRUBY_OPTS="$JRUBY_OPTS --debug --1.9" # for simplecov
- rvm: jruby
... | language: ruby
before_install: "rvm repair all && gem install bundler"
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci:metrics"
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- ruby-head
- rbx-2
matrix:
include:
- rvm: jruby
env: JRUBY_OPTS="$JRUBY_OPTS --debug --1.9" # for simplecov
... |
Update Travis to use 1.5 instead of 1.5rc1 | language: go
env:
- GO15VENDOREXPERIMENT=1
go:
- 1.5rc1
- tip
before_install:
- go get -u github.com/axw/gocov/gocov
- go get -u github.com/mattn/goveralls
- go get -u golang.org/x/tools/cmd/cover
- go get -u github.com/golang/lint/golint
- go get -u golang.org/x/tools/cmd/goimports
script:
- ./gosweep.sh && $... | language: go
env:
- GO15VENDOREXPERIMENT=1
go:
- 1.5
- tip
before_install:
- go get -u github.com/axw/gocov/gocov
- go get -u github.com/mattn/goveralls
- go get -u golang.org/x/tools/cmd/cover
- go get -u github.com/golang/lint/golint
- go get -u golang.org/x/tools/cmd/goimports
script:
- ./gosweep.sh && $HOM... |
Revert "Skip Travis CI installation step" | language: csharp
solution: code/GmailNotifier.sln
install: true
script:
- msbuild /p:Configuration=Debug code/GmailNotifier.sln | language: csharp
solution: code/GmailNotifier.sln
script:
- msbuild /p:Configuration=Debug code/GmailNotifier.sln |
Improve test coveralls clean up | language: cpp
compiler:
- gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- boost-latest
packages:
#- gcc-4.8
#- g++-4.8
- libboost1.55-all-dev
- cmake
- lcov
install:
#- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8 -std=c++11 -DENABLE_REINFORCEMENT_LEARNING" CC="gcc-... | language: cpp
compiler:
- gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- boost-latest
packages:
- libboost1.55-all-dev
- cmake
- lcov
install:
# install lcov to coveralls conversion + upload tool
- gem install coveralls-lcov
before_script:
- mkdir build
- cd build
-... |
Fix wrong directory to chmod... | language: java
sudo: true
jdk: oraclejdk8
before_install:
- chmod +x -R scripts/
install: "./travis/travis-install.sh"
script: "./travis/travis-run.sh"
cache:
directories:
- $HOME/.m2 | language: java
sudo: true
jdk: oraclejdk8
before_install:
- chmod +x -R travis/
install: "./travis/travis-install.sh"
script: "./travis/travis-run.sh"
cache:
directories:
- $HOME/.m2 |
Whitelist master and test branches for Travis CI | language: cpp
os:
- linux
- osx
sudo: required
dist: trusty
osx_image: xcode8
cache:
directories:
- $HOME/.dotnet
- $HOME/.nuget
addons:
artifacts:
s3_region: "us-west-2"
paths: $(ls powershell*{deb,pkg} | tr "\n" ":")
git:
submodules: false
install:
- git config --global url.git@github... | language: cpp
branches:
only:
- master
- /^test.*$/
os:
- linux
- osx
sudo: required
dist: trusty
osx_image: xcode8
cache:
directories:
- $HOME/.dotnet
- $HOME/.nuget
addons:
artifacts:
s3_region: "us-west-2"
paths: $(ls powershell*{deb,pkg} | tr "\n" ":")
git:
submodules: false... |
Order is important in pip | ---
language: python
python: '2.7'
sudo: false
branches:
only:
- master
- stable
addons:
apt:
sources:
- python-apt
- python-pycurl
matrix:
allow_failures:
- env: PIP_ANSIBLE_VERSION='>=2.0'
fast_finish: true
env:
global:
- TEST_ANSIBLE_HOSTNAME: localhost
TEST_ANSIBLE_... | ---
language: python
python: '2.7'
sudo: false
branches:
only:
- master
- stable
addons:
apt:
sources:
- python-apt
- python-pycurl
matrix:
allow_failures:
- env: PIP_ANSIBLE_VERSION='>=2.0'
fast_finish: true
env:
global:
- TEST_ANSIBLE_HOSTNAME: localhost
TEST_ANSIBLE_... |
Test with Python 3.8 on Travis | sudo: false
language: python
python:
# - 2.6
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
install:
- pip install -r requirements/test.txt
script:
- pyver=$(python --version 2>&1 | awk '{print substr($2, 0, 3)}');
case $pyver in
2.7) tox -e "py${pyver//\.}-{std,coverage}";;
*) tox -e "py${pyver... | sudo: false
language: python
python:
# - 2.6
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
install:
- pip install -r requirements/test.txt
script:
- pyver=$(python --version 2>&1 | awk '{print substr($2, 0, 3)}');
case $pyver in
2.7) tox -e "py${pyver//\.}-{std,coverage}";;
*) tox -e "p... |
Update node and install latest chrome | machine:
node:
version: v5.7.1
test:
override:
- $(npm bin)/eslint --debug . --format tap | $(npm bin)/tap-xunit > ${CIRCLE_TEST_REPORTS}/lint.xml && test ${PIPESTATUS[0]} -eq 0
- $(npm bin)/babel-node test | $(npm bin)/tap-xunit > ${CIRCLE_TEST_REPORTS}/test.xml && test ${PIPESTATUS[0]} -eq 0
- $(... | machine:
node:
version: v7.4.0
dependencies:
pre:
- 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
- su... |
Update from Forestry.io - Updated Forestry configuration | ---
label: Journal
hide_body: false
is_partial: false
fields:
- type: text
name: title
label: Title
config:
required: true
- type: textarea
name: excerpt
label: Excerpt
description: Short snippet that will show outside of the actual post
config:
required: true
- type: datetime
name: date
label... | ---
label: Journal
hide_body: false
is_partial: false
fields:
- type: text
name: title
label: Title
config:
required: true
- type: textarea
name: excerpt
label: Excerpt
description: Short snippet that will show outside of the actual post
config:
required: true
- type: datetime
name: date
label... |
Enable google analytics to all page. | name: Nad Flores - Blogging on Programming and stuffs.
description: Try. Fail. Learn. Repeat.
meta_description: "Nad Flores - Blogging on Programming and stuffs."
aboutPage: true
markdown: redcarpet
highlighter: pygments
paginate: 20
baseurl: /
domain_name: 'http://nadflores.github.io'
google_analytics: 'UA-XXXXXXXX... | name: Nad Flores - Blogging on Programming and stuffs.
description: Try. Fail. Learn. Repeat.
meta_description: "Nad Flores - Blogging on Programming and stuffs."
aboutPage: true
markdown: redcarpet
highlighter: pygments
paginate: 20
baseurl: /
domain_name: 'http://nadflores.github.io'
google_analytics: 'UA-65171017... |
Change the hightlighter to rouge | # visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings
paginate: 10 # pagination based on number of posts
paginate_path: "page:num"
exclude: ["README.md"] # files to exclude
highlighter: rogue
markdown: kramdown
disqus: hanyuliu-me
title: Hanyu Liu
defaults:
-
scope:
path: "" # emp... | # visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings
paginate: 10 # pagination based on number of posts
paginate_path: "page:num"
exclude: ["README.md"] # files to exclude
highlighter: rouge
markdown: kramdown
disqus: hanyuliu-me
title: Hanyu Liu
defaults:
-
scope:
path: "" # emp... |
Use the new Jekyll config syntax for highlighter | name: "Gereksiz"
markdown: redcarpet
pygments: true
permalink: :title
exclude: [README.md, LICENSE, Makefile]
# Information for the Atom feed
gereksiz:
author: "John Doe"
email: "john.doe@mail.sexy"
| name: "Gereksiz"
markdown: redcarpet
highlighter: pygments
permalink: :title
exclude: [README.md, LICENSE, Makefile]
# Information for the Atom feed
gereksiz:
author: "John Doe"
email: "john.doe@mail.sexy"
|
Add skip symbols as it's not working anyway | version: '{build}'
# Build worker image (VM template)
image: Visual Studio 2019
environment:
HUBSPOT_API_KEY:
secure: nEkpqjqVe4G73k8gkmpYndR8GGQdK58k98IxzWwoZS4Rvq+bTOR9Yok2ISgjjNWr
pull_requests:
do_not_increment_build_number: true
branches:
only:
- master
nuget:
disable_publish_on_pr: true
build_scri... | version: '{build}'
# Build worker image (VM template)
image: Visual Studio 2019
environment:
HUBSPOT_API_KEY:
secure: nEkpqjqVe4G73k8gkmpYndR8GGQdK58k98IxzWwoZS4Rvq+bTOR9Yok2ISgjjNWr
pull_requests:
do_not_increment_build_number: true
branches:
only:
- master
nuget:
disable_publish_on_pr: true
build_scri... |
Add production cid key for smart survey | # Default values for cla-public in a production environment.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
image:
pullPolicy: IfNotPresent
environment: production
backend_base_uri: https://fox.civillegaladvice.service.gov.uk
laalaa_api_host: https://laa-legal-adviser-api-pro... | # Default values for cla-public in a production environment.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
image:
pullPolicy: IfNotPresent
environment: production
backend_base_uri: https://fox.civillegaladvice.service.gov.uk
laalaa_api_host: https://laa-legal-adviser-api-pro... |
Add missing file check again | {{- $config_path := printf "%s%s.json" $.Values.lg_config_path "lg_px_communities_v2" -}}
---
kind: ConfigMap
apiVersion: v1
metadata:
name: cfg-{{ $.Values.region }}-pxrs-lg-communities
data:
"lg_px_communities_v2.json": |
#{{- if not ($.Files.Glob $config_path) -}}
#{{- fail (printf "communities config file %... | {{- $config_path := printf "%s%s.json" $.Values.lg_config_path "lg_px_communities_v2" -}}
---
kind: ConfigMap
apiVersion: v1
metadata:
name: cfg-{{ $.Values.region }}-pxrs-lg-communities
data:
"lg_px_communities_v2.json": |
{{- if not ($.Files.Glob $config_path) -}}
{{- fail (printf "communities config file %s ... |
Add docker upgrade check for migrate | version: 2
updates:
- package-ecosystem: "nuget"
directory: "/" # Location of package manifests
schedule:
interval: "daily"
- package-ecosystem: "docker"
directory: "/src/JoinRpg.Portal" # Location of package manifests
schedule:
interval: "daily"
| version: 2
updates:
- package-ecosystem: "nuget"
directory: "/" # Location of package manifests
schedule:
interval: "daily"
- package-ecosystem: "docker"
directory: "/src/JoinRpg.Portal"
schedule:
interval: "daily"
- package-ecosystem: "docker"
directory: "/src/Joinrpg.Dal.Migra... |
Use extended version of hugo | # This action tests and builds the mimic iii website
name: build-mimiciii-website
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
... | # This action tests and builds the mimic iii website
name: build-mimiciii-website
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
... |
Allow to overwrite shasum for unknown maven version | ---
# This file is included, when no vars/versions/{{ version }}.yml
# exists for the configured version.
# default SHA256 sum for the redistributable package
maven_redis_sha256sum: MUST_BE_DEFINED_IN_INVENTORY
| ---
# This file is included, when no vars/versions/{{ version }}.yml
# exists for the configured version.
|
Revert "Revert "Add configure-unbound to base job"" | - hosts: localhost
roles:
- role: emit-job-header
zuul_log_url: "http://logs.openstack.org"
- hosts: all
roles:
- add-build-sshkey
- start-zuul-console
- validate-host
- use-cached-repos
- mirror-workspace-git-repos
- mirror-info
- configure-mirrors
- role: fetch-zuul-clon... | - hosts: localhost
roles:
- role: emit-job-header
zuul_log_url: "http://logs.openstack.org"
- hosts: all
roles:
- add-build-sshkey
- start-zuul-console
- configure-unbound
- validate-host
- use-cached-repos
- mirror-workspace-git-repos
- mirror-info
- configure-mirrors
... |
Revert "ubuntu-minimal : only install 16.04 HWE kernel on xenial" | linux-image-generic:
not-arch: arm64
when: DIB_UBUNTU_KERNEL = linux-image-generic
# On ARM64/Xenial install the HWE kernel as generic because the base
# kernel is very old and causes problems.
linux-generic-hwe-16.04:
arch: arm64
when:
- DIB_RELEASE = xenial
- DIB_UBUNTU_KERNEL = linux-image-generic
l... | linux-image-generic:
not-arch: arm64
when: DIB_UBUNTU_KERNEL = linux-image-generic
linux-image-kvm:
not-arch: arm64
when: DIB_UBUNTU_KERNEL = linux-image-kvm
linux-image-virtual:
not-arch: arm64
when: DIB_UBUNTU_KERNEL = linux-image-virtual
linux-generic-hwe-18.04:
not-arch: arm64
when:
- DIB_UBUNTU... |
Fix copy and paste failure | language: php
php:
- 5.6
- 7.0
- hhvm
before_script:
- composer install --dev
script:
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover --colors
after_script:
- if [ $TRAVIS_PHP_VERSION = '5.6' ]; then wget https://scrutinizer-ci.com/ocular.phar; php ocular.phar code-coverage:upload... | language: php
php:
- 5.6
- 7.0
- hhvm
before_script:
- composer install --dev
script:
- vendor/bin/phpunit --coverage-text --coverage-clover=clover.xml --colors
after_script:
- if [ $TRAVIS_PHP_VERSION = '5.6' ]; then wget https://scrutinizer-ci.com/ocular.phar; php ocular.phar code-coverage:upload --fo... |
Allow AGP to install its deps. | language: android
jdk:
- oraclejdk8
android:
components:
- tools
- tools
- platform-tools
- build-tools-25.0.2
- android-25
- sys-img-armeabi-v7a-android-19
before_script:
- echo no | android create avd --force -n test -t android-19 --abi armeabi-v7a
- emulator -avd test -no-audio -no-... | language: android
jdk:
- oraclejdk8
android:
components:
# Update tools and then platform-tools explicitly so lint gets an updated database. Can be removed once 3.0 is out.
# TODO verify this is no longer needed for lint to run.
- tools
- platform-tools
- sys-img-armeabi-v7a-android-19
before_... |
Revert "Set RACK_ENV to test during build" | language: ruby
cache: bundler
env:
- RACK_ENV=test
rvm:
- 2.1.1
before_script:
- bundle exec rake db:create db:migrate DATABASE_URL=postgres://localhost/transitmix_test
deploy:
provider: heroku
api_key:
secure: GQNUD1hf8VKHeFx1OW+mdxTXeUDU3li6XwfW4jKapbCVMAN/3WrgUnAZnp2hA5tvLI93xVM84Ez48L42B5Cl5pkld0DTR0/... | language: ruby
cache: bundler
rvm:
- 2.1.1
before_script:
- bundle exec rake db:create db:migrate DATABASE_URL=postgres://localhost/transitmix_test
deploy:
provider: heroku
api_key:
secure: GQNUD1hf8VKHeFx1OW+mdxTXeUDU3li6XwfW4jKapbCVMAN/3WrgUnAZnp2hA5tvLI93xVM84Ez48L42B5Cl5pkld0DTR0/Fv7fJ7znYEpsxkDi8eW8QSJ... |
Test on OS X and use "rbx" instead of "rbx-2" | ---
language: ruby
script: bundle exec rake
sudo: false
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- rbx-2
- jruby-1
- jruby-9
notifications:
email:
recipients:
- yorickpeterse@gmail.com
on_success: change
on_failure: change
cache: bundler
branches:
only:
- master
| ---
language: ruby
script: bundle exec rake
sudo: false
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- rbx
- jruby-9
matrix:
exclude:
- rvm: 2.2
os: osx
- rvm: jruby-9
os: osx
notifications:
email:
recipients:
- yorickpeterse@gmail.com
on_success: change
on_failure: change
ca... |
Update Travis to use Lerna so it can resolve cross-dependencies to run tests | language: node_js
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN # Set in travis-ci.org dashboard, marked secure
keep-history: true
on:
branch: gh-pages
local-dir: packages/simplebar/demo | language: node_js
before_install:
- npm i -g lerna
install:
- lerna bootstrap
deploy:
provider: pages
skip-cleanup: true
github-token: $GITHUB_TOKEN # Set in travis-ci.org dashboard, marked secure
keep-history: true
on:
branch: gh-pages
local-dir: packages/simplebar/demo |
Revert "change pg port to 5432" | # SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
#
default: &default
adapter: postgresql
pool: 5
timeout: 5432
development:
<<: *default
database: geekpark_dev
# Warning: The database defined as "test" will be erased and
# re-generated f... | # SQLite version 3.x
# gem install sqlite3
#
# Ensure the SQLite 3 gem is defined in your Gemfile
# gem 'sqlite3'
#
default: &default
adapter: postgresql
pool: 5
timeout: 5000
development:
<<: *default
database: geekpark_dev
# Warning: The database defined as "test" will be erased and
# re-generated f... |
Set Ruby version `2.4.3` for Travis CI instead of `2.4` | language: ruby
rvm:
- 2.3
- 2.4
- 2.5
before_install:
- gem update --system
cache: bundler
notifications:
email:
on_success: change
| language: ruby
rvm:
- 2.3
## https://travis-ci.org/AlexWayfer/flame/jobs/349907949
## https://bugs.ruby-lang.org/issues/13539
- 2.4.3
- 2.5
before_install:
- gem update --system
cache: bundler
notifications:
email:
on_success: change
|
Use correct encoding prior to install also | language: objective-c
before_install:
- rake install
- cd Example && pod install && cd $TRAVIS_BUILD_DIR
before_script:
- export LANG=en_US.UTF-8
script:
- rake test
notifications:
email:
recipients:
- nick.donaldson@raizlabs.com
on_success: change
on_failure: alwa... | language: objective-c
before_install:
- export LANG=en_US.UTF-8
- rake install
- cd Example && pod install && cd $TRAVIS_BUILD_DIR
before_script:
- export LANG=en_US.UTF-8
script:
- rake test
notifications:
email:
recipients:
- nick.donaldson@raizlabs.com
on_success: c... |
Expand the ruby versions we test on | language: ruby
cache: bundler
sudo: false
rvm:
- 2.2.5
- 2.3.1
branches:
only:
- master
script: bundle exec rake
| language: ruby
cache: bundler
dist: trusty
sudo: false
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
branches:
only:
- master
script: bundle exec rake
|
Add wallet dir to coverage | sudo: required
dist: trusty
language: python
before_install:
- sudo add-apt-repository -y ppa:giskou/librocksdb
- sudo apt-get -qq update
- sudo apt-get install -yq libleveldb-dev librocksdb libsnappy-dev zlib1g-dev libbz2-dev libgflags-dev
python:
- "3.5"
- "3.6-dev"
- "nightly"
# command to install depend... | sudo: required
dist: trusty
language: python
before_install:
- sudo add-apt-repository -y ppa:giskou/librocksdb
- sudo apt-get -qq update
- sudo apt-get install -yq libleveldb-dev librocksdb libsnappy-dev zlib1g-dev libbz2-dev libgflags-dev
python:
- "3.5"
- "3.6-dev"
- "nightly"
# command to install depend... |
Remove Python 3 compatibility, as it fails. | language: python
python:
- 2.6
- 2.7
- 3.2
script: python goatfish/tests.py
| language: python
python:
- 2.5
- 2.6
- 2.7
install: # No dependencies.
script: python goatfish/tests.py
|
Use Travis' new container-based infrastructure. | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer install --dev --prefer-source --no-interaction
script: vendor/bin/phpspec run
| language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer install --dev --prefer-source --no-interaction
script: vendor/bin/phpspec run
# Use Travis' new container-based infrastructure.
# See http://docs.travis-ci.com/user/migrating-from-legacy/#How-can-I-use-container-based-infrastructure%3F
... |
Disable hhvm testing as the testing image fails to build | language: php
php:
- 7.1
- 7.0
- 5.6
- hhvm
- nightly
os:
- linux
# osx/php testing not supported by travis
before_script:
- mysql -e 'create database travis_app_test DEFAULT CHARACTER SET utf8mb4 collate utf8mb4_unicode_ci;'
install:
- cp app/config/parameters-docker.yml app/config/parameters.yml
- com... | language: php
php:
- 7.1
- 7.0
- 5.6
# - hhvm
- nightly
os:
- linux
# osx/php testing not supported by travis
before_script:
- mysql -e 'create database travis_app_test DEFAULT CHARACTER SET utf8mb4 collate utf8mb4_unicode_ci;'
install:
- cp app/config/parameters-docker.yml app/config/parameters.yml
- co... |
Fix incorrect command in Travis pre-install routine. | language: haskell
ghc: "7.10"
before_install:
- travis_retry sudo apt-get add-apt-repository -y ppa:hvr/ghc
- travis_retry sudo apt-get update -qq
- travis_retry sudo apt-get install -y libblas-dev liblapack-dev cabal-install-1.22 ghc-7.10.2
| language: haskell
ghc: "7.10"
before_install:
- travis_retry sudo add-apt-repository -y ppa:hvr/ghc
- travis_retry sudo apt-get update -qq
- travis_retry sudo apt-get install -y libblas-dev liblapack-dev cabal-install-1.22 ghc-7.10.2
|
Add big-endian platform to TravisCI | language: rust
rust:
- stable
- nightly
sudo: false
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
notifications:
email:
on_success: never
on_failure: always
script:
- cargo build
- cargo test
- '[ "$TRA... | language: rust
arch:
- amd64
- s390x
os: linux
rust:
- stable
- nightly
sudo: false
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
notifications:
email:
on_success: never
on_failure: always
script:
- cargo... |
Add tests for PHP 7.1 and 7.2 on Travis | language: php
php:
- 5.6
- 7.0
- 7.1
before_script:
- composer install --no-progress --prefer-source
script:
- vendor/bin/phpunit
| language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
before_script:
- composer install --no-progress --prefer-source
script:
- vendor/bin/phpunit
|
Add testing in node 5.x | language: node_js
node_js:
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
| language: node_js
node_js:
- "5"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
|
Stop installing npm --dev deps in Travis | language: php
php:
- 5.6
- 5.5
- 5.4
- hhvm
install:
- npm install --dev
- composer install --dev
before_script:
- gulp deploy
- cp .env.example .env
script:
- ./bin/robo test
| language: php
php:
- 5.6
- 5.5
- 5.4
- hhvm
install:
- npm install
- composer install --dev
before_script:
- gulp deploy
- cp .env.example .env
script:
- ./bin/robo test
|
Update apt before installing cmake and gcc. | sudo: required
language: cpp
os: linux
compiler:
- clang
- gcc
install:
- sudo add-apt-repository --yes ppa:smspillaz/cmake-master;
sudo apt-get install cmake;
sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test;
sudo pat-get install gcc;
sudo apt-get install libboost-dev lib... | sudo: required
language: cpp
os: linux
compiler:
- clang
- gcc
install:
- sudo add-apt-repository --yes ppa:smspillaz/cmake-master;
sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test;
sudo apt-get update -qq;
sudo apt-get install cmake;
sudo apt-get install gcc;
sudo a... |
Update code coverage after test | language: node_js
node_js:
- "stable"
script:
- npm run lint
- npm run test
- npm run system-test
after_success:
- bash <(curl -s https://codecov.io/bash) -e TRAVIS_NODE_VERSION | language: node_js
node_js:
- "stable"
script:
- npm run lint
- npm run test
- bash <(curl -s https://codecov.io/bash) -e TRAVIS_NODE_VERSION
- npm run system-test
|
Use Xenial for TravisCI builds | language: java
script:
- cd scripts
- ./build-linux32.sh
- ./build-linux64.sh
- ./build-macosx.sh
- cd ..
before_deploy:
- cd bin
- tar czf linux32.tar.gz linux-i586/
- tar czf linux64.tar.gz linux-amd64/
- tar czf macosx.tar.gz macosx/
deploy:
provider: releases
api_key:
secure: Q9VNV+QOi3... | language: java
dist: xenial
script:
- cd scripts
- ./build-linux32.sh
- ./build-linux64.sh
- ./build-macosx.sh
- cd ..
before_deploy:
- cd bin
- tar czf linux32.tar.gz linux-i586/
- tar czf linux64.tar.gz linux-amd64/
- tar czf macosx.tar.gz macosx/
deploy:
provider: releases
api_key:
secur... |
Use bundler 1.17.3 to stay compatible with Ruby < 2.3 | language: ruby
sudo: false
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- 2.3.3
before_install:
- gem install bundler
- bundle --version
- cd example/rails_app && ./script/setup.sh && cd ../..
after_success:
- bundle exec codeclimate-test-reporter
addons:
code_climate:
repo_token: 05e3e31164d59aa626b730b92eb9b7... | language: ruby
sudo: false
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- 2.3.3
before_install:
- gem install bundler -v 1.17.3
- bundle --version
- cd example/rails_app && ./script/setup.sh && cd ../..
after_success:
- bundle exec codeclimate-test-reporter
addons:
code_climate:
repo_token: 05e3e31164d59aa626b7... |
Add tests against Go 1.7, 1.8, 1.9 | sudo: false
language: go
go:
- 1.4
- 1.5
- 1.6
- tip
script:
- go test -v
| sudo: false
language: go
go:
- 1.4
- 1.5
- 1.6
- 1.7
- 1.8
- 1.9
- tip
script:
- go test -v
|
Add script to generate docs from Travis builds | language: rust
rust:
- stable
- beta
- nightly
matrix:
# We depend on phf's compiler plugin & plugins are not yet stable
allow_failures:
- rust: stable
- rust: beta
| language: rust
rust:
- stable
- beta
- nightly
matrix:
# We depend on phf's compiler plugin & plugins are not yet stable
allow_failures:
- rust: stable
- rust: beta
# from http://hoverbear.org/2015/03/07/rust-travis-github-pages/
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQU... |
Move services back to same spot as master | rvm: 2.2.3
sudo: false
cache:
- bundler
- apt
before_script:
- cp test/dummy/.env.example test/dummy/.env
- bundle exec rake app:db:setup
- bundle exec rake app:index:reset
services:
- elasticsearch
addons:
apt:
sources:
- elasticsearch-2.1
packages:
- elasticsearch
| rvm: 2.2.3
sudo: false
cache:
- bundler
- apt
services:
- elasticsearch
before_script:
- cp test/dummy/.env.example test/dummy/.env
- bundle exec rake app:db:setup
- bundle exec rake app:index:reset
addons:
apt:
sources:
- elasticsearch-2.1
packages:
- elasticsearch
|
Update Travis CI file to upgrade npm, and use environment that can build native addons | language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
branches:
only:
- master
notifications:
email:
on_success: never
on_failure: change | language: node_js
dist: trusty
node_js:
- "4"
- "5"
- "6"
- "7"
env:
- CXX=g++-4.8
branches:
only:
- master
notifications:
email:
on_success: never
on_failure: change
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install: if [[ `npm -v` !... |
Add PHP 7.2 to the Travis build matrix | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
sudo: false
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
before_script:
- mkdir -p build/logs... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
sudo: false
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
before_script:
- mkdir -p bu... |
Add jruby-head (1.9 mode as well) | # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
bundler_args: --without development
script: "bundle exec rspec spec"
before_script: ./bin/ci/before_build.sh
rvm:
- jruby-19mode
- 1.8.7
- rbx-19mode
- 1.9.2
- 1.9.3
gemfile:
- Gemfile
- gemfiles/eventmachine-pre
notifications:
recipients... | # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
bundler_args: --without development
script: "bundle exec rspec spec"
before_script: ./bin/ci/before_build.sh
rvm:
- jruby-19mode
- jruby-head
- 1.8.7
- rbx-19mode
- 1.9.2
- 1.9.3
gemfile:
- Gemfile
- gemfiles/eventmachine-pre
notification... |
Build on linux only with GCC-6 | addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- cmake
- libclang-3.4-dev
- libnuma-dev
os:
- linux
- osx
language: cpp
cache: ccache
script:
- ./ci/travis/build.sh
| language: cpp
cache: ccache
script:
- ./ci/travis/build.sh
os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
- cmake
- libclang-3.4-dev
- libnuma-dev
before_install:
- export CC=gcc-6 CXX=g++-6
|
Test against latest node.js versions | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
| language: node_js
node_js:
- "4.0"
- "4.1"
|
Remove hhvm from test matrix | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
matrix:
include:
- php: 5.3
env: dependencies=lowest
- php: 7.2
env: dependencies=highest
fast_finish: true
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- if [ -z "$dependencies" ... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
matrix:
include:
- php: 5.3
env: dependencies=lowest
- php: 7.2
env: dependencies=highest
fast_finish: true
cache:
directories:
- vendor
- $HOME/.composer/cache
install:
- if [ -z "$dependencies" ]; then t... |
Support latest versions of Ruby and all branches | before_script:
- "ruby --version"
- "bundle exec rake test_app"
script: "bundle exec rake"
notifications:
irc:
channels:
- "irc.freenode.org#spree"
use_notice: true
skip_join: true
branches:
only:
- master
- namespace
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
| before_script:
- "ruby --version"
- "bundle exec rake test_app"
script: "bundle exec rake"
notifications:
irc:
channels:
- "irc.freenode.org#spree"
use_notice: true
skip_join: true
rvm:
- 1.9.3
- 2.0.0
|
Remove Node 4 from Travis | language: node_js
sudo: false
node_js:
- "stable"
- "4"
install:
- YARN_IGNORE_ENGINES=true yarn
| language: node_js
sudo: false
node_js:
- "stable"
- "6"
install:
- YARN_IGNORE_ENGINES=true yarn
|
Add ruby 2.6 in CI | sudo: false
language: ruby
rvm:
- 2.4
- 2.5
script: "bundle exec rake"
install: bundle install --retry=3 --jobs=3
#https://docs.travis-ci.com/user/languages/ruby/
before_install:
- gem install bundler -v '< 2'
gemfile:
- gemfiles/rails_4.gemfile
- gemfiles/rails_5.gemfile
| sudo: false
language: ruby
rvm:
- 2.4
- 2.5
- 2.6
script: "bundle exec rake"
install: bundle install --retry=3 --jobs=3
#https://docs.travis-ci.com/user/languages/ruby/
before_install:
- gem install bundler -v '< 2'
gemfile:
- gemfiles/rails_4.gemfile
- gemfiles/rails_5.gemfile
|
Test on the latest stable Node instead of io.js | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- iojs
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- stable
|
Add flake8 statistics to Travis CI build | language: python
python:
- "3.4"
install:
- python setup.py
- pip install flake8
before_script:
- "flake8 --show-source --builtins=_ common engine feed plugins"
script:
- python common/shapp.py
- python common/sheventhandler.py
- python common/shutil.py
- python common/shregistry.py
- python engine/re... | language: python
python:
- "3.4"
install:
- python setup.py
- pip install flake8
before_script:
- "flake8 --show-source --statistics --builtins=_ common engine feed plugins"
script:
- python common/shapp.py
- python common/sheventhandler.py
- python common/shutil.py
- python common/shregistry.py
- pyt... |
Move Ruby 2.4.0 towards the top of Travis' build matrix | sudo: false
cache: bundler
language: ruby
matrix:
include:
- rvm: jruby-9.0.1.0
env: JRUBY_OPTS='--debug' # get more accurate coverage data
- rvm: 2.0.0
- rvm: 2.1.10
- rvm: 2.2.6
- rvm: 2.3.3
- rvm: 2.4.0
- rvm: ruby-head
- rvm: rbx-3
allow_failures:
- rvm: ruby-h... | sudo: false
cache: bundler
language: ruby
matrix:
include:
- rvm: jruby-9.0.1.0
env: JRUBY_OPTS='--debug' # get more accurate coverage data
- rvm: 2.4.0 # Ruby 2.4.0 runs very slow, so let it start earlier
- rvm: 2.0.0
- rvm: 2.1.10
- rvm: 2.2.6
- rvm: 2.3.3
- rvm: ruby-head
... |
Make Travis CI run the PHPUnit tests | language: php
php:
- 5.4
- 5.5
before_script:
# Runkit
- git clone https://github.com/zenovich/runkit.git
- sh -c "cd runkit && phpize && ./configure && make && sudo make install"
- echo "extension=runkit.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
# Composer
- curl -s http... | language: php
php:
- 5.4
- 5.5
before_script:
# Runkit
- git clone https://github.com/zenovich/runkit.git
- sh -c "cd runkit && phpize && ./configure && make && sudo make install"
- echo "extension=runkit.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
# Composer
- curl -s http... |
Fix CI build for recent Pythons | sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
- "pypy3"
matrix:
include:
- {python: "3.6", env: TOXENV=packaging}
install:
- pip install tox tox-travis tox-venv
- pip install coveralls
script: tox
after_success:
- coveralls
| sudo: false
dist: xenial
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
- "pypy3"
matrix:
include:
- {python: "3.6", env: TOXENV=packaging}
install:
- pip install tox tox-travis tox-venv
- pip install coveralls
script: tox
after_success:
- coveralls
|
Use Ubuntu 14 for build (has new g++) | language: cpp
before_install:
- sudo apt-get install unixodbc unixodbc-dev
script:
- mkdir build && cd build && cmake .. && make -j4 | language: cpp
dist: trusty
sudo: required
before_install:
- sudo apt-get install unixodbc unixodbc-dev
script:
- mkdir build && cd build && cmake .. && make -j4 |
Use --location to support redirect | language: c
compiler:
- gcc
- clang
notifications:
recipients:
- kenhys@gmail.com
branches:
only:
- master
- develop
before_script:
- curl https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh
- git submodule update --init --recursive
- ./autogen.sh
script:
-... | language: c
compiler:
- gcc
- clang
notifications:
recipients:
- kenhys@gmail.com
branches:
only:
- master
- develop
before_script:
- curl --location https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh
- git submodule update --init --recursive
- ./autogen.sh
... |
Test on PHP 7.4 stable | language: php
php:
- 7.2
- 7.3
- 7.4snapshot
- nightly
matrix:
allow_failures:
- php: nightly
fast_finish: true
env:
matrix:
- DEPENDENCIES="high"
- DEPENDENCIES="low"
global:
- DEFAULT_COMPOSER_FLAGS="--no-interaction --no-ansi --no-progress --no-suggest"
before_install:
- ./tools... | language: php
dist: bionic
php:
- 7.2
- 7.3
- 7.4
- nightly
matrix:
allow_failures:
- php: nightly
fast_finish: true
env:
matrix:
- DEPENDENCIES="high"
- DEPENDENCIES="low"
global:
- DEFAULT_COMPOSER_FLAGS="--no-interaction --no-ansi --no-progress --no-suggest"
before_install:
- .... |
Test on modern ruby versions | sudo: false
language: ruby
cache: bundler
matrix:
include:
- rvm: 2.3.7
- rvm: 2.4.4
- rvm: 2.5.1
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
branches:
only:
- master
bundler_args: --jobs 7 --without docs debug
script:
- bundle exec chefstyle
- bundle exec rake
| sudo: false
language: ruby
cache: bundler
matrix:
include:
- rvm: 2.3.8
- rvm: 2.4.5
- rvm: 2.5.3
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
branches:
only:
- master
bundler_args: --jobs 7 --without docs debug
script:
- bundle exec chefstyle
- bundle exec rake
|
Add PHP 8 to the test suite | language: php
php:
- 7.0
- 7.1
- 7.2
- 7.3
sudo: false
env:
- PREFER_LOWEST=""
- PREFER_LOWEST="--prefer-lowest"
before_script:
- COMPOSER_MEMORY_LIMIT=-1 travis_retry composer update --prefer-dist --no-interaction $PREFER_LOWEST
script: composer testci
| language: php
php:
- 7.1
- 7.2
- 7.3
- 8.0
sudo: false
env:
- PREFER_LOWEST=""
- PREFER_LOWEST="--prefer-lowest"
before_script:
- COMPOSER_MEMORY_LIMIT=-1 travis_retry composer update --prefer-dist --no-interaction $PREFER_LOWEST
script: composer testci
|
Use --no-scripts to install on Travis | language: php
dist: trusty
php: nightly
env: TEST_SCRIPT=scripts/test/unit.sh
matrix:
include:
- php: 5.6
env: TEST_SCRIPT=scripts/test/security.sh
- php: 7.3
env: TEST_SCRIPT=scripts/test/security.sh
- php: 5.6
env: TEST_SCRIPT=scripts/test/installer.sh
- php: 5.6
env: TES... | language: php
dist: trusty
php: nightly
env: TEST_SCRIPT=scripts/test/unit.sh
matrix:
include:
- php: 5.6
env: TEST_SCRIPT=scripts/test/security.sh
- php: 7.3
env: TEST_SCRIPT=scripts/test/security.sh
- php: 5.6
env: TEST_SCRIPT=scripts/test/installer.sh
- php: 5.6
env: TES... |
Fix bucket name for uploads | language: node_js
node_js:
- "0.10"
before_install:
- "npm install -g grunt-cli"
before_script:
- "gem install travis-artifacts"
after_success:
- "travis-artifacts upload --path build/melonJS-1.1.0.js"
env:
global:
- "ARTIFACTS_S3_BUCKET=melonJS-builds"
- "ARTIFACTS_AWS_REGION=us-east-1"
- secure: ... | language: node_js
node_js:
- "0.10"
before_install:
- "npm install -g grunt-cli"
before_script:
- "gem install travis-artifacts"
after_success:
- "travis-artifacts upload --path build/melonJS-1.1.0.js"
env:
global:
- "ARTIFACTS_S3_BUCKET=melonjs-builds"
- "ARTIFACTS_AWS_REGION=us-east-1"
- secure: ... |
Update from Forestry.io - Updated Forestry configuration | ---
label: colinha
hide_body: false
display_field: title
fields:
- name: layout
label: Layout
type: text
hidden: true
default: post
- name: title
label: título
type: text
hidden: false
default: ''
config:
required: true
- type: text
name: description
label: subtítulo
description: max 70 char... | ---
label: colinha
hide_body: false
display_field: title
fields:
- name: layout
label: Layout
type: text
hidden: true
default: post
- name: title
label: título
type: text
hidden: false
default: ''
config:
required: true
- type: text
name: description
label: subtítulo
description: max 70 char... |
Remove redis from config, it's not used yet | language: node_js
node_js:
- "8"
services:
- redis
before_script: redis-cli --version
after_success: npm run report-coveralls
sudo: false
dist: trusty
| language: node_js
node_js:
- "8"
after_success: npm run report-coveralls
sudo: false
dist: trusty
|
Use latest Hazelcast-Kubernetes for the example | apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: hazelcast
labels:
name: hazelcast
spec:
template:
metadata:
labels:
name: hazelcast
spec:
containers:
- name: hazelcast
image: quay.io/pires/hazelcast-kubernetes:3.10
imagePullPolicy: Alwa... | apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: hazelcast
labels:
name: hazelcast
spec:
template:
metadata:
labels:
name: hazelcast
spec:
containers:
- name: hazelcast
image: quay.io/pires/hazelcast-kubernetes:3.10.1
imagePullPolicy: Al... |
Fix the name of an action | name: Update Transitive Dependencies
on:
schedule:
- cron: '15 11 * * 0' # weekly, on Sunday morning (UTC)
workflow_dispatch:
jobs:
update:
name: Tests
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- name:... | name: Update Transitive Dependencies
on:
schedule:
- cron: '15 11 * * 0' # weekly, on Sunday morning (UTC)
workflow_dispatch:
jobs:
update:
name: Run Update
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- ... |
Update UUID 0xFD6F Scanner to 0.9.1.10 (9110) | Categories:
- Connectivity
License: GPL-3.0-or-later
AuthorName: marq24
SourceCode: https://github.com/marq24/UUID0xFD6FTracer
IssueTracker: https://github.com/marq24/UUID0xFD6FTracer/issues
AutoName: UUID 0xFD6F Scanner
RepoType: git
Repo: https://github.com/marq24/UUID0xFD6FTracer.git
Builds:
- versionName: 0.... | Categories:
- Connectivity
License: GPL-3.0-or-later
AuthorName: marq24
SourceCode: https://github.com/marq24/UUID0xFD6FTracer
IssueTracker: https://github.com/marq24/UUID0xFD6FTracer/issues
AutoName: UUID 0xFD6F Scanner
RepoType: git
Repo: https://github.com/marq24/UUID0xFD6FTracer.git
Builds:
- versionName: 0.... |
Fix issue with JUnit-test-results on AppVeyor | environment:
JAVA_HOME: C:\Program Files\Java\jdk1.8.0
cache:
- C:\Users\appveyor\.gradle
build_script:
- gradlew.bat assemble
test_script:
- gradlew.bat check
after_test:
- ps: |
$url = "https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)"
(New-Object 'System.Net.WebClient')... | environment:
JAVA_HOME: C:\Program Files\Java\jdk1.8.0
cache:
- C:\Users\appveyor\.gradle
build_script:
- gradlew.bat assemble
test_script:
- gradlew.bat check
after_test:
- ps: |
$url = "https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)"
ForEach ($file in Get-ChildItem '.\... |
Use asgard-1.4.1 that supports updating and using ELBs in default VPC of recent AWS account-regions | ---
ami_build: ami is defined and ami
not_ami_build: ami is not defined or not ami
latest_successful_build_url: https://github.com/Netflix/asgard/releases/download/asgard-1.4/asgard.war | ---
ami_build: ami is defined and ami
not_ami_build: ami is not defined or not ami
latest_successful_build_url: https://github.com/Netflix/asgard/releases/download/asgard-1.4.1/asgard.war |
Add Slack integration for Travis | language: python
python:
- "2.7"
- "3.3"
- "3.4"
install:
- "pip install -U setuptools"
- "python setup.py install"
- "pip install -U pytest pytest-pep8 coverage python-coveralls"
script: "coverage run --source busbus -m pytest --pep8"
after_script:
- "coverage report -m"
- "coveralls"
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
install:
- "pip install -U setuptools"
- "python setup.py install"
- "pip install -U pytest pytest-pep8 coverage python-coveralls"
script: "coverage run --source busbus -m pytest --pep8"
after_script:
- "coverage report -m"
- "coveralls"
notifications:
... |
Move DEPLOY_ROOT to the same line as LAPIS_DEPLOY | language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
notifications:
email: false
env:
global:
- LAPIS_DEPLOY=https://github.com/LapisBlue/Deploy.git
- DEPLOY_ROOT=/tmp/lapis/deploy
- secure: WtEeGDHXX9F8ozizapxpSq7lZgNFjeSkq7DqlI8t0k9AiEejAjeXe0b7nqFpo0y2rCjs+rjpmEM3g9+J1RljuYujBS... | language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
notifications:
email: false
env:
global:
- LAPIS_DEPLOY=https://github.com/LapisBlue/Deploy.git DEPLOY_ROOT=/tmp/lapis/deploy
- secure: WtEeGDHXX9F8ozizapxpSq7lZgNFjeSkq7DqlI8t0k9AiEejAjeXe0b7nqFpo0y2rCjs+rjpmEM3g9+J1RljuYujBSiUqtsI... |
Move dependency install to before_install | language: python
python:
- "2.7"
before_install:
- chmod +x run_py_tests.sh
install:
- pip install numpy
- sudo apt-get install python-smbus -y
script:
- ./run_py_tests.sh | language: python
python:
- "2.7"
before_install:
- chmod +x run_py_tests.sh
- sudo apt-get install python-smbus -y
install:
- pip install numpy
script:
- ./run_py_tests.sh |
Test on version `4`, `6` and `7` | sudo: false
language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
| sudo: false
language: node_js
node_js:
- '7'
- '6'
- '4'
|
Set Travis CI osx_image to xcode8.3 | language: objective-c
osx_image: xcode8
before_install:
- rvm get stable
install:
- ./scripts/install_swiftlint.sh
script:
- swiftlint
- ./scripts/build.sh
| language: objective-c
osx_image: xcode8.3
before_install:
- rvm get stable
install:
- ./scripts/install_swiftlint.sh
script:
- swiftlint
- ./scripts/build.sh
|
Test with Django master (but allow failures) | language: python
sudo: false
python:
- "2.7"
- "3.4"
- "3.5"
- "nightly"
env:
matrix:
- DJANGO="Django>=1.8,<1.9"
- DJANGO="Django>=1.9,<1.10"
- DJANGO="Django>=1.10,<1.11"
install:
- pip install $DJANGO
- pip install .
- pip install coverage
branches:
only:
- master
- develop
- /^feature\/.+/
... | language: python
sudo: false
python:
- "2.7"
- "3.4"
- "3.5"
- "nightly"
env:
matrix:
- DJANGO="Django>=1.8,<1.9"
- DJANGO="Django>=1.9,<1.10"
- DJANGO="Django>=1.10,<1.11"
- DJANGO="https://github.com/django/django/archive/master.tar.gz"
install:
- pip install $DJANGO
- pip install .
- pip install... |
Use latest DITA-OT version (3.4.1) for CI builds | sudo: false
language: java
jdk:
- openjdk8
env:
global:
- DITA_OT_VERSION=3.4
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
| sudo: false
language: java
jdk:
- openjdk8
env:
global:
- DITA_OT_VERSION=3.4.1
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
|
Enable detailed summary on Travis | language: python
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py31
- TOXENV=py32
before_install:
- sudo apt-get install libudev-dev gccxml
install:
- pip install --use-mirrors tox
script: tox -- --junitxml=tests.xml --enable-privileged
| language: python
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py31
- TOXENV=py32
before_install:
- sudo apt-get install libudev-dev gccxml
install:
- pip install --use-mirrors tox
script: tox -- --junitxml=tests.xml --enable-privileged -rfEsxX
|
Add tests for ss 3.2 and PHP 5.6 | # See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
language: php
php:
- 5.3
sudo: false
env:
- DB=MYSQL CORE_RELEASE=3.1
- DB=PGSQL CORE_RELEASE=3.1
before_script:
- git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support
- php ~/tra... | # See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
language: php
php:
- 5.3
sudo: false
env:
- DB=MYSQL CORE_RELEASE=3.1
matrix:
include:
- php: 5.4
env: DB=PGSQL CORE_RELEASE=3.2
- php: 5.5
env: DB=MYSQL CORE_RELEASE=3
- php: 5.6
env: DB=MYS... |
Test in Node 4 and 5, too. | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
| language: node_js
node_js:
- "5.0"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
|
Add on Travis: echo $TRAVIS_BRANCH | git:
depth: 10
os:
- osx
osx_image: xcode7.3
language: objective-c
compiler: clang
sudo: false
env:
global:
- SIGN_DARWIN_KEYCHAIN_NAME=travis.keychain
- SIGN_DARWIN_KEYCHAIN_PASSWORD=travis
install:
- ./scripts/install_nvm.sh
- npm install -g gulp
- npm install --only=dev
- if [[ $TRAVIS_BRAN... | git:
depth: 10
os:
- osx
osx_image: xcode7.3
language: objective-c
compiler: clang
sudo: false
env:
global:
- SIGN_DARWIN_KEYCHAIN_NAME=travis.keychain
- SIGN_DARWIN_KEYCHAIN_PASSWORD=travis
install:
- echo $TRAVIS_BRANCH
- ./scripts/install_nvm.sh
- npm install -g gulp
- npm install --only=de... |
Update Travis CI configuration file | language: go
go:
- 1.2.2
- 1.3
install:
- go get code.google.com/p/go.tools/cmd/vet
- go get -t -v ./...
- go install -a -race std
script:
- go tool vet -all .
- go build ./...
- go test -race -v ./...
| language: go
go:
- 1.3.1
- tip
matrix:
fast_finish: true
env:
global:
- PATH=$HOME/gopath/bin:$PATH
install:
- go get code.google.com/p/go.tools/cmd/vet
- go get -t -v ./...
- go install -a -race std
script:
- go tool vet -all .
- go build ./...
- go test -race -v ./...
|
Add TF 1.12 to tests | sudo: required
language: python
git:
depth: 10
quiet: true
notifications:
email:
- tensorflow-datasets+travis@google.com
python:
- "2.7"
- "3.6"
env:
matrix:
- TF_VERSION="tf-nightly"
- TF_VERSION="1.13.0rc0"
- TF_VERSION="tf2"
install:
- ./oss_scripts/oss_pip_install.sh
script:
- ./oss_... | sudo: required
language: python
git:
depth: 10
quiet: true
notifications:
email:
- tensorflow-datasets+travis@google.com
python:
- "2.7"
- "3.6"
env:
matrix:
- TF_VERSION="tf-nightly"
- TF_VERSION="1.12.0"
- TF_VERSION="1.13.0rc0"
- TF_VERSION="tf2"
install:
- ./oss_scripts/oss_pip_ins... |
Update Codacy coverage reporter for v4 release | language: java
jdk:
- oraclejdk8
before_install:
- sudo apt-get install jq
- wget -O ~/codacy-coverage-reporter-assembly-latest.jar $(curl https://api.github.com/repos/codacy/codacy-coverage-reporter/releases/latest | jq -r .assets[0].browser_download_url)
- "export DISPLAY=:99.0"
- "export TERM=dumb"
- "sh ... | language: java
jdk:
- oraclejdk8
before_install:
- sudo apt-get install jq
- wget -O ~/codacy-coverage-reporter-assembly-latest.jar $(curl https://api.github.com/repos/codacy/codacy-coverage-reporter/releases/latest | jq -r .assets[0].browser_download_url)
- "export DISPLAY=:99.0"
- "export TERM=dumb"
- "sh ... |
Enable caching for node_modules and bower_modules in Travis CI | sudo: false
language: node_js
node_js: stable
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
before_install:
- export CC=/usr/bin/gcc-4.9
- export CXX=/usr/bin/g++-4.9
install:
- npm install
- ./node_modules/.bin/typings install
- ./node_modules/.bin/bower install
be... | sudo: false
language: node_js
node_js: stable
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
cache:
directories:
- node_modules
- bower_modules
before_install:
- export CC=/usr/bin/gcc-4.9
- export CXX=/usr/bin/g++-4.9
install:
- npm install
- ./node_modules/.b... |
Build with latest Node.js 6 on Travis CI. | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
- '6'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
Switch to alpine version of Postgres 10 docker image | version: '2'
services:
db:
image: postgres:10
ports:
- "5432:5432"
environment:
- POSTGRES_USER=coffeetable
- POSTGRES_PASSWORD=coffeetable
| version: '2'
services:
db:
image: postgres:10-alpine
ports:
- "5432:5432"
environment:
- POSTGRES_USER=coffeetable
- POSTGRES_PASSWORD=coffeetable
|
Remove python 2.5 testing because coveralls doesn't support it | language: python
python:
- "3.3"
- "3.2"
- "2.7"
- "2.6"
- "2.5"
install:
- pip install -e . -r requirements-testing.txt $DJANGO_VERSION
script:
- django-admin.py test --settings=dumper.test.settings dumper
after_success:
- coveralls
env:
matrix:
- DJANGO_VERSION="https://www.djangoproject.com/dow... | language: python
python:
- "3.3"
- "3.2"
- "2.7"
- "2.6"
install:
- pip install -e . -r requirements-testing.txt $DJANGO_VERSION
script:
- django-admin.py test --settings=dumper.test.settings dumper
after_success:
- coveralls
env:
matrix:
- DJANGO_VERSION="https://www.djangoproject.com/download/1.6a... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.