Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Install the freetds library for Travis build | language: java
jdk:
- openjdk7
- oraclejdk7
install:
- gem install bundler
- bundle install
- npm install coffee-script
- export PATH=$PATH:./node_modules/.bin
script: buildr clean package
| language: java
jdk:
- openjdk7
- oraclejdk7
install:
- apt-get install freetds-dev
- gem install bundler
- bundle install
- npm install coffee-script
- export PATH=$PATH:./node_modules/.bin
script: buildr clean package
|
Remove PHP 7 nightly because Carbon is incompatible | language: php
php:
- 5.5.9
- 5.5
- 5.6
- hhvm
- nightly
sudo: false
install: travis_retry composer install --no-interaction --ignore-platform-reqs --no-scripts --prefer-source
script:
- bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then vendor/bin/phpunit; fi;'
- bash -c 'if [ "$TRAVIS_PHP_VERSION"... | language: php
php:
- 5.5.9
- 5.5
- 5.6
- hhvm
sudo: false
install: travis_retry composer install --no-interaction --ignore-platform-reqs --no-scripts --prefer-source
script:
- bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then vendor/bin/phpunit; fi;'
- bash -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]... |
Remove Python 2.6 from Travis CI | ---
language: python
python:
- 2.6
- 2.7
env:
- secure: |-
WF3zgCer3gTFPEeJFICLJ0akll9waz4NTP1sJGlkkgwkLc/4vexe+YULBTz+
DyQX37yKqjC95Ym9YM8cmEV4axjGTxGMvp5/B9OZGO4Mc/MwbJuZ5XBdFNgC
KritpYvK2kQEVAAqWqvskgidQpxEU+WjzQ5Gtflmb6nklpemEQ4=
matrix:
allow_failures:
- python: 2.6
script:
- ./run_tests.sh
br... | ---
language: python
python:
- 2.7
env:
- secure: |-
WF3zgCer3gTFPEeJFICLJ0akll9waz4NTP1sJGlkkgwkLc/4vexe+YULBTz+
DyQX37yKqjC95Ym9YM8cmEV4axjGTxGMvp5/B9OZGO4Mc/MwbJuZ5XBdFNgC
KritpYvK2kQEVAAqWqvskgidQpxEU+WjzQ5Gtflmb6nklpemEQ4=
script:
- ./run_tests.sh
branches:
except:
- release
notifications:
... |
Use the pre-release builds of chefdk | # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk... | # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefd... |
Fix problem with UCD_STREAM variable during build | sudo: required
language: ruby
services:
- docker
env:
- UCD_STREAM=latest
- UCD_VERSION=
before_install:
- curl -O "https://s3.amazonaws.com/artifacts.stackinabox.io/urbancode/ibm-ucd/$UCD_STREAM.txt"
- export UCD_VERSION=`cat latest.txt`
- curl -O "https://s3.amazonaws.com/artifacts.stackinabox.io/urba... | sudo: required
language: ruby
services:
- docker
env:
- UCD_STREAM=
- UCD_VERSION=
before_install:
- curl -O "https://s3.amazonaws.com/artifacts.stackinabox.io/urbancode/ibm-ucd/$UCD_STREAM.txt"
- export UCD_VERSION=`cat $UCD_STREAM.txt`
- curl -O "https://s3.amazonaws.com/artifacts.stackinabox.io/urban... |
Add --errors option to Travis CI execution | language: java
jdk:
- oraclejdk9
install: true
script:
- mvn clean verify
- bash <(curl -s https://codecov.io/bash) -f com.io7m.junreachable.core/target/site/jacoco/jacoco.xml
notifications:
irc: "chat.freenode.net#io7m"
| language: java
jdk:
- oraclejdk9
install: true
script:
- mvn --errors clean verify
- bash <(curl -s https://codecov.io/bash) -f com.io7m.junreachable.core/target/site/jacoco/jacoco.xml
notifications:
irc: "chat.freenode.net#io7m"
|
Move versions tested against and get deps if needed | language: go
go:
- 1.4
- 1.3
install:
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
script:
- go test -cover ./...
notifications:
email: false
| language: go
go:
- 1.8
- 1.7
install:
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
script:
- go get
- go test -cover ./...
notifications:
email: false
|
Add progress format to behat test-suite | language: php
php:
- 5.4
before_install:
# apt-get installs
- sudo apt-get update &> /dev/null
- sudo apt-get install -y apache2 &> /dev/null
# configure apache : tip from https://gist.github.com/3123962
- sudo a2enmod actions &> /dev/null
- sudo a2enmod rewrite &> /dev/null
- sudo a2enmod headers &>... | language: php
php:
- 5.4
before_install:
# apt-get installs
- sudo apt-get update &> /dev/null
- sudo apt-get install -y apache2 &> /dev/null
# configure apache : tip from https://gist.github.com/3123962
- sudo a2enmod actions &> /dev/null
- sudo a2enmod rewrite &> /dev/null
- sudo a2enmod headers &>... |
Add PHP 7.1 to Travis | language: php
php:
- 7.0
- nightly
install: composer install
addons:
code_climate:
repo_token: 1596e8512438166182bdbac274f3ff421abb1fcb25e0b6e104ec1014238a5516 | language: php
php:
- 7.0
- 7.1
- nightly
install: composer install
addons:
code_climate:
repo_token: 1596e8512438166182bdbac274f3ff421abb1fcb25e0b6e104ec1014238a5516 |
Enable Travis CI on Mac OS X | dist: trusty
sudo: required
language: perl6
perl6:
- 2015.12
- latest
install:
- sudo apt-get -qq update
- sudo apt-get install -y libmagickwand-dev
- rakudobrew build-panda
script: panda-build && prove -e perl6 t
| sudo: required
language: perl6
os:
- linux
- osx
perl6:
- 2015.12
- latest
install:
- sudo apt-get -qq update
- sudo apt-get install -y libmagickwand-dev
script: prove -v -e perl6 t/
|
Remove Node 5 from Travis CI setup | # Travis CI Configuration
language: node_js
node_js:
- "7"
- "6"
- "5"
before_script:
- ./node_modules/brunch/bin/brunch build
script:
- npm run lint
- npm test
| # Travis CI Configuration
language: node_js
node_js:
- "7"
- "6"
before_script:
- ./node_modules/brunch/bin/brunch build
script:
- npm run lint
- npm test
|
Make the tests fail if uploading coverage fails | language: php
sudo: false
matrix:
fast_finish: true
include:
- php: "5.4"
env: USE_PSALM=0
- php: "5.5"
env: USE_PSALM=0
- php: "5.6"
env: USE_PSALM=0
- php: "7.0"
env: USE_PSALM=1
- php: "7.1"
env: USE_PSALM=1
- php: "7.2"
env: USE_PSALM=1
- php: "ni... | language: php
sudo: false
matrix:
fast_finish: true
include:
- php: "5.4"
env: USE_PSALM=0
- php: "5.5"
env: USE_PSALM=0
- php: "5.6"
env: USE_PSALM=0
- php: "7.0"
env: USE_PSALM=1
- php: "7.1"
env: USE_PSALM=1
- php: "7.2"
env: USE_PSALM=1
- php: "ni... |
Move file into GPG directory | architect:
- ardesco
- afranken
- pmouawad
docker:
image: "yegor256/rultor-image"
decrypt:
settings.xml: "repo/settings.xml.asc"
pubring.gpg: "repo/pubring.gpg.asc"
secring.gpg: "repo/secring.gpg.asc"
env:
JAVA_HOME: /usr/lib/jvm/java-8-openjdk-amd64
release:
pre: false
script: |-
mvn -Prelease ... | architect:
- ardesco
- afranken
- pmouawad
docker:
image: "yegor256/rultor-image"
decrypt:
settings.xml: "repo/settings.xml.asc"
pubring.gpg: "repo/pubring.gpg.asc"
secring.gpg: "repo/secring.gpg.asc"
env:
JAVA_HOME: /usr/lib/jvm/java-8-openjdk-amd64
release:
pre: false
script: |-
cp -a ../.gnup... |
Fix deploy failure due to missing node_modules | jobs:
include:
- stage: "Test"
name: "Lint"
language: node_js
node_js: 8
script:
- npm run jsonlint
- npm run svglint
- npm run wslint
- name: "Build website"
language: ruby
rvm: 2.4.1
install:
- gem install jekyll
script:
... | jobs:
include:
- stage: "Test"
name: "Lint"
language: node_js
node_js: 8
script:
- npm run jsonlint
- npm run svglint
- npm run wslint
- name: "Build website"
language: ruby
rvm: 2.4.1
install:
- gem install jekyll
script:
... |
Add jruby-head to the list of tested rubies | language: ruby
before_install: gem install bundler
bundler_args: --without guard metrics
script: "bundle exec rake spec:travis"
services: mongodb
rvm:
- 1.8.7
- ree
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: rbx-18... | language: ruby
before_install: gem install bundler
bundler_args: --without guard metrics
script: "bundle exec rake spec:travis"
services: mongodb
rvm:
- 1.8.7
- ree
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
... |
Fix phpunit tests on Travis-CI | sudo: true
language: php
php:
- 7.1
services:
- mysql
before_install:
- composer self-update
install: composer install --dev
before_script:
- bash .travis.install-mysql-5.7.sh
- mysql -e 'create database activecollab_database_structure_test'
script: phpunit
| sudo: true
language: php
php:
- 7.1
services:
- mysql
before_install:
- composer self-update
install: composer install --dev
before_script:
- bash .travis.install-mysql-5.7.sh
- mysql -e 'create database activecollab_database_structure_test'
script: vendor/bin/phpunit
|
Install the relevant postgres packages | language: ruby
rvm: 2.5.2
dist: xenial
group: edge
sudo: required
cache:
bundler: true
directories:
- ${HOME}/perl5
- ${HOME}/.cache
services:
- redis-server
addons:
postgresql: 10.5
env:
global:
- DATABASE_URL='postgres://localhost:5432/job_board_test'
- RUBYOPT=-W0
matrix:
- INTEGRATION_SPECS=... | language: ruby
rvm: 2.5.2
dist: xenial
group: edge
sudo: required
cache:
bundler: true
directories:
- ${HOME}/perl5
- ${HOME}/.cache
services:
- redis-server
addons:
postgresql: 10.5
apt:
packages:
- postgresql-10
- postgresql-client-10
- postgresql-server-dev-10
env:
global:
- DATAB... |
Add Python 3.4 to Travis build matrix | language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
install:
# all installing is now handled by conda as it is faster and more robust
- sudo apt-get update
- pip install -U setuptools
- wget http://repo.continuum.io/miniconda/Miniconda-3.4.2-Linux-x86_64.sh -O miniconda.sh;
- bash mini... | language: python
python:
- "2.7"
- "3.4"
virtualenv:
system_site_packages: true
install:
# all installing is now handled by conda as it is faster and more robust
- sudo apt-get update
- pip install -U setuptools
- wget http://repo.continuum.io/miniconda/Miniconda-3.4.2-Linux-x86_64.sh -O miniconda.sh;
-... |
Switch scheme to framework itself rather than aggregate target | osx_image: xcode8.2
language: objective-c
xcode_project: HelloWorld.xcodeproj
xcode_scheme: Framework
| osx_image: xcode8.2
language: objective-c
xcode_project: HelloWorld.xcodeproj
xcode_scheme: HelloWorld
|
Include ruby 2.3.3 in tests | language: ruby
sudo: false
rvm:
- 2.2.4
- 2.3.1
script: bundle exec rspec
cache: bundler
gemfile:
- Gemfile
- gemfiles/rails42.gemfile
| language: ruby
sudo: false
rvm:
- 2.2.4
- 2.3.3
script: bundle exec rspec
cache: bundler
gemfile:
- Gemfile
- gemfiles/rails42.gemfile
|
Disable IRC announcement for now. | sudo: required
language:
- c
compiler:
- gcc
install:
- wget -q -O- https://raw.githubusercontent.com/mithro/travis-trusty/master/setup.sh | bash
- chmod a+rx $PWD/.travis/*.sh
- /trusty/run.py $PWD/.travis/setup.sh
script:
- /trusty/run.py $PWD/.travis/run.sh
notifications:
email:
- hdmi2usb-spam@google... | sudo: required
language:
- c
compiler:
- gcc
install:
- wget -q -O- https://raw.githubusercontent.com/mithro/travis-trusty/master/setup.sh | bash
- chmod a+rx $PWD/.travis/*.sh
- /trusty/run.py $PWD/.travis/setup.sh
script:
- /trusty/run.py $PWD/.travis/run.sh
notifications:
email:
- hdmi2usb-spam@google... |
Change to the build directory | language: node_js
node_js:
- '7'
env:
- TEST_DIR=modules/primer-css
- TEST_DIR=modules/primer-core
- TEST_DIR=modules/primer-product
- TEST_DIR=modules/primer-marketing
- TEST_DIR=modules/primer-alerts
- TEST_DIR=modules/primer-base
- TEST_DIR=modules/primer-blankslate
- TEST_DIR=modules/primer-box
... | language: node_js
node_js:
- '7'
env:
- TEST_DIR=modules/primer-css
- TEST_DIR=modules/primer-core
- TEST_DIR=modules/primer-product
- TEST_DIR=modules/primer-marketing
- TEST_DIR=modules/primer-alerts
- TEST_DIR=modules/primer-base
- TEST_DIR=modules/primer-blankslate
- TEST_DIR=modules/primer-box
... |
Add code coverage using coverall | sudo: false
language: go
go:
- 1.6
script:
- go test -v ./...
- go vet
notifications:
email: false
| sudo: false
language: go
go:
- 1.6
script:
- go test -v ./...
- go vet
- go test -coverprofile=profile.out -covermode=count
- goveralls -service=travis-ci -coverprofile=profile.out -repotoken $COVERALLS
notifications:
email: false
|
Add PG 12 to Travis test matrix | language: go
go:
- 1.x
- tip
# Derived from https://github.com/lib/pq/blob/master/.travis.yml
before_install:
- ./travis/before_install.bash
env:
global:
- GO111MODULE=on
- PGX_TEST_DATABASE=postgres://pgx_md5:secret@127.0.0.1/pgx_test
matrix:
- CRATEVERSION=2.1 PGX_TEST_CRATEDB_CONN_STRING="h... | language: go
go:
- 1.x
- tip
# Derived from https://github.com/lib/pq/blob/master/.travis.yml
before_install:
- ./travis/before_install.bash
env:
global:
- GO111MODULE=on
- PGX_TEST_DATABASE=postgres://pgx_md5:secret@127.0.0.1/pgx_test
matrix:
- CRATEVERSION=2.1 PGX_TEST_CRATEDB_CONN_STRING="h... |
Build on Python 3.6, not 3.7 | language: python
sudo: false
python:
- 2.7
- 3.3
- 3.4
- 3.5
- nightly
addons:
apt:
packages:
- graphviz
install:
- pip install coverage coveralls flake8 -e .
before_script:
- make lint
script:
- coverage run --source=objgraph tests.py
after_success:
- coveralls
notificat... | language: python
sudo: false
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
addons:
apt:
packages:
- graphviz
install:
- pip install coverage coveralls flake8 -e .
before_script:
- make lint
script:
- coverage run --source=objgraph tests.py
after_success:
- coveralls
notifications... |
Add cache: bundler to reduce time to run | language: ruby
before_install:
- 'test Node = "$PACPROXY_RUNTIME" && sudo apt-get update || true'
- 'test Node = "$PACPROXY_RUNTIME" && sudo apt-get install node || true'
- 'test Node = "$PACPROXY_RUNTIME" && (cd lib/pacproxy/runtimes/node ; npm install) || true'
rvm:
- 2.0.0
- 2.1.2
env:
- PACPROXY_RUNT... | language: ruby
cache: bundler
before_install:
- 'test Node = "$PACPROXY_RUNTIME" && sudo apt-get update || true'
- 'test Node = "$PACPROXY_RUNTIME" && sudo apt-get install node || true'
- 'test Node = "$PACPROXY_RUNTIME" && (cd lib/pacproxy/runtimes/node ; npm install) || true'
rvm:
- 2.0.0
- 2.1.2
env:
... |
Upgrade CI version of Node | language: c
sudo: required
services:
- docker
before_install:
- docker pull liuchong/rustup:musl
- docker pull node:7.2
- >
mkdir -p
$HOME/cache/rust/cargo/{git,registry}
$HOME/cache/rust/target
$HOME/cache/node/node_modules
$HOME/cache/node/yarn-cache
script:
- >
docker run -it --rm
-v $P... | language: c
sudo: required
services:
- docker
before_install:
- docker pull liuchong/rustup:musl
- docker pull node:7.5
- >
mkdir -p
$HOME/cache/rust/cargo/{git,registry}
$HOME/cache/rust/target
$HOME/cache/node/node_modules
$HOME/cache/node/yarn-cache
script:
- >
docker run -it --rm
-v $P... |
Update Travis with explicit emails | language: node_js
node_js:
- '0.10'
before_install:
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'core' ]; then cd .. && eval "mv $currentfolder core" && cd core; fi
- npm install -g grunt-cli
| language: node_js
node_js:
- '0.10'
before_install:
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'core' ]; then cd .. && eval "mv $currentfolder core" && cd core; fi
- npm install -g grunt-cli
notifications:
email:
- dave@famo.us
- fetterman@famo.us
- myles@famo.us
|
Revert "Add --verbose option to CI config" | language: objective-c
osx_image: xcode8.2
xcode_workspace: ESFramework.xcworkspace
xcode_scheme: Example
before_install:
- env
- cd Example
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet
- pod install --no-repo-update
script:
- pod lib lint ../ESFramework.podspec --verbose
| language: objective-c
osx_image: xcode8.2
xcode_workspace: ESFramework.xcworkspace
xcode_scheme: Example
before_install:
- env
- cd Example
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet
- pod install --no-repo-update
script:
- pod lib lint ../ESFramework.podspec
|
Update Travis as Rubinius now builds successfully. | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- ree
- jruby
- rbx
matrix:
allow_failures:
- rvm: rbx
notifications:
recipients:
- bryan@bryanrite.com
- ryan@railscasts.com
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- ree
- jruby
- rbx
notifications:
recipients:
- bryan@bryanrite.com
- ryan@railscasts.com
|
Update gem and bundler in Travis | language: ruby
sudo: false
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
- "2.2.0"
| language: ruby
sudo: false
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
- "2.2.0"
before_install:
- gem update --system
- gem update bundler
|
Update ruby versions. Add 2.6 | language: ruby
rvm:
- 2.3.7
- 2.4.4
- 2.5.1
script: bundle exec cucumber
deploy:
provider: rubygems
api_key:
secure: QZG6pQmgoKlE4TI7SkCp87HdUL1s+47YpQiCldkG23Xef4jVkEk1GzsFLJnaBhOoExPDhRhog/rEN+pzcSNmx+3W0AZwy/Z5YQ2VNn9ojd8hhCTx4uXO1iagMXfavZvF+olzHJ6PRD9MzqHIm+MU1xFI8x5QqDrGY4XVSK/DyQw=
on:
tag... | language: ruby
rvm:
- 2.3.7
- 2.4.5
- 2.5.3
- 2.6.1
script: bundle exec cucumber
deploy:
provider: rubygems
api_key:
secure: QZG6pQmgoKlE4TI7SkCp87HdUL1s+47YpQiCldkG23Xef4jVkEk1GzsFLJnaBhOoExPDhRhog/rEN+pzcSNmx+3W0AZwy/Z5YQ2VNn9ojd8hhCTx4uXO1iagMXfavZvF+olzHJ6PRD9MzqHIm+MU1xFI8x5QqDrGY4XVSK/DyQw=
o... |
Use codecov.io instead of coverals | language: python
sudo: false
python:
- 2.7
- 3.3
- 3.4
- 3.5
env:
matrix:
- DJANGO=Django==1.7.8
- DJANGO=Django==1.8.4
install:
- pip install $DJANGO django-oscar==1.1.1
- pip install -r requirements.testing.txt
- pip install .
script:
- coverage run ./runtests.... | language: python
sudo: false
python:
- 2.7
- 3.3
- 3.4
- 3.5
env:
matrix:
- DJANGO=Django==1.7.8
- DJANGO=Django==1.8.4
before_install:
- pip install codecov
install:
- pip install $DJANGO django-oscar==1.1.1
- pip install -r requirements.testing.txt
- pip instal... |
Install Py3 in Travis OSX env | language: python
sudo: false
matrix:
include:
- os: linux
python: 3.5.1
- os: osx
python: 3.5.1
install:
- pip install tox
script:
- tox
| language: python
sudo: false
matrix:
include:
- os: linux
python: 3.5.1
- os: osx
osx_image: xcode7.3
python: 3.5.1
before_install:
- brew update
- brew outdated python3 || brew upgrade python3
install:
- pip install tox
script:
- tox
|
ADD Travis : Support PHP 7.1 | language: php
sudo: false
php:
- 7.1
matrix:
fast_finish: true
include:
- php: 7.1
before_install:
- composer self-update
script:
- vendor/bin/phpunit | language: php
sudo: false
php:
- 7.1
matrix:
fast_finish: true
include:
- php: 7.1
before_install:
- composer self-update
script:
- ./vendor/bin/phpunit |
Stop building for Node v5 and earlier | language: node_js
node_js:
- "12"
- "11"
- "10"
- "9"
- "8"
- "7"
- "6"
- "5"
- "4"
- "3" # io.js
- "2" # io.js
- "1" # io.js
- "0.12"
- "0.10"
| language: node_js
node_js:
- "12"
- "11"
- "10"
- "9"
- "8"
- "7"
- "6"
|
Update PHP version for Travis. | language: php
php:
- 5.3
env:
- EIX_ENV=TEST
before_install:
- composer update
| sudo: false
language: php
php:
- 7
env:
- EIX_ENV=TEST
before_install:
- composer update
|
Allow test failures on unsupported Python versions | language: python
dist: xenial
python:
- "3.6"
- "3.7"
- "3.6-dev"
- "3.7-dev"
- "nightly"
- "pypy3.5"
matrix:
allow_failures:
- python: 'pypy3.5'
services:
- redis-server
- postgresql
addons:
postgresql: "10"
install:
- pip install -r requirements.txt -r requirements-test.txt
- pip install coveral... | language: python
dist: xenial
python:
- "3.6"
- "3.7"
- "3.6-dev"
- "3.7-dev"
- "3.8-dev"
- "nightly"
- "pypy3.5"
matrix:
allow_failures:
- python:
'pypy3.5'
'3.8-dev'
'nightly'
services:
- redis-server
- postgresql
addons:
postgresql: "10"
install:
- pip install -r requirements.txt -r... |
Fix beaker tests with centos7 | ---
sudo: false
language: ruby
dist: trusty
cache: bundler
before_install:
- bundle -v
- rm Gemfile.lock || true
- gem update --system
- gem update bundler
- gem --version
- bundle -v
script:
- bundle exec rake release_checks
- bundle exec rake $CHECK
- bundle exec rake syntax
- bundle exec rake met... | ---
sudo: false
language: ruby
dist: trusty
cache: bundler
before_install:
- bundle -v
- rm Gemfile.lock || true
- gem update --system
- gem update bundler
- gem --version
- bundle -v
script:
- bundle exec rake release_checks
- bundle exec rake $CHECK
- bundle exec rake metadata_lint
- bundle exec r... |
Remove Python 2.6 from CI | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
before_script:
- chmod +x run_tests
script:
- ./run_tests
| language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
before_script:
- chmod +x run_tests
script:
- ./run_tests
|
Remove unneeded `mix local.rebar --force` | sudo: false
language: elixir
otp_release:
- 18.1
elixir:
- 1.2.6
- 1.3.0
before_install: "mix local.rebar --force"
script: "script/ci_build"
| sudo: false
language: elixir
otp_release:
- 18.1
elixir:
- 1.2.6
- 1.3.2
script: "script/ci_build"
|
Add Oracle JDK 9 to Travis | language: java
jdk:
- openjdk7
- oraclejdk8
notifications:
email: false
| language: java
jdk:
- openjdk7
- oraclejdk8
- oraclejdk9
notifications:
email: false
|
Use a current version of bower again | dist: trusty
group: beta
language: node_js
node_js:
- node
addons:
firefox: latest-esr
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild &... | dist: trusty
group: beta
language: node_js
node_js:
- node
addons:
firefox: latest-esr
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild &... |
Fix CI build for Unit Tests | language: csharp
solution: School/School.sln
install:
- nuget School/School.sln
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release School/School.sln
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe ./School/School.Data.Tests/bin/Rele... | language: csharp
solution: School/School.sln
install:
- nuget restore School/School.sln
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release School/School.sln
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe ./School/School.Data.Tests/... |
Test ruby 2.3.1 instead of 2.3.0 | language: ruby
rvm:
- 2.1
- 2.2
- 2.3.0
- ruby-head
before_install:
- gem update bundler
matrix:
allow_failures:
- rvm: ruby-head
| language: ruby
rvm:
- 2.1
- 2.2
- 2.3.1
- ruby-head
before_install:
- gem update bundler
matrix:
allow_failures:
- rvm: ruby-head
|
Add default cem run to tests. | language: c
os:
- linux
- osx
env:
global:
- CONDA_PREFIX=$HOME/miniconda
- MINICONDA_URL_BASE="http://repo.continuum.io/miniconda/Miniconda-latest"
sudo: false
before_install:
- |
if [[ $TRAVIS_OS_NAME == "osx" ]]; then
brew remove --force $(brew list)
brew cleanup -s
rm -rf $(brew --cache)
fi
in... | language: c
os:
- linux
- osx
env:
global:
- CONDA_PREFIX=$HOME/miniconda
- MINICONDA_URL_BASE="http://repo.continuum.io/miniconda/Miniconda-latest"
sudo: false
before_install:
- |
if [[ $TRAVIS_OS_NAME == "osx" ]]; then
brew remove --force $(brew list)
brew cleanup -s
rm -rf $(brew --cache)
fi
in... |
Add .NET SDK version to Travis CI configuration | language: csharp
mono: none
solution: HtmlBuilders.sln
script:
- dotnet restore "HtmlBuilder.sln"
- dotnet build "HtmlBuilders/HtmlBuilders.csproj" -c Release
- dotnet test "HtmlBuilders.Tests/HtmlBuilders.Tests.csproj" -c Release
| language: csharp
mono: none
dotnet: 2.1.4
solution: HtmlBuilders.sln
script:
- dotnet restore "HtmlBuilder.sln"
- dotnet build "HtmlBuilders/HtmlBuilders.csproj" -c Release
- dotnet test "HtmlBuilders.Tests/HtmlBuilders.Tests.csproj" -c Release
|
Remove hhvm add multiple php versions | language: php
php:
- '5.6'
- '7.0'
- '7.1'
- hhvm
- nightly
install: composer install
script: phpunit tests/SlugifyTest.php
| language: php
php:
- '5.4'
- '5.6'
- '7.0'
- '7.0.26'
- '7.0.27'
- '7.0.28'
- '7.0.29'
- '7.0.30'
- '7.1.12'
- '7.1.13'
- '7.1.14'
- '7.1.15'
- '7.1.16'
- '7.1.17'
- '7.1.18'
- '7.1.9'
- '7.2.0'
- '7.2.1'
- '7.2.2'
- '7.2.3'
- '7.2.4'
- '7.2.5'
- '7.2.6'
- '7.2.7'
- nig... |
Allow JRuby HEAD to fail | language: ruby
sudo: false
rvm:
- ruby-head
- 2.3.0
- 2.2
- 2.1
- 2.0
- 1.9.3
- rbx-2
- jruby-head
- jruby-9.0.5.0
matrix:
allow_failures:
- rvm: 1.9.3
- rvm: 2.0
| language: ruby
sudo: false
rvm:
- ruby-head
- 2.3.0
- 2.2
- 2.1
- 2.0
- 1.9.3
- rbx-2
- jruby-head
- jruby-9.0.5.0
matrix:
allow_failures:
- rvm: jruby-head
- rvm: 1.9.3
- rvm: 2.0
|
Add 5.22 to build targets and use Travis containers | language: perl
perl:
#- dev
- "blead"
#- stable
- "5.22"
- "5.20"
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"
env:
global:
- RELEASE_TESTING=1
- AUTHOR_TESTING=1
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travi... | ---
sudo: false
language: perl
perl:
- blead
- 5.22
- 5.20
- 5.18
- 5.16
- 5.14
- 5.12
- 5.10
env:
global:
- RELEASE_TESTING=1
- AUTHOR_TESTING=1
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init
- build-perl
- pe... |
Install grunt prior to other actions | language: node_js
node_js:
- "0.8"
- "0.10"
before_script:
- npm install -g grunt-cli
script:
- grunt --stack build metrics publish:latest
email:
on_failure: change
on_success: never
env:
global:
- S3_BUCKET_NAME=builds.handlebarsjs.com
- secure: ! 'PJaukuvkBBsSDOqbIcNSSMgb96VVEaIt/eq9GPjXPeFbSd3hX... | language: node_js
node_js:
- "0.8"
- "0.10"
before_install:
- npm install -g grunt-cli
script:
- grunt --stack build metrics publish:latest
email:
on_failure: change
on_success: never
env:
global:
- S3_BUCKET_NAME=builds.handlebarsjs.com
- secure: ! 'PJaukuvkBBsSDOqbIcNSSMgb96VVEaIt/eq9GPjXPeFbSd3h... |
Remove Docker image build/push from Travis CI at present. | sudo: required
language: python
cache: pip
dist: trusty
python:
- 3.6
services:
- postgresql
- docker
addons:
postgresql: 9.6
apt:
packages:
- postgresql-9.6-postgis-2.3
branches:
only:
- master
env:
global:
- SECRET_KEY=SecretKeyForTravis
- DATABA... | sudo: false
language: python
cache: pip
dist: trusty
python:
- 3.6
services:
- postgresql
addons:
postgresql: 9.6
apt:
packages:
- postgresql-9.6-postgis-2.3
branches:
only:
- master
env:
global:
- SECRET_KEY=SecretKeyForTravis
- DATABASE_URL="postgis:... |
Fix pod lib lint execute timing | language: objective-c
osx_image: xcode8
before_install:
- gem update cocoapods --pre # Install 1.1.0.rc.2
- pod setup --silent > /dev/null
- pod repo update --silent
script:
- set -o pipefail
- pushd Example
- pod install
- pod lib lint --allow-warnings
- xcodebuild test -workspace Puree.xcworkspace -sc... | language: objective-c
osx_image: xcode8
before_install:
- gem update cocoapods --pre # Install 1.1.0.rc.2
- pod setup --silent > /dev/null
- pod repo update --silent
script:
- set -o pipefail
- pod lib lint --allow-warnings
- pushd Example
- pod install
- xcodebuild test -workspace Puree.xcworkspace -sc... |
Set osx image to have xcode 7.3 for Travis CI | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
script:... | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode7.3
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-direc... |
Enable Go modules for build | language: go
go:
- 1.13.3
- tip
install:
- go get github.com/stretchr/testify
| language: go
go:
- 1.13.3
- tip
env:
- GO111MODULE=on
install:
- go get github.com/stretchr/testify
|
Remove python 3.5 from tests, python3.5 is EOL. | language: python
dist: bionic
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "nightly"
- "pypy3"
script:
- make test
deploy:
provider: pypi
user: "MolopsDeploy"
password:
secure: "tX5VvpXIj7Afm9slPgCeSwelTxRnWPGfQcglTw92PoHlYeVbgiesEaH2uxIVS3cDeHWTHY4JsT/P2Juu6kZzga+Cb8thUND4JRYeUd1vizJblbeb... | language: python
dist: bionic
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "nightly"
- "pypy3"
script:
- make test
deploy:
provider: pypi
user: "MolopsDeploy"
password:
secure: "tX5VvpXIj7Afm9slPgCeSwelTxRnWPGfQcglTw92PoHlYeVbgiesEaH2uxIVS3cDeHWTHY4JsT/P2Juu6kZzga+Cb8thUND4JRYeUd1vizJblbeb5hgBRlQ8W/... |
Remove PHP syntax check from Travis CI | language: php
sudo: false
php:
- 7.2
- 7.0
before_install:
- export PATH="$PATH:$(composer global config bin-dir --absolute)"
- composer global require "squizlabs/php_codesniffer=3.*"
- phpenv rehash
script:
- find . -type f -name '*.php' -not -path './wcfsetup/install/files/lib/system/api/composer/autoload... | language: php
sudo: false
php:
- 7.2
- 7.0
before_install:
- export PATH="$PATH:$(composer global config bin-dir --absolute)"
- composer global require "squizlabs/php_codesniffer=3.*"
- phpenv rehash
script:
- phpcs -p --extensions=php --standard="`pwd`/CodeSniff/WCF" .
|
Rewrite will attempt to avoid requiring these, so our builds are faster and cleaner (no extra dependancies outside NodeJS hopefully) | language: node_js
node_js:
- "stable"
- "8"
- "6"
before_install:
# - npm -g install npm@'>=3'
# this is from the below libxmljs test, just to confirm it's installed correctly
- $CXX --version
# cached node_modules seem to be breaking node 8 tests
#cache:
# directories:
# - node_modules
# ensure libxmljs c... | language: node_js
node_js:
- "stable"
- "8"
- "6"
sudo: false
|
Remove rubinius, not dealing with rubysl issues | language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- "2.0.0"
- "2.1.0"
- jruby-19mode # JRuby in 1.9 mode
- rbx-2.1.1
- rbx-2.2.2
| language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- "2.0.0"
- "2.1.0"
- jruby-19mode # JRuby in 1.9 mode
|
Use pip to install dependencies so you'd be able to retry failed installations. | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "pypy"
env:
- INSTALL_PYMONGO=true INSTALL_PYEXECJS=true
- INSTALL_PYMONGO=false INSTALL_PYEXECJS=false
services:
- mongodb
# command to install dependencies, e.g. pip install -r requirements.txt
install:
- python setup.py develop
- travis_... | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "pypy"
env:
- INSTALL_PYMONGO=true INSTALL_PYEXECJS=true
- INSTALL_PYMONGO=false INSTALL_PYEXECJS=false
services:
- mongodb
# command to install dependencies, e.g. pip install -r requirements.txt
install:
- travis_retry pip install -e .
- t... |
Add --prefer-source to bypass github limit rate | language: php
php:
- 5.3
- 5.4
before_script:
- wget -nc http://getcomposer.org/composer.phar && php composer.phar install
- mysql -e 'create database myapp_test;'
- echo "yes" | pecl install memcache
- echo "extension=memcache.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
script: phpu... | language: php
php:
- 5.3
- 5.4
before_script:
- wget -nc http://getcomposer.org/composer.phar && php composer.phar install --prefer-source
- mysql -e 'create database myapp_test;'
- echo "yes" | pecl install memcache
- echo "extension=memcache.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||... |
Add source clear and attempt to only test package | language: go
go:
- 1.7
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
script:
- $HOME/gopath/bin/goveralls -service=travis-ci
| language: go
go:
- 1.7
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
script:
- go test .
- $HOME/gopath/bin/goveralls -service=travis-ci
addons:
srcclr: true
|
Drop the bundler cache, see if that helps matters. | language: ruby
cache: bundler
rvm:
# - 2.2
- 2.3
# - 2.4
# - rbx-2
# - rbx
# - jruby-1.7
# - jruby
gemfile:
- spec/gemfiles/Gemfile.edge
- spec/gemfiles/Gemfile.rails-4.2.x
# - spec/gemfiles/Gemfile.rails-4.1.x
# - spec/gemfiles/Gemfile.rails-4.0.x
# - spec/gemfiles/Gemfile.sequel-3.x
env:
... | language: ruby
# cache: bundler
rvm:
# - 2.2
- 2.3
# - 2.4
# - rbx-2
# - rbx
# - jruby-1.7
# - jruby
gemfile:
- spec/gemfiles/Gemfile.edge
- spec/gemfiles/Gemfile.rails-4.2.x
# - spec/gemfiles/Gemfile.rails-4.1.x
# - spec/gemfiles/Gemfile.rails-4.0.x
# - spec/gemfiles/Gemfile.sequel-3.x
env:
... |
Use new infrastructure of Travis | language: python
python:
- "2.7"
- "3.4"
- "3.5"
install:
- python setup.py install
- pip install nose flake8 hacking
script:
- nosetests -a '!gpu' tests/chainer_tests
- flake8 chainer cupy tests examples --exclude=libcudnn.py,caffe_pb2.py
| language: python
python:
- "2.7"
- "3.4"
- "3.5"
install:
- python setup.py install
- pip install nose flake8 hacking
script:
- nosetests -a '!gpu' tests/chainer_tests
- flake8 chainer cupy tests examples --exclude=libcudnn.py,caffe_pb2.py
sudo: false
|
Revert "Deploy for pages branch" | sudo: required
dist: trusty
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
language: node_js
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
before_script:
- npm install -g @angular/cli
- npm install
jobs... | sudo: required
dist: trusty
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
language: node_js
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
before_script:
- npm install -g @angular/cli
- npm install
jobs... |
Remove Symfony3 from Travis allowed failure | language: php
sudo: required
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
matrix:
fast_finish: true
include:
- php: 5.6
env: SYMFONY_VERSION=2.3.*
- php: 5.6
env: SYMFONY_VERSION=2.4.*
- php: 5.6
env: SYMFONY_VERSION=2.5.*
- php: 5.6
env: SYMFONY_VERSION=2.6.*
- php: 5... | language: php
sudo: required
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
matrix:
fast_finish: true
include:
- php: 5.6
env: SYMFONY_VERSION=2.3.*
- php: 5.6
env: SYMFONY_VERSION=2.4.*
- php: 5.6
env: SYMFONY_VERSION=2.5.*
- php: 5.6
env: SYMFONY_VERSION=2.6.*
- php: 5... |
Add google test dir to cmake prefix path | language: cpp
compiler: clang
branches:
only:
- master
before_script:
- export INITIAL_DIR=$PWD
- wget --no-check-certificate https://cmake.org/files/v3.6/cmake-3.6.2-Linux-x86_64.tar.gz -O /tmp/cmake.tar.gz
- tar -xvf /tmp/cmake.tar.gz
- export PATH=$PWD/cmake-3.6.2-Linux-x86_64/bin/:$PATH
- git clone... | language: cpp
compiler: clang
branches:
only:
- master
before_script:
- export INITIAL_DIR=$PWD
- wget --no-check-certificate https://cmake.org/files/v3.6/cmake-3.6.2-Linux-x86_64.tar.gz -O /tmp/cmake.tar.gz
- tar -xvf /tmp/cmake.tar.gz
- export PATH=$PWD/cmake-3.6.2-Linux-x86_64/bin/:$PATH
- git clone... |
Upgrade versions and add Rails 5.2 | language: ruby
rvm:
- 2.3.1
- 2.4.4
- 2.5.1
sudo: false
script: bundle exec rake db:reset test:all
env:
- "RAILS_VERSION=4.2.0"
- "RAILS_VERSION=5.0.6"
- "RAILS_VERSION=5.1.5"
- "RAILS_VERSION=4.2.0 TEST_RAILS_API=true"
- "RAILS_VERSION=5.0.6 TEST_RAILS_API=true"
- "RAILS_VERSION=5.1.5 TEST_RAILS_... | language: ruby
rvm:
- 2.3.1
- 2.4.4
- 2.5.1
sudo: false
script: bundle exec rake db:reset test:all
env:
- "RAILS_VERSION=4.2.0"
- "RAILS_VERSION=5.0.7"
- "RAILS_VERSION=5.1.6"
- "RAILS_VERSION=5.2.2"
- "RAILS_VERSION=4.2.0 TEST_RAILS_API=true"
- "RAILS_VERSION=5.0.7 TEST_RAILS_API=true"
- "RAILS... |
Correct Travis CI environment variables. | language: python
python:
- "2.6"
- "2.7"
env:
- BEFORE_DJANGO_VERSION=1.5
- BEFORE_DJANGO_VERSION=1.6
- TASTYPIE_VERSION="==0.9.12"
- TASTYPIE_VERSION=">=0.9.12"
- MONGOENGINE_VERSION="==0.6.11"
- MONGOENGINE_VERSION=">=0.6.11,<0.8.2"
services: mongodb
install:
- pip install "Django<$BEFORE_DJANGO_VERSION"
- ... | language: python
python:
- "2.6"
- "2.7"
env:
- BEFORE_DJANGO_VERSION=1.5 TASTYPIE_VERSION="==0.9.12" MONGOENGINE_VERSION="==0.6.11"
- BEFORE_DJANGO_VERSION=1.5 TASTYPIE_VERSION="==0.9.12" MONGOENGINE_VERSION=">=0.6.11,<0.8.2"
- BEFORE_DJANGO_VERSION=1.5 TASTYPIE_VERSION=">=0.9.12" MONGOENGINE_VERSION="==0.6.11"
... |
Make playground in Travis build | language: objective-c
install:
- npm install -g swift-playground-builder
script:
# Generate README.playground from README.md
- make
- pushd IDZSwiftCommonCrypto
- rm -rf CommonCrypto
- ./GenerateCommonCryptoModule iphonesimulator8.0 .
- cat CommonCrypto/module.map
- pwd
- xcodebuild build -scheme IDZSwiftCommonCrypto... | language: objective-c
install:
- npm install -g swift-playground-builder
script:
# Generate README.playground from README.md
- make
- git add .
- git commit -m"Playground update from Travis [ci skip]"
- git push
- pushd IDZSwiftCommonCrypto
- rm -rf CommonCrypto
- ./GenerateCommonCryptoModule iphonesimulator8.0 .
- c... |
Adjust TravisCI tests for supported PHP versions | language: php
cache:
directories:
- $HOME/.chapi/cache
dist: trusty
sudo: false
php:
- 5.6
- 7.0
- 7.1
- 7.2
matrix:
fast_finish: true
before_script:
- git config --global user.name travis-ci
- git config --global user.email travis@example.com
- composer self-update
- composer install --pre... | language: php
cache:
directories:
- $HOME/.chapi/cache
dist: trusty
sudo: false
php:
- 7.2
- 7.3
- 7.4
matrix:
fast_finish: true
before_script:
- git config --global user.name travis-ci
- git config --global user.email travis@example.com
- composer self-update
- composer install --prefer-sour... |
Remove conditions never evaluating to true | sudo: false
language: php
matrix:
fast_finish: true
include:
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7
- php: hhvm
allow_failures:
- php: 7
before_install:
- composer selfupdate
install:
- travis_retry composer install --no-interaction --prefer-source
- if [[ "$CHEC... | sudo: false
language: php
matrix:
fast_finish: true
include:
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7
- php: hhvm
allow_failures:
- php: 7
before_install:
- composer selfupdate
install:
- travis_retry composer install --no-interaction --prefer-source
script:
- ven... |
Use fixed SDK version, rather than latest | language: android
android:
components:
# use the latest revision of Android SDK Tools
- platform-tools
- tools
# The BuildTools version used by your project
- build-tools-23.0.2
# The SDK version used to compile your project
- android-23
before_cache:
- rm -f $HOME/.gradle/caches/mod... | language: android
android:
components:
# The BuildTools version used by your project
- build-tools-23.0.2
# The SDK version used to compile your project
- android-23
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.... |
Use NPM3 regardless of version | sudo: required
language: node_js
node_js:
- 4
- 5
- 6
script:
- npm test
- npm run lint
| sudo: required
language: node_js
node_js:
- 4
- 5
- 6
before_install:
- npm install npm@3 -g
script:
- npm test
- npm run lint
|
Use check instead of test. | language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
before_install:
- chmod +x gradlew
script:
- TERM=dumb ./gradlew test | language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
before_install:
- chmod +x gradlew
script:
- TERM=dumb ./gradlew check --info |
Update from Hackage at 2022-03-19T03:31:14Z | homepage: ''
changelog-type: markdown
hash: 4bd35a9b65ad4ec3e39db0c1f749a5a923bcc18ab69db10bcfb9a1090e26e3aa
test-bench-deps: {}
maintainer: fumiexcel@gmail.com
synopsis: Compatibility shim for the Int/Word internal change in GHC 9.2
changelog: |
# Revision history for word-compat
## 0.1.0.0 -- YYYY-mm-dd
* Fir... | homepage: ''
changelog-type: markdown
hash: c881977321de67d6f1d0cafe805e66d771a6e0614cafaa2104391f44cf4afd21
test-bench-deps: {}
maintainer: fumiexcel@gmail.com
synopsis: Compatibility shim for the Int/Word internal change in GHC 9.2
changelog: |
# Revision history for word-compat
## 0.0.2
* Fixed a bug where b... |
Test on Travis with Node 8 | language: node_js
node_js:
- '6.0'
addons:
firefox: 'latest'
env:
- BROWSER=PhantomJS
- BROWSER=ChromeTravisCI
- BROWSER=Firefox
before_script:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install -g npm@latest
- npm install -g bower karma-cli ... | language: node_js
node_js:
- '8.0'
addons:
firefox: 'latest'
env:
- BROWSER=PhantomJS
- BROWSER=ChromeTravisCI
- BROWSER=Firefox
before_script:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install -g npm@latest
- npm install -g bower karma-cli ... |
Remove test npm taks. Travis runs it by default for us | sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
before_install:
- npm i -g npm@^2.0.0
before_script:
- npm prune
after_success:
- npm run check-vulnerable-dependencies
- npm run dependency-check
- npm run lint
- npm test
- npm run coverage
- npm run c... | sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
before_install:
- npm i -g npm@^2.0.0
before_script:
- npm prune
after_success:
- npm run check-vulnerable-dependencies
- npm run dependency-check
- npm run lint
- npm run coverage
- npm run check-coverage... |
Remove Mavericks from build matrix | language: generic
os: osx
osx_image: beta-xcode6.2 # Mavericks
matrix:
include:
- osx_image: xcode7.3 # El Capitan
- osx_image: xcode7.1 # Yosemite
before_install:
- brew update
- sed -e 's/- brewcask/# - brewcask/' -e 's/- font/# - font/' localhost.yml > ci.yml
install:
- brew install ansible
scrip... | language: generic
os: osx
osx_image: xcode7.3 # El Capitan
matrix:
include:
- osx_image: xcode7.1 # Yosemite
# - osx_image: beta-xcode6.2 # Mavericks
before_install:
- brew update
- sed -e 's/- brewcask/# - brewcask/' -e 's/- font/# - font/' localhost.yml > ci.yml
install:
- brew install ansible... |
Allow failures on PHP 7.2 | sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
matrix:
include:
- php: 7.0
env: COMPOSER_ARGUMENTS="--prefer-lowest --prefer-stable"
- php: 7.0
- php: 7.1
- php: 7.2
- php: nightly
allow_failures:
- php: nightly
fast_finish: true
before_script:
- co... | sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
matrix:
include:
- php: 7.0
env: COMPOSER_ARGUMENTS="--prefer-lowest --prefer-stable"
- php: 7.0
- php: 7.1
- php: 7.2
- php: nightly
allow_failures:
- php: nightly
- php: 7.2
fast_finish: true
before... |
Add PHP 7.1 to automated testing matrix | sudo: false
language: php
php:
- 5.6
- 7.0
- nightly
addons:
apt:
packages: [expect]
cache:
directories:
- ~/.composer/cache/files/
before_install:
- phpenv config-add .travis.php.ini
install:
- composer install --prefer-dist
before_script:
# Ancient make binary at TravisCI doesn't sup... | sudo: false
language: php
php:
- 5.6
- 7.0
- 7.1
- nightly
addons:
apt:
packages: [expect]
cache:
directories:
- ~/.composer/cache/files/
before_install:
- phpenv config-add .travis.php.ini
install:
- composer install --prefer-dist
before_script:
# Ancient make binary at TravisCI doe... |
Make sure building dists works. | dist: xenial
language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "2.7"
env:
- DJANGO_VERSION=2.1
- DJANGO_VERSION=2.2
- DJANGO_VERSION=1.11
services:
- memcached
- redis
- mysql
- postgresql
matrix:
exclude:
- python: "2.7"
env: DJANGO_VERSION=2.1
- python: "2.7"
env... | dist: xenial
language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "2.7"
env:
- DJANGO_VERSION=2.1
- DJANGO_VERSION=2.2
- DJANGO_VERSION=1.11
services:
- memcached
- redis
- mysql
- postgresql
matrix:
exclude:
- python: "2.7"
env: DJANGO_VERSION=2.1
- python: "2.7"
env... |
Remove PHP 5.5 & 5.6 build support | sudo: false
language: php
cache:
directories:
- "$HOME/.composer/cache"
- vendor
matrix:
fast_finish: true
include:
- php: 5.5
- php: 5.6
env:
- EXECUTE_DEPLOYMENT=true
- php: 7.0
- php: hhvm
allow_failures:
- php: hhvm
before_install:
- if [[ "$TRAVIS_PHP_VERSION... | sudo: false
language: php
cache:
directories:
- "$HOME/.composer/cache"
- vendor
matrix:
fast_finish: true
include:
- php: 7.0
- EXECUTE_DEPLOYMENT=true
- php: 7.1
before_install:
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then phpenv config-rm xdebug.ini ; fi
- travis_retry compo... |
Remove node 9, add 10 and latest | language: node_js
node_js:
- "6"
- "8"
- "9"
script: "npm run-script travis"
| language: node_js
node_js:
- "6"
- "8"
- "10"
- "node"
script: "npm run-script travis"
|
Remove defunct Code Climate Travis variables | language: ruby
os:
- linux
rvm:
- 2.1.8
- 2.2.4
- 2.3.0
install:
- bundle install
- bundle exec rake db:migrate
script:
# Run Cucumber Tests
- bundle exec cucumber
matrix:
# Return results after first failure for required versions, or after all that
# is left to build allows failures.
fast_fin... | language: ruby
os:
- linux
rvm:
- 2.1.8
- 2.2.4
- 2.3.0
install:
- bundle install
- bundle exec rake db:migrate
script:
# Run Cucumber Tests
- bundle exec cucumber
matrix:
# Return results after first failure for required versions, or after all that
# is left to build allows failures.
fast_fin... |
Configure Travis to test different versions of SF and PHPUnit | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
before_script: composer install --dev
notifications:
email: matthiasnoback@gmail.com
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
env:
- SYMFONY_VERSION=2.5.* PHPUNIT_VERSION=~3.7
- SYMFONY_VERSION=2.0.* PHPUNIT_VERSION=~4.0
- SYMFONY_VERSION=2.1.* PHPUNIT_VERSION=~4.0
- SYMFONY_VERSION=2.2.* PHPUNIT_VERSION=~4.0
- SYMFONY_VERSION=2.3.* PHPUNIT_VERSION=~4.0
- SYMFONY_VERSION=2.4.* P... |
Add rails 4.2 to Travis config | language: ruby
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- ruby-head
- jruby-19mode
- rbx
gemfile:
- gemfiles/rails_3_0.gemfile
- gemfiles/rails_3_1.gemfile
- gemfiles/rails_3_2.gemfile
- gemfiles/rails_4_0.gemfile
- gemfiles/rails_4_1.gemfile
matrix:
allow_failures:
- rvm: 2.2
- rvm: jruby-19mo... | language: ruby
rvm:
- 1.9
- 2.0
- 2.1
- 2.2
- ruby-head
- jruby-19mode
- rbx
gemfile:
- gemfiles/rails_3_0.gemfile
- gemfiles/rails_3_1.gemfile
- gemfiles/rails_3_2.gemfile
- gemfiles/rails_4_0.gemfile
- gemfiles/rails_4_1.gemfile
- gemfiles/rails_4_2.gemfile
matrix:
allow_failures:
-... |
Fix path to NVM on Travis | language: php
php: [5.4, 5.5, 5.6, hhvm, hhvm-nightly]
before_script:
- ~/.nvm/nvm.sh install v0.10.32
- ~/.nvm.nvm.sh run v0.10.32
- make
script:
- make test
matrix:
allow_failures:
- php: hhvm-nightly
fast_finish: true
notifications:
email: false
| language: php
php: [5.4, 5.5, 5.6, hhvm, hhvm-nightly]
before_script:
- ~/.nvm/nvm.sh install v0.10.32
- ~/.nvm/nvm.sh run v0.10.32
- make
script:
- make test
matrix:
allow_failures:
- php: hhvm-nightly
fast_finish: true
notifications:
email: false
|
Add a missing exclude for django 1.9 and python 3.3 | language: python
sudo: false
python:
- "3.5"
- "3.4"
- "3.3"
- "2.7"
env:
- DJANGO="django==1.8.6"
- DJANGO="https://www.djangoproject.com/download/1.9b1/tarball/"
install:
- pip install $DJANGO
- pip install jinja2 django-pipeline
- pip install pytz
script:
- cd testing && python runtests.py
no... | language: python
sudo: false
python:
- "3.5"
- "3.4"
- "3.3"
- "2.7"
env:
- DJANGO="django==1.8.6"
- DJANGO="https://www.djangoproject.com/download/1.9b1/tarball/"
install:
- pip install $DJANGO
- pip install jinja2 django-pipeline
- pip install pytz
matrix:
exclude:
- python: "3.3"
en... |
Drop node.js 8 support, add 14, lint with 14 (semver-major) | language: node_js
node_js:
- 8
- 10
- 12
- node
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
script: npm run test:ci
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| language: node_js
node_js:
- 10
- 12
- 14
- node
matrix:
include:
- name: Lint
node_js: 14
script: npm run lint
script: npm run test:ci
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
|
Set Xcode 7 as an OSX build requirement | language: cpp
script:
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 90
- sudo apt-get install libstdc++-4.8-dev
- cmake --version
- ./build.sh
matrix:
include:
# Linux Clang
- os: linux
compiler:... | language: cpp
script:
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 90
- sudo apt-get install libstdc++-4.8-dev
- cmake --version
- ./build.sh
matrix:
include:
# Linux Clang
- os: linux
compiler:... |
Test in all php versions | language: php
php: 5.3.8
install: composer install
| language: php
php:
- 5.3 # >= 5.3.8
- 5.4
- 5.5
- 5.6
install: composer install
|
Remove '--all' from 'yum repolist' | ---
- name: Register the host to Red Hat account
include_tasks: register_cdn.yml
# no need to register if machine already subscribed
when: "cdn_args_file != ''"
# unregister repos and register back if no activation-key is used.
# if activation-key is used, the env will be automatically attached
# and subscribed ... | ---
- name: Register the host to Red Hat account
include_tasks: register_cdn.yml
# no need to register if machine already subscribed
when: "cdn_args_file != ''"
# unregister repos and register back if no activation-key is used.
# if activation-key is used, the env will be automatically attached
# and subscribed ... |
Remove 'make fetch' step, as dependencies are already in the 'vendor/' directory | dependencies:
override:
- make fetch
- rm -rf ~/.go_workspace/src/github.com/jeffpierce/cassabon
- ln -sf ~/cassabon ~/.go_workspace/src/github.com/jeffpierce/cassabon
- make clean build
test:
override:
- make test
| dependencies:
override:
- rm -rf ~/.go_workspace/src/github.com/jeffpierce/cassabon
- ln -sf ~/cassabon ~/.go_workspace/src/github.com/jeffpierce/cassabon
- make clean build
test:
override:
- make test
|
Use Node.js 6 in CI | machine:
node:
version: 4.3.1
dependencies:
pre:
- npm install -g npm@3.x.x
| machine:
node:
version: 6.1.0
|
Update wrong syntax yam file | general:
artifacts:
- "java/desktop/ja-JP/sahagin-report"
test:
override:
- mvn -f java/desktop/ja-JP/pom.xml clean test
post:
# show Junit test report on circleCI
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/desktop/ja-JP/target/surefire-reports/.*xml" -exec cp {} $CIRCLE_TEST_... | general:
artifacts:
- "java/desktop/ja-JP/sahagin-report"
test:
override:
- mvn -f java/desktop/ja-JP/pom.xml clean test
post:
# show Junit test report on circleCI
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/desktop/ja-JP/target/surefire-reports/.*xml" -exec cp {} $CIRC... |
Add app settings for heroku deployment | machine:
python:
version: 3.5.2
environment:
FLASK_CONFIG: 'testing'
dependencies:
pre:
- pip install -r requirements.txt
test:
override:
- python manage.py tests
deployment:
staging:
branch: develop
heroku:
appname: xanadu-bucketlist
commands:
- git fetch origin
... | machine:
python:
version: 3.5.2
environment:
FLASK_CONFIG: 'testing'
dependencies:
pre:
- pip install -r requirements.txt
test:
override:
- python manage.py tests
deployment:
staging:
branch: develop
commands:
- git fetch origin
- git push git@heroku.com:xanadu-bucketlist.git $... |
Exclude more files from build. | name: Sustain
description: a one day conversation for open source software sustainers
markdown: kramdown
plugins:
- jekyll-sitemap
# permalinks
permalink: pretty
sass:
style: compressed
# server
port: 8000
url: https://sustainoss.o... | name: Sustain
description: a one day conversation for open source software sustainers
markdown: kramdown
plugins:
- jekyll-sitemap
# permalinks
permalink: pretty
sass:
style: compressed
# server
port: 8000
url: https://sustainoss.o... |
Integrate Coverity Scan to the Travis build | language: java
jdk:
# - oraclejdk8
- oraclejdk7
# - openjdk6
after_success:
- mvn cobertura:cobertura coveralls:report
| language: java
jdk:
# - oraclejdk8
- oraclejdk7
# - openjdk6
after_success:
- mvn cobertura:cobertura coveralls:report
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "ifRt6xnHiBcwCBe... |
Remove oraclejdk10 because it is deprecated | language: java
jdk:
- oraclejdk8
- oraclejdk9
- oraclejdk10
matrix:
include:
- jdk: openjdk10
before_install:
- rm "${JAVA_HOME}/lib/security/cacerts"
- ln -s /etc/ssl/certs/java/cacerts "${JAVA_HOME}/lib/security/cacerts"
notifications:
email: false
after_success:
- mvn clean test... | language: java
jdk:
- oraclejdk8
- oraclejdk9
matrix:
include:
- jdk: openjdk10
before_install:
- rm "${JAVA_HOME}/lib/security/cacerts"
- ln -s /etc/ssl/certs/java/cacerts "${JAVA_HOME}/lib/security/cacerts"
notifications:
email: false
after_success:
- mvn clean test jacoco:report c... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.