Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Add support for node v0.12 and v4.2
language: node_js node_js: - 0.10 before_script: - npm install -g grunt-cli
language: node_js node_js: - 0.10 - 0.12 - 4.2 before_script: - npm install -g grunt-cli
Drop node.js 6 support, add 12 (semver-major)
language: node_js node_js: - '6' - '8' - '10' script: 'npm run ci' after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
language: node_js node_js: - '8' - '10' - '12' script: 'npm run ci' after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
Add Go 1.14 to Travis
language: go sudo: false go: - 1.12.x env: - GO111MODULE=on before_install: - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.24.0 - go get golang.org/x/tools/cmd/cover - go get github.com/mattn/goveralls script: - go get -v . - go test -coverprofile profile.cov - ${GOPATH}/bin/golangci-lint run . - ( cd _examples && go get -v . ) - ( cd _examples && go test ) - ${GOPATH}/bin/goveralls -coverprofile profile.cov -service=travis-ci
language: go sudo: false go: - 1.12.x - 1.14.x env: - GO111MODULE=on before_install: - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.24.0 - go get golang.org/x/tools/cmd/cover - go get github.com/mattn/goveralls script: - go get -v . - go test -coverprofile profile.cov - ${GOPATH}/bin/golangci-lint run . - ( cd _examples && go get -v . ) - ( cd _examples && go test ) - ${GOPATH}/bin/goveralls -coverprofile profile.cov -service=travis-ci
Build against JRuby (1.9 mode)
language: ruby rvm: - 1.9.3 - 2.0.0 matrix: exclude: - rvm: 1.9.3 gemfile: gemfiles/2.0.gemfile env: QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake - rvm: 2.0.0 gemfile: gemfiles/2.0.gemfile env: QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake notifications: email: false script: xvfb-run rake env: - QMAKE=/usr/bin/qmake - QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake gemfile: - gemfiles/2.0.gemfile - gemfiles/2.1.gemfile before_install: - sudo apt-add-repository -y ppa:canonical-qt5-edgers/qt5-proper - sudo apt-get update - sudo apt-get install libqt5webkit5-dev qtdeclarative5-dev qtlocation5-dev qtsensors5-dev libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev qt4-default install: bundle
language: ruby rvm: - 1.9.3 - 2.0.0 - jruby-19mode matrix: exclude: - rvm: 1.9.3 gemfile: gemfiles/2.0.gemfile env: QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake - rvm: 2.0.0 gemfile: gemfiles/2.0.gemfile env: QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake - rvm: jruby-19mode gemfile: gemfiles/2.0.gemfile env: QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake notifications: email: false script: xvfb-run rake env: - QMAKE=/usr/bin/qmake - QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake gemfile: - gemfiles/2.0.gemfile - gemfiles/2.1.gemfile before_install: - sudo apt-add-repository -y ppa:canonical-qt5-edgers/qt5-proper - sudo apt-get update - sudo apt-get install libqt5webkit5-dev qtdeclarative5-dev qtlocation5-dev qtsensors5-dev libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev qt4-default install: bundle
Enable Travis with Java 7.
language: java jdk: - openjdk6 install: mvn validate script: mvn install -B -V
language: java jdk: - oraclejdk7 - openjdk6 install: mvn validate script: mvn install -B -V
Revert "Update Travis-CI Heroku build."
env: global: - secure: Z16lZ6OuQy9WCEOahcBXjZzqL/Ub7B1OC8u0i3EgwSGqn7m1mPeMBQNMRmStxt5Ow5UChXGUZeQAr6MvsbH7TAt59aVF+mFJ4XR1eKZktUFDQ/iqiEns1G5nHOMoC5ozP0PhmwvqGcuMgpYIe8oJ7u0PawKZTYF2f4mO9uib3Jk= language: clojure addons: postgresql: "9.3" before_script: - psql -c 'create database webdev_test;' -U postgres after_success: - wget -qO- https://toolbelt.heroku.com/install-ubuntu.sh | sh - git remote add heroku git@heroku.com:cljspike.git - echo "Host heroku.com" >> ~/.ssh/config - echo " StrictHostKeyChecking no" >> ~/.ssh/config - echo " CheckHostIP no" >> ~/.ssh/config - echo " UserKnownHostsFile=/dev/null" >> ~/.ssh/config - yes | heroku keys:add - heroku maintenance:on - yes | git push heroku master - heroku maintenance:off
language: clojure addons: postgresql: "9.3" before_script: - psql -c 'create database webdev_test;' -U postgres deploy: provider: heroku api_key: secure: Z16lZ6OuQy9WCEOahcBXjZzqL/Ub7B1OC8u0i3EgwSGqn7m1mPeMBQNMRmStxt5Ow5UChXGUZeQAr6MvsbH7TAt59aVF+mFJ4XR1eKZktUFDQ/iqiEns1G5nHOMoC5ozP0PhmwvqGcuMgpYIe8oJ7u0PawKZTYF2f4mO9uib3Jk= app: cljspike on: repo: bnadlerjr/cljspike
Fix Travis by adding "mohawk" to config
language: python python: - 2.7 - 3.3 install: - pip install 'Flask>=0.10' --use-mirrors - python setup.py install script: nosetests tests notifications: email: recipients: - marselester@ya.ru on_success: change on_failure: change
language: python python: - 2.7 - 3.3 install: - pip install 'Flask>=0.10' mohawk --use-mirrors - python setup.py install script: nosetests tests notifications: email: recipients: - marselester@ya.ru on_success: change on_failure: change
Test jruby-head (and allow failures)
language: ruby services: - rabbitmq env: - JRUBY_OPTS="--dev -Xcext.enabled=false -Xcompile.invokedynamic=false" rvm: jruby-1.7.16 bundler_args: --deployment --binstubs --jobs=3 --retry=3 cache: bundler jdk: - openjdk7 - openjdk6 - oraclejdk7 sudo: false before_script: cp config/worker.example.yml config/worker.yml script: bin/rspec spec
language: ruby services: - rabbitmq env: - JRUBY_OPTS="--dev -Xcext.enabled=false -Xcompile.invokedynamic=false" rvm: - jruby-1.7.16 - jruby-head bundler_args: --deployment --binstubs --jobs=3 --retry=3 cache: bundler jdk: - openjdk7 - openjdk6 - oraclejdk7 sudo: false before_script: cp config/worker.example.yml config/worker.yml script: bin/rspec spec matrix: allow_failures: - rvm: jruby-head
Modify run command for Travis
language: python python: - "2.7" - "3.6" script: pytest
language: python python: - "2.7" - "3.6" script: "python -m pytest -v"
Test the package on node.js v0.11.0 (development version).
language: node_js node_js: - '0.8' - '0.10' before_script: - npm install -g grunt-cli
language: node_js node_js: - '0.8' - '0.10' - '0.11' before_script: - npm install -g grunt-cli matrix: allow_failures: - node_js: '0.11'
Use a more up-to-date bundler for the Travis build
language: ruby rvm: - 2.1.10 - 2.2.6 - 2.3.3 - 2.4.0 notifications: irc: "irc.freenode.org#juwelier"
language: ruby before_install: - gem install bundler # need more up-to-date bundler to match Gemfile's rvm: - 2.1.10 - 2.2.6 - 2.3.3 - 2.4.0 notifications: irc: "irc.freenode.org#juwelier"
Make unique directory for toolchain download.
sudo: required dist: trusty language: c compiler: gcc before_install: - sudo apt-get -qq update - sudo apt-get install -y qemu-system-mips ctags cscope wget - mkdir toolchain - cd toolchain - wget -c http://codescape-mips-sdk.imgtec.com/components/toolchain/2016.05-03/Codescape.GNU.Tools.Package.2016.05-03.for.MIPS.MTI.Bare.Metal.CentOS-5.x86_64.tar.gz - tar -xf Codescape.GNU.Tools.Package.2016.05-03.for.MIPS.MTI.Bare.Metal.CentOS-5.x86_64.tar.gz - export PATH=$PATH:$(pwd)/mips-mti-elf/2016.05-03/bin - cd .. script: make
sudo: required dist: trusty language: c compiler: gcc before_install: - sudo apt-get -qq update - sudo apt-get install -y qemu-system-mips ctags cscope wget - TOOLCHAIN=`mktemp -d toolchain.XXXXXX` - cd ${TOOLCHAIN} - wget -c http://codescape-mips-sdk.imgtec.com/components/toolchain/2016.05-03/Codescape.GNU.Tools.Package.2016.05-03.for.MIPS.MTI.Bare.Metal.CentOS-5.x86_64.tar.gz - tar -xf Codescape.GNU.Tools.Package.2016.05-03.for.MIPS.MTI.Bare.Metal.CentOS-5.x86_64.tar.gz - export PATH=$PATH:$(pwd)/mips-mti-elf/2016.05-03/bin - cd .. script: make
Remove unmaintained ruby versions. Add 2.7
language: ruby sudo: false cache: bundler rvm: - 2.3.8 - 2.4.5 - 2.5.5 - 2.6.3 gemfile: - Gemfile - gemfiles/activesupport-5.0.gemfile - gemfiles/activesupport-5.1.gemfile - gemfiles/activesupport-6.0.gemfile before_script: - gem update --system matrix: exclude: - gemfile: gemfiles/activesupport-6.0.gemfile rvm: 2.3.8 - gemfile: gemfiles/activesupport-6.0.gemfile rvm: 2.4.5
language: ruby sudo: false cache: bundler rvm: - 2.4.9 - 2.5.7 - 2.6.5 - 2.7.0 gemfile: - Gemfile - gemfiles/activesupport-5.0.gemfile - gemfiles/activesupport-5.1.gemfile - gemfiles/activesupport-6.0.gemfile before_script: - gem update --system matrix: exclude: - gemfile: gemfiles/activesupport-6.0.gemfile rvm: 2.4.9
Revert "Remove environment variable which was set to test the change."
language: python python: 2.7 sudo: false os: - linux env: global: - "PIP_DOWNLOAD_CACHE=$HOME/.pip-cache" matrix: - "TASK=flake8" - "TASK=pylint" - "TASK=configs-check" - "TASK=metadata-check" - "TASK=packs-resource-register" - "TASK=packs-tests" - "TASK=packs-missing-tests-check" services: # Note: MongoDB and RabbitMQ is needed for packs-resource-register check - mongodb - rabbitmq addons: apt: packages: - git # needed by git-changes scripts - libsox-dev # needed by witai pack - freetds-dev # needed by mssql package cache: apt: true directories: - $HOME/.pip-cache/ install: - pip install --upgrade pip script: - ./scripts/travis.sh notifications: email: - eng@stackstorm.com
language: python python: 2.7 sudo: false os: - linux env: global: - "PIP_DOWNLOAD_CACHE=$HOME/.pip-cache" - "FORCE_CHECK_ALL_FILES=true" matrix: - "TASK=flake8" - "TASK=pylint" - "TASK=configs-check" - "TASK=metadata-check" - "TASK=packs-resource-register" - "TASK=packs-tests" - "TASK=packs-missing-tests-check" services: # Note: MongoDB and RabbitMQ is needed for packs-resource-register check - mongodb - rabbitmq addons: apt: packages: - git # needed by git-changes scripts - libsox-dev # needed by witai pack - freetds-dev # needed by mssql package cache: apt: true directories: - $HOME/.pip-cache/ install: - pip install --upgrade pip script: - ./scripts/travis.sh notifications: email: - eng@stackstorm.com
Revert "PySam installation from Ubuntu packages" - does not work in Travis version of Ubuntu
language: python os: - linux - osx python: - "3.2" - "3.3" - "3.4" cache: apt: true before_install: - sudo apt-get update -qq - sudo apt-get install -qq install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update - sudo apt-get install g++-4.8 - 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 zlib1g-dev libbz2-dev libboost-dev - sudo apt-get install git-svn - sudo apt-get install python-pysam - pip install . - pip install -r requirements.txt script: "./tests.sh"
language: python os: - linux - osx python: - "3.2" - "3.3" - "3.4" cache: apt: true before_install: - sudo apt-get update -qq - sudo apt-get install -qq install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update - sudo apt-get install g++-4.8 - 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 zlib1g-dev libbz2-dev libboost-dev - sudo apt-get install git-svn - pip install . - pip install -r requirements.txt script: "./tests.sh"
Revert "Add jruby-head to the CI matrix"
script: "bundle exec rspec spec && bundle exec cucumber" rvm: - jruby-18mode - jruby-19mode - jruby-head
script: "bundle exec rspec spec && bundle exec cucumber" rvm: - jruby-18mode - jruby-19mode
Add ruby 2.1 to the sass build matrix.
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - jruby-18mode - jruby-19mode - rbx - ree gemfile: Gemfile env: - MATHN=true RUBOCOP=false - MATHN=false RUBOCOP=false branches: only: - master - stable notifications: irc: {channels: "irc.freenode.org#sass"} matrix: allow_failures: - rvm: rbx - rvm: jruby-18mode - rvm: jruby-19mode include: - rvm: 2.0.0 env: MATHN=true RUBOCOP=true - rvm: 1.9.3 env: MATHN=true RUBOCOP=true
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - jruby-18mode - jruby-19mode - rbx - ree gemfile: Gemfile env: - MATHN=true RUBOCOP=false - MATHN=false RUBOCOP=false branches: only: - master - stable notifications: irc: {channels: "irc.freenode.org#sass"} matrix: allow_failures: - rvm: rbx - rvm: jruby-18mode - rvm: jruby-19mode include: - rvm: 2.0.0 env: MATHN=true RUBOCOP=true - rvm: 1.9.3 env: MATHN=true RUBOCOP=true
Use latest Travis image and OpenJDK 11
cache: directories: - $HOME/.m2 language: java jdk: oraclejdk8 email: - ben.alex@acegi.com.au install: - mvn -B -Pdeploy --settings .travis-settings.xml -V dependency:go-offline script: - mvn -B -Pdeploy --settings .travis-settings.xml -Dgpg.skip=true verify after_success: - if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" == "" ]; then echo $GPG_KEY | base64 --decode | gpg --batch --fast-import -; fi - if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" == "" ]; then mvn -B -Pdeploy --settings .travis-settings.xml deploy; fi
dist: xenial cache: directories: - $HOME/.m2 language: java jdk: openjdk11 email: - ben.alex@acegi.com.au install: - mvn -B -Pdeploy --settings .travis-settings.xml -V dependency:go-offline script: - mvn -B -Pdeploy --settings .travis-settings.xml -Dgpg.skip=true verify after_success: - if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" == "" ]; then echo $GPG_KEY | base64 --decode | gpg --batch --fast-import -; fi - if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_TAG" == "" ]; then mvn -B -Pdeploy --settings .travis-settings.xml deploy; fi
Fix more npm errors on lower versions of Node
language: node_js node_js: - "0.11" - "0.10" - "0.8" - "0.6" before_install: npm install -g grunt-cli
language: node_js node_js: - "0.11" - "0.10" - "0.8" - "0.6" before_install: - npm install -g npm - npm install -g grunt-cli
Disable feedpaper-api and feedpaper-data, getting feedpaper-web to stabilise.
language: node_js node_js: - "4.1" before_install: - npm update -g npm - npm install -g bob coveralls --loglevel error - wget https://releases.hashicorp.com/terraform/0.6.7/terraform_0.6.7_linux_amd64.zip - mkdir -p ~/opt/terraform/ - unzip terraform_0.6.7_linux_amd64.zip -d ~/opt/terraform/ script: - export PATH=~/opt/terraform/:$PATH - cd feedpaper-api && make build && cd .. - cd feedpaper-data && make build && cd .. - cd feedpaper-web && make build && cd ..
language: node_js node_js: - "4.1" before_install: - npm update -g npm - npm install -g bob coveralls --loglevel error - wget https://releases.hashicorp.com/terraform/0.6.7/terraform_0.6.7_linux_amd64.zip - mkdir -p ~/opt/terraform/ - unzip terraform_0.6.7_linux_amd64.zip -d ~/opt/terraform/ script: - export PATH=~/opt/terraform/:$PATH # - cd feedpaper-api && make build && cd .. # - cd feedpaper-data && make build && cd .. - cd feedpaper-web && make build && cd ..
Build `freetds` from source per the recommendation at the link below
language: ruby before_install: - sudo apt-get update -q - sudo apt-get install -q build-essential freetds-dev libc6-dev matrix: allow_failures: - rvm: jruby-9.1.9.0 rvm: - 2.3.7 - 2.4.4 - 2.5.1 - jruby-9.1.9.0
language: ruby before_install: - sudo apt-get update -q - sudo apt-get install -q build-essential libc6-dev - wget http://www.freetds.org/files/stable/freetds-1.00.21.tar.gz - tar -xzf freetds-1.00.21.tar.gz - cd freetds-1.00.21 - ./configure --prefix=/usr/local --with-tdsver=7.3 - make - sudo make install matrix: allow_failures: - rvm: jruby-9.1.9.0 rvm: - 2.3.7 - 2.4.4 - 2.5.1 - jruby-9.1.9.0
Add lowest and highest dependencies tests
language: php matrix: include: - php: hhvm - php: 5.3 - php: 5.4 - php: 5.5 - php: 5.6 - php: nightly allow_failures: - php: hhvm - php: nightly fast_finish: true sudo: false cache: directories: - $HOME/.composer/cache install: composer install -n script: vendor/bin/phpunit -v --coverage-clover=coverage.clover after_script: - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi;' notifications: webhooks: urls: ['https://webhooks.gitter.im/e/9ccc2378e6c0de6480f8'] on_success: change on_failure: always on_start: never
language: php sudo: false cache: directories: - $HOME/.composer/cache matrix: include: - php: 5.3 - php: 5.4 - php: 5.5 - php: 5.6 - php: 5.6 env: deps=low - php: 5.6 env: deps=high - php: hhvm - php: nightly allow_failures: - php: hhvm - php: nightly fast_finish: true install: - composer self-update -q - if [ -z "$deps" ]; then composer install -n; fi; - if [ "$deps" = "low" ]; then composer update --prefer-lowest --prefer-stable --prefer-source -n; fi; - if [ "$deps" = "high" ]; then composer update --prefer-source -n; fi; script: vendor/bin/phpunit -v --coverage-clover=coverage.clover after_script: - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi;' notifications: webhooks: urls: ['https://webhooks.gitter.im/e/9ccc2378e6c0de6480f8'] on_success: change on_failure: always on_start: never
Remove tests on PHP 5.3
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm before_script: - composer install
language: php php: - 5.4 - 5.5 - 5.6 - hhvm before_script: - composer install
Install dev requirements before running trial
language: python before_install: - sudo apt-get install tor libpcap-dev libgeoip-dev python: - "2.7" # command to install dependencies # the first is for testing pip and the second for setuptools install: - pip install pyrex - pip install coveralls - python setup.py install # command to run tests, e.g. python setup.py test script: - coverage run $(which trial) ooni after_success: - coveralls
language: python before_install: - sudo apt-get install tor libpcap-dev libgeoip-dev python: - "2.7" # command to install dependencies # the first is for testing pip and the second for setuptools install: - pip install pyrex - pip install coveralls - python setup.py install - pip install -r requirements-dev.txt # command to run tests, e.g. python setup.py test script: - coverage run $(which trial) ooni after_success: - coveralls
Test ruby 2.0 and 2.1 on Travis
language: ruby rvm: - 1.9.3 script: bundle exec rspec spec/htmless_spec.rb
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 script: bundle exec rspec spec/htmless_spec.rb
Remove script line from from Travis CI configuration file.
language: php php: - "5.3" - "5.4" before_script: composer install --dev script: phpunit --bootstrap tests/bootstrap.php tests services: - couchdb
language: php php: - "5.3" - "5.4" before_script: composer install --dev services: - couchdb
Add OS X build to Travis
language: c script: make && make check sudo: required dist: trusty compiler: - clang - gcc addons: apt: packages: - libyajl-dev - libyaml-dev
language: c script: make && make check matrix: include: - os: linux dist: trusty sudo: required - os: osx osx_image: xcode7.3 compiler: - clang - gcc addons: apt: packages: - libyajl-dev - libyaml-dev before_install: - if [[ "$TRAVISOS_NAME" == "osx" ]]; then brew update; fi - if [[ "$TRAVISOS_NAME" == "osx" ]]; then brew install yajl libyaml; fi
Add Python 3.4 to Travis testing matrix.
language: python python: - "3.3" # Dependencies. install: # Only for testing. - pip install -r requirements_testing.txt # Main. script: # Check if everything compiles. - python -m compileall rave modules tests # Run unit tests! - nosetests # After. after_success: # Report coverage. - coveralls
language: python python: - "3.3" - "3.4" # Dependencies. install: # Only for testing. - pip install -r requirements_testing.txt # Main. script: # Check if everything compiles. - python -m compileall rave modules tests # Run unit tests! - nosetests # After. after_success: # Report coverage. - coveralls
Reduce the console output amount during the build.
language: java jdk: - oraclejdk8 before_install: - chmod +x gradlew script: - ./gradlew build --debug - ./gradlew codeCoverageReport after_success: - bash <(curl -s https://codecov.io/bash)
language: java jdk: - oraclejdk8 before_install: - chmod +x gradlew script: - ./gradlew build --stacktrace - ./gradlew codeCoverageReport after_success: - bash <(curl -s https://codecov.io/bash)
Reduce ppa and explicit package usage
before_install: - sudo apt-add-repository --yes ppa:mapnik/v2.1.0 - sudo apt-add-repository --yes ppa:ubuntugis/ppa - sudo apt-get update -q - sudo apt-get install -q libmapnik libmapnik-dev postgresql-9.1-postgis libsigc++-dev - createdb template_postgis - psql -c "CREATE EXTENSION postgis" template_postgis env: - NPROCS=1 JOBS=1 language: node_js node_js: - "0.8" notifications: irc: channels: - "irc.freenode.org#cartodb" use_notice: true
before_install: - sudo apt-add-repository --yes ppa:mapnik/v2.1.0 - sudo apt-get update -q - sudo apt-get install -q libmapnik-dev - createdb template_postgis - psql -c "CREATE EXTENSION postgis" template_postgis env: - NPROCS=1 JOBS=1 language: node_js node_js: - "0.8" notifications: irc: channels: - "irc.freenode.org#cartodb" use_notice: true
Change clang-format version from 10 to 6
language: cpp arch: - arm64 - amd64 os: - linux dist: - bionic compiler: - gcc - clang addons: apt: sources: - sourceline: "ppa:ubuntu-toolchain-r/test" - sourceline: "deb [arch=amd64] http://archive.ubuntu.com/ubuntu/ bionic-updates main universe" packages: - clang-10 - gcc-10 - g++-10 before_install: - sudo apt-get install -y build-essential - sh .ci/cross-tool.sh install: # /usr/bin/{gcc,clang} points to an older compiler on Ubuntu Linux. - if [ "$CXX" = "g++" ]; then export CXX="g++-10" CC="gcc-10"; fi - if [ "$CXX" = "clang++" ]; then export CXX="clang++-10" CC="clang-10"; fi script: - make check - sh .ci/cross-check.sh jobs: include: - stage: Coding convention check arch: amd64 compiler: gcc before_install: sudo apt-get install -y clang-format script: sh .ci/check-format.sh
language: cpp arch: - arm64 - amd64 os: - linux dist: - bionic compiler: - gcc - clang addons: apt: sources: - sourceline: "ppa:ubuntu-toolchain-r/test" - sourceline: "deb [arch=amd64] http://archive.ubuntu.com/ubuntu/ bionic-updates main universe" packages: - clang-10 - gcc-10 - g++-10 before_install: - sudo apt-get install -y build-essential - sh .ci/cross-tool.sh install: # /usr/bin/{gcc,clang} points to an older compiler on Ubuntu Linux. - if [ "$CXX" = "g++" ]; then export CXX="g++-10" CC="gcc-10"; fi - if [ "$CXX" = "clang++" ]; then export CXX="clang++-10" CC="clang-10"; fi script: - make check - sh .ci/cross-check.sh jobs: include: - stage: Coding convention check arch: amd64 compiler: gcc before_install: sudo apt-get install -y clang-format-6.0 script: sh .ci/check-format.sh
Throw in the whole kitchen sink
language: bash addons: apt: packages: - hlint - ghc - libghc-regex-posix-dev script: - pushd chef/cookbooks/brh/recipes - ./test.sh - popd - hlint bin/*.hs - make -C bin/ all
language: bash addons: apt: packages: - hlint - ghc - haskell-platform script: - pushd chef/cookbooks/brh/recipes - ./test.sh - popd - hlint bin/*.hs - make -C bin/ all
Add repo prefix to image name
sudo: required addons: apt: packages: - docker-ce services: - docker install: - docker build -t libreconv . - docker run -d -p 8080:8080 libreconv script: - curl -XPOST -F "file=@./testdata/example.docx" "http://localhost:8080/to/pdf?timeout=10s" -o /dev/null -v after_success: - if [ "$TRAVIS_BRANCH" == "master" ]; then docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"; docker push $DOCKER_USERNAME/libreconv; fi
sudo: required addons: apt: packages: - docker-ce services: - docker install: - docker build -t jgoelen/libreconv . - docker run -d -p 8080:8080 libreconv script: - curl -XPOST -F "file=@./testdata/example.docx" "http://localhost:8080/to/pdf?timeout=10s" -o /dev/null -v after_success: - if [ "$TRAVIS_BRANCH" == "master" ]; then docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"; docker push jgoelen/libreconv; fi
Fix for Travis CI failing on python-base
# ref: https://docs.travis-ci.com/user/languages/python language: python dist: trusty sudo: required matrix: include: - python: 2.7 env: TOXENV=py27 - python: 2.7 env: TOXENV=py27-functional - python: 2.7 env: TOXENV=update-pycodestyle - python: 2.7 env: TOXENV=docs - python: 2.7 env: TOXENV=coverage,codecov - python: 3.4 env: TOXENV=py34 - python: 3.5 env: TOXENV=py35 - python: 3.5 env: TOXENV=py35-functional - python: 3.6 env: TOXENV=py36 - python: 3.6 env: TOXENV=py36-functional install: - pip install tox script: - ./run_tox.sh tox
# ref: https://docs.travis-ci.com/user/languages/python language: python dist: xenial sudo: required matrix: include: - python: 2.7 env: TOXENV=py27 - python: 2.7 env: TOXENV=py27-functional - python: 2.7 env: TOXENV=update-pycodestyle - python: 2.7 env: TOXENV=docs - python: 2.7 env: TOXENV=coverage,codecov - python: 3.4 env: TOXENV=py34 - python: 3.5 env: TOXENV=py35 - python: 3.5 env: TOXENV=py35-functional - python: 3.6 env: TOXENV=py36 - python: 3.6 env: TOXENV=py36-functional install: - pip install tox script: - ./run_tox.sh tox
Test against Ruby 2.4.0 on Travis CI
language: ruby sudo: false cache: bundler rvm: - 2.1.10 - 2.2.6 - 2.3.3 before_install: - gem update bundler env: matrix: - SPROCKETS_VERSION="~> 3.3.0" - SPROCKETS_VERSION="~> 3.7.0" - SPROCKETS_VERSION="~> 4.0.0.beta2" - EMBER_SOURCE_VERSION="~> 1.13" - EMBER_SOURCE_VERSION="~> 2.6" - EMBER_SOURCE_VERSION="~> 2.10"
language: ruby sudo: false cache: bundler rvm: - 2.1.10 - 2.2.6 - 2.3.3 - 2.4.0 before_install: - gem update bundler env: matrix: - SPROCKETS_VERSION="~> 3.3.0" - SPROCKETS_VERSION="~> 3.7.0" - SPROCKETS_VERSION="~> 4.0.0.beta2" - EMBER_SOURCE_VERSION="~> 1.13" - EMBER_SOURCE_VERSION="~> 2.6" - EMBER_SOURCE_VERSION="~> 2.10"
Test against MongoDB ODM 1.x only
language: php sudo: false cache: directories: - $HOME/.composer/cache php: - 7.1 - 7.2 - 7.3 services: mongodb before_install: - pecl install -f mongodb before_script: - composer self-update - composer install --prefer-source - composer config "platform.ext-mongo" "1.6.16" - composer require alcaeus/mongo-php-adapter - composer require doctrine/mongodb-odm - composer require jackalope/jackalope-doctrine-dbal doctrine/phpcr-odm script: - ./vendor/bin/phpunit -v
language: php sudo: false cache: directories: - $HOME/.composer/cache php: - 7.1 - 7.2 - 7.3 services: mongodb before_install: - pecl install -f mongodb before_script: - composer self-update - composer config "platform.ext-mongo" "1.6.16" - composer require --no-update alcaeus/mongo-php-adapter - composer require --no-update doctrine/mongodb-odm "^1.3.0" - composer install --prefer-source - composer require jackalope/jackalope-doctrine-dbal doctrine/phpcr-odm script: - ./vendor/bin/phpunit -v
Fix Python 3 on Travis macOS builders again
language: python sudo: false python: - 2.7 - 3.4 - 3.5 - 3.6 os: - linux env: global: - PYTHON=python - PIP=pip - TEST_COMMAND="coverage -q" matrix: include: - language: generic python: 2.7 os: osx env: PYTHON=python2 PIP=pip2 - language: generic python: 3.6 os: osx env: PYTHON=python3 PIP=pip3 - python: 2.7 os: linux env: TEST_COMMAND=lint before_install: - set -e - | if [ "${TRAVIS_OS_NAME}" = "osx" ]; then shell_session_update() { :; } if [ "${PYTHON}" = "python3" ]; then brew update brew install ${PYTHON} fi cp test/scripts/sitecustomize.py . fi install: - ${PIP} install codecov .[test] script: - ${PYTHON} setup.py ${TEST_COMMAND} after_success: - codecov
language: python sudo: false python: - 2.7 - 3.4 - 3.5 - 3.6 os: - linux env: global: - PYTHON=python - PIP=pip - TEST_COMMAND="coverage -q" matrix: include: - language: generic python: 2.7 os: osx env: PYTHON=python2 PIP=pip2 - language: generic python: 3.6 os: osx env: PYTHON=python3 PIP=pip3 - python: 2.7 os: linux env: TEST_COMMAND=lint before_install: - set -e - | if [ "${TRAVIS_OS_NAME}" = "osx" ]; then shell_session_update() { :; } if [ "${PYTHON}" = "python3" ]; then brew update brew install ${PYTHON} || brew upgrade ${PYTHON} fi cp test/scripts/sitecustomize.py . fi install: - ${PIP} install codecov .[test] script: - ${PYTHON} setup.py ${TEST_COMMAND} after_success: - codecov
Switch Travis to Xcode 8
language: objective-c osx_image: xcode7.3 # Important to specify the simulator SDK, otherwise Travis CI will attempt to # build for the real iPhone and fail due to code-signing issues. xcode_sdk: iphonesimulator before_install: - brew update - brew uninstall xctool && brew install --HEAD xctool xcode_project: AdvancedOperations.xcodeproj xcode_scheme: AdvancedOperations
language: objective-c osx_image: xcode8 # Important to specify the simulator SDK, otherwise Travis CI will attempt to # build for the real iPhone and fail due to code-signing issues. # See https://docs.travis-ci.com/user/languages/objective-c for details. xcode_sdk: iphonesimulator before_install: - brew update - brew uninstall xctool && brew install --HEAD xctool xcode_project: AdvancedOperations.xcodeproj xcode_scheme: AdvancedOperations
Fix Skipping deployment with the npm provider because this branch is not permitted to deploy
language: node_js node_js: - "0.10" before_script: - npm install -g grunt-cli notifications: webhooks: urls: - https://webhooks.gitter.im/e/7b309d0fef51b1696205 on_success: always on_failure: always on_start: false deploy: provider: npm email: andrewjdodson@gmail.com api_key: secure: abqUceXSYbLwfwwOL6fZdYsaNVvPkJr1JdAWU+IJ9d1AKMTF50P6E1gZT4L1q6v/5Suio/4z2BT9Eg2R9jckEPwoVGl8s3fyaUjuz1JE8TiH2aecCx0PPn8jv+eUdiy0otzAkU7kAUN4cBPvS1UmT++o7/kWsxfQBD2eJlI8ZbQ= "on": tags: true repo: MrSwitch/hello.js
language: node_js node_js: - "0.10" before_script: - npm install -g grunt-cli notifications: webhooks: urls: - https://webhooks.gitter.im/e/7b309d0fef51b1696205 on_success: always on_failure: always on_start: false deploy: provider: npm email: andrewjdodson@gmail.com api_key: secure: abqUceXSYbLwfwwOL6fZdYsaNVvPkJr1JdAWU+IJ9d1AKMTF50P6E1gZT4L1q6v/5Suio/4z2BT9Eg2R9jckEPwoVGl8s3fyaUjuz1JE8TiH2aecCx0PPn8jv+eUdiy0otzAkU7kAUN4cBPvS1UmT++o7/kWsxfQBD2eJlI8ZbQ= "on": tags: true branch: master repo: MrSwitch/hello.js
Add python 3.3 and 3.4 support
language: python python: - 2.6 - 2.7 - 3.2 - pypy script: python setup.py test
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 - pypy script: python setup.py test
Add ./configure step, drop unneeded env section
before_install: - sudo apt-add-repository --yes ppa:ubuntugis/ppa - sudo apt-get update -q - sudo apt-get install -q postgresql-9.1-postgis - createdb template_postgis - psql -c "CREATE EXTENSION postgis" template_postgis env: - NPROCS=1 JOBS=1 language: node_js node_js: - "0.8"
before_install: - sudo apt-add-repository --yes ppa:ubuntugis/ppa - sudo apt-get update -q - sudo apt-get install -q postgresql-9.1-postgis - createdb template_postgis - psql -c "CREATE EXTENSION postgis" template_postgis - ./configure language: node_js node_js: - "0.8"
Drop support of EOL Ruby 2.1
language: ruby rvm: - 2.1 - 2.2 - 2.3 - 2.4 - 2.5 - ruby-head script: - bundle exec rspec spec before_script: - psql -c 'create database pg_lock_test;' -U postgres addons: postgresql: "9.3" matrix: allow_failures: - rvm: ruby-head
language: ruby rvm: - 2.2 - 2.3 - 2.4 - 2.5 - ruby-head script: - bundle exec rspec spec before_script: - psql -c 'create database pg_lock_test;' -U postgres addons: postgresql: "9.3" matrix: allow_failures: - rvm: ruby-head
Allow php 5.6 and hhvm to fail on Travis. Also fast finish
language: php php: - 5.6 - 7.0 - hhvm - nightly matrix: - allow_failures: - php: nightly before_script: - cp .env.travis .env - composer install --prefer-source --no-interaction - php artisan key:generate script: - vendor/bin/phpunit
language: php php: - 5.6 - 7.0 - hhvm - nightly matrix: - allow_failures: - php: 5.6 - php: hhvm - php: nightly - fast_finish: true before_script: - cp .env.travis .env - composer install --prefer-source --no-interaction - php artisan key:generate script: - vendor/bin/phpunit
Use iPhone Simulator 9.1 for tests
language: objective-c xcode_project: HypertextApplicationLanguage.xcodeproj xcode_scheme: HypertextApplicationLanguage osx_image: xcode7.1 before_install: - brew update - brew uninstall xctool && brew install --HEAD xctool
language: objective-c xcode_project: HypertextApplicationLanguage.xcodeproj xcode_scheme: HypertextApplicationLanguage osx_image: xcode7.1 xcode_sdk: iphonesimulator9.1 before_install: - brew update - brew uninstall xctool && brew install --HEAD xctool
Downgrade emulator API to 23
script: # By default Travis CI executes './gradlew build connectedCheck' if no 'script:' section found. - ./gradlew clean build connectedCheck language: android jdk: - oraclejdk8 android: components: - tools - build-tools-26.0.1 - android-26 - extra-android-m2repository # System image needed to run emulator - sys-img-armeabi-v7a-addon-google_apis-google-23 before_script: # Create emulator - echo no | android create avd --force -n test -t android-26 --abi armeabi-v7a # Start emulator - emulator -avd test -no-audio -no-window & # Wait for emulator - android-wait-for-emulator - adb shell input keyevent 82 & notifications: email: false
script: # By default Travis CI executes './gradlew build connectedCheck' if no 'script:' section found. - ./gradlew clean build connectedCheck language: android jdk: - oraclejdk8 android: components: - tools - build-tools-26.0.1 - android-26 - extra-android-m2repository # System image needed to run emulator - sys-img-armeabi-v7a-addon-google_apis-google-23 before_script: # Create emulator - echo no | android create avd --force -n test -t android-23 --abi armeabi-v7a # Start emulator - emulator -avd test -no-audio -no-window & # Wait for emulator - android-wait-for-emulator - adb shell input keyevent 82 & notifications: email: false
Choose more up-to-date source for libclang-dev
language: cpp compiler: - gcc script: - ./pushdoc.sh - ./buildtest.sh 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.7 libclang-dev - sudo pip install cldoc env: global: secure: eyWLuwf/6zIIKECSRZdJM2SW1ai0/FYEiPDtg604OkdmoNZAAUqfFrL1mBzu32gGxZWOHasCMD4DHdtWU7Kf/vIdich4mTAg5nfMux+QPSGNn6xUHYtTGtbj6/baCmAzXUJoIONFbBnj+anOazpaBURpozsMOiHoK5giCHyooLk=
language: cpp compiler: - gcc script: - ./pushdoc.sh - ./buildtest.sh before_install: - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - sudo add-apt-repository -y ppa:dr-graef/llvm-3.1.precise - sudo apt-get update -qq install: - sudo apt-get install -qq g++-4.7 libclang-dev - sudo pip install cldoc env: global: secure: eyWLuwf/6zIIKECSRZdJM2SW1ai0/FYEiPDtg604OkdmoNZAAUqfFrL1mBzu32gGxZWOHasCMD4DHdtWU7Kf/vIdich4mTAg5nfMux+QPSGNn6xUHYtTGtbj6/baCmAzXUJoIONFbBnj+anOazpaBURpozsMOiHoK5giCHyooLk=
Remove -qq option to get error from Travis
language: c env: - EnableNuGetPackageRestore=true before_install: # Make sure mono is installed, # pipe stdout to dev/null because qq is still too chatty # Adding the mono-experimental build, because Ubuntu 12.04 uses mono 2.10, # which doesn't include Microsoft.Build.dll, which is needed # for NuGet.exe to function properly. # # Shame on us for appending to sources.list, but it's simple, fast and used # only for TravisCI - sudo echo " deb http://debian.meebey.net/experimental/mono /" | sudo tee -a /etc/apt/sources.list - sudo apt-get update -qq > /dev/null - sudo apt-get install -qq mono-complete mono-gmcs > /dev/null # update root certs for nuget - mozroots --import --sync - chmod a+x .ci/build.sh script: - .ci/build.sh
language: c env: - EnableNuGetPackageRestore=true before_install: # Make sure mono is installed, # pipe stdout to dev/null because qq is still too chatty # Adding the mono-experimental build, because Ubuntu 12.04 uses mono 2.10, # which doesn't include Microsoft.Build.dll, which is needed # for NuGet.exe to function properly. # # Shame on us for appending to sources.list, but it's simple, fast and used # only for TravisCI - sudo echo " deb http://debian.meebey.net/experimental/mono /" | sudo tee -a /etc/apt/sources.list - sudo apt-get update -qq > /dev/null - sudo apt-get install mono-complete mono-gmcs > /dev/null # update root certs for nuget - mozroots --import --sync - chmod a+x .ci/build.sh script: - .ci/build.sh
Add Python 3.4 to Travis
language: python python: - "2.7" - "3.2" - "3.3" - "pypy" install: - pip install -e . --use-mirrors - pip install -r test_requirements.txt --use-mirrors script: - make cov after_success: - coveralls
language: python python: - "2.7" - "3.2" - "3.3" - "3.4" - "pypy" install: - pip install -e . --use-mirrors - pip install -r test_requirements.txt --use-mirrors script: - make cov after_success: - coveralls
Update PHP versions being tested
language: php php: - hhvm - 5.6 - 5.5 before_install: - composer install sudo: false matrix: allow_failures: - php: hhvm
language: php matrix: include: - php: 5.6 env: PHPUNITVER=5.7 - php: 7.1 env: PHPUNITVER=5.7 - php: hhvm env: PHPUNITVER=5.7 HHVM=true allow_failures: - php: hhvm before_install: - composer install - if [ $PHPUNITVER"x" != "x" ]; then mkdir -p ./vendor/bin; curl -sSfL -o ./vendor/bin/phpunit https://phar.phpunit.de/phpunit-$PHPUNITVER.phar; chmod u+x ./vendor/bin/phpunit; fi sudo: false
Send emails on build failure.
language: objective-c osx_image: xcode8.1 sudo: false notifications: email: false before_install: - gem install cocoapods --no-rdoc --no-ri --no-document --quiet - git clone https://github.com/phacility/arcanist.git - git clone https://github.com/phacility/libphutil.git - git clone --recursive https://github.com/material-foundation/material-arc-tools.git - pod install --repo-update script: - set -o pipefail - arcanist/bin/arc unit --everything --trace - xcodebuild build -workspace MaterialMotionStreams.xcworkspace -scheme Catalog -sdk "iphonesimulator10.1" -destination "name=iPhone 6s,OS=10.1" ONLY_ACTIVE_ARCH=YES | xcpretty -c; after_success: - bash <(curl -s https://codecov.io/bash)
language: objective-c osx_image: xcode8.1 sudo: false before_install: - gem install cocoapods --no-rdoc --no-ri --no-document --quiet - git clone https://github.com/phacility/arcanist.git - git clone https://github.com/phacility/libphutil.git - git clone --recursive https://github.com/material-foundation/material-arc-tools.git - pod install --repo-update script: - set -o pipefail - arcanist/bin/arc unit --everything --trace - xcodebuild build -workspace MaterialMotionStreams.xcworkspace -scheme Catalog -sdk "iphonesimulator10.1" -destination "name=iPhone 6s,OS=10.1" ONLY_ACTIVE_ARCH=YES | xcpretty -c; after_success: - bash <(curl -s https://codecov.io/bash)
Test on other node versions
language: node_js node_js: - "6" script: - node test.js
language: node_js node_js: - "node" - "6.1" - "6" - "5" script: - node test.js
Support only io.js 3.x (though it also works with 2.x and 1.x)
language: node_js node_js: - "iojs-v3" - "iojs-v2" - "iojs-v1"
language: node_js node_js: - "iojs-v3"
Use latest LTS Node version for CI
language: node_js node_js: - "node" env: - HUSKY=0 cache: directories: - node_modules before_install: - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov before_script: - npm run lint script: - npm test after_success: - ./codecov -f coverage/lcov.info
language: node_js node_js: - "lts/*" env: - HUSKY=0 cache: directories: - node_modules before_install: - curl -Os https://uploader.codecov.io/latest/linux/codecov - chmod +x codecov before_script: - npm run lint script: - npm test after_success: - ./codecov -f coverage/lcov.info
Update JRuby version tested in Travis
language: ruby sudo: false rvm: - 1.9.3 - 2.4.2 - 2.5 - ruby-head - jruby-19mode - jruby-9.1.12.0 before_install: - gem update bundler install: ruby -S bundle install --without release development env: global: - CI="travis" - JRUBY_OPTS="--server -J-Xms512m -J-Xmx1024m" matrix: - MONGODB=2.6.12 - MONGODB=3.0.12 - MONGODB=3.2.11 - MONGODB=3.4.1 before_script: - wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-${MONGODB}.tgz -O /tmp/mongodb.tgz - tar -xvf /tmp/mongodb.tgz - mkdir /tmp/data - ${PWD}/mongodb-linux-x86_64-${MONGODB}/bin/mongod --dbpath /tmp/data --bind_ip 127.0.0.1 --auth &> /dev/null & script: bundle exec rake spec:ci notifications: email: false flowdock: 1da4416b8ff98d1880986472428b1b1b branches: only: - master - 1.x-stable matrix: allow_failures: - rvm: ruby-head
language: ruby sudo: false rvm: - 1.9.3 - 2.4.2 - 2.5 - ruby-head - jruby-19mode - jruby-9.1.15.0 before_install: - gem update bundler install: ruby -S bundle install --without release development env: global: - CI="travis" - JRUBY_OPTS="--server -J-Xms512m -J-Xmx1024m" matrix: - MONGODB=2.6.12 - MONGODB=3.0.12 - MONGODB=3.2.11 - MONGODB=3.4.1 before_script: - wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-${MONGODB}.tgz -O /tmp/mongodb.tgz - tar -xvf /tmp/mongodb.tgz - mkdir /tmp/data - ${PWD}/mongodb-linux-x86_64-${MONGODB}/bin/mongod --dbpath /tmp/data --bind_ip 127.0.0.1 --auth &> /dev/null & script: bundle exec rake spec:ci notifications: email: false flowdock: 1da4416b8ff98d1880986472428b1b1b branches: only: - master - 1.x-stable matrix: allow_failures: - rvm: ruby-head
Exclude additional groups on Ruby 1.9
sudo: false language: ruby cache: bundler addons: apt: sources: - chef-stable-trusty packages: - chefdk - wget - unzip - ssh matrix: include: # WE SUPPORT UPGRADES OF CHEF 11.x on RUBY 1.9.3 VIA chef_client_updater COOKBOOK - rvm: 1.9.3 bundler_args: --without chefstyle functional --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle} script: - bundle exec rake unit - bundle exec rake functional - rvm: 2.0 - rvm: 2.1.10 - rvm: 2.2.10 - rvm: 2.3.8 - rvm: 2.4.5 - rvm: 2.5.3 - rvm: ruby-head allow_failures: - rvm: ruby-head branches: only: - master bundler_args: --without docs development before_install: - gem install bundler - bundle --version - gem update --system - gem --version script: bundle exec rake
sudo: false language: ruby cache: bundler addons: apt: sources: - chef-stable-trusty packages: - chefdk - wget - unzip - ssh matrix: include: # WE SUPPORT UPGRADES OF CHEF 11.x on RUBY 1.9.3 VIA chef_client_updater COOKBOOK - rvm: 1.9.3 bundler_args: --without chefstyle functional development docs --jobs=3 --retry=3 --path=${BUNDLE_PATH:-vendor/bundle} script: - bundle exec rake unit - bundle exec rake functional - rvm: 2.0 - rvm: 2.1.10 - rvm: 2.2.10 - rvm: 2.3.8 - rvm: 2.4.5 - rvm: 2.5.3 - rvm: ruby-head allow_failures: - rvm: ruby-head branches: only: - master bundler_args: --without docs development before_install: - gem install bundler - bundle --version - gem update --system - gem --version script: bundle exec rake
Install Python 3.5 since it's not in base Travis image yet.
language: python python: 2.7 sudo: false install: pip install tox coverage coveralls script: - tox # Combine all the coverage reports from the different tox envs: - coverage combine - coverage report --show-missing after_success: - coveralls notifications: email: false
language: python python: 2.7 sudo: false addons: apt: sources: - deadsnakes packages: - python3.5 install: pip install tox coverage coveralls script: - tox # Combine all the coverage reports from the different tox envs: - coverage combine - coverage report --show-missing after_success: - coveralls notifications: email: false
Switch to containerize Travis builds.
language: python python: - "2.6" - "2.7" install: - "pip install -r requirements.txt --use-wheel" - "pip install -r requirements-dev.txt --use-wheel" - "pip install coveralls --use-wheel" - "python setup.py install" script: - "flake8 go_http" - "py.test --cov=go_http go_http" after_success: - coveralls
sudo: false language: python python: - "2.6" - "2.7" install: - "pip install -r requirements.txt --use-wheel" - "pip install -r requirements-dev.txt --use-wheel" - "pip install coveralls --use-wheel" - "python setup.py install" script: - "flake8 go_http" - "py.test --cov=go_http go_http" after_success: - coveralls
Remove printouts and drop support for JDK 1.6
language: java install: - ls -hal - pwd - mkdir -p ~/.ant/lib && ln -s -T /usr/share/java/ivy.jar ~/.ant/lib/ivy.jar - ls -hal - ant wpilib-for-ci script: - ls -hal - pwd - ant resolve-ivy-deps - ant test jdk: - oraclejdk8 - oraclejdk7 - openjdk7 - openjdk6 addons: apt: packages: - python3
language: java install: - mkdir -p ~/.ant/lib && ln -s -T /usr/share/java/ivy.jar ~/.ant/lib/ivy.jar - ant wpilib-for-ci script: - ant resolve-ivy-deps - ant test jdk: - oraclejdk8 - oraclejdk7 - openjdk7 addons: apt: packages: - python3
Print test log during CI build
language: c os: - linux - osx compiler: - clang - gcc env: - CMAKE_ARGS="-DCMAKE_BUILD_TYPE=Release" - CMAKE_ARGS="-DCMAKE_BUILD_TYPE=Debug" addons: apt: packages: - lcov matrix: include: - os: linux compiler: gcc env: CMAKE_ARGS="-DCMAKE_BUILD_TYPE=Debug -DDFK_ENABLE_COVERAGE=ON" UPLOAD_COVERAGE=YES script: - ./scripts/bootstrap.sh - mkdir build - cd build - cmake $CMAKE_ARGS .. - VERBOSE=1 cmake --build . -- -j - cmake --build . --target test after_success: - cd .. - if [[ "$UPLOAD_COVERAGE" == "YES" ]]; then ./scripts/coverage.sh; fi notifications: email: - isn@extrn.org
language: c os: - linux - osx compiler: - clang - gcc env: - CMAKE_ARGS="-DCMAKE_BUILD_TYPE=Release" - CMAKE_ARGS="-DCMAKE_BUILD_TYPE=Debug" addons: apt: packages: - lcov matrix: include: - os: linux compiler: gcc env: CMAKE_ARGS="-DCMAKE_BUILD_TYPE=Debug -DDFK_ENABLE_COVERAGE=ON" UPLOAD_COVERAGE=YES script: - ./scripts/bootstrap.sh - mkdir build - cd build - cmake $CMAKE_ARGS .. - VERBOSE=1 cmake --build . -- -j - cmake --build . --target test - cat Testing/Temporary/LastTest.log after_success: - cd .. - if [[ "$UPLOAD_COVERAGE" == "YES" ]]; then ./scripts/coverage.sh; fi notifications: email: - isn@extrn.org
Upgrade brew packages before testing
language: objective-c xcode_project: KIFEvaluation.xcodeproj xcode_scheme: KIFEvaluation xcode_sdk: iphonesimulator8.1 before_install: - brew update - brew install carthage install: carthage update --no-build script: xcodebuild -project KIFEvaluation.xcodeproj -scheme KIFEvaluation -sdk iphonesimulator8.1 test
language: objective-c xcode_project: KIFEvaluation.xcodeproj xcode_scheme: KIFEvaluation xcode_sdk: iphonesimulator8.1 before_install: - brew update - brew upgrade - brew install carthage install: carthage update --no-build script: xcodebuild -project KIFEvaluation.xcodeproj -scheme KIFEvaluation -sdk iphonesimulator8.1 test
Test on recent versions of Ruby
sudo: false language: ruby cache: bundler rvm: - 1.9.3 - 2.0.0 - 2.1.0 - 2.2.0
sudo: false language: ruby cache: bundler rvm: - 2.4 - 2.5 - 2.6 - 2.7
Update Stanley to 2.5 (17)
Categories: - Development License: MIT SourceCode: https://github.com/xgouchet/Stanley IssueTracker: https://github.com/xgouchet/Stanley/issues Donate: https://www.paypal.me/xaviergouchet AutoName: Stanley RepoType: git Repo: https://github.com/xgouchet/Stanley Builds: - versionName: '2.3' versionCode: 15 commit: v2.3 subdir: app gradle: - yes scanignore: - buildSrc/build/ - versionName: '2.4' versionCode: 16 commit: v2.4 subdir: app gradle: - yes scanignore: - buildSrc/build/ AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '2.4' CurrentVersionCode: 16
Categories: - Development License: MIT SourceCode: https://github.com/xgouchet/Stanley IssueTracker: https://github.com/xgouchet/Stanley/issues Donate: https://www.paypal.me/xaviergouchet AutoName: Stanley RepoType: git Repo: https://github.com/xgouchet/Stanley Builds: - versionName: '2.3' versionCode: 15 commit: v2.3 subdir: app gradle: - yes scanignore: - buildSrc/build/ - versionName: '2.4' versionCode: 16 commit: v2.4 subdir: app gradle: - yes scanignore: - buildSrc/build/ - versionName: '2.5' versionCode: 17 commit: v2.5 subdir: app gradle: - yes scanignore: - buildSrc/build/ AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '2.5' CurrentVersionCode: 17
Change default control mode to manual
robot_name: "deedee" # Name of the robot, used for namespace sim_plant: true # Actual or simulated robot autonomous: true # Manual (false) or autonomous (true) control sim_display: "gzclient" # Visualisation client: gzclient|gzweb|both|none gzweb_path: "/home/cyrill/gzweb" # Path to the installation folder for gzweb db_path: /home/serial/ros_ws/src/deedee_tutorials/config/paths.yaml
robot_name: "deedee" # Name of the robot, used for namespace sim_plant: true # Actual or simulated robot autonomous: false # Manual (false) or autonomous (true) control sim_display: "gzclient" # Visualisation client: gzclient|gzweb|both|none gzweb_path: "/home/cyrill/gzweb" # Path to the installation folder for gzweb db_path: /home/serial/ros_ws/src/deedee_tutorials/config/paths.yaml
Fix typo in structure test
schemaVersion: "1.0.0" globalEnvVars: - key: "VIRTUAL_ENV" value: "/env" - key: "PATH" value: "/env/bin:$PATH" commandTests: - name: "virtual env teardown" command: ["rm", "-rf", "/env"] - name: "python installation" command: ["which", "python"] expectedOutput: ["/usr/bin/python\n"] - name: "virtualenv installation" setup: [["virtualenv", "/env"]] command: ["which", "python"] expectedOutput": ["/env/bin/python\n"] - name: "python version" command: ["python", "--version"] # we check stderr instead of stdout for Python versions < 3.4 # https://bugs.python.org/issue18338 expectedError: ["Python 2.7.9\n"] - name: "pip installation" command: ["which", "pip"] expectedOutput: ["/env/bin/pip\n"] - name: "gunicorn flask" setup: [["pip", "install", "gunicorn", "flask"]] command: ["which", "gunicorn"] expectedOutput: ["/env/bin/gunicorn"] - name: "flask integration" command: ["python", "-c", "\"import sys; import flask; sys.exit(0 if flask.__file__.startswith('/env') else 1)\""]
schemaVersion: "1.0.0" globalEnvVars: - key: "VIRTUAL_ENV" value: "/env" - key: "PATH" value: "/env/bin:$PATH" commandTests: - name: "virtual env teardown" command: ["rm", "-rf", "/env"] - name: "python installation" command: ["which", "python"] expectedOutput: ["/usr/bin/python\n"] - name: "virtualenv installation" setup: [["virtualenv", "/env"]] command: ["which", "python"] expectedOutput: ["/env/bin/python\n"] - name: "python version" command: ["python", "--version"] # we check stderr instead of stdout for Python versions < 3.4 # https://bugs.python.org/issue18338 expectedError: ["Python 2.7.9\n"] - name: "pip installation" command: ["which", "pip"] expectedOutput: ["/env/bin/pip\n"] - name: "gunicorn flask" setup: [["pip", "install", "gunicorn", "flask"]] command: ["which", "gunicorn"] expectedOutput: ["/env/bin/gunicorn"] - name: "flask integration" command: ["python", "-c", "\"import sys; import flask; sys.exit(0 if flask.__file__.startswith('/env') else 1)\""]
Set host from UAT Ingress rule to ibms-uat.dbca.wa.gov.au
apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: ibms annotations: kubernetes.io/ingress.class: nginx nginx.ingress.kubernetes.io/ssl-redirect: "false" nginx.ingress.kubernetes.io/use-regex: "false" spec: rules: - host: ibms-test.dbca.wa.gov.au http: paths: - path: / pathType: Prefix backend: service: name: ingress-ibms-uat port: number: 8080
apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: ibms annotations: kubernetes.io/ingress.class: nginx nginx.ingress.kubernetes.io/ssl-redirect: "false" nginx.ingress.kubernetes.io/use-regex: "false" spec: rules: - host: ibms-uat.dbca.wa.gov.au http: paths: - path: / pathType: Prefix backend: service: name: ingress-ibms-uat port: number: 8080
Update from Hackage at 2020-04-24T12:11:16Z
homepage: '' changelog-type: '' hash: 7b1556e2b9cdab209e85dc7d47e3f4b1d00f39d5c6728566000f9724ce68f45e test-bench-deps: {} maintainer: pepeiborra@gmail.com synopsis: detect mismatches between compile-time and run-time versions of the ghc api changelog: '' basic-deps: ghc: -any base: '>=4.10.0.0 && <5.0' ghc-paths: -any transformers: -any template-haskell: -any all-versions: - 0.1.0.0 - 0.1.0.1 - 0.1.0.2 - 0.1.0.3 - 0.2.0.0 author: Pepe Iborra latest: 0.2.0.0 description-type: markdown description: |- # ghc-check Use Template Haskell to record the ghc api version at compile time and detect mismatches with the run time version. license-name: BSD-3-Clause
homepage: '' changelog-type: '' hash: 6e0f470293725eee93da628080c116eaa5e54c7be1f67bfe35dc19387aa73327 test-bench-deps: {} maintainer: pepeiborra@gmail.com synopsis: detect mismatches between compile-time and run-time versions of the ghc api changelog: '' basic-deps: ghc: -any base: '>=4.10.0.0 && <5.0' filepath: -any process: -any ghc-paths: -any transformers: -any template-haskell: -any all-versions: - 0.1.0.0 - 0.1.0.1 - 0.1.0.2 - 0.1.0.3 - 0.2.0.0 - 0.3.0.0 author: Pepe Iborra latest: 0.3.0.0 description-type: markdown description: |- # ghc-check Use Template Haskell to record the ghc api version at compile time and detect mismatches with the run time version. license-name: BSD-3-Clause
Set autoname of 2048 Multiplatform build
Categories: - Games License: Apache-2.0 AuthorName: AndStatus AuthorEmail: andstatus@gmail.com WebSite: https://github.com/andstatus/game2048/blob/HEAD/README.md SourceCode: https://github.com/andstatus/game2048 IssueTracker: https://github.com/andstatus/game2048/issues Translation: https://crowdin.com/project/2048-open-fun-game Changelog: https://github.com/andstatus/game2048/blob/HEAD/README.md#changelog Donate: http://andstatus.org/donate.html LiberapayID: '34680' AutoName: 2048 Open Fun Game RepoType: git Repo: https://github.com/andstatus/game2048.git Builds: - versionName: 1.10.10 versionCode: 27 commit: 1.10.10-release subdir: game2048-android gradle: - yes rm: - doc AutoUpdateMode: Version %v-release UpdateCheckMode: Tags ^[0-9.]+-release$ CurrentVersion: 1.10.10 CurrentVersionCode: 27
Categories: - Games License: Apache-2.0 AuthorName: AndStatus AuthorEmail: andstatus@gmail.com WebSite: https://github.com/andstatus/game2048/blob/HEAD/README.md SourceCode: https://github.com/andstatus/game2048 IssueTracker: https://github.com/andstatus/game2048/issues Translation: https://crowdin.com/project/2048-open-fun-game Changelog: https://github.com/andstatus/game2048/blob/HEAD/README.md#changelog Donate: http://andstatus.org/donate.html LiberapayID: '34680' AutoName: 2048 Multiplatform build RepoType: git Repo: https://github.com/andstatus/game2048.git Builds: - versionName: 1.10.10 versionCode: 27 commit: 1.10.10-release subdir: game2048-android gradle: - yes rm: - doc AutoUpdateMode: Version %v-release UpdateCheckMode: Tags ^[0-9.]+-release$ CurrentVersion: 1.10.10 CurrentVersionCode: 27
Add Inder social media inforation
url: https://y7kim.github.io baseurl: # Site settings title: Beam Labs email: agiron123@gmail.com description: "Official home page of Beam Labs." # Team names, titles and social links people: - name: Andre Giron pic: andre position: Cofounder / Web Developer social: - title: github url: http://github.com/agiron123 - title: twitter url: https://twitter.com/agiron_78 - title: linkedin url: https://www.linkedin.com/in/andre-giron-bb921943 - name: Inder Dhir pic: 2 position: Cofounder / Mobile Developer social: - title: twitter url: # - title: facebook url: # - title: linkedin url: # # Social networks usernames (many more available: google-plus, flickr, dribbble, pinterest, instagram, tumblr, linkedin, etc.) social: - title: github url: http://github.com/BeamLabs # Postal address (add as many lines as necessary) address: - line: Atlanta - line: NYC # Build settings markdown: kramdown permalink: pretty
url: https://y7kim.github.io baseurl: # Site settings title: Beam Labs email: agiron123@gmail.com description: "Official home page of Beam Labs." # Team names, titles and social links people: - name: Andre Giron pic: andre position: Cofounder / Web Developer social: - title: github url: http://github.com/agiron123 - title: twitter url: https://twitter.com/agiron_78 - title: linkedin url: https://www.linkedin.com/in/andre-giron-bb921943 - name: Inder Dhir pic: 2 position: Cofounder / Mobile Developer social: - title: github url: https://github.com/inderdhir - title: twitter url: https://twitter.com/inderdhir03 - title: linkedin url: https://www.linkedin.com/in/inder-dhir-862a7077 # Social networks usernames (many more available: google-plus, flickr, dribbble, pinterest, instagram, tumblr, linkedin, etc.) social: - title: github url: http://github.com/BeamLabs # Postal address (add as many lines as necessary) address: - line: Atlanta - line: NYC # Build settings markdown: kramdown permalink: pretty
Change content license to CC BY-SA 4.0
name: '/dev/random' description: 'Random thoughts on development and stuff' author: Hans Kristian Flaatten url: http://starefossen.github.io repo: https://github.com/starefossen/starefossen.github.com ga_id: UA-38558206-2 license: title: Creative Commons CC BY 4.0 license url: https://creativecommons.org/licenses/by/4.0/ social: !!omap - icon: twitter url: https://twitter.com/starefossen - icon: github url: https://github.com/starefossen - icon: linkedin url: https://linkedin.com/hans.flaatten relative_permalinks: false permalink: /post/:year/:month/:day/:title/ excerpt_separator: <!--more--> markdown: redcarpet highlighter: pygments timezone: NO encoding: UTF-8 repository: Starefossen/starefossen.github.com gems: - jekyll-github-metadata - jekyll-mentions - jekyll-redirect-from - jekyll-sitemap - jemoji
name: '/dev/random' description: 'Random thoughts on development and stuff' author: Hans Kristian Flaatten url: http://starefossen.github.io repo: https://github.com/starefossen/starefossen.github.com ga_id: UA-38558206-2 license: title: Creative Commons CC BY-SA 4.0 license url: https://creativecommons.org/licenses/by-sa/4.0/ social: !!omap - icon: twitter url: https://twitter.com/starefossen - icon: github url: https://github.com/starefossen - icon: linkedin url: https://linkedin.com/hans.flaatten relative_permalinks: false permalink: /post/:year/:month/:day/:title/ excerpt_separator: <!--more--> markdown: redcarpet highlighter: pygments timezone: NO encoding: UTF-8 repository: Starefossen/starefossen.github.com gems: - jekyll-github-metadata - jekyll-mentions - jekyll-redirect-from - jekyll-sitemap - jemoji
Refactor config to match latest in Poole, fix syntax highlighter
# Dependencies markdown: redcarpet pygments: true # Permalinks permalink: pretty # Setup title: Lanyon tagline: 'A Jekyll theme' description: 'A reserved <a href="http://jekyllrb.com" target="_blank">Jekyll</a> theme that places the utmost gravity on content with a hidden drawer. Made by <a href="https://twitter.com/mdo" target="_blank">@mdo</a>.' url: http://lanyon.getpoole.com baseurl: '/' paginate: 5 author: name: 'Mark Otto' url: https://twitter.com/mdo # Custom vars version: 1.0.0 github: repo: https://github.com/poole/lanyon
# Dependencies markdown: redcarpet highlighter: pygments # Permalinks # # Use of `relative_permalinks` ensures post links from the index work properly. permalink: pretty relative_permalinks: true # Setup title: Lanyon tagline: 'A Jekyll theme' description: 'A reserved <a href="http://jekyllrb.com" target="_blank">Jekyll</a> theme that places the utmost gravity on content with a hidden drawer. Made by <a href="https://twitter.com/mdo" target="_blank">@mdo</a>.' url: http://lanyon.getpoole.com baseurl: / paginate: 5 # About/contact author: name: Mark Otto url: https://twitter.com/mdo email: markdotto@gmail.com # Custom vars version: 1.0.0
Update description on the footer
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely need to edit after that. # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restart the server process. # Gems gems: [jekyll-paginate, jekyll-email-protect] # Site settings title: Bhavik Kumar email: contact@bhavik.io description: > # this means to ignore newlines until "baseurl:" <b>Bhavik</b> is a software engineer. He started his career by working for one of New Zealand's largest IT consultancies. Now he works for a large co-operative. baseurl: "" # the subpath of your site, e.g. /blog url: "https://bhavik.io" # the base hostname & protocol for your site # twitter_username: bhavikkumar github_username: bhavikkumar google_analytics: UA-78148514-1 # Build settings markdown: kramdown # Pagination settings paginate: 10 # Headers webrick: headers: Content-Security-Policy: default-src https://fonts.gstatic.com 'self' 'unsafe-inline' script-src 'self' 'unsafe-inline' style-src https://fonts.googleapis.com 'self' X-Frame-Options: "x-frame-options: SAMEORIGIN" X-XSS-Protection: "X-XSS-Protection: 1; mode=block"
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely need to edit after that. # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restart the server process. # Gems gems: [jekyll-paginate, jekyll-email-protect] # Site settings title: Bhavik Kumar email: contact@bhavik.io description: > # this means to ignore newlines until "baseurl:" <b>Bhavik</b> is a software engineer. He started his career by working for one of New Zealand's largest IT consultancies. Now he works for a large FMCG co-operative. baseurl: "" # the subpath of your site, e.g. /blog url: "https://bhavik.io" # the base hostname & protocol for your site # twitter_username: bhavikkumar github_username: bhavikkumar google_analytics: UA-78148514-1 # Build settings markdown: kramdown # Pagination settings paginate: 10 # Headers webrick: headers: Content-Security-Policy: default-src https://fonts.gstatic.com 'self' 'unsafe-inline' script-src 'self' 'unsafe-inline' style-src https://fonts.googleapis.com 'self' X-Frame-Options: "x-frame-options: SAMEORIGIN" X-XSS-Protection: "X-XSS-Protection: 1; mode=block"
Exclude publish.sh for master branch
# Site settings title: 차현진 블로그 email: description: > # this means to ignore newlines until "baseurl:" 저엔트로피를 지향하는 개발자 baseurl: "" # the subpath of your site, e.g. /blog/ url: "http://gumpcha.github.io" # the base hostname & protocol for your site twitter_username: gumpcha github_username: gumpcha # Outputting permalink: /blog/:title # Build settings markdown: redcarpet redcarpet: extensions: ["autolink"]
# Site settings title: 차현진 블로그 email: description: > # this means to ignore newlines until "baseurl:" 저엔트로피를 지향하는 개발자 baseurl: "" # the subpath of your site, e.g. /blog/ url: "http://gumpcha.github.io" # the base hostname & protocol for your site twitter_username: gumpcha github_username: gumpcha # Outputting permalink: /blog/:title # Build settings markdown: redcarpet redcarpet: extensions: ["autolink"] exclude: [publish.sh]
Fix mathtype error attempt 1
title: James R. Castle description: Physicist, data scientist, software developer, gamer show_downloads: false google_analytics: theme: jekyll-theme-slate name: James R. Castle plugins: ['jekyll-github-metadata'] repository: jrcastle/EbyEAnalysis github_username: jrcastle linkedin_username: jrcastle90 stackoverflow_username: jrcastle90 email: jrcastle90@gmail.com
title: James R. Castle description: Physicist, data scientist, software developer, gamer show_downloads: false google_analytics: theme: jekyll-theme-slate markdown: maruku name: James R. Castle plugins: ['jekyll-github-metadata'] repository: jrcastle/EbyEAnalysis github_username: jrcastle linkedin_username: jrcastle90 stackoverflow_username: jrcastle90 email: jrcastle90@gmail.com
Update site tagline and sidebar description
# Dependencies markdown: kramdown highlighter: pygments # Permalinks # # Use of `relative_permalinks` ensures post links from the index work properly. permalink: /:year/:month/:day/:title/ relative_permalinks: true # Setup title: "Scott's Weblog" tagline: "The weblog of an IT pro specializing in networking, virtualization, and cloud computing" description: "Offering technical posts and how-to articles from an IT pro specializing in networking, virtualization, & cloud computing" url: http://blog.scottlowe.org baseurl: / paginate: 10 # About/contact author: name: Scott Lowe url: https://twitter.com/scott_lowe email: scott.lowe@scottlowe.org github: lowescott twitter: scott_lowe # Custom vars version: 1.0.0 # Exclude Ruby gem stuff exclude: ["vendor"] # Gems gems: - jekyll-redirect-from - jekyll-sitemap
# Dependencies markdown: kramdown highlighter: pygments # Permalinks # # Use of `relative_permalinks` ensures post links from the index work properly. permalink: /:year/:month/:day/:title/ relative_permalinks: true # Setup title: "Scott's Weblog" tagline: "The weblog of an IT pro specializing in virtualization, networking, open source, and cloud computing" description: "Offering technical posts and how-to articles from an IT pro specializing in virtualization, networking, open source, & cloud computing" url: http://blog.scottlowe.org baseurl: / paginate: 10 # About/contact author: name: Scott Lowe url: https://twitter.com/scott_lowe email: scott.lowe@scottlowe.org github: lowescott twitter: scott_lowe # Custom vars version: 1.0.0 # Exclude Ruby gem stuff exclude: ["vendor"] # Gems gems: - jekyll-redirect-from - jekyll-sitemap
Remove line numbers from code blocks
safe: false port: 4000 source: . destination: ./_site plugins_dir: ./_plugins future: true lsi: false highlighter: false markdown: kramdown permalink: none rdiscount: extensions: [] kramdown: auto_ids: true, footnote_nr: 1 entity_output: as_char toc_levels: 1..6 enable_coderay: false syntax_highlighter_opts: block: wrap: div line_numbers: inline line_numbers_start: 1 tab_width: 4 bold_every: 10 css: style
safe: false port: 4000 source: . destination: ./_site plugins_dir: ./_plugins future: true lsi: false highlighter: false markdown: kramdown permalink: none rdiscount: extensions: [] kramdown: auto_ids: true, footnote_nr: 1 entity_output: as_char toc_levels: 1..6 enable_coderay: false syntax_highlighter_opts: block: wrap: div line_numbers: false tab_width: 4 bold_every: 10 css: style
Add position of the author
safe: true markdown: kramdown highlighter: true permalink: /:title.html exclude: [ assets ] default_theme: yandex default_width: 792 default_lang: ru default_body_class: list author: name: Yours Truly # url: http://example.com/ company: name: Яндекс url: http://yandex.ru/ progress: true
safe: true markdown: kramdown highlighter: true permalink: /:title.html exclude: [ assets ] default_theme: yandex default_width: 792 default_lang: ru default_body_class: list author: name: Автор position: Должность company: name: Яндекс url: http://yandex.ru/ progress: true
Update to install DRW plugin 1.0.5.
--- - hosts: taverna-server sudo: true vars: # 1.0.2 supports DRW v13 # 1.0.3 supports DRW v14 drwJarVersion: 1.0.3 tasks: - name: Find Taverna Command Line lib directory shell: > /bin/ls -d {{taverna_server_install}}/WEB-INF/classes/util/taverna-commandline-*/lib register: taverna_server_cl_lib - name: Install Data Refinement JAR for DRW get_url: > url=http://cybertaxonomy.eu/mavenrepo/biovel/drf/drf-workflow/{{drwJarVersion}}/drf-workflow-{{drwJarVersion}}.jar dest={{taverna_server_cl_lib.stdout}}/drf-workflow-{{drwJarVersion}}.jar
--- - hosts: taverna-server sudo: true vars: # 1.0.2 supports DRW v13 # 1.0.3 supports DRW v14 # 1.0.5 supports DRW v16 drwJarVersion: 1.0.5 tasks: - name: Find Taverna Command Line lib directory shell: > /bin/ls -d {{taverna_server_install}}/WEB-INF/classes/util/taverna-commandline-*/lib register: taverna_server_cl_lib - name: Install Data Refinement JAR for DRW get_url: > url=http://cybertaxonomy.eu/mavenrepo/biovel/drf/drf-workflow/{{drwJarVersion}}/drf-workflow-{{drwJarVersion}}.jar dest={{taverna_server_cl_lib.stdout}}/drf-workflow-{{drwJarVersion}}.jar
Revert "Readd Github Metadata to speed up testing."
title: "Your School's Newspaper - DEMO" description: "Demo for Your School's Newspaper" repository: schpaper/schpaper.github.io timezone: America/New_York exclude: [vendor] collections: announcements: output: true layout: announcement sports: output: true layout: sport clubs: output: true layout: club defaults: - scope: path: "" type: announcements values: layout: announcement - scope: path: "" type: sports values: layout: sport - scope: path: "" type: clubs values: layout: club gems: - jekyll-sitemap - jekyll-feed - jekyll-redirect-from - jekyll-paginate - jekyll-github-metadata
title: "Your School's Newspaper - DEMO" description: "Demo for Your School's Newspaper" repository: schpaper/schpaper.github.io timezone: America/New_York exclude: [vendor] collections: announcements: output: true layout: announcement sports: output: true layout: sport clubs: output: true layout: club defaults: - scope: path: "" type: announcements values: layout: announcement - scope: path: "" type: sports values: layout: sport - scope: path: "" type: clubs values: layout: club gems: - jekyll-sitemap - jekyll-feed - jekyll-redirect-from - jekyll-paginate
Add sitemap and change headline
# Dependencies markdown: redcarpet highlighter: pygments # Permalinks permalink: pretty relative_permalinks: true # Setup title: Samy Duc tagline: 'French Nerd' description: 'Follow <a href="https://twitter.com/ricklesauceur" target="_blank">@ricklesauceur</a>.' url: baseurl: / author: name: 'Samy Duc' url: https://twitter.com/ricklesauceur paginate: 1 # Custom vars version: 0.0.1 github: repo: https://github.com/ricklesauceur
# Dependencies markdown: redcarpet highlighter: pygments # Permalinks permalink: pretty relative_permalinks: true # Setup title: Samy Duc tagline: 'French, GameDev and hacker. Full time dreamer' description: 'Follow <a href="https://twitter.com/ricklesauceur" target="_blank">@ricklesauceur</a>.' url: baseurl: / author: name: 'Samy Duc' url: https://twitter.com/ricklesauceur paginate: 1 # Custom vars version: 0.0.1 github: repo: https://github.com/ricklesauceur gems: - jekyll-sitemap
Update markdown processor from rdiscount (deprecated) to GFM
baseurl: / permalink: pretty markdown: rdiscount prose: rooturl: '_posts' siteurl: 'http://rattrayalex.github.io/' relativeLinks: 'http://rattrayalex.github.io/links.jsonp' media: 'media' metadata: _posts: - name: "category" field: element: "hidden" value: "blog" - name: "layout" field: element: "hidden" value: "blog" - name: "title" field: element: "text" label: "Title" value: "" - name: "splash" field: element: "text" label: "Splash image" value: "" - name: "tags" field: element: "multiselect" label: "Add Tags" placeholder: "Choose Tags" options: - name: "Apples" value: "apples" - name: "Bananas" value: "bananas" _posts/static: - name: "layout" field: element: "hidden" value: "page" - name: "title" field: element: "text" label: "Title" value: "" - name: "permalink" field: element: "text" label: "Permalink" value: ""
baseurl: / permalink: pretty markdown: GFM prose: rooturl: '_posts' siteurl: 'http://rattrayalex.github.io/' relativeLinks: 'http://rattrayalex.github.io/links.jsonp' media: 'media' metadata: _posts: - name: "category" field: element: "hidden" value: "blog" - name: "layout" field: element: "hidden" value: "blog" - name: "title" field: element: "text" label: "Title" value: "" - name: "splash" field: element: "text" label: "Splash image" value: "" - name: "tags" field: element: "multiselect" label: "Add Tags" placeholder: "Choose Tags" options: - name: "Apples" value: "apples" - name: "Bananas" value: "bananas" _posts/static: - name: "layout" field: element: "hidden" value: "page" - name: "title" field: element: "text" label: "Title" value: "" - name: "permalink" field: element: "text" label: "Permalink" value: ""
Kill pygmets vs. rouge warning.
# Site wide configuration title: Redwood Bowmen description: Archery #logo: # 120x120 px default image used for Twitter summary card #teaser: # 400x250 px default teaser image used in image archive grid locale: en_US url: http://reboarchers.com # Jekyll configuration sass: sass_dir: _sass style: compressed permalink: /:categories/:title/ markdown: kramdown highlighter: pygments gems: - jekyll-sitemap # Site owner owner: name: email: twitter: google: ad-client: ad-slot: bio: avatar: bio-photo.jpg # 160x160 px image for author byline disqus-shortname: exclude: ["lib", "config.rb", ".sass-cache", "Capfile", "config", "log", "Rakefile", "Rakefile.rb", "tmp", "*.sublime-project", "*.sublime-workspace", "Gemfile", "Gemfile.lock", "README.md", "LICENSE", "node_modules", "Gruntfile.js", "package.json"]
# Site wide configuration title: Redwood Bowmen description: Archery #logo: # 120x120 px default image used for Twitter summary card #teaser: # 400x250 px default teaser image used in image archive grid locale: en_US url: http://reboarchers.com # Jekyll configuration sass: sass_dir: _sass style: compressed permalink: /:categories/:title/ markdown: kramdown highlighter: rouge gems: - jekyll-sitemap # Site owner owner: name: email: twitter: google: ad-client: ad-slot: bio: avatar: bio-photo.jpg # 160x160 px image for author byline disqus-shortname: exclude: ["lib", "config.rb", ".sass-cache", "Capfile", "config", "log", "Rakefile", "Rakefile.rb", "tmp", "*.sublime-project", "*.sublime-workspace", "Gemfile", "Gemfile.lock", "README.md", "LICENSE", "node_modules", "Gruntfile.js", "package.json"]
Update to use auth-ui v6.0.0-SNAPSHOT
version: "2" services: stockmanagement-ui: image: openlmis/dev-ui:5 working_dir: /app volumes: - '.:/app' ports: - "9000:9000" - "9876:9876" env_file: .env volumes_from: - auth-ui - referencedata-ui - ui-components - ui-layout depends_on: - auth-ui - referencedata-ui - ui-components - ui-layout auth-ui: image: openlmis/auth-ui:5.0.4-SNAPSHOT volumes: - '/openlmis-auth-ui' referencedata-ui: image: openlmis/referencedata-ui:5.2.2-SNAPSHOT volumes: - '/openlmis-referencedata-ui' ui-components: image: openlmis/ui-components:5.2.0-SNAPSHOT volumes: - '/openlmis-ui-components' ui-layout: image: openlmis/ui-layout:5.0.3-SNAPSHOT volumes: - '/openlmis-ui-layout' image: build: . image: openlmis/stockmanagement-ui
version: "2" services: stockmanagement-ui: image: openlmis/dev-ui:5 working_dir: /app volumes: - '.:/app' ports: - "9000:9000" - "9876:9876" env_file: .env volumes_from: - auth-ui - referencedata-ui - ui-components - ui-layout depends_on: - auth-ui - referencedata-ui - ui-components - ui-layout auth-ui: image: openlmis/auth-ui:6.0.0-SNAPSHOT volumes: - '/openlmis-auth-ui' referencedata-ui: image: openlmis/referencedata-ui:5.2.2-SNAPSHOT volumes: - '/openlmis-referencedata-ui' ui-components: image: openlmis/ui-components:5.2.0-SNAPSHOT volumes: - '/openlmis-ui-components' ui-layout: image: openlmis/ui-layout:5.0.3-SNAPSHOT volumes: - '/openlmis-ui-layout' image: build: . image: openlmis/stockmanagement-ui
Add excludes to jekyll config
name: Romain Berger markdown: redcarpet pygments: true
name: Romain Berger markdown: redcarpet exclude: - Rakefile - Makefile - Readme.md - config.rb - sprites - '*.scss'
Change canonical url to https
# Site settings title: walsh9.net email: walsh9@gmail.com description: > # this means to ignore newlines until "baseurl:" Personal web site of Matt Walsh. baseurl: "" # the subpath of your site, e.g. /blog/ url: "http://walsh9.net" # the base hostname & protocol for your site github_username: walsh9 linkedin_url: matthewcwalsh google_plus_username: ~ twitter_username: ~ # Build settings markdown: kramdown kramdown: input: GFM enable_coderay: false paginate: 5 paginate_path: "/:num/" permalink: ":categories/:title" collections: projects: gems: - jekyll-redirect-from
# Site settings title: walsh9.net email: walsh9@gmail.com description: > # this means to ignore newlines until "baseurl:" Personal web site of Matt Walsh. baseurl: "" # the subpath of your site, e.g. /blog/ url: "https://walsh9.net" # the base hostname & protocol for your site github_username: walsh9 linkedin_url: matthewcwalsh google_plus_username: ~ twitter_username: ~ # Build settings markdown: kramdown kramdown: input: GFM enable_coderay: false paginate: 5 paginate_path: "/:num/" permalink: ":categories/:title" collections: projects: gems: - jekyll-redirect-from
Disable eslint engine because it doesn't know es6
engines: eslint: enabled: true ratings: paths: - src/**/* - src/node.js # Codeclimate seems to ignore this file by default exclude_paths: - test/**/* - doc/**/* - "gulpfile.js"
ratings: paths: - src/**/* - src/node.js # Codeclimate seems to ignore this file by default exclude_paths: - test/**/* - doc/**/* - "gulpfile.js"
Rearrange Ansible install order again
--- - hosts: all become: true vars: util_base: "{{ playbook_dir | dirname }}" www_base: "{{ util_base | dirname }}" app_base: "{{ www_base | dirname }}" tmp_base: "{{ app_base }}/www_tmp" app_env: "production" testing_mode: false dev_azuracast_user_password: "azuracast" dev_mysql_user_password: "azuracast" roles: - init - azuracast-user - azuracast-config - azuracast-radio - supervisord - nginx - php - redis - mariadb - azuracast-db-install - ufw - composer - services - influxdb - azuracast-db - { role: azuracast-cron, when: testing_mode == false }
--- - hosts: all become: true vars: util_base: "{{ playbook_dir | dirname }}" www_base: "{{ util_base | dirname }}" app_base: "{{ www_base | dirname }}" tmp_base: "{{ app_base }}/www_tmp" app_env: "production" testing_mode: false dev_azuracast_user_password: "azuracast" dev_mysql_user_password: "azuracast" roles: - init - azuracast-user - azuracast-config - azuracast-radio - supervisord - nginx - php - redis - mariadb - azuracast-db-install - ufw - composer - influxdb - services - azuracast-db - { role: azuracast-cron, when: testing_mode == false }
Add roadmap to issues template
blank_issues_enabled: false
blank_issues_enabled: false contact_links: - name: Kubernetes Provider for Terraform Roadmap url: https://github.com/terraform-providers/terraform-provider-kubernetes/blob/master/_about/ROADMAP.md
Fix CI failing with the gpg plugin
name: CI on: pull_request: branches: - main push: branches: - main jobs: build: runs-on: 'ubuntu-latest' steps: - uses: actions/checkout@v2 - name: Set up JDK uses: actions/setup-java@v2 with: distribution: 'zulu' java-version: '8' - name: print Java version run: java -version - uses: actions/cache@v2 with: path: ~/.m2/repository key: maven-${{ runner.os }}-${{ hashFiles('**/pom.xml') }} restore-keys: | maven-${{ runner.os }}-${{ hashFiles('**/pom.xml') }} maven-${{ runner.os }}- maven- - name: Build run: mvn --no-transfer-progress -B clean spotless:check verify - name: Clean before caching run: find ~/.m2 -name "_remote.repositories" | xargs --no-run-if-empty rm
name: CI on: pull_request: branches: - main push: branches: - main jobs: build: runs-on: 'ubuntu-latest' steps: - uses: actions/checkout@v2 - name: Set up JDK uses: actions/setup-java@v2 with: distribution: 'zulu' java-version: '8' - name: print Java version run: java -version - uses: actions/cache@v2 with: path: ~/.m2/repository key: maven-${{ runner.os }}-${{ hashFiles('**/pom.xml') }} restore-keys: | maven-${{ runner.os }}-${{ hashFiles('**/pom.xml') }} maven-${{ runner.os }}- maven- - name: Build run: mvn --no-transfer-progress -B clean spotless:check test - name: Clean before caching run: find ~/.m2 -name "_remote.repositories" | xargs --no-run-if-empty rm
Add jest tests to CI
language: node_js node_js: - 10.15.1 env: - PRODUCTION=true build: ci: - shippable_retry node_modules/.bin/yarn install - node_modules/.bin/gulp min_styl - node_modules/.bin/tslint --project tsconfig.json - node_modules/.bin/webpack --optimize-minimize --devtool=source-map post_ci: - gzip -9 dist/ogs.min.js | wc -c - gzip -9 dist/vendor.min.js | wc -c - gzip -9 dist/ogs.min.css | wc -c cache: true cache_dir_list: - $SHIPPABLE_BUILD_DIR/node_modules
language: node_js node_js: - 10.15.1 env: - PRODUCTION=true build: ci: - shippable_retry node_modules/.bin/yarn install - node_modules/.bin/gulp min_styl - node_modules/.bin/tslint --project tsconfig.json - node_modules/.bin/webpack --optimize-minimize --devtool=source-map - npx jest post_ci: - gzip -9 dist/ogs.min.js | wc -c - gzip -9 dist/vendor.min.js | wc -c - gzip -9 dist/ogs.min.css | wc -c cache: true cache_dir_list: - $SHIPPABLE_BUILD_DIR/node_modules
Save build outputs on steps
box: izumin5210/android build: steps: - script: name: show base information code: | gradle -v echo $ANDROID_HOME echo $ANDROID_BUILD_TOOLS echo $ANDROID_UPDATE_FILTER - script: name: start android emulator code: | start-emulator - script: name: run gradle connectedAndroidTest code: | gradle --full-stacktrace -q --project-cache-dir=$WERCKER_CACHE_DIR connectedAndroidTest after-steps: - script: name: inspect build result code: | pwd ls -la ./konashi-android-sdk/build/outputs/ cp -r ./konashi-android-sdk/build/outputs/* ${WERCKER_REPORT_ARTIFACTS_DIR} REPORT_INDEX=/pipeline/build/konashi-android-sdk/build/reports/androidTests/connected/index.html python .wercker/report.py $REPORT_INDEX deploy: steps: - script: name: show base information code: | gradle -v - script: name: build with gradle code: | gradle build - script: name: upload to bintray code: | gradle bintrayUpload
box: izumin5210/android build: steps: - script: name: show base information code: | gradle -v echo $ANDROID_HOME echo $ANDROID_BUILD_TOOLS echo $ANDROID_UPDATE_FILTER - script: name: start android emulator code: | start-emulator - script: name: run gradle connectedAndroidTest code: | gradle --full-stacktrace -q --project-cache-dir=$WERCKER_CACHE_DIR connectedAndroidTest - script: name: inspect build result code: | pwd ls -la ./konashi-android-sdk/build/outputs/ cp -r ./konashi-android-sdk/build/outputs/* ${WERCKER_REPORT_ARTIFACTS_DIR} REPORT_INDEX=/pipeline/build/konashi-android-sdk/build/reports/androidTests/connected/index.html python .wercker/report.py $REPORT_INDEX deploy: steps: - script: name: show base information code: | gradle -v - script: name: build with gradle code: | gradle build - script: name: upload to bintray code: | gradle bintrayUpload
Change health check endpoint to custom endpoint instead of base URL
run: type: docker env: - PG_HOST - PG_PORT - PG_USER - PG_PASSWORD - PG_SCHEMA - PG_TABLE resources: cpu: 0.2 expose: - name: http port: 80 bind: 80 health_check: type: http path: /
run: type: docker env: - PG_HOST - PG_PORT - PG_USER - PG_PASSWORD - PG_SCHEMA - PG_TABLE resources: cpu: 0.2 expose: - name: http port: 80 bind: 80 health_check: type: http path: /health/check
Use a real Daptiv box
--- driver: name: vagrant provider: virtualbox provisioner: name: chef_zero platforms: - name: windows2012r2 driver: box: virtualbox_windows-2008r2sp1_chef-11.12.4_1.0.2 driver_config: communicator: winrm transport: name: winrm suites: - name: default run_list: - recipe[windows_cert::test_pfx_resource]
--- driver: name: vagrant provider: virtualbox provisioner: name: chef_zero platforms: - name: windows2012r2 driver: box: daptiv/windows2012r2_chef12 driver_config: communicator: winrm transport: name: winrm suites: - name: default run_list: - recipe[windows_cert::test_pfx_resource]
Revert to default max method length
AlignParameters: Enabled: false ClassLength: Max: 110 HandleExceptions: Enabled: false PredicateName: Enabled: false MethodLength: Max: 20 TrivialAccessors: ExactNameMatch: true
AlignParameters: Enabled: false ClassLength: Max: 110 HandleExceptions: Enabled: false PredicateName: Enabled: false TrivialAccessors: ExactNameMatch: true
Bump up maximum class length
AllCops: Exclude: - tmp/**/* - vendor/**/* Documentation: Enabled: false Metrics/ClassLength: Max: 108
AllCops: Exclude: - tmp/**/* - vendor/**/* Documentation: Enabled: false Metrics/ClassLength: Max: 150
Update from Hackage at 2018-11-20T04:55:16Z
homepage: https://github.com/arbor/arbor-monad-counter#readme changelog-type: markdown hash: 8f091da65ceda05e142897f805033155acc07b7a4fc564fd68243bedc2ee9693 test-bench-deps: stm: -any base: ! '>=4.7 && <5' hspec: -any hedgehog: -any containers: -any lens: -any mtl: -any generic-lens: -any transformers: -any resourcet: -any arbor-monad-counter: -any hw-hspec-hedgehog: -any maintainer: mayhem@arbor.net synopsis: '' changelog: ! '# Changelog for arbor-monad-counter ## Unreleased changes ' basic-deps: stm: -any base: ! '>=4.7 && <5' containers: -any lens: -any mtl: -any generic-lens: -any transformers: -any resourcet: -any all-versions: - '2.0.0' author: Arbor Networks latest: '2.0.0' description-type: markdown description: ! '# arbor-monad-counter [![CircleCI](https://circleci.com/gh/arbor/arbor-monad-counter.svg?style=svg)](https://circleci.com/gh/arbor/arbor-monad-counter) ' license-name: MIT
homepage: https://github.com/arbor/arbor-monad-counter#readme changelog-type: markdown hash: 4110f5838978510c6f05eb4bf00240401948662d6bb37dc0bcead4a9931bb9eb test-bench-deps: stm: -any base: ! '>=4.7 && <5' hspec: -any hedgehog: -any containers: -any lens: -any mtl: -any generic-lens: -any transformers: -any resourcet: -any arbor-monad-counter: -any hw-hspec-hedgehog: -any maintainer: mayhem@arbor.net synopsis: '' changelog: ! '# Changelog for arbor-monad-counter ## Unreleased changes ' basic-deps: stm: -any base: ! '>=4.7 && <5' containers: -any lens: -any mtl: -any generic-lens: -any transformers: -any resourcet: -any all-versions: - '2.0.0' - '2.0.1' author: Arbor Networks latest: '2.0.1' description-type: markdown description: ! '# arbor-monad-counter [![CircleCI](https://circleci.com/gh/arbor/arbor-monad-counter.svg?style=svg)](https://circleci.com/gh/arbor/arbor-monad-counter) ' license-name: MIT
Set proper name to reloe binding
apiVersion: rbac.authorization.k8s.io/v1beta1 kind: ClusterRoleBinding metadata: name: fabric8-rbac subjects: - kind: ServiceAccount name: github-actions namespace: default roleRef: kind: ClusterRole name: cluster-admin apiGroup: rbac.authorization.k8s.io
apiVersion: rbac.authorization.k8s.io/v1beta1 kind: ClusterRoleBinding metadata: name: gh-rb subjects: - kind: ServiceAccount name: github-actions namespace: default roleRef: kind: ClusterRole name: cluster-admin apiGroup: rbac.authorization.k8s.io
Fix the released and master versions for docs
markdown: kramdown kramdown: input: GFM hard_wrap: false syntax_highlighter: rouge # These allow the documentation to be updated with new releases of Tachyon. TACHYON_RELEASED_VERSION: 0.9.0-RC1 TACHYON_MASTER_VERSION_SHORT: 0.9.0-SNAPSHOT
markdown: kramdown kramdown: input: GFM hard_wrap: false syntax_highlighter: rouge # These allow the documentation to be updated with new releases of Tachyon. TACHYON_RELEASED_VERSION: 0.8.2 TACHYON_MASTER_VERSION_SHORT: 0.9.0-RC1
Add Github token line requeried for run coveralls
# This workflow will install Python dependencies, run tests and lint with a single version of Python # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: EVA Open targets on: push jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python 3.8 uses: actions/setup-python@v2 with: python-version: 3.8 - name: Install other native packages run: | sudo apt update sudo apt -y install samtools bcftools parallel libbz2-dev liblzma-dev - name: Install dependencies run: | python -m pip install --upgrade pip if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Test 1. Main pipeline run: | # Executing the main pipeline python setup.py install python setup.py test #- name: Test 2. VEP mapping pipeline # run: | # cd vep-mapping-pipeline # bash run_consequence_mapping.sh vep_mapping_pipeline/test/input.xml.gz output_mappings.tsv # diff vep_mapping_pipeline/test/output_mappings.tsv output_mappings.tsv - name: Test 3. Repeat expansion pipeline run: | cd vep-mapping-pipeline python -m pip install --editable . python -m pytest - name: Run the coverall run: | coveralls
# This workflow will install Python dependencies, run tests and lint with a single version of Python # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: EVA Open targets on: push jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python 3.8 uses: actions/setup-python@v2 with: python-version: 3.8 - name: Install other native packages run: | sudo apt update sudo apt -y install samtools bcftools parallel libbz2-dev liblzma-dev - name: Install dependencies run: | python -m pip install --upgrade pip if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Test 1. Main pipeline run: | # Executing the main pipeline python setup.py install python setup.py test #- name: Test 2. VEP mapping pipeline # run: | # cd vep-mapping-pipeline # bash run_consequence_mapping.sh vep_mapping_pipeline/test/input.xml.gz output_mappings.tsv # diff vep_mapping_pipeline/test/output_mappings.tsv output_mappings.tsv - name: Test 3. Repeat expansion pipeline run: | cd vep-mapping-pipeline python -m pip install --editable . python -m pytest - name: Run the coverall env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | coveralls
Update from Hackage at 2018-04-28T10:04:27Z
homepage: '' changelog-type: '' hash: ee17530ef8868e53d42e522920a7c5082091da48e428c7edc6d9b66a71f92596 test-bench-deps: {} maintainer: vamchale@gmail.com synopsis: GMP integer conversions changelog: '' basic-deps: base: ! '>=4.8 && <5' recursion-schemes: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.0.3' - '0.1.0.4' - '0.1.0.5' - '0.1.0.6' - '0.1.0.7' - '0.1.0.8' - '0.1.0.9' - '0.1.0.10' - '0.1.0.11' author: Vanessa McHale latest: '0.1.0.11' description-type: markdown description: ! '# gmpint This defines a `GMPInt` type and a `Storable` instance for that type, as well functions for working with such types. ' license-name: BSD3
homepage: '' changelog-type: '' hash: 98b8f89d350225f20346791404464f01442b707112f41b3bb005db16d75179c1 test-bench-deps: {} maintainer: vamchale@gmail.com synopsis: GMP integer conversions changelog: '' basic-deps: base: ! '>=4.8 && <5' recursion-schemes: -any all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.0.3' - '0.1.0.4' - '0.1.0.5' - '0.1.0.6' - '0.1.0.7' - '0.1.0.8' - '0.1.0.9' - '0.1.0.10' - '0.1.0.11' - '0.1.0.12' author: Vanessa McHale latest: '0.1.0.12' description-type: markdown description: ! '# gmpint This defines a `GMPInt` type and a `Storable` instance for that type, as well functions for working with such types. ' license-name: BSD3
Drop support for IE9 until we actually have support for it
ui: mocha-bdd browserify: - transform: babelify browsers: - name: firefox version: 37..latest platform: Mac 10.10 - name: opera version: latest platform: Mac 10.10 - name: chrome version: 36..latest - name: safari version: 7..latest - name: ie version: 9..latest - name: android version: '4.4..latest' - name: iphone version: '6.0..latest'
ui: mocha-bdd browserify: - transform: babelify browsers: - name: firefox version: 37..latest platform: Mac 10.10 - name: opera version: latest platform: Mac 10.10 - name: chrome version: 36..latest - name: safari version: 7..latest - name: ie version: 10..latest - name: android version: '4.4..latest' - name: iphone version: '6.0..latest'