Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Use C++11 on Travis CI | branches:
only:
- python
language: python
python:
- pypy
- pypy3
- 2.6
- 2.7
- 3.3
- 3.4
install:
- pip install -e . "Werkzeug >= 0.9" coverage coveralls
script:
- coverage run --source sass,sassc,sassutils setup.py test
after_success:
- coveralls
notifications:
irc:
channels:
- "irc.ozinger.org:8080#hongminhee"
on_success: change
on_failure: always
| branches:
only:
- python
language: python
python:
- pypy
- pypy3
- 2.6
- 2.7
- 3.3
- 3.4
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
- sudo apt-get install -qq g++-4.8 libstdc++-4.8-dev
- export CC="gcc-4.8" CXX="g++-4.8"
- pip install -e . "Werkzeug >= 0.9" coverage coveralls
script:
- coverage run --source sass,sassc,sassutils setup.py test
after_success:
- coveralls
notifications:
irc:
channels:
- "irc.ozinger.org:8080#hongminhee"
on_success: change
on_failure: always
|
Update Travis to latest stable Node. | language:
node_js
node_js:
- 0.8
before_script:
# install dependencies
- gem update --system
- gem install compass
- npm install -g grunt-cli bower
- bower install
script:
- grunt test | language:
node_js
node_js:
- 0.10
before_script:
# install dependencies
- gem update --system
- gem install compass
- npm install -g grunt-cli bower
- bower install
script:
- grunt test |
Update node versions used for testing, replacing 13 with 14 to match LST | language: node_js
node_js:
- "node"
- "10"
- "12"
- "13"
script: "npm test"
after_success: npm run coverage
| language: node_js
node_js:
- "node"
- "10"
- "12"
- "14"
script: "npm test"
after_success: npm run coverage
|
Use same way as in command above to get current php version | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
matrix:
allow_failures:
- php: 5.3
env:
matrix:
- ES_COMPOSER_NODEV=no
- ES_COMPOSER_NODEV=yes
install:
- /bin/bash ansible/provision.sh
before_script:
- mkdir -p build/logs
- echo "extension=memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- if [ $ES_COMPOSER_NODEV == "no" ] && ! $(php -v | head -1 | grep -q 'PHP 5.3'); then sudo composer require "guzzlehttp/guzzle" "4.2.*" --dev --no-ansi --no-progress --no-interaction; fi
script:
- phpunit -c test/phpunit-travis.xml
after_script:
- cat /var/log/elasticsearch/*.log
- cat /var/log/nginx/*.log
- cat build/logs/phpunit-tap.log
- sudo composer require satooshi/php-coveralls --no-ansi --no-progress --no-interaction
- php vendor/bin/coveralls -v
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
matrix:
allow_failures:
- php: 5.3
env:
matrix:
- ES_COMPOSER_NODEV=no
- ES_COMPOSER_NODEV=yes
install:
- /bin/bash ansible/provision.sh
before_script:
- mkdir -p build/logs
- echo "extension=memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- if [ $ES_COMPOSER_NODEV == "no" ] && ! $(phpenv version-name | grep -q '5.3'); then sudo composer require "guzzlehttp/guzzle" "4.2.*" --dev --no-ansi --no-progress --no-interaction; fi
script:
- phpunit -c test/phpunit-travis.xml
after_script:
- cat /var/log/elasticsearch/*.log
- cat /var/log/nginx/*.log
- cat build/logs/phpunit-tap.log
- sudo composer require satooshi/php-coveralls --no-ansi --no-progress --no-interaction
- php vendor/bin/coveralls -v
|
Support for PHP 5.5 phased out. | language: php
php:
- 5.5
- 5.6
- 7.0
- nightly
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-dist --no-interaction
script: phpunit
| language: php
php:
- 5.6
- 7.0
- nightly
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-dist --no-interaction
script: phpunit
|
Allow failure with PHP master | language: php
php:
- 7.0
- 7.1
- 7.2
- master
before_script:
- composer self-update
- composer install
script:
- composer validate
- vendor/bin/parallel-lint src/ tests/
- vendor/bin/phpunit
- vendor/bin/phpstan analyze src tests --level=7
- vendor/bin/php-cs-fixer fix --rules=@PSR2 -v --dry-run --stop-on-violation --using-cache=no .
| language: php
php:
- 7.0
- 7.1
- 7.2
- master
matrix:
allow_failures:
- php: master
before_script:
- composer self-update
- composer install
script:
- composer validate
- vendor/bin/parallel-lint src/ tests/
- vendor/bin/phpunit
- vendor/bin/phpstan analyze src tests --level=7
- vendor/bin/php-cs-fixer fix --rules=@PSR2 -v --dry-run --stop-on-violation --using-cache=no .
|
Test with Node.js 5.1 on Travis CI. | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- make zic && make
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5.1'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- make zic && make
|
Remove ruby 1.8.7 from ci config | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mode
- jruby-19mode
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mode
- jruby-19mode
|
Compress whole phar instead of individual files | --- # Poggit-CI Manifest. Open the CI at https://poggit.pmmp.io/ci/Sandertv/BlockPets
branches:
- master
projects:
BlockPets:
path: ""
icon: resources/BlockPetsLogo.png
libs:
- src: Falkirks/spoondetector/spoondetector
version: ^0
- src: poggit/libasynql/libasynql
version: ^3.0
- src: muqsit/InvMenu/InvMenu
version: ^1.1.1
...
| --- # Poggit-CI Manifest. Open the CI at https://poggit.pmmp.io/ci/Sandertv/BlockPets
branches:
- master
projects:
BlockPets:
path: ""
icon: resources/BlockPetsLogo.png
compressBuilds: false
fullGzip: 9
libs:
- src: Falkirks/spoondetector/spoondetector
version: ^0
- src: poggit/libasynql/libasynql
version: ^3.0
- src: muqsit/InvMenu/InvMenu
version: ^1.1.1
...
|
Implement the pip cache for the CI build | name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: |
sudo make dev-install-no-model
sudo pip3 install pytest-faulthandler
sudo apt install xvfb
- name: Lint with flake8
run: |
sudo pip3 install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
sudo pip3 install pytest pytest-cov codecov
xvfb-run --auto-servernum python3 -m pytest --cov=dragonfire/ --capture=sys --disable-pytest-warnings -vv
# send the code coverage report to Codeconv
codecov --token=${{ secrets.CODECOV_TOKEN }}
| name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Get pip cache
id: pip-cache
run: |
python -c "from pip._internal.locations import USER_CACHE_DIR; print('::set-output name=dir::' + USER_CACHE_DIR)"
- uses: actions/cache@v1
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/checkout@v1
- name: Install dependencies
run: |
sudo make dev-install-no-model
sudo pip3 install pytest-faulthandler
sudo apt install xvfb
- name: Lint with flake8
run: |
sudo pip3 install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
sudo pip3 install pytest pytest-cov codecov
xvfb-run --auto-servernum python3 -m pytest --cov=dragonfire/ --capture=sys --disable-pytest-warnings -vv
# send the code coverage report to Codeconv
codecov --token=${{ secrets.CODECOV_TOKEN }}
|
Enable Cabal package tests on AppVeyor | install:
- choco install HaskellPlatform -version 2014.2.0.0
- SET PATH=C:\Program Files\Haskell Platform\2014.2.0.0\bin;C:\Program Files\Haskell Platform\2014.2.0.0\mingw\bin;C:\Program Files\Haskell Platform\2014.2.0.0\lib\extralibs\bin;%PATH%
- cabal update
build_script:
- cd Cabal
- ghc --make -threaded -i -i. Setup.hs -Wall -Werror
# 'echo "" |' works around an AppVeyor issue:
# https://github.com/commercialhaskell/stack/issues/1097#issuecomment-145747849
- echo "" | cabal install --only-dependencies --enable-tests
- Setup configure --user --ghc-option=-Werror --enable-tests
- Setup build
- Setup test unit-tests --show-details=streaming
# - Setup test package-tests --show-details=streaming --test-options=--skip-shared-library-tests
- Setup install
- cd ..\cabal-install
- ghc --make -threaded -i -i. Setup.hs -Wall -Werror
- echo "" | cabal install --only-dependencies --enable-tests --force-reinstalls
- Setup configure --user --ghc-option=-Werror --enable-tests
- Setup build
# - Setup test unit-tests --show-details=streaming
| install:
- choco install HaskellPlatform -version 2014.2.0.0
- SET PATH=C:\Program Files\Haskell Platform\2014.2.0.0\bin;C:\Program Files\Haskell Platform\2014.2.0.0\mingw\bin;C:\Program Files\Haskell Platform\2014.2.0.0\lib\extralibs\bin;%PATH%
- cabal update
build_script:
- cd Cabal
- ghc --make -threaded -i -i. Setup.hs -Wall -Werror
# 'echo "" |' works around an AppVeyor issue:
# https://github.com/commercialhaskell/stack/issues/1097#issuecomment-145747849
- echo "" | cabal install --only-dependencies --enable-tests
- Setup configure --user --ghc-option=-Werror --enable-tests
- Setup build
- Setup test unit-tests --show-details=streaming
- Setup test package-tests --show-details=streaming --test-options=--skip-shared-library-tests
- Setup install
- cd ..\cabal-install
- ghc --make -threaded -i -i. Setup.hs -Wall -Werror
- echo "" | cabal install --only-dependencies --enable-tests --force-reinstalls
- Setup configure --user --ghc-option=-Werror --enable-tests
- Setup build
# - Setup test unit-tests --show-details=streaming
|
Use Visual Studio 2017 with Appveyor. | version: '{build}'
environment:
COVERALLSAPIKEY:
secure: w6ojRE0he/6J2qd8sgq1kwSl3YlgLXaGJbiLvWfAdf8KtWAfSobZwSFwu3nCBLWJ
build_script:
- ps: .\build.ps1 -target=CoveragePublish -configuration=Debug "-coverallsApiKey=$env:COVERALLSAPIKEY"
test: off
| version: '{build}'
image: Visual Studio 2017
environment:
COVERALLSAPIKEY:
secure: w6ojRE0he/6J2qd8sgq1kwSl3YlgLXaGJbiLvWfAdf8KtWAfSobZwSFwu3nCBLWJ
build_script:
- ps: .\build.ps1 -target=CoveragePublish -configuration=Debug "-coverallsApiKey=$env:COVERALLSAPIKEY"
test: off
|
Add go-systemd dep for CI testing | language: go
go:
- 1.10.x
- 1.11.x
- tip
install:
- mkdir -p $GOPATH/src/github.com/prometheus $GOPATH/src/github.com/opencontainers
- cd $GOPATH/src/github.com/opencontainers && git clone https://github.com/opencontainers/runtime-spec && cd runtime-spec && git checkout fa4b36aa9c99e00c2ef7b5c0013c84100ede5f4e
- cd $GOPATH/src/github.com/containerd/cgroups
- go get -t ./...
- go get -u github.com/vbatts/git-validation
- go get -u github.com/kunalkushwaha/ltag
before_script:
- pushd ..; git clone https://github.com/containerd/project; popd
script:
- DCO_VERBOSITY=-q ../project/script/validate/dco
- ../project/script/validate/fileheader ../project/
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: go
go:
- 1.10.x
- 1.11.x
install:
- mkdir -p $GOPATH/src/github.com/prometheus $GOPATH/src/github.com/opencontainers $GOPATH/src/github.com/coreos $GOPATH/src/github.com/godbus
- cd $GOPATH/src/github.com/opencontainers && git clone https://github.com/opencontainers/runtime-spec && cd runtime-spec && git checkout fa4b36aa9c99e00c2ef7b5c0013c84100ede5f4e
- cd $GOPATH/src/github.com/coreos && git clone https://github.com/coreos/go-systemd && cd go-systemd && git checkout 48702e0da86bd25e76cfef347e2adeb434a0d0a6
- cd $GOPATH/src/github.com/godbus && git clone https://github.com/godbus/dbus && cd dbus && git checkout c7fdd8b5cd55e87b4e1f4e372cdb1db61dd6c66f
- cd $GOPATH/src/github.com/containerd/cgroups
- go get -d -t ./...
- go get -u github.com/vbatts/git-validation
- go get -u github.com/kunalkushwaha/ltag
before_script:
- pushd ..; git clone https://github.com/containerd/project; popd
script:
- DCO_VERBOSITY=-q ../project/script/validate/dco
- ../project/script/validate/fileheader ../project/
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Add Firefox in Travis CI. | language: node_js
node_js:
- "6"
- "5"
- "4"
before_script:
- npm install -g gulp karma-cli
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
branches:
only:
- master
| language: node_js
node_js:
- "6"
- "5"
- "4"
addons:
firefox: "latest"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
branches:
only:
- master
|
Add CodeClimate repo token, for test coverage reports | language: ruby
notifications:
email: false
rvm:
- 2.0.0
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
| language: ruby
addons:
code_climate:
repo_token: 2df66540ac895ba609ec19665a233e73dc7b4d3f3e0c788c4b99ed974765d4bf
notifications:
email: false
rvm:
- 2.0.0
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
|
Decrease the number of Travis build and use latest version of Pillow | language: python
cache: pip
env:
global:
- PILLOW_VERSION=3.2.0
matrix:
include:
- python: 2.7
env: PILLOW_VERSION=2.9.0
- python: 2.7
env: PILLOW_VERSION=3.0.0
- python: 2.7
- python: 3.3
- python: 3.4
- python: 3.5
- python: 3.6
before_install:
# Dependencies to build PIL
- sudo apt-get update -qq
- sudo apt-get install -qq ubuntu-restricted-extras
- sudo apt-get install -qq libfreetype6-dev libjpeg8-dev zlib1g-dev ffmpeg
- sudo locale-gen fr_FR.UTF-8
- ffmpeg -version
install:
- pip install -q Pillow==$PILLOW_VERSION
- pip install pytest pytest-cov coveralls
- pip install .
script: py.test -sv --cov sigal --cov-report term-missing tests/
after_success:
coveralls
notifications:
irc: "chat.freenode.net#sigal"
| language: python
cache: pip
env:
global:
- PILLOW="Pillow"
matrix:
include:
- python: 2.7
- python: 3.4
env: PILLOW="Pillow==2.9.0"
- python: 3.5
env: PILLOW="Pillow==3.0.0"
- python: 3.6
before_install:
# Dependencies to build PIL
- sudo apt-get update -qq
- sudo apt-get install -qq ubuntu-restricted-extras
- sudo apt-get install -qq libfreetype6-dev libjpeg8-dev zlib1g-dev ffmpeg
- sudo locale-gen fr_FR.UTF-8
- ffmpeg -version
install:
- pip install -q $PILLOW
- pip install pytest pytest-cov coveralls
- pip install .
script: py.test -sv --cov sigal --cov-report term-missing tests/
after_success:
coveralls
notifications:
irc: "chat.freenode.net#sigal"
|
Test under multiple go versions | language: go
services:
- rabbitmq
env:
- AMQP_URL=amqp://guest:guest@127.0.0.1:5672/ GOMAXPROCS=2
script: go test -v -tags integration ./...
before_script:
- sh -c "sleep 120 && killall -QUIT amqp.test" &
| language: go
go:
- 1.0
- 1.1
- tip
services:
- rabbitmq
env:
- AMQP_URL=amqp://guest:guest@127.0.0.1:5672/ GOMAXPROCS=2
script: go test -v -tags integration ./...
before_script:
- sh -c "sleep 120 && killall -QUIT amqp.test" &
|
Make sure to get the right version for this Python...? | language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
sudo: false
addons:
apt:
packages:
- python-numpy
- python-sphinx
install:
- pip install nose-cov python-coveralls
- pip install -r requirements.txt
# Run test
script:
- nosetests --with-cov --cov properties --cov-config .coveragerc -v -s
# Calculate coverage
after_success:
- coveralls
notifications:
slack: 3point:n4uGopqXrpbYFbslpV5z0tyO
email: false
| language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
sudo: false
addons:
apt:
packages:
- python-numpy
install:
- pip install nose-cov python-coveralls sphinx
- pip install -r requirements.txt
# Run test
script:
- nosetests --with-cov --cov properties --cov-config .coveragerc -v -s
# Calculate coverage
after_success:
- coveralls
notifications:
slack: 3point:n4uGopqXrpbYFbslpV5z0tyO
email: false
|
Update Travis to only test for PHP >= 7.1 | language: php
php:
- 7.0
- 5.6
install: composer install
script: bin/phpunit tests/phpunit | language: php
php:
- 7.0
- 7.1
- 7.2
install: composer install
script: bin/phpunit tests/phpunit |
Add `--production=false` to installation step | language: node_js
node_js:
- "iojs-v1"
- "0.12"
- "0.10"
env:
- NODE_ENV=development
- NODE_ENV=production
| language: node_js
install: npm install --production=false
node_js:
- "iojs-v1"
- "0.12"
- "0.10"
env:
- NODE_ENV=development
- NODE_ENV=production
|
Update Travis to test newer Node versions | language: node_js
node_js:
- "0.10"
- "0.12"
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4.2"
- "5"
|
Update for Chef 15 license agreement and Chef Workstation | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
- INSTANCE=default-debian-8
- INSTANCE=default-fedora-latest
- INSTANCE=default-opensuse-leap
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1
| addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
env:
- CHEF_LICENSE=accept
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
- INSTANCE=default-debian-8
- INSTANCE=default-fedora-latest
- INSTANCE=default-opensuse-leap
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env:
- UNIT_AND_LINT=1
- CHEF_LICENSE=accept
|
Exclude `filecheck` plugin on FreeBSD 12 | task:
matrix:
- name: 😈 FreeBSD 11
freebsd_instance:
image: freebsd-11-2-release-amd64
- name: 😈 FreeBSD 12
freebsd_instance:
image: freebsd-12-0-release-amd64
env:
# We use `PLUGINS_KDB` instead of `PLUGINS`, since `pkg` interprets the environment variable `PLUGINS`.
PLUGINS_KDB: 'ALL;-iconv' # Building the test for the iconv plugin fails: https://cirrus-ci.com/task/4923537438539776
install_script:
- pkg install -y cmake
- pkg install -y git
- pkg install -y ninja
- pkg install -y yajl
script:
- mkdir build && cd build
- cmake -GNinja -DPLUGINS="${PLUGINS_KDB:-ALL}" -DBINDINGS='ALL' -DTARGET_PLUGIN_FOLDER="" -DCMAKE_SKIP_INSTALL_RPATH=ON ..
- ninja
- output="$(ninja install 2>&1)" || printf '%s' "$output"
tests_script:
# Work around stalled process plugin and library problems on FreeBSD: https://issues.libelektra.org/2323
- sudo mount -t fdescfs fdesc /dev/fd
- cd build && ninja run_all
- kdb run_all
| task:
matrix:
- name: 😈 FreeBSD 11
freebsd_instance:
image: freebsd-11-2-release-amd64
- name: 😈 FreeBSD 12
freebsd_instance:
image: freebsd-12-0-release-amd64
env:
# We use `PLUGINS_KDB` instead of `PLUGINS`, since `pkg` interprets the environment variable `PLUGINS`.
PLUGINS_KDB: 'ALL;-iconv;-filecheck' # Linking the iconv library fails: https://cirrus-ci.com/task/4923537438539776
install_script:
- pkg install -y cmake
- pkg install -y git
- pkg install -y ninja
- pkg install -y yajl
script:
- mkdir build && cd build
- cmake -GNinja -DPLUGINS="${PLUGINS_KDB:-ALL}" -DBINDINGS='ALL' -DTARGET_PLUGIN_FOLDER="" -DCMAKE_SKIP_INSTALL_RPATH=ON ..
- ninja
- output="$(ninja install 2>&1)" || printf '%s' "$output"
tests_script:
# Work around stalled process plugin and library problems on FreeBSD: https://issues.libelektra.org/2323
- sudo mount -t fdescfs fdesc /dev/fd
- cd build && ninja run_all
- kdb run_all
|
Add build script to init task |
image:
file: .gitpod.Dockerfile
vscode:
extensions:
- muhammad-sammy.csharp
- ionide.ionide-fsharp
- christian-kohler.path-intellisense
- PKief.material-icon-theme
- zhuangtongfa.material-theme
- eamodio.gitlens
- ms-azuretools.vscode-docker
tasks:
- init: ./build.sh |
image:
file: .gitpod.Dockerfile
vscode:
extensions:
- muhammad-sammy.csharp
- ionide.ionide-fsharp
- christian-kohler.path-intellisense
- PKief.material-icon-theme
- zhuangtongfa.material-theme
- eamodio.gitlens
- ms-azuretools.vscode-docker
tasks:
- init: ./fake.sh |
Build with ruby on TravisCI too | language: node_js
node_js: v8
deploy:
provider: pages
local_dir: dist
skip_cleanup: true
github_token: $GITHUB_TOKEN
on:
branch: master
| language: ruby
ruby: 2.4
script: jekyll build
deploy:
provider: pages
local_dir: _site
skip_cleanup: true
github_token: $GITHUB_TOKEN
on:
branch: master
|
Test Symfony 4.0 and remove HHVM check | sudo: false
language: php
php:
- 7.2
- 7.1
- 7.0
- 5.6
- 5.5
env:
- SYMFONY_VERSION=3.4.*
- SYMFONY_VERSION=3.3.*
- SYMFONY_VERSION=3.2.*
- SYMFONY_VERSION=3.1.*
- SYMFONY_VERSION=2.8.*
before_script:
- if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then echo 'memory_limit = -1' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi
- mysql -e "create database symfony;"
- mysql -e "set global wait_timeout=600"
- composer self-update
- rm composer.lock # Prevent dependency problems
- travis_retry composer require "symfony/symfony:${SYMFONY_VERSION}"
script:
- vendor/bin/phpunit --coverage-clover coverage.xml
after_success:
- php vendor/bin/coveralls
matrix:
fast_finish: true
| sudo: false
language: php
php:
- 7.2
- 7.1
- 7.0
- 5.6
- 5.5
env:
- SYMFONY_VERSION=3.4.*
- SYMFONY_VERSION=3.3.*
- SYMFONY_VERSION=3.2.*
- SYMFONY_VERSION=3.1.*
- SYMFONY_VERSION=2.8.*
before_script:
- echo 'memory_limit = -1' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
- mysql -e "create database symfony;"
- mysql -e "set global wait_timeout=600"
- composer self-update
- rm composer.lock # Prevent dependency problems
- travis_retry composer require "symfony/symfony:${SYMFONY_VERSION}"
script:
- vendor/bin/phpunit --coverage-clover coverage.xml
after_success:
- php vendor/bin/coveralls
matrix:
fast_finish: true
include:
- php: 7.2
env: SYMFONY_VERSION=4.0.*
- php: 7.1
env: SYMFONY_VERSION=4.0.* |
Drop the -v for go get/test | go_import_path: v.io
language: go
go: 1.6
install: go get -t -v ./...
script: VDLPATH=$PWD/.. go test -v ./... | go_import_path: v.io
language: go
go: 1.6
install: go get -t ./...
script: VDLPATH=$PWD/.. go test ./... |
Add sudo to apt command | language: python
python:
- "2.7"
before_install: "apt-get install libldap2-dev libsasl2-dev"
install: "make install"
before_script: "pip install -U pytest mock httplib2 wsgi_intercept"
script: "make pep8 test" | language: python
python:
- "2.7"
before_install: "sudo apt-get install libldap2-dev libsasl2-dev"
install: "make install"
before_script: "pip install -U pytest mock httplib2 wsgi_intercept"
script: "make pep8 test" |
Add Py3 tests to Travis CI | language: python
install:
- pip install -r test-requirements.txt
- python setup.py install
script:
- pytest pydiff
- pytest pydiff --pep8
notifications:
slack:
rooms:
- beagleinc:DB8ZeLgjLqjW9Mhn3WmXpbuW#circleci
- serf-beagle:StH5vRHmpWcpZ6ryDdPzIkc2#ci
email: false
| language: python
python:
- "2.7"
- "3.6"
install:
- python setup.py install
- pip install -r test-requirements.txt
script:
- pytest pydiff
- pytest pydiff --pep8
notifications:
slack:
rooms:
- beagleinc:DB8ZeLgjLqjW9Mhn3WmXpbuW#circleci
- serf-beagle:StH5vRHmpWcpZ6ryDdPzIkc2#ci
email: false
|
Enable uploading to 1.8 repository | sudo: required
services:
- docker
env:
global:
- PRODUCT=tarantool-cbench
matrix:
- OS=el DIST=6 PACK=rpm
- OS=el DIST=7 PACK=rpm
- OS=fedora DIST=23 PACK=rpm
- OS=fedora DIST=24 PACK=rpm
# - OS=fedora DIST=rawhide PACK=rpm
- OS=ubuntu DIST=precise PACK=deb
- OS=ubuntu DIST=trusty PACK=deb
- OS=ubuntu DIST=wily PACK=deb
- OS=ubuntu DIST=xenial PACK=deb
- OS=debian DIST=wheezy PACK=deb
- OS=debian DIST=jessie PACK=deb
- OS=debian DIST=stretch PACK=deb
# - OS=debian DIST=sid PACK=deb
script:
- git clone https://github.com/tarantool/build.git
- PACKAGECLOUD_REPO=tarantool/1_6 REPO_PREFIX=1.6 ./build/pack/travis.sh
- PACKAGECLOUD_REPO=tarantool/1_7 REPO_PREFIX=1.7 ./build/pack/travis.sh
notifications:
email: true
irc: false
| sudo: required
services:
- docker
env:
global:
- PRODUCT=tarantool-cbench
matrix:
- OS=el DIST=6 PACK=rpm
- OS=el DIST=7 PACK=rpm
- OS=fedora DIST=23 PACK=rpm
- OS=fedora DIST=24 PACK=rpm
# - OS=fedora DIST=rawhide PACK=rpm
- OS=ubuntu DIST=precise PACK=deb
- OS=ubuntu DIST=trusty PACK=deb
- OS=ubuntu DIST=wily PACK=deb
- OS=ubuntu DIST=xenial PACK=deb
- OS=debian DIST=wheezy PACK=deb
- OS=debian DIST=jessie PACK=deb
- OS=debian DIST=stretch PACK=deb
# - OS=debian DIST=sid PACK=deb
script:
- git clone https://github.com/tarantool/build.git
- PACKAGECLOUD_REPO=tarantool/1_6 REPO_PREFIX=1.6 ./build/pack/travis.sh
- PACKAGECLOUD_REPO=tarantool/1_7 REPO_PREFIX=1.7 ./build/pack/travis.sh
- PACKAGECLOUD_REPO=tarantool/1_8 REPO_PREFIX=1.8 ./build/pack/travis.sh
notifications:
email: true
irc: false
|
Use the latest Firefox in Travis | language: node_js
node_js:
- "0.10"
- "0.12"
- "4.2"
- "5.0"
# Use container-based Travis infrastructure.
sudo: false
branches:
only:
- master
before_install:
# GUI for real browsers.
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- 'npm install -g npm@3'
script:
- npm --version
- node_modules/.bin/builder run check-ci
# Prune deps to just production and ensure we can still build
- npm prune --production
- node_modules/.bin/builder run build
- cat coverage/client/*/lcov.info | node_modules/.bin/coveralls || echo "Coveralls upload failed"
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4.2"
- "5.0"
# Use container-based Travis infrastructure.
sudo: false
branches:
only:
- master
addons:
firefox: "latest"
before_install:
# GUI for real browsers.
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- 'npm install -g npm@3'
script:
- npm --version
- node_modules/.bin/builder run check-ci
# Prune deps to just production and ensure we can still build
- npm prune --production
- node_modules/.bin/builder run build
- cat coverage/client/*/lcov.info | node_modules/.bin/coveralls || echo "Coveralls upload failed"
|
Revert "Run "git submodule update". | language: ruby
rvm:
- 1.9.3
before_install:
- git submodule update --init --recursive
- sudo apt-get update -qq
- sudo apt-get install python-software-properties python g++ make
- echo 'yes' | sudo add-apt-repository ppa:chris-lea/node.js
- sudo apt-get update -qq
- sudo apt-get install nodejs sqlite3
- sudo apt-get install libicu-dev build-essential
script:
- rake db:create && rake db:migrate
- rake test
| language: ruby
rvm:
- 1.9.3
before_install:
- sudo apt-get update -qq
- sudo apt-get install python-software-properties python g++ make
- echo 'yes' | sudo add-apt-repository ppa:chris-lea/node.js
- sudo apt-get update -qq
- sudo apt-get install nodejs sqlite3
- sudo apt-get install libicu-dev build-essential
script:
- rake db:create && rake db:migrate
- rake test
|
Test Python 3.7 on Travis | sudo: false
language: python
cache: pip
python:
- 2.7
- 3.6
cache:
- pip
install:
- pip install -r requirements.txt
script:
- make test
after_success:
- coveralls
| sudo: false
language: python
cache: pip
python:
- 2.7
- 3.6
- 3.7-dev
cache:
- pip
install:
- pip install -r requirements.txt
script:
- make test
after_success:
- coveralls
|
Remove 3.3 and test 3.6. | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install: "pip install -r requirements-travis.txt"
script: nosetests
| language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install: "pip install -r requirements-travis.txt"
script: nosetests
|
Install Pillow in Travis env. | language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=django==1.4.3
- DJANGO=https://github.com/django/django/archive/stable/1.5.x.zip
install:
- "pip install $DJANGO --use-mirrors"
- "pip install -r requirements.txt --use-mirrors"
- "touch bluebottle/settings/local.py"
- "touch bluebottle/settings/secrets.py"
matrix:
allow_failures:
- env: DJANGO=https://github.com/django/django/archive/stable/1.5.x.zip
script:
- python ./manage.py test --settings=bluebottle.settings.travis -v 2
| language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=django==1.4.3
- DJANGO=https://github.com/django/django/archive/stable/1.5.x.zip
install:
- "pip install $DJANGO --use-mirrors"
- "pip install -r requirements.txt --use-mirrors"
- "pip install Pillow --use-mirrors"
- "touch bluebottle/settings/local.py"
- "touch bluebottle/settings/secrets.py"
matrix:
allow_failures:
- env: DJANGO=https://github.com/django/django/archive/stable/1.5.x.zip
script:
- python ./manage.py test --settings=bluebottle.settings.travis -v 2
|
Disable auto installation of dependencies | sudo: required
services:
- docker
language: go
go:
- "1.8"
script:
- ./docker-build-all.sh
| sudo: required
services:
- docker
language: go
go:
- "1.8"
install:
# do nothing
script:
- ./docker-build-all.sh
|
Add `BEAKER_debug=true` to acceptance tests | ---
bundler_args: '--without system_tests'
cache: 'bundler'
language: 'ruby'
script: 'bundle exec rake spec'
env:
- PUPPET_GEM_VERSION='~> 4.9.0'
- PUPPET_GEM_VERSION='~> 4.10.0'
rvm:
- 2.1
- 2.2
- 2.3.4
- 2.4.1
matrix:
fast_finish: true
include:
- env: ''
rvm: 2.4.1
script: 'bundle exec rake'
- env: 'DEPLOY=yes'
rvm: 2.4.1
script:
- 'bundle exec rake build'
- 'bundle exec rake strings:generate'
# Beaker
- bundler_args: '--with system_tests'
env: 'PUPPET_INSTALL_TYPE=agent BEAKER_set=docker/ubuntu-1604'
rvm: 2.4.1
script: 'bundle exec rake beaker'
services: 'docker'
deploy:
- provider: 'puppetforge'
user: 'joshuaspence'
password: '$PUPPET_FORGE_PASSWORD'
on:
condition: '$DEPLOY = yes'
tags: true
- provider: 'pages'
github_token: '$GITHUB_TOKEN'
local_dir: 'doc'
skip_cleanup: true
on:
condition: '$DEPLOY = yes'
tags: true
| ---
bundler_args: '--without system_tests'
cache: 'bundler'
language: 'ruby'
script: 'bundle exec rake spec'
env:
- PUPPET_GEM_VERSION='~> 4.9.0'
- PUPPET_GEM_VERSION='~> 4.10.0'
rvm:
- 2.1
- 2.2
- 2.3.4
- 2.4.1
matrix:
fast_finish: true
include:
- env: ''
rvm: 2.4.1
script: 'bundle exec rake'
- env: 'DEPLOY=yes'
rvm: 2.4.1
script:
- 'bundle exec rake build'
- 'bundle exec rake strings:generate'
# Beaker
- bundler_args: '--with system_tests'
env: 'PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_set=docker/ubuntu-1604'
rvm: 2.4.1
script: 'bundle exec rake beaker'
services: 'docker'
deploy:
- provider: 'puppetforge'
user: 'joshuaspence'
password: '$PUPPET_FORGE_PASSWORD'
on:
condition: '$DEPLOY = yes'
tags: true
- provider: 'pages'
github_token: '$GITHUB_TOKEN'
local_dir: 'doc'
skip_cleanup: true
on:
condition: '$DEPLOY = yes'
tags: true
|
Remove pod install step for build | osx_image: xcode7.3
language: objective-c
before_install:
- pod install
script:
- xctool -project PurchaseHelper.xcodeproj -scheme PurchaseHelper -sdk iphonesimulator clean build test
| osx_image: xcode7.3
language: objective-c
script:
- xctool -project PurchaseHelper.xcodeproj -scheme PurchaseHelper -sdk iphonesimulator clean build test
|
Remove no longer supported node version | addons:
browserstack:
username: ${BROWSERSTACK_USERNAME}
access_key: ${BROWSERSTACK_ACCESS_KEY}
forcelocal: true
language: node_js
node_js:
- '8'
- '10'
- '12'
cache:
directories:
- node_modules
stages:
- test
- name: browserstack
if: fork IS false
jobs:
include:
- stage: browserstack
node_js: '12'
script: grunt browserstack
| addons:
browserstack:
username: ${BROWSERSTACK_USERNAME}
access_key: ${BROWSERSTACK_ACCESS_KEY}
forcelocal: true
language: node_js
node_js:
- '10'
- '12'
cache:
directories:
- node_modules
stages:
- test
- name: browserstack
if: fork IS false
jobs:
include:
- stage: browserstack
node_js: '12'
script: grunt browserstack
|
Use node 4.3 with Travis | sudo: false
language: node_js
node_js:
- "0.12"
# Send coverage data to Coveralls
after_success: "cat ./test_reports/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
| sudo: false
language: node_js
node_js:
- "4.3"
# Send coverage data to Coveralls
after_success: "cat ./test_reports/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
|
Test separate to resolve hang | language: python
python:
- "3.6"
cache: pip
email:
- seanc@seancotech.com
install:
- curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
- source /etc/lsb-release
- echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
- sudo apt-get update
- sudo apt-get install -y influxdb
- sudo service influxdb start
- pip install -r requirements.txt
- pip install nose
- cp -fv config.sample.py config.py
- sed 's/is_testing = False/is_testing = True/g' config.py > config.tmp.py
- "sed \"s/'database': 'klima'/'database': '_klima_test'/g\" config.tmp.py > config.py"
- sed 's/log_level = WARNING/log_level = DEBUG/g' config.py > config.tmp.py
- mv -fv config.tmp.py config.py
- ls -la
- cat config.py
script:
- nosetests -vv
| language: python
python:
- "3.6"
cache: pip
email:
- seanc@seancotech.com
install:
- curl -sL https://repos.influxdata.com/influxdb.key | sudo apt-key add -
- source /etc/lsb-release
- echo "deb https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
- sudo apt-get update
- sudo apt-get install -y influxdb
- sudo service influxdb start
- pip install -r requirements.txt
- pip install nose
- cp -fv config.sample.py config.py
- sed 's/is_testing = False/is_testing = True/g' config.py > config.tmp.py
- "sed \"s/'database': 'klima'/'database': '_klima_test'/g\" config.tmp.py > config.py"
- sed 's/log_level = WARNING/log_level = DEBUG/g' config.py > config.tmp.py
- mv -fv config.tmp.py config.py
- ls -la
- cat config.py
script:
- nosetests test/test_influx.py
- nosetests test/test_routes.py
|
Disable prefer-lowest build until fixed | language: php
sudo: false
matrix:
include:
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.0
env: COMPOSER_FLAGS="--prefer-lowest"
- php: hhvm-3.9
dist: trusty
before_script:
- curl --version
- composer self-update
- composer update --no-interaction --no-progress $COMPOSER_FLAGS
script:
- ./vendor/bin/phpunit -v
after_script:
- php vendor/bin/coveralls -v
after_success:
- if [ $TRAVIS_PHP_VERSION = '7.1' ] && [ $TRAVIS_BRANCH = 'master' ] && [ $TRAVIS_PULL_REQUEST = 'false' ] && [ $COMPOSER_FLAGS = '']; then sh bin/generate-api; fi
| language: php
sudo: false
matrix:
include:
- php: 5.6
- php: 7.0
- php: 7.1
# - php: 7.0
# env: COMPOSER_FLAGS="--prefer-lowest"
- php: hhvm-3.9
dist: trusty
before_script:
- curl --version
- composer self-update
- composer update --no-interaction --no-progress $COMPOSER_FLAGS
script:
- ./vendor/bin/phpunit -v
after_script:
- php vendor/bin/coveralls -v
after_success:
- if [ $TRAVIS_PHP_VERSION = '7.1' ] && [ $TRAVIS_BRANCH = 'master' ] && [ $TRAVIS_PULL_REQUEST = 'false' ] && [ $COMPOSER_FLAGS = '']; then sh bin/generate-api; fi
|
Test with latest Node.js 5 on Travis CI. | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5.1'
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'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
Remove auto-deploy as this is handled by Jenkins now. | language: node_js
sudo: false
node_js:
- '0.10'
- '0.12'
deploy:
provider: npm
email: npmjs@appcelerator.com
api_key:
secure: JiXCmFOCnhQ/XxIty077stQRNDzBnK68oJrTO5DvJxL+ztwLQLP///0sUiJbQL0y++dC+G2GbyhQi/mGj0p2cN3bWgNb+0RL6YBxaF+HBaw1COBBvBlEwF5fFpDXWpVVf5p3dT/+KHM5gQhnFFOZeaObH5AIDkR0Y56ayHLhO08=
on:
tags: true
repo: appcelerator/appc-logger
| language: node_js
sudo: false
node_js:
- '0.10'
- '0.12'
|
Add Node.js version 8.* to Travis CI builds. | language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
- iojs
script: "npm run-script test-cover"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls"
sudo: false
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
- "8"
- iojs
script: "npm run-script test-cover"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls"
sudo: false
|
Remove token for Travis because repo is public. | language: go
# Versions of go that are explicitly supported.
go:
- 1.4.3
- 1.5.4
- 1.6.3
- 1.7.1
- tip
# Required for coverage.
before_install:
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
script:
- go build -a -v ./...
- diff <(gofmt -d .) <("")
- go test -v -covermode=count -coverprofile=coverage.out
- $GOPATH/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN
| language: go
# Versions of go that are explicitly supported.
go:
- 1.4.3
- 1.5.4
- 1.6.3
- 1.7.1
- tip
# Required for coverage.
before_install:
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
script:
- go build -a -v ./...
- diff <(gofmt -d .) <("")
- go test -v -covermode=count -coverprofile=coverage.out
- $GOPATH/bin/goveralls -coverprofile=coverage.out -service=travis-ci
|
Add GCC 4.8 in Travis VM | language: node_js
node_js:
- "4"
cache:
bundler: true
directories:
- travis-phantomjs
- node_modules
before_install:
- "if [ $(phantomjs --version) != '2.1.1' ]; then rm -rf $PWD/travis-phantomjs; mkdir -p $PWD/travis-phantomjs; fi"
- "if [ $(phantomjs --version) != '2.1.1' ]; then wget https://github.com/BIGjuevos/phantomjs-builds/archive/v2.1.1.tar.gz -O $PWD/travis-phantomjs/v2.1.1.tar.gz; fi"
- "if [ $(phantomjs --version) != '2.1.1' ]; then tar -xf $PWD/travis-phantomjs/v2.1.1.tar.gz -C $PWD/travis-phantomjs; fi"
- "if [ $(phantomjs --version) != '2.1.1' ]; then sudo ln -sf $PWD/travis-phantomjs/phantomjs-builds-2.1.1/bin/phantomjs $(which phantomjs); fi"
- "phantomjs --version"
before_script:
script:
- xvfb-run -a make ci
branches:
only:
- "master"
| language: node_js
node_js:
- "4"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
cache:
bundler: true
directories:
- travis-phantomjs
- node_modules
before_install:
- "if [ $(phantomjs --version) != '2.1.1' ]; then rm -rf $PWD/travis-phantomjs; mkdir -p $PWD/travis-phantomjs; fi"
- "if [ $(phantomjs --version) != '2.1.1' ]; then wget https://github.com/BIGjuevos/phantomjs-builds/archive/v2.1.1.tar.gz -O $PWD/travis-phantomjs/v2.1.1.tar.gz; fi"
- "if [ $(phantomjs --version) != '2.1.1' ]; then tar -xf $PWD/travis-phantomjs/v2.1.1.tar.gz -C $PWD/travis-phantomjs; fi"
- "if [ $(phantomjs --version) != '2.1.1' ]; then sudo ln -sf $PWD/travis-phantomjs/phantomjs-builds-2.1.1/bin/phantomjs $(which phantomjs); fi"
- "phantomjs --version"
before_script:
script:
- xvfb-run -a make ci
branches:
only:
- "master"
|
Enable linting and caching in Travis | language: node_js
node_js:
- "5"
- "4"
- "0.12"
- "0.10"
| language: node_js
node_js:
- "5"
- "4"
- "0.12"
- "0.10"
matrix:
env:
global:
- CI_TEST=no-lint
include:
- node_js: "5"
script: npm run lint
env:
- CI_TEST=lint-only
cache:
directories:
- node_modules
|
Test on recent Ruby releases | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: ruby-head
notifications:
irc: "irc.freenode.org#adhearsion"
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: ruby-head
notifications:
irc: "irc.freenode.org#adhearsion"
|
Remove directory from pod repo update | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode8.0
podfile: Example/Podfile
xcode_workspace: Example/SMWRealm.xcworkspace/
xcode_scheme: SMWRealm-Example
xcode_sdk: iphonesimulator10.0
podfile: Example/Podfile
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- pod repo update --project-directory=Example
- pod install --project-directory=Example
| # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode8.0
podfile: Example/Podfile
xcode_workspace: Example/SMWRealm.xcworkspace/
xcode_scheme: SMWRealm-Example
xcode_sdk: iphonesimulator10.0
podfile: Example/Podfile
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- pod repo update
- pod install --project-directory=Example
|
Remove HHVM from the Travis-CI matrix, do not add modern PHP versions to 2.x | language: php
php:
- 7.1
- 7.2
- hhvm
before_script:
- composer install
script:
- vendor/bin/phpunit --verbose --coverage-text --coverage-clover=clover.xml --colors
after_script:
- sh .travis.coverage.sh
matrix:
allow_failures:
- php: hhvm
| language: php
php:
- 7.1
- 7.2
- 7.3
before_script:
- composer install
script:
- vendor/bin/phpunit --verbose --coverage-text --coverage-clover=clover.xml --colors
after_script:
- sh .travis.coverage.sh
|
Add supported version of Sylpheed | 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
script:
- ./configure --with-sylpheed-build-dir=`pwd`/sylpheed
- make V=1
| language: c
compiler:
- gcc
- clang
notifications:
recipients:
- kenhys@gmail.com
branches:
only:
- master
- develop
env:
- SYLPHEED_STAGE=master
- SYLPHEED_STAGE=3.5
- SYLPHEED_STAGE=3.4
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
script:
- ./configure --with-sylpheed-build-dir=`pwd`/sylpheed
- make V=1
|
Fix for postgres on Travis. | language: ruby
rvm:
- 1.9.3
notifications:
recipients:
- jari.bakken@gmail.com
irc: "irc.freenode.net#holderdeord"
script: "RAILS_ENV=test bundle exec rake travis"
before_script:
- "sh -e /etc/init.d/xvfb start"
- "npm install -g buster autolint"
env:
- DISPLAY=:99.0 COVERAGE_THRESHOLD=60
| language: ruby
rvm:
- 1.9.3
notifications:
recipients:
- jari.bakken@gmail.com
irc: "irc.freenode.net#holderdeord"
script: "RAILS_ENV=test bundle exec rake travis"
before_script:
- psql -c 'create database hdo_test;' -U postgres
- "ruby -ryaml -e 'c = YAML.load_file(%{config/database.yml}); c[%{test}][%{username}] = %{postgres}; puts YAML.dump(c)' > config/database.yml"
- sh -e /etc/init.d/xvfb start
- "npm install -g buster autolint"
env:
- DISPLAY=:99.0 COVERAGE_THRESHOLD=60
|
Remove Node 4 build target | language: node_js
node_js:
- "4"
- "6"
- "7"
- "8"
- "9"
- "10"
install:
- yarn install
- yarn run compile
script:
- yarn run lint
- yarn run test
jobs:
include:
- stage: after_success
script: yarn run coveralls
node_js: 9
| language: node_js
node_js:
- "6"
- "7"
- "8"
- "9"
- "10"
install:
- yarn install
- yarn run compile
script:
- yarn run lint
- yarn run test
jobs:
include:
- stage: after_success
script: yarn run coveralls
node_js: 9
|
Add 0.10 and 0.11 to CI run. | language: node_js
node_js:
- 0.8
before_install: "npm install -g bob"
script: "bob build"
| language: node_js
node_js:
- "0.11"
- "0.10"
- 0.8
before_install: "npm install -g bob"
script: "bob build"
|
Bring Travis up to date with Makefile improvements | # Make sure we run in the docker container
sudo: false
language: c
dist: trusty
addons:
apt:
packages:
# Libraries needed to build cross compiler
- libgmp-dev
- libmpfr-dev
- python-virtualenv
- libclang1-3.4
- clang
- yasm
- xorriso
- grub2
cache:
directories:
- compiler/x86_64-none-elf
before_script:
- virtualenv ~/venv
- source ~/venv/bin/activate
- pip install cldoc
script:
- if [[ ! -e compiler/x86_64-none-elf/bin/x86_64-elf-gcc ]]; then
bash ./scripts/build_cross_compiler.sh;
fi
- make debug
- make clean
- make release
- make iso
| # Make sure we run in the docker container
sudo: false
language: c
dist: trusty
addons:
apt:
packages:
# Libraries needed to build cross compiler
- libgmp-dev
- libmpfr-dev
- python-virtualenv
- libclang1-3.4
- clang
- yasm
- xorriso
- grub2
cache:
directories:
- compiler/x86_64-none-elf
before_script:
- virtualenv ~/venv
- source ~/venv/bin/activate
- pip install cldoc
script:
- if [[ ! -e compiler/x86_64-none-elf/bin/x86_64-elf-gcc ]]; then
bash ./scripts/build_cross_compiler.sh;
fi
- export PATH=$PATH:compiler/x86_64-elf/bin/
- make debug
- make clean
- make release
- make iso
|
Fix incorrect xcode_project and xcode_scheme in Travis config | language: objective-c
xcode_project: ProgressView.xcworkspace
xcode_scheme: ProgressViewTests
before_install:
- gem install cocoapods
- cd Example\ Project | language: objective-c
xcode_project: PWProgressView.xcworkspace
xcode_scheme: PWProgressViewTests
before_install:
- gem install cocoapods
- cd Example\ Project |
Revert "Disable CI on JRuby for now. amqp & amq-client CI is still run against JRuby, so" | # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
bundler_args: --without development
script: "bundle exec rspec spec"
rvm:
- 1.8.7
- 1.8.7-p249
- 1.9.2
- rbx-2.0
- ree
- ruby-head
notifications:
recipients:
- jakub@rabbitmq.com
- michaelklishin@me.com
- markizko@gmail.com
| # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
bundler_args: --without development
script: "bundle exec rspec spec"
rvm:
- 1.8.7
- 1.8.7-p249
- 1.9.2
- jruby
- rbx-2.0
- ree
- ruby-head
notifications:
recipients:
- jakub@rabbitmq.com
- michaelklishin@me.com
- markizko@gmail.com
|
Test only on PHP 7.2+ | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
services: postgresql
before_script:
- psql -c 'create database pgwrapper_test' -U postgres -h 127.0.0.1
- cp tests/config.php.travis tests/config.php
install: composer install
script: vendor/bin/phpunit --configuration tests/phpunit.xml
| language: php
php:
- 7.2
- 7.3
- 7.4snapshot
matrix:
fast_finish: true
allow_failures:
- php: 7.4snapshot
services: postgresql
before_script:
- psql -c 'create database pgwrapper_test' -U postgres -h 127.0.0.1
- cp tests/config.php.travis tests/config.php
install: composer install
script: vendor/bin/phpunit --configuration tests/phpunit.xml
|
Adjust .trayis.yml to test on trunk and 5.1 only | language: smalltalk
sudo: false
# Select operating system(s)
os:
- linux
- osx
# Select compatible Smalltalk image(s)
smalltalk:
- Squeak-trunk
- Squeak-5.0
- Squeak-4.6
- Squeak-4.5
| language: smalltalk
sudo: false
# Select operating system(s)
os:
- linux
- osx
# Select compatible Smalltalk image(s)
smalltalk:
- Squeak-trunk
- Squeak-5.1
|
Fix JRuby versions tested on Travis. | language: ruby
cache: bundler
rvm:
- 2.0.0
- 2.1.0
- 2.1.1
- rbx-2
- ruby-head
matrix:
include:
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true | language: ruby
cache: bundler
rvm:
- 2.0.0
- 2.1.0
- rbx-2
- ruby-head
matrix:
include:
- rvm: jruby
env: JRUBY_OPTS="--2.0 --debug"
- rvm: jruby-head
env: JRUBY_OPTS="--2.1 --debug"
- rvm: jruby-head
env: JRUBY_OPTS="--debug"
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true |
Add PHP 5.5 to Travis | language: php
php:
- 5.2
- 5.3
- 5.4
- hhvm
script: phpunit tests
| language: php
php:
- 5.2
- 5.3
- 5.4
- 5.5
- hhvm
script: phpunit tests
|
Test against multiple versions of dependencies | language: python
python:
- "2.7"
- "3.4"
- "3.5"
before_script:
- pip install codecov
# command to install dependencies
install:
- pip install --upgrade pip
- pip install requests
- pip install nose-parameterized
- pip install -r requirements.txt
# command to run tests
script: nosetests --with-coverage --cover-package=recordlinkage
# Codecov
after_success:
- bash <(curl -s https://codecov.io/bash) | language: python
python:
- "2.7"
- "3.4"
- "3.5"
env:
- PANDAS_VERSION=0.17.1
- PANDAS_VERSION=0.18.1
- PANDAS_VERSION=0.19.1
before_script:
- pip install codecov
- pip install nose-parameterized
# command to install dependencies
install:
- pip install --upgrade pip
- pip install requests
- pip install -q pandas==$PANDAS_VERSION
- pip install -r requirements.txt
# command to run tests
script: nosetests --with-coverage --cover-package=recordlinkage
# Codecov
after_success:
- bash <(curl -s https://codecov.io/bash) |
Drop unused Travis CI option | language: ruby
script: bundle exec rake
sudo: false
rvm:
- "2.2"
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- ruby-head
- jruby-19mode
matrix:
allow_failures:
- rvm: ruby-head
| language: ruby
script: bundle exec rake
rvm:
- "2.2"
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- ruby-head
- jruby-19mode
matrix:
allow_failures:
- rvm: ruby-head
|
Install mysqlclient so Django can access MySQL database. | language: python
python:
- "2.7"
- "3.4"
install:
- pip install -r requirements.txt
- pip install coveralls
env:
- DB=sqlite
- DB=mysql
- DB=postgres
addons:
postgresql: "9.4"
script:
- coverage run --source=hc manage.py test
after_success: coveralls
| language: python
python:
- "2.7"
- "3.4"
install:
- pip install -r requirements.txt
- pip install coveralls mysqlclient
env:
- DB=sqlite
- DB=mysql
- DB=postgres
addons:
postgresql: "9.4"
script:
- coverage run --source=hc manage.py test
after_success: coveralls
|
Add mesos to test VM | language: java
env:
- TEST_DIR=scheduler TOOL=lein
- TEST_DIR=jobclient TOOL=mvn
script: cd $TEST_DIR && $TOOL test
| language: java
before_install:
- sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF
- echo "deb http://repos.mesosphere.io/ubuntu/ precise varnish-3.0" | sudo tee /etc/apt/sources.list.d/mesosphere.list
- sudo apt-get update -qq
- sudo apt-get install mesos
sudo: required
env:
global:
- MESOS_NATIVE_LIBRARY=/usr/lib/libmesos.so
matrix:
- TEST_DIR=scheduler TOOL=lein
- TEST_DIR=jobclient TOOL=mvn
script: cd $TEST_DIR && $TOOL test
|
Make a test run with just nosetests -v -a '!slow' | sudo: false
# We are using our own python
language: c
addons:
apt:
packages:
- wget
before_install:
- wget http://ftp.openquake.org/travis/openquake-env-setup-py3-precise64.run
- chmod +x openquake-env-setup-py3-precise64.run
env:
LD_LIBRARY_PATH=$HOME/openquake/lib
PATH=$HOME/openquake/bin:$PATH
install:
- ./openquake-env-setup-py3-precise64.run -- -d ~
- pip install https://github.com/gem/oq-hazardlib/archive/python3.zip
# We must set the PYTHONPATH to the root oq-engine (insted of oq-engine/openquake) because otherwise
# the full 'openquake' namespace is overwritten and then hazardlib and baselib are not found
script:
# FIXME --with-doctest does not work
- PYTHONPATH=. nosetests -vsx -a'!slow' --with-xunit --nologcapture
| sudo: false
# We are using our own python
language: c
addons:
apt:
packages:
- wget
before_install:
- wget http://ftp.openquake.org/travis/openquake-env-setup-py3-precise64.run
- chmod +x openquake-env-setup-py3-precise64.run
env:
LD_LIBRARY_PATH=$HOME/openquake/lib
PATH=$HOME/openquake/bin:$PATH
install:
- ./openquake-env-setup-py3-precise64.run -- -d ~
- pip install https://github.com/gem/oq-hazardlib/archive/python3.zip
# We must set the PYTHONPATH to the root oq-engine (insted of oq-engine/openquake) because otherwise
# the full 'openquake' namespace is overwritten and then hazardlib and baselib are not found
script:
# FIXME --with-doctest does not work
# - PYTHONPATH=. nosetests -vsx -a'!slow' --with-xunit --nologcapture
- PYTHONPATH=. nosetests -v -a'!slow'
|
Make it work with example sketches that have multiple files | language: python
cache:
directories:
- "~/.platformio"
install:
- pip install -U platformio
env:
- BOARD=leonardo
- BOARD=micro
- BOARD=megaatmega2560
- BOARD=due
- BOARD=uno
- BOARD=yun
script:
- for e in $(find examples -name \*.ino); do
platformio ci --board=$BOARD --lib=. $e;
done
| language: python
cache:
directories:
- "~/.platformio"
install:
- pip install -U platformio
env:
- BOARD=leonardo
- BOARD=micro
- BOARD=megaatmega2560
- BOARD=due
- BOARD=uno
- BOARD=yun
script:
- for e in examples/*; do
platformio ci --board=$BOARD --lib=. $e/*;
done
|
Make Travis available for all branches | language: java
jdk:
- oraclejdk8
before_script: "[[ $TRAVIS_PULL_REQUEST == \"false\" ]] && ./make_credentials.py"
script:
- find $HOME/.m2 -name "_remote.repositories" | xargs rm
- find $HOME/.m2 -name "resolver-status.properties" | xargs rm -f
# If building master, Publish to Sonatype
after_success: "[[ $TRAVIS_PULL_REQUEST == \"false\" ]] && mvn deploy"
sudo: false
# Cache settings
cache:
directories:
- $HOME/.m2/repository
# whitelist
branches:
only:
- master | language: java
jdk:
- oraclejdk8
before_script: |
if ([ $TRAVIS_PULL_REQUEST = "false" ] && [ $TRAVIS_BRANCH = "master" ]); then
./make_credentials.py
fi
script:
- find $HOME/.m2 -name "_remote.repositories" | xargs rm
- find $HOME/.m2 -name "resolver-status.properties" | xargs rm -f
# If building master, Publish to Sonatype
after_success: |
if ([ $TRAVIS_PULL_REQUEST = "false" ] && [ $TRAVIS_BRANCH = "master" ]); then
mvn deploy
fi
sudo: false
# Cache settings
cache:
directories:
- $HOME/.m2/repository
|
Add in and out scripts to Travis build | language: go
go:
- 1.6
- 1.7
- tip
install: go get github.com/onsi/ginkgo/ginkgo
script:
- ginkgo -v calendar/
- go build cmd/check/main.go
| language: go
go:
- 1.6
- 1.7
- tip
install: go get github.com/onsi/ginkgo/ginkgo
script:
- ginkgo -v calendar/
- go build cmd/check/main.go
- go build cmd/in/main.go
- go build cmd/out/main.go
|
Add hhvm-nightly as a testing environment on Travis CI. | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
branches:
except:
- v0.5
- v0.6
- php5.2_backport
- documentation
services: redis-server
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit -c phpunit.xml.travisci
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
branches:
except:
- v0.5
- v0.6
- php5.2_backport
- documentation
services: redis-server
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit -c phpunit.xml.travisci
-matrix:
- allow_failures:
- - php: hhvm-nightly
- fast_finish: true
|
Update Travis CI config to use the latest Ruby patch version of each Ruby minor version. | language: ruby
cache: bundler
rvm:
- ruby-head
- 2.2.1
- 2.1.5
- 2.0.0
- 1.9.3
- jruby-head
- jruby-9
- jruby-19mode
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
addons:
code_climate:
repo_token: 97a54878f464b101386de95de0863407520593d817bbaa8e6f851cdb70d30e97 | language: ruby
cache: bundler
rvm:
- ruby-head
- 2.2.2
- 2.1.6
- 2.0.0
- 1.9.3
- jruby-head
- jruby-9
- jruby-19mode
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
addons:
code_climate:
repo_token: 97a54878f464b101386de95de0863407520593d817bbaa8e6f851cdb70d30e97 |
Disable Coveralls integration due to another downtime on their end | notifications:
email: false
language: java
jdk: openjdk7
cache:
directories:
- $HOME/.m2
script:
- mvn -DTRAVIS_JOB_ID=$TRAVIS_JOB_ID test jacoco:report coveralls:report
- mvn clean compile assembly:single
- ./src/test/scripts/console/output/verify_3_0_0.sh
- ./src/test/scripts/console/output/verify_1_1_1.sh
- ./src/test/scripts/console/output/report_10_0.sh
- ./src/test/scripts/exit/code/1_1_1.sh
- ./src/test/scripts/exit/code/3_0_0.sh
- ls -l target/lightning*
| notifications:
email: false
language: java
jdk: openjdk7
cache:
directories:
- $HOME/.m2
script:
# - mvn -DTRAVIS_JOB_ID=$TRAVIS_JOB_ID test jacoco:report coveralls:report
- mvn test
- mvn clean compile assembly:single
- ./src/test/scripts/console/output/verify_3_0_0.sh
- ./src/test/scripts/console/output/verify_1_1_1.sh
- ./src/test/scripts/console/output/report_10_0.sh
- ./src/test/scripts/exit/code/1_1_1.sh
- ./src/test/scripts/exit/code/3_0_0.sh
- ls -l target/lightning*
|
Add prospector into Travis builds | language: python
python:
- "3.5"
- "3.6"
notifications:
email: false
install:
- pip3 install -r requirements.txt
- pip3 install coveralls
cache:
directories:
- $HOME/.cache/pip
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log
script:
- python3 -m pytest tests --cov meetup_facebook_bot
after_success:
- coveralls
| language: python
python:
- "3.5"
- "3.6"
notifications:
email: false
install:
- pip3 install -r requirements.txt
- pip3 install coveralls
- pip3 install prospector
cache:
directories:
- $HOME/.cache/pip
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log
script:
- python3 -m pytest tests --cov meetup_facebook_bot
- prospector --without-tool pylint --without-tool pep257
after_success:
- coveralls
|
Test in node 0.11 too | language: node_js
node_js:
- "0.10"
- "0.8"
- "0.6"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] && npm conf set strict-ssl false || true'
| language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] && npm conf set strict-ssl false || true'
|
Build with Go version 1.3 only | language: go
go:
- 1.3
- release
# - tip
script:
- go test -v ./...
| language: go
go:
- 1.3
# - release
# - tip
script:
- go test -v ./...
|
Include cmake to resolve heroku build fail | language: ruby
cache: bundler
sudo: required
dist: trusty
rvm:
- 2.4.1
services: mongodb
addons:
apt:
sources:
- ubuntu-sdk-team
packages:
- libqt5webkit5-dev
- qtdeclarative5-dev
script: xvfb-run bundle exec rake
env:
global:
- METRICS_API_USERNAME="username"
- METRICS_API_PASSWORD="password"
- METRICS_API_TITLE='ODI Metrics'
- METRICS_API_DESCRIPTION='This API contains a list of all metrics collected by the Open Data Institute since 2013'
- METRICS_API_LICENSE_NAME='Creative Commons Attribution-ShareAlike'
- METRICS_API_LICENSE_URL='https://creativecommons.org/licenses/by-sa/4.0/'
- METRICS_API_PUBLISHER_NAME='Open Data Institute'
- METRICS_API_PUBLISHER_URL='http://theodi.org'
- METRICS_API_CERTIFICATE_URL='https://certificates.theodi.org/en/datasets/213482/certificate' | language: ruby
cache: bundler
sudo: required
dist: trusty
rvm:
- 2.4.1
services: mongodb
addons:
apt:
sources:
- ubuntu-sdk-team
packages:
- libqt5webkit5-dev
- qtdeclarative5-dev
- cmake
script: xvfb-run bundle exec rake
env:
global:
- METRICS_API_USERNAME="username"
- METRICS_API_PASSWORD="password"
- METRICS_API_TITLE='ODI Metrics'
- METRICS_API_DESCRIPTION='This API contains a list of all metrics collected by the Open Data Institute since 2013'
- METRICS_API_LICENSE_NAME='Creative Commons Attribution-ShareAlike'
- METRICS_API_LICENSE_URL='https://creativecommons.org/licenses/by-sa/4.0/'
- METRICS_API_PUBLISHER_NAME='Open Data Institute'
- METRICS_API_PUBLISHER_URL='http://theodi.org'
- METRICS_API_CERTIFICATE_URL='https://certificates.theodi.org/en/datasets/213482/certificate' |
Fix link to deploy script | sudo: false
language: java
jdk:
- oraclejdk8
- oraclejdk9
- oraclejdk10
jobs:
include:
- stage: deploy
jdk: oraclejdk8
script:
- "./scripts/travis_deploy.sh"
script: make default
env:
global:
- secure: agxFqlp+zYAqPnNlc43+hYUIuMkruj2yyawD3K+5ObhgXQWHeFbGL2SWrir0sx/ZBEwa8FnSXz80Gox1wEmUKvjzlPiIkyvThmsDvuYbylEWWK7A1qGVk3L/qtRh+dmqsCyebEPzonTChqiObbC5klXBTtM78LiIF5szRi3yt58=
- secure: iYMzxCDCH3o34ioWYDRrGi5ISf7JVEY6M6fLRq25a733wmrOSAMVvaEtByTGoHwt1FQu2ipfRkLGILFh+CdS8/X7habXfl+ustzsj982ROz9i0p49Oswi2mncvV72EoUUKLof3ePMtRN80yv/OwTUBZfdQH0/PzNo/hyOrZw0V4=
before_install:
- openssl aes-256-cbc -K $encrypted_16c1bf8e2cda_key -iv $encrypted_16c1bf8e2cda_iv
-in scripts/codesigning.asc.enc -out scripts/codesigning.asc -d
| sudo: false
language: java
jdk:
- oraclejdk8
- oraclejdk9
- oraclejdk10
jobs:
include:
- stage: deploy
jdk: oraclejdk8
script:
- "./scripts/mvn_deploy.sh"
script: make default
env:
global:
- secure: agxFqlp+zYAqPnNlc43+hYUIuMkruj2yyawD3K+5ObhgXQWHeFbGL2SWrir0sx/ZBEwa8FnSXz80Gox1wEmUKvjzlPiIkyvThmsDvuYbylEWWK7A1qGVk3L/qtRh+dmqsCyebEPzonTChqiObbC5klXBTtM78LiIF5szRi3yt58=
- secure: iYMzxCDCH3o34ioWYDRrGi5ISf7JVEY6M6fLRq25a733wmrOSAMVvaEtByTGoHwt1FQu2ipfRkLGILFh+CdS8/X7habXfl+ustzsj982ROz9i0p49Oswi2mncvV72EoUUKLof3ePMtRN80yv/OwTUBZfdQH0/PzNo/hyOrZw0V4=
before_install:
- openssl aes-256-cbc -K $encrypted_16c1bf8e2cda_key -iv $encrypted_16c1bf8e2cda_iv
-in scripts/codesigning.asc.enc -out scripts/codesigning.asc -d
|
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 ./...
- export GOBIN=~/bin
- export PATH=$GOBIN:$PATH
- go install github.com/rjeczalik/ungocheck/cmd/ungocheck
script:
- go tool vet -all .
- go build ./...
- go test -race -v ./...
- ungocheck -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 github.com/rjeczalik/ungocheck/cmd/ungocheck
script:
- go tool vet -all .
- go build ./...
- go test -race -v ./...
- ungocheck -race -v ./...
|
Use node-gyp and node-pre-gyp versions that phantom wants | language: node_js
node_js:
- "node"
before_install:
- npm -g install node-gyp node-pre-gyp
before_deploy:
- npm run-script predeploy
- LAST_COMMIT=$(git log -1 --pretty=format:'%h <%an> - %s')
- echo "Deploying changes from $LAST_COMMIT"
- node_modules/gh-pages/bin/gh-pages -d dist/ -m "Updates from $LAST_COMMIT"
deploy:
provider: pages
github_token: $GITHUB_TOKEN
skip_cleanup: true
local_dir: dist
on:
branch: master | language: node_js
node_js:
- "node"
before_install:
- npm -g install node-gyp@3.4.0 node-pre-gyp@0.6.32
before_deploy:
- npm run-script predeploy
- LAST_COMMIT=$(git log -1 --pretty=format:'%h <%an> - %s')
- echo "Deploying changes from $LAST_COMMIT"
- node_modules/gh-pages/bin/gh-pages -d dist/ -m "Updates from $LAST_COMMIT"
deploy:
provider: pages
github_token: $GITHUB_TOKEN
skip_cleanup: true
local_dir: dist
on:
branch: master |
Fix Travis CI build for forks | language: go
go:
- 1.2.2
- 1.3
- tip
env:
- GOARCH=amd64
before_install:
- sudo apt-get update -qq > apt-get.out 2>&1 || (cat apt-get.out && exit 1)
- sudo apt-get install bzr mercurial git -qq > apt-get.out 2>&1 || (cat apt-get.out && exit 1)
install:
- export PATH="$HOME/gopath/bin:$PATH"
- make get
script:
- make test
- ./check-fmt.sh
services: mongodb
| language: go
go:
- 1.2.2
- 1.3
- tip
env:
- GOARCH=amd64
before_install:
- sudo apt-get update -qq > apt-get.out 2>&1 || (cat apt-get.out && exit 1)
- sudo apt-get install bzr mercurial git -qq > apt-get.out 2>&1 || (cat apt-get.out && exit 1)
install:
- export PATH="$HOME/gopath/bin:$PATH"
- make get
before_script:
- if [ "$TRAVIS_REPO_SLUG" != "tsuru/gandalf" ]; then cd ..; mv gandalf ../tsuru; cd ../tsuru/gandalf; fi
script:
- make test
- ./check-fmt.sh
services: mongodb
|
Update Travis to use containers | language: ruby
rvm:
- 2.1
script: bundle exec rake
before_install:
- gem update --system
services:
- redis-server
| language: ruby
rvm:
- 2.1
services:
- redis-server
sudo: false
cache: bundler
|
Update CI build system credentials | language: java
sudo: false
notifications:
hipchat:
rooms:
secure: OlIO4DA0xfqdHqS2ytSfDucjIoncHBgLDFjDi1u+qsLOPBeYpYuNJOZkW531yKPFS/na8BjS5WzjrdZW1Wa2I41X2KdNEqOBPxCNsDlvRzEsMUXGCekTEkIaVKgyD8LsAqku+I0CFRsYCQCxRz6yufEenDf7VwdhbM/345mopkI=
deploy:
provider: releases
api_key:
secure: aoVXZyLOBmB4Q2lLKLaqEN8zcqN3K3/3agRBA1znM1PLeqXSE3CwQe6sHkX6BrfMoDDtjqeepDMgJ9TsqJFq+lPY+HuVFzOqGlrWlIZHBUKI3hmfjgM/61CkdK2eBO42Ym4tqCQ4L1Tp42fcrB6M/a/0TGI5ENW2bJk8+ofRT8M=
file_glob: true
file: build/libs/*
skip_cleanup: true
on:
all_branches: true
tags: true
repo: xebialabs-community/xlr-xldeploy-plugin
| language: java
sudo: false
notifications:
hipchat:
rooms:
secure: OlIO4DA0xfqdHqS2ytSfDucjIoncHBgLDFjDi1u+qsLOPBeYpYuNJOZkW531yKPFS/na8BjS5WzjrdZW1Wa2I41X2KdNEqOBPxCNsDlvRzEsMUXGCekTEkIaVKgyD8LsAqku+I0CFRsYCQCxRz6yufEenDf7VwdhbM/345mopkI=
deploy:
provider: releases
api_key:
secure: dOR1qtgrZag95Ah3wbTgs1KZmBKb6RZx/qmnqbqB5gVsMLfssaVX3wYjoyKdi/WA6gHEZUnh6vWlF9O0xNJHukW5EACkWauYDNXTLv+6ZggkQrrvf27a2UfF9p2GDbptFXgYTsKsD/zYccXxRxP1C+ciEsr0tZ6dMnRfUs03ACM=
file_glob: true
file: build/libs/*
skip_cleanup: true
on:
all_branches: true
tags: true
repo: xebialabs-community/xlr-xldeploy-plugin
|
Bump Go version to 1.8.0. | language: go
go:
- 1.6.2
sudo: false
install:
- go get -d -v ./...
- go get github.com/mattn/goveralls
script:
- GOOS=darwin go build
- GOOS=windows go build
- GOOS=linux go build
- $HOME/gopath/bin/goveralls -service=travis-ci | language: go
go:
- 1.8
sudo: false
install:
- go get -d -v ./...
- go get github.com/mattn/goveralls
script:
- GOOS=darwin go build
- GOOS=windows go build
- GOOS=linux go build
- $HOME/gopath/bin/goveralls -service=travis-ci |
Fix NPM script execution of integration testing via Travis | language: node_js
node_js:
- "5.1"
sudo: required
services:
- docker
script:
- npm test
- npm test:integration
| language: node_js
node_js:
- "5.1"
sudo: required
services:
- docker
script:
- npm test
- npm run test:integration
|
Remove service arg for goveralls | language: go
go:
- 1.2.2
- 1.3.3
- 1.4.2
- 1.5.1
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
install:
- go get github.com/stretchr/testify/assert
- go get github.com/edsrzf/mmap-go
script:
- $HOME/gopath/bin/goveralls -service=travis-ci -repotoken $COVERALLS_TOKEN
| language: go
go:
- 1.2.2
- 1.3.3
- 1.4.2
- 1.5.1
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
install:
- go get github.com/stretchr/testify/assert
- go get github.com/edsrzf/mmap-go
script:
- $HOME/gopath/bin/goveralls -repotoken $COVERALLS_TOKEN
|
Update Ruby version used on Travis | ---
language: ruby
rvm:
- 2.0.0
script:
- bundle exec rspec --no-drb --format progress | ---
language: ruby
rvm:
- 2.1.2
script:
- bundle exec rspec --no-drb --format progress |
Disable compress_html for development environment | # Site settings
language: ""
title: "Site Title"
description: "Site description"
google-verification: ""
# Handling Reading
include:
- ".htaccess"
- "_pages"
exclude:
- "/assets/"
- "bower.json"
- "composer.json"
- "composer.lock"
- "DOC.md"
- "Gemfile"
- "Gemfile.lock"
- "/gulp/"
- "gulpfile.js"
- "LICENSE.md"
- "Makefile"
- "node_modules"
- "npm-debug.log"
- "package.json"
- "README.md"
- "rev-manifest.json"
# Plugins
gems: ["jekyll-sitemap", "jekyll-paginate"]
# Conversion
incremental: true
# Serving
# url: ""
# baseurl: "" # does not include hostname
# Outputting
permalink: "/blog/:year/:title/"
paginate_path: "/blog/page:num"
paginate: 5
| # Site settings
language: ""
title: "Site Title"
description: "Site description"
google-verification: ""
# Handling Reading
include:
- ".htaccess"
- "_pages"
exclude:
- "/assets/"
- "bower.json"
- "composer.json"
- "composer.lock"
- "DOC.md"
- "Gemfile"
- "Gemfile.lock"
- "/gulp/"
- "gulpfile.js"
- "LICENSE.md"
- "Makefile"
- "node_modules"
- "npm-debug.log"
- "package.json"
- "README.md"
- "rev-manifest.json"
# Plugins
gems: ["jekyll-sitemap", "jekyll-paginate"]
# Conversion
incremental: true
# Serving
# url: ""
# baseurl: "" # does not include hostname
# Outputting
permalink: "/blog/:year/:title/"
paginate_path: "/blog/page:num"
paginate: 5
compress_html:
ignore:
envs: [development]
|
Correct url. (http > https) | language: "en-us"
name: "Euro Team Outreach"
url: "http://euroteamoutreach.org"
human_url: "euroteamoutreach.org"
title: "Euro Team Outreach - Missionaries serving Christ in Ukraine"
description: >
Euro Team Outreach is a Christian organization dedicated to the
advancement of the Gospel of Jesus Christ. We believe that God has called all
Christians to proclaim the Gospel to the world, and as missionaries, we strive
to obey that call by introducing people to Jesus through the pages of
Scripture.
author: "Euro Team Outreach, Inc."
contact_email: "info@euroteamoutreach.org"
steele_email: "josh@euroteamoutreach.org"
beal_email: "jbeal4ua@gmail.com"
denise_email: "hutchisondenise@gmail.com"
zhylavy_email: "anatoli@euroteamoutreach.org"
content_server_url: "https://d21yo20tm8bmc2.cloudfront.net"
mailchimp_url: "//euroteamoutreach.us6.list-manage.com/subscribe/post?u=672df31cd6d0e7132c9c4c7d1&id=d107e57061"
facebook_og_image_url: "https://d2otinza4e5x22.cloudfront.net/euroteamoutreach-fb.png"
| language: "en-us"
name: "Euro Team Outreach"
url: "https://euroteamoutreach.org"
human_url: "euroteamoutreach.org"
title: "Euro Team Outreach - Missionaries serving Christ in Ukraine"
description: >
Euro Team Outreach is a Christian organization dedicated to the
advancement of the Gospel of Jesus Christ. We believe that God has called all
Christians to proclaim the Gospel to the world, and as missionaries, we strive
to obey that call by introducing people to Jesus through the pages of
Scripture.
author: "Euro Team Outreach, Inc."
contact_email: "info@euroteamoutreach.org"
steele_email: "josh@euroteamoutreach.org"
beal_email: "jbeal4ua@gmail.com"
denise_email: "hutchisondenise@gmail.com"
zhylavy_email: "anatoli@euroteamoutreach.org"
content_server_url: "https://d21yo20tm8bmc2.cloudfront.net"
mailchimp_url: "//euroteamoutreach.us6.list-manage.com/subscribe/post?u=672df31cd6d0e7132c9c4c7d1&id=d107e57061"
facebook_og_image_url: "https://d2otinza4e5x22.cloudfront.net/euroteamoutreach-fb.png"
|
Add gnu-wget as runtime dependency | about:
home: http://ccb.jhu.edu/software/stringtie/
license: Artistic License 2.0
summary: Transcriptome assembly and quantification for RNA-seq
build:
number: 1
package:
name: stringtie
version: 1.3.3
requirements:
build:
- gcc # [linux]
- llvm # [osx]
- zlib
run:
- libgcc # [linux]
- zlib
- python
source:
fn: stringtie-1.3.3.tar.gz
sha256: c01b16a681dc55f114dbfc2fcd725f615b2d9a79058ff8c110047cfa9cbe2976
url: http://ccb.jhu.edu/software/stringtie/dl/stringtie-1.3.3.tar.gz
test:
commands:
- "stringtie 2>&1 | grep Assemble"
- prepDE.py --help
| about:
home: http://ccb.jhu.edu/software/stringtie/
license: Artistic License 2.0
summary: Transcriptome assembly and quantification for RNA-seq
build:
number: 1
package:
name: stringtie
version: 1.3.3
requirements:
build:
- gcc # [linux]
- llvm # [osx]
- zlib
- gnu-wget
run:
- libgcc # [linux]
- zlib
- python
source:
fn: stringtie-1.3.3.tar.gz
sha256: c01b16a681dc55f114dbfc2fcd725f615b2d9a79058ff8c110047cfa9cbe2976
url: http://ccb.jhu.edu/software/stringtie/dl/stringtie-1.3.3.tar.gz
test:
commands:
- "stringtie 2>&1 | grep Assemble"
- prepDE.py --help
|
Add /usr/local/bin to path as openshift binaries are installed there now | ---
- name: Setup installation pre-requisites
include: prereqs.yml
- name: Run main OpenShift Ansible installation playbook
include: install.yml
- name: Post installation bespoking
include: postinstall.yml
| ---
- block:
- name: Setup installation pre-requisites
include: prereqs.yml
- name: Run main OpenShift Ansible installation playbook
include: install.yml
- name: Post installation bespoking
include: postinstall.yml
environment:
PATH: "{{ ansible_env.PATH }}:/usr/local/bin/"
|
Revert "Updating release command so that central profile is added last" | releaser.maven.build-command: ./scripts/integration-tests.sh
releaser.maven.deploy-command: ./mvnw dockerfile:push -pl :spring-cloud-kubernetes-configuration-watcher -Pdockerpush && ./mvnw deploy -DskipTests -B -Pfast,deploy {{systemProps}}
| releaser.maven.build-command: ./scripts/integration-tests.sh
releaser.maven.deploy-command: ./mvnw deploy -DskipTests -B -Pfast,deploy {{systemProps}} && ./mvnw dockerfile:push -pl :spring-cloud-kubernetes-configuration-watcher -Pdockerpush
|
Fix 404 for github url | defaults: &defaults
# Strano's public SSH key with which it will attempt to clone Github repos via.
public_ssh_key: MYPUBLICKEY
# Strano's Github application client ID. See https://github.com/account/applications
github_key: github-application-client-id
# Strano's Github application secret. See https://github.com/account/applications
github_secret: github-application-secret
# The path to where Strano will clone your project's repos.
#
# clone_path: vendor/repos
# Allow project creation from repos for Github organization accounts.
# Default value is true, which allows any and all organizations. Set to
# false to disallow creating projects from organizations completely.
# Pass an array of Github organization usernames to restrict which
# projects Strano can create new projects for.
#
# allow_organizations: true
#
# To restrict project creation from repos belonging to the 'rails' and
# 'carlhuda' organizations:
#
# allow_organizations: rails, carlhuda
# Allow project creation from repos for Github user accounts. Default
# value is true, which allows any and all users. Set to false to disallow
# creating projects from users completely. Pass an array of Github
# usernames to restrict which projects Strano can create new projects for.
#
# allow_users: true
#
# To only allow project creation from your own repos:
#
# allow_users: my_github_username
development:
<<: *defaults
production:
<<: *defaults
| defaults: &defaults
# Strano's public SSH key with which it will attempt to clone Github repos via.
public_ssh_key: MYPUBLICKEY
# Strano's Github application client ID. See https://github.com/settings/applications
github_key: github-application-client-id
# Strano's Github application secret. See https://github.com/settings/applications
github_secret: github-application-secret
# The path to where Strano will clone your project's repos.
#
# clone_path: vendor/repos
# Allow project creation from repos for Github organization accounts.
# Default value is true, which allows any and all organizations. Set to
# false to disallow creating projects from organizations completely.
# Pass an array of Github organization usernames to restrict which
# projects Strano can create new projects for.
#
# allow_organizations: true
#
# To restrict project creation from repos belonging to the 'rails' and
# 'carlhuda' organizations:
#
# allow_organizations: rails, carlhuda
# Allow project creation from repos for Github user accounts. Default
# value is true, which allows any and all users. Set to false to disallow
# creating projects from users completely. Pass an array of Github
# usernames to restrict which projects Strano can create new projects for.
#
# allow_users: true
#
# To only allow project creation from your own repos:
#
# allow_users: my_github_username
development:
<<: *defaults
production:
<<: *defaults
|
Change dependencies to see if docker will build | package:
name: perses-dev
version: !!str 0.0.0
source:
path: ../../
build:
preserve_egg_dir: True
number: 0
requirements:
build:
- python
- setuptools
- numpy
- scipy
- numexpr
- autograd
- pymbar
- cuda92
- openmm >=7.3.0
- parmed
- openmoltools
- alchemy >=1.2.3
- openmmtools
- numba
- netcdf4
- matplotlib
- seaborn
- mdtraj
- parmed # for testing/debugging
#- pdbfixer
- lxml
- networkx >=2.0
- yank
run:
- python
- setuptools
- numpy
- scipy
- numexpr
- autograd
- pymbar
- cuda92
- openmm >=7.3.0
- parmed
- openmoltools
- alchemy >=1.2.3
- openmmtools
- numba
- netcdf4
- matplotlib
- seaborn
- mdtraj
- parmed # for testing/debugging
#- pdbfixer
- lxml
- networkx >=2.0
- openeye-toolkits
- dask
- distributed
- progressbar2
- yank
test:
requires:
- nose
- nose-timer
imports:
- perses
about:
home: https://github.com/choderalab/perses
license: GNU Lesser General Public License v2 or later (LGPLv2+)
| package:
name: perses-dev
version: !!str 0.0.0
source:
path: ../../
build:
preserve_egg_dir: True
number: 0
requirements:
build:
- python
- setuptools
- numpy
- scipy
- numexpr
- autograd
- pymbar
- cuda92
- openmm >=7.3.0
- parmed
- openmoltools
- openmmtools
- numba
- netcdf4
- matplotlib
- seaborn
- mdtraj
- parmed # for testing/debugging
#- pdbfixer
- lxml
- networkx >=2.0
run:
- python
- setuptools
- numpy
- scipy
- numexpr
- autograd
- pymbar
- cuda92
- openmm >=7.3.0
- parmed
- openmoltools
- openmmtools
- numba
- netcdf4
- matplotlib
- seaborn
- mdtraj
- parmed # for testing/debugging
#- pdbfixer
- lxml
- networkx >=2.0
- openeye-toolkits
- dask
- distributed
- progressbar2
test:
requires:
- nose
- nose-timer
imports:
- perses
about:
home: https://github.com/choderalab/perses
license: GNU Lesser General Public License v2 or later (LGPLv2+)
|
Use venv on py3 and preinstalled virtualenv on py2 | version: 2
workflows:
version: 2
test:
jobs:
- test-3.6
- test-3.5
- test-2.7
jobs:
test-3.6: &test-template
docker:
- image: circleci/python:3.6
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "setup.py" }}
- v1-dependencies-
- run:
name: Install dependencies
command: |
pip install --user virtualenv
$HOME/.local/bin/virtualenv venv
. venv/bin/activate
pip install -e .[dev]
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "setup.py" }}
- run:
name: Run tests
command: |
. venv/bin/activate
pytest
test-3.5:
<<: *test-template
docker:
- image: circleci/python:3.5
test-2.7:
<<: *test-template
docker:
- image: circleci/python:2.7
| version: 2
workflows:
version: 2
test:
jobs:
- test-3.6
- test-3.5
- test-2.7
jobs:
test-3.6: &test-template
docker:
- image: circleci/python:3.6
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "setup.py" }}
- v1-dependencies-
- run:
name: Install dependencies
command: |
python -m venv venv || virtualenv venv
. venv/bin/activate
pip install -e .[dev]
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "setup.py" }}
- run:
name: Run tests
command: |
. venv/bin/activate
pytest
test-3.5:
<<: *test-template
docker:
- image: circleci/python:3.5
test-2.7:
<<: *test-template
docker:
- image: circleci/python:2.7
|
Update path and predo command | version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:8.9.1
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/mongo:3.4.4
working_directory: ~/repo/react-front
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
# run tests!
- run: npm test
| version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:8.9.1
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/mongo:3.4.4
working_directory: ~/repo
steps:
- checkout
- run: cd react-front
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
# run tests!
- run: npm test
|
Update from Hackage at 2016-10-21T13:39:11Z | homepage: http://github.com/lyokha/nginx-haskell-module
changelog-type: ''
hash: bf0555c18a20a35d43c8fa0545beea0735dbdaf3cdbc8c64ee4c1b7a1c49ee5d
test-bench-deps: {}
maintainer: Alexey Radkov <alexey.radkov@gmail.com>
synopsis: Helper module for Nginx haskell module
changelog: ''
basic-deps:
bytestring: ! '>=0.10.0.0'
unix: -any
base: ! '>=4.7 && <5'
async: ! '>=2.0'
template-haskell: -any
all-versions:
- '0.1.0.0'
- '0.1.1.0'
- '0.2.0.0'
- '0.2.1.0'
author: Alexey Radkov <alexey.radkov@gmail.com>
latest: '0.2.1.0'
description-type: haddock
description: ! 'Helper module for
<http://github.com/lyokha/nginx-haskell-module Nginx haskell module>'
license-name: BSD3
| homepage: http://github.com/lyokha/nginx-haskell-module
changelog-type: ''
hash: 8c60702c006ac7c868c46c932373c7390d1f83d6083e516db39ccb68dcee6390
test-bench-deps: {}
maintainer: Alexey Radkov <alexey.radkov@gmail.com>
synopsis: Helper module for Nginx haskell module
changelog: ''
basic-deps:
bytestring: ! '>=0.10.0.0'
unix: -any
base: ! '>=4.7 && <5'
async: ! '>=2.0'
template-haskell: -any
all-versions:
- '0.1.0.0'
- '0.1.1.0'
- '0.2.0.0'
- '0.2.1.0'
- '0.2.2.0'
author: Alexey Radkov <alexey.radkov@gmail.com>
latest: '0.2.2.0'
description-type: haddock
description: ! 'Helper module for
<http://github.com/lyokha/nginx-haskell-module Nginx haskell module>'
license-name: BSD3
|
Apply suggested fix to Codecov | codecov:
max_report_age: off
notify:
require_ci_to_pass: no
coverage:
precision: 2
round: down
range: "30...100"
status:
project: yes
patch: yes
changes: no
notify:
gitter:
default:
url: https://webhooks.gitter.im/e/c70e4d2749931f601747
threshold: 1%
parsers:
gcov:
branch_detection:
conditional: yes
loop: yes
method: no
macro: no
comment:
layout: "reach, diff, flags, files, footer"
behavior: default
require_changes: no
ignore:
- "src/date/**/*"
- "src/docopt/**/*"
- "test/**/*"
| codecov:
max_report_age: off
notify:
require_ci_to_pass: no
coverage:
precision: 2
round: down
range: "30...100"
status:
project: yes
patch: yes
changes: no
notify:
gitter:
default:
url: https://webhooks.gitter.im/e/c70e4d2749931f601747
threshold: 1%
parsers:
gcov:
branch_detection:
conditional: yes
loop: yes
method: no
macro: no
comment:
layout: "reach, diff, flags, files, footer"
behavior: default
require_changes: no
ignore:
- "src/date/"
- "src/docopt/"
- "test/"
|
Update from Hackage at 2020-11-25T13:55:39Z | homepage: https://github.com/plow-technologies/hspec-hashable#readme
changelog-type: ''
hash: 0c68effe2b2c3c141fd8f130682673d0649e91ad9d289496f5573c0132d26395
test-bench-deps:
base: -any
hspec: -any
hspec-hashable: -any
hspec-core: -any
silently: -any
hashable: -any
QuickCheck: -any
maintainer: mchaver@gmail.com
synopsis: Initial project template from stack
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
hspec: -any
hashable: -any
QuickCheck: -any
all-versions:
- 0.1.0.0
author: James M.C. Haver II
latest: 0.1.0.0
description-type: haddock
description: Please see README.md
license-name: BSD-3-Clause
| homepage: https://github.com/plow-technologies/hspec-hashable#readme
changelog-type: ''
hash: c09d56ed3dccc805df80667653c101932f138b3df1d6b0aca2cbfd04a339dbbe
test-bench-deps:
base: -any
hspec: -any
hspec-hashable: -any
hspec-core: -any
silently: -any
hashable: -any
QuickCheck: -any
maintainer: mchaver@gmail.com
synopsis: Initial project template from stack
changelog: ''
basic-deps:
base: '>=4.7 && <5'
hspec: -any
hashable: -any
QuickCheck: -any
all-versions:
- 0.1.0.0
- 0.1.0.1
author: James M.C. Haver II
latest: 0.1.0.1
description-type: haddock
description: Please see README.md
license-name: BSD-3-Clause
|
Use Alpine base box for deployment. | dev:
# The container definition we want to use for developing our app
box: golang:1.7.3
steps:
- internal/watch:
code: |
CGO_ENABLED=0 go build -o cloud-native-go
./cloud-native-go
reload: true
build:
# The container definition we want to use for building our app
box: golang:1.7.3
steps:
- wercker/golint
- script:
name: go build
code: |
CGO_ENABLED=0 go build -o cloud-native-go
- script:
name: copy binary
code: cp cloud-native-go "$WERCKER_OUTPUT_DIR"
deploy:
# The container definition we want to use to run our app
box: golang:1.7.3-wheezy
steps:
- internal/docker-push:
author: "M.-Leander Reimer <mario-leander.reimer@qaware.de>"
username: $USERNAME
password: $PASSWORD
repository: lreimer/cloud-native-go
registry: https://registry.hub.docker.com
entrypoint: /pipeline/source/cloud-native-go
ports: "8080" | dev:
# The container definition we want to use for developing our app
box: golang:1.7.3
steps:
- internal/watch:
code: |
CGO_ENABLED=0 go build -o cloud-native-go
./cloud-native-go
reload: true
build:
# The container definition we want to use for building our app
box: golang:1.7.3
steps:
- wercker/golint
- script:
name: go build
code: |
CGO_ENABLED=0 go build -o cloud-native-go
- script:
name: copy binary
code: cp cloud-native-go "$WERCKER_OUTPUT_DIR"
deploy:
# The container definition we want to use to run our app
box: alpine:3.4
steps:
- internal/docker-push:
author: "M.-Leander Reimer <mario-leander.reimer@qaware.de>"
username: $USERNAME
password: $PASSWORD
repository: lreimer/cloud-native-go
registry: https://registry.hub.docker.com
entrypoint: /pipeline/source/cloud-native-go
ports: "8080" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.