Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Remove lines instead of commenting
language: ruby cache: bundler bundler_args: '--without production development' #rvm: #- 2.3.0 env: DATABASE_URL=postgres://postgres@localhost/timeoverflow_test before_script: - bundle exec rake db:setup # allow elasticsearch to be ready - https://docs.travis-ci.com/user/database-setup/#ElasticSearch - sleep 10 services: - elasticsearch addons: chrome: stable
language: ruby cache: bundler bundler_args: '--without production development' env: DATABASE_URL=postgres://postgres@localhost/timeoverflow_test before_script: - bundle exec rake db:setup # allow elasticsearch to be ready - https://docs.travis-ci.com/user/database-setup/#ElasticSearch - sleep 10 services: - elasticsearch addons: chrome: stable
Use upload and install scripts
language: python python: # We don't actually use the Travis Python, but this keeps it organized. - "3.5" - "3.6" install: # Install Anaconda - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh; else wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; fi - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - hash -r - conda config --set always_yes yes --set changeps1 no - conda update -q conda script: - echo "No tests to run..." deploy: skip_cleanup: true after_success: - conda install conda-build anaconda-client - mkdir ~/conda-bld - conda config --set anaconda_upload no - export CONDA_BLD_PATH=~/conda-bld - export VERSION=`date +%Y.%m.%d` - conda build -c conda-forge . - PACKAGE=$(conda build -c conda-forge . --output) - echo "Package name $PACKAGE" - anaconda -t $CONDA_UPLOAD_TOKEN upload -u cinpla --force $PACKAGE
language: python python: # We don't actually use the Travis Python, but this keeps it organized. - "3.5" - "3.6" install: - bash libs/travis-conda-scripts/install.sh script: - echo "No tests to run..." deploy: skip_cleanup: true after_success: - bash libs/travis-conda-scripts/upload.sh
Add jruby-head to the list of rubies that are allowed to fail
language: ruby before_install: gem install bundler bundler_args: --without yard guard benchmarks script: "bundle exec rake ci" rvm: - 1.9.3 - 2.0.0 - ruby-head - rbx-19mode matrix: include: - rvm: jruby-19mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" - rvm: jruby-head env: JRUBY_OPTS="$JRUBY_OPTS --debug" allow_failures: # broken on travis - rvm: ruby-head notifications: irc: channels: - irc.freenode.org#rom-rb on_success: never on_failure: change email: recipients: - dan.kubb@gmail.com - mbj@schirp-dso.com on_success: never on_failure: change
language: ruby before_install: gem install bundler bundler_args: --without yard guard benchmarks script: "bundle exec rake ci" rvm: - 1.9.3 - 2.0.0 - ruby-head - rbx-19mode matrix: include: - rvm: jruby-19mode env: JRUBY_OPTS="$JRUBY_OPTS --debug" - rvm: jruby-head env: JRUBY_OPTS="$JRUBY_OPTS --debug" allow_failures: - rvm: jruby-head # travis broken - rvm: ruby-head # travis broken notifications: irc: channels: - irc.freenode.org#rom-rb on_success: never on_failure: change email: recipients: - dan.kubb@gmail.com - mbj@schirp-dso.com on_success: never on_failure: change
Stop building Node 0.6 builds
language: node_js node_js: - stable - "0.11" - "0.10" - "0.8" - "0.6" - iojs - iojs-v1.0.4 before_install: npm install -g npm@'>=1.4.3' notifications: email: false
language: node_js node_js: - stable - "0.11" - "0.10" - "0.8" - iojs - iojs-v1.0.4 before_install: npm install -g npm@'>=1.4.3' notifications: email: false
Remove puppet 2.7.0 from CI
--- language: ruby bundler_args: --without development before_install: rm Gemfile.lock || true rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.0 script: bundle exec rake test env: - PUPPET_VERSION="~> 2.7.0" - PUPPET_VERSION="~> 3.2.0" - PUPPET_VERSION="~> 3.3.0" - PUPPET_VERSION="~> 3.4.0" - PUPPET_VERSION="~> 3.5.0" - PUPPET_VERSION="~> 3.6.0" matrix: exclude: - rvm: 1.9.3 env: PUPPET_VERSION="~> 2.7.0" - rvm: 2.0.0 env: PUPPET_VERSION="~> 2.7.0" - rvm: 2.1.0 env: PUPPET_VERSION="~> 2.7.0" - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.2.0" - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.3.0" - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.4.0"
--- language: ruby bundler_args: --without development before_install: rm Gemfile.lock || true rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.0 script: bundle exec rake test env: - PUPPET_VERSION="~> 3.2.0" - PUPPET_VERSION="~> 3.3.0" - PUPPET_VERSION="~> 3.4.0" - PUPPET_VERSION="~> 3.5.0" - PUPPET_VERSION="~> 3.6.0" matrix: exclude: - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.2.0" - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.3.0" - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.4.0"
Speed up ci with cache.
language: cpp sudo: required services: - docker dist: trusty os: linux env: - JOB=build - JOB=lint - JOB=test install: skip before_script: - if [ ! -d "${HOME}/.cache" ]; then mkdir ${HOME}/.cache; fi - cp scripts/AGREEMENT.txt ${HOME}/.cache/.apollo_agreement.txt - ./apollo_docker.sh clean script: - ./apollo_docker.sh ${JOB} notifications: email: on_success: change on_failure: always
language: cpp sudo: required services: - docker dist: trusty os: linux env: - JOB=build - JOB=lint - JOB=test cache: directories: - $HOME/.cache/bazel install: skip before_script: - if [ ! -d "${HOME}/.cache" ]; then mkdir ${HOME}/.cache; fi - cp scripts/AGREEMENT.txt ${HOME}/.cache/.apollo_agreement.txt script: - ./apollo_docker.sh ${JOB} - ./apollo_docker.sh clean - rm -rf "${HOME}/.cache/bazel/_bazel_${USER}/install" notifications: email: on_success: change on_failure: always
Add PHP7 to build matrix
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm - hhvm-nightly matrix: allow_failures: - php: hhvm - php: hhvm-nightly before_script: - composer install script: - vendor/bin/atoum --test-ext
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - nightly - hhvm - hhvm-nightly matrix: allow_failures: - php: nightly - php: hhvm - php: hhvm-nightly before_script: - composer install script: - vendor/bin/atoum --test-ext
Change build tools version for CI
language: android env: global: - ADB_INSTALL_TIMEOUT=8 # 8 minutes (2 minutes by default) android: components: - tools - platform-tools - build-tools-25.0.3 - android-24 - android-22 - extra-google-google_play_services - extra-google-m2repository - extra-android-m2repository - sys-img-armeabi-v7a-android-22 before_script: - echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a -c 32M - emulator -avd test -no-audio -no-window & - android-wait-for-emulator - sleep 180 - adb devices - adb shell input keyevent 82 & script: - ./gradlew build checkstyle connectedCheck -PdisablePreDex
language: android env: global: - ADB_INSTALL_TIMEOUT=8 # 8 minutes (2 minutes by default) android: components: - tools - platform-tools - build-tools-27.0.3 - android-24 - android-22 - extra-google-google_play_services - extra-google-m2repository - extra-android-m2repository - sys-img-armeabi-v7a-android-22 before_script: - echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a -c 32M - emulator -avd test -no-audio -no-window & - android-wait-for-emulator - sleep 180 - adb devices - adb shell input keyevent 82 & script: - ./gradlew build checkstyle connectedCheck -PdisablePreDex
Fix for CONNECTORS-1684 Merged revision(s) 1895842-1895847 from manifoldcf/branches/CONNECTORS-1684:
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. install: true git: depth: 1 env: matrix: - TEST_SCRIPT="mvn -q install -DskipITs" - TEST_SCRIPT="mvn -q test-compile javadoc:javadoc" - TEST_SCRIPT="ant make-core-deps make-deps test" script: $TEST_SCRIPT language: java jdk: - oraclejdk8 cache: directories: - $HOME/.m2 notifications: email: false dist: trusty
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. install: true git: depth: 1 env: matrix: - TEST_SCRIPT="mvn -q install -DskipITs" - TEST_SCRIPT="mvn --no-transfer-progress package -DskipTests -DskipITs javadoc:javadoc" - TEST_SCRIPT="ant make-core-deps make-deps test" script: $TEST_SCRIPT language: java jdk: - openjdk8 addons: apt: packages: - ant - ant-optional cache: directories: - $HOME/.m2 notifications: email: false
Add Ruby 2.5.0 to the build matrix
language: ruby bundler_args: --without development --path vendor/bundle before_install: - gem install bundler - gem update bundler - bundle install rvm: - 2.2.7 - 2.3.4 - 2.4.1 - ruby-head - jruby-head - rbx-3 - jruby-9.1.2.0 matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: rbx-3 exclude: - rvm: 2.3.4 os: osx - rvm: 2.4.1 os: osx - rvm: jruby-head os: osx - rvm: rbx-3 os: osx fast_finish: true os: - linux - osx osx_image: xcode7.1 env: # TODO: 0.8 is enough on Linux, but 2 seems needed for Travis/OSX - LISTEN_TESTS_DEFAULT_LAG=2 sudo: false cache: bundler
language: ruby bundler_args: --without development --path vendor/bundle before_install: - gem update --system - gem install bundler - gem update bundler - bundle install rvm: - 2.2.7 - 2.3.4 - 2.4.1 - 2.5.0 - ruby-head - jruby-head - rbx-3 - jruby-9.1.2.0 matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: rbx-3 exclude: - rvm: 2.3.4 os: osx - rvm: 2.4.1 os: osx - rvm: jruby-head os: osx - rvm: rbx-3 os: osx fast_finish: true os: - linux - osx osx_image: xcode7.1 env: # TODO: 0.8 is enough on Linux, but 2 seems needed for Travis/OSX - LISTEN_TESTS_DEFAULT_LAG=2 sudo: false cache: bundler
Update Travis CI Configuration Go Version
language: go script: true sudo: false go: - 1.4 - tip before_install: - go get github.com/golang/lint/golint script: - $HOME/gopath/bin/golint ./... - go test -v ./...
language: go script: true sudo: false go: - 1.6 - tip before_install: - go get github.com/golang/lint/golint script: - $HOME/gopath/bin/golint ./... - go test -v ./...
Remove unsupported PHP version from Travis
language: php php: - 7.1 - 7.0 - 5.6 - 5.5 - 5.4 - nightly matrix: fast_finish: true include: - php: 5.4 env: SYMFONY_VERSION=2.7.* - php: 5.6 env: SYMFONY_VERSION=2.7.* - php: 5.6 env: SYMFONY_VERSION=2.8.* - php: 5.6 env: SYMFONY_VERSION=3.0.* allow_failures: - php: nightly before_install: - composer self-update - if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi; install: composer update --prefer-dist --no-interaction $COMPOSER_FLAGS script: - vendor/bin/phpunit
language: php php: - 7.1 - 7.0 - 5.6 - nightly matrix: fast_finish: true include: - php: 5.4 env: SYMFONY_VERSION=2.7.* - php: 5.6 env: SYMFONY_VERSION=2.7.* - php: 5.6 env: SYMFONY_VERSION=2.8.* - php: 5.6 env: SYMFONY_VERSION=3.0.* - php: 5.6 env: SYMFONY_VERSION=3.1.* allow_failures: - php: nightly before_install: - composer self-update - if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi; install: composer update --prefer-dist --no-interaction $COMPOSER_FLAGS script: - vendor/bin/phpunit
Add zoe logging to the test coverage metrics
language: python python: - "3.4" - "3.5" install: - pip install -r requirements.txt before_script: script: - PYTHONPATH=. py.test --cov=zoe_cmd --cov=zoe_lib --cov=zoe_web --cov=zoe_master --cov=zoe_observer
language: python python: - "3.4" - "3.5" install: - pip install -r requirements.txt before_script: script: - PYTHONPATH=. py.test --cov=zoe_cmd --cov=zoe_lib --cov=zoe_web --cov=zoe_master --cov=zoe_observer --cov=zoe_logger
Remove node v0.6 since it doesn't have peerDependencies for AwsSum
language: node_js node_js: - "0.6" - "0.8" - "0.10"
language: node_js node_js: - "0.8" - "0.10"
Upgrade the version of Xcode used by Travis CI
language: ruby os: osx rvm: system before_install: - export TRAVIS_COMMIT="$(git rev-parse --verify -q HEAD)" - if [ -f ".git/shallow" ]; then travis_retry git fetch --unshallow; fi - HOMEBREW_REPOSITORY="$(brew --repo)" - sudo chown -R "$USER" "$HOMEBREW_REPOSITORY" - git -C "$HOMEBREW_REPOSITORY" reset --hard origin/master - brew update || brew update - HOMEBREW_TAP_DIR="$(brew --repo "$TRAVIS_REPO_SLUG")" - mkdir -p "$(dirname "$HOMEBREW_TAP_DIR")" - rm -rf "$HOMEBREW_TAP_DIR" - ln -s "$PWD" "$HOMEBREW_TAP_DIR" - export HOMEBREW_DEVELOPER="1" - ulimit -n 1024 script: - brew test-bot --fast notifications: email: on_success: never on_failure: always
language: ruby rvm: system os: osx osx_image: xcode10.1 before_install: - export TRAVIS_COMMIT="$(git rev-parse --verify -q HEAD)" - if [ -f ".git/shallow" ]; then travis_retry git fetch --unshallow; fi - HOMEBREW_REPOSITORY="$(brew --repo)" - sudo chown -R "$USER" "$HOMEBREW_REPOSITORY" - git -C "$HOMEBREW_REPOSITORY" reset --hard origin/master - brew update || brew update - HOMEBREW_TAP_DIR="$(brew --repo "$TRAVIS_REPO_SLUG")" - mkdir -p "$(dirname "$HOMEBREW_TAP_DIR")" - rm -rf "$HOMEBREW_TAP_DIR" - ln -s "$PWD" "$HOMEBREW_TAP_DIR" - export HOMEBREW_DEVELOPER="1" - ulimit -n 1024 script: - brew test-bot --fast notifications: email: on_success: never on_failure: always
Fix CI build for 1.9.3
language: ruby bundler_args: --without debug release rvm: - 1.9.3 - 2.0.0 - rbx-2 - jruby-19mode - jruby-head - ruby-head matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head
language: ruby bundler_args: --without debug release before_install: - gem install bundler rvm: - 1.9.3 - 2.0.0 - rbx-2 - jruby-19mode - jruby-head - ruby-head matrix: allow_failures: - rvm: jruby-head - rvm: ruby-head
Add more node verions to Travis CI
language: node_js node_js: - iojs-v1 - iojs-v2 - iojs-v3 - 4 - 0.12 matrix: allow_failures: - node_js: "0.10" fast_finish: true script: "npm run-script test" after_script: - "npm install coveralls codecov.io" - "cat ./coverage/lcov.info | coveralls" - "cat ./coverage/coverage.json | ./node_modules/codecov.io/bin/codecov.io.js"
language: node_js node_js: - iojs-v1 - iojs-v2 - iojs-v3 - 6 - 5 - 4 - 0.12 matrix: allow_failures: - node_js: "0.10" fast_finish: true script: "npm run-script test" after_script: - "npm install coveralls codecov.io" - "cat ./coverage/lcov.info | coveralls" - "cat ./coverage/coverage.json | ./node_modules/codecov.io/bin/codecov.io.js"
Drop Travis targets for Node 0.6 and 0.8
language: node_js node_js: - 0.6 - 0.8 - 0.12 - 4 - 5
language: node_js node_js: - 0.12 - 4 - 5
Add bin directory to path
language: python python: - "2.7" install: "pip install -r requirements.txt" script: - git config --global user.email "Brickstertwo@users.noreply.github.com" - git config --global user.name "Marcus Rosenow" - nosetests
language: python python: - "2.7" install: "pip install -r requirements.txt" script: - git config --global user.email "Brickstertwo@users.noreply.github.com" - git config --global user.name "Marcus Rosenow" - export PATH="$PATH:$TRAVIS_BUILD_DIR/bin" - nosetests
Make sure dependencies are up-to-date
language: php cache: directories: - $HOME/.composer/cache php: - 7.1 - nightly - hhvm matrix: allow_failures: - php: nightly - php: hhvm install: - export PATH="$PATH:$HOME/.composer/vendor/bin" - if php -v | grep -q 'PHP 7'; then composer tools; fi - composer global require satooshi/php-coveralls ^1.0.0 - composer update --no-interaction before_script: - if php -v | grep -q 'Xdebug'; then coverage="--coverage-xml"; fi - vendor/bin/codecept build script: - if php -v | grep -q 'PHP 7'; then vendor-tools/bin/php-cs-fixer fix --dry-run; fi - if php -v | grep -q 'PHP 7'; then vendor-tools/bin/phpstan analyse --level=4 --configuration=phpstan.neon src tests; fi - vendor/bin/codecept run $coverage after_success: - if [[ ! -z $coverage ]]; then coveralls; fi
language: php cache: directories: - $HOME/.composer/cache php: - 7.1 - nightly - hhvm matrix: fast_finish: true allow_failures: - php: nightly - php: hhvm install: - export PATH="$PATH:$HOME/.composer/vendor/bin" - if php -v | grep -q 'PHP 7'; then composer tools; fi - composer global require satooshi/php-coveralls ^1.0.0 - composer update --no-interaction before_script: - if php -v | grep -q 'Xdebug'; then coverage="--coverage-xml"; fi - vendor/bin/codecept build script: - "! (composer outdated --direct | grep ^)" - if php -v | grep -q 'PHP 7'; then vendor-tools/bin/php-cs-fixer fix --dry-run; fi - if php -v | grep -q 'PHP 7'; then vendor-tools/bin/phpstan analyse --level=4 --configuration=phpstan.neon src tests; fi - vendor/bin/codecept run $coverage after_success: - if [[ ! -z $coverage ]]; then coveralls; fi
Fix before_script to work with HHVM
language: php php: - 5.3 - 5.4 - 5.5 - hhvm before_script: - curl -s http://getcomposer.org/installer | php - php composer.phar install --dev script: phpunit --coverage-clover clover after_success: - curl -sL https://bit.ly/artifact-uploader | php matrix: allow_failures: - php: hhvm
language: php php: - 5.3 - 5.4 - 5.5 - hhvm before_script: - wget http://getcomposer.org/composer.phar - php composer.phar install --dev script: phpunit --coverage-clover clover after_success: - curl -sL https://bit.ly/artifact-uploader | php matrix: allow_failures: - php: hhvm
Test against stable versions explicitly
language: rust sudo: false rust: - stable - beta - nightly
language: rust sudo: false rust: - 1.0.0 - 1.1.0 - 1.2.0 - beta - nightly
Install latest bundler on Travis.
# configuration settings for http://travis-ci.org language: ruby rvm: - 1.9.2 bundler_args: --without development assets before_script: - "bundle exec rake db:migrate ; RAILS_ENV=test rake db:migrate" script: TRAVIS=1 bundle exec rspec spec notifications: email: false branches: only: - master
# configuration settings for http://travis-ci.org language: ruby rvm: - 1.9.2 before_install: - gem install bundler bundler_args: --without development assets before_script: - "bundle exec rake db:migrate ; RAILS_ENV=test rake db:migrate" script: TRAVIS=1 bundle exec rspec spec notifications: email: false branches: only: - master
Switch back to stable ChefDK builds for testing
sudo: required dist: trusty # install the pre-release chef-dk. Use chef-stable-precise to install the stable release 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-ubuntu-1204 - INSTANCE=default-ubuntu-1404 - INSTANCE=default-ubuntu-1604 - INSTANCE=default-debian-7 - INSTANCE=default-debian-8 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(/opt/chefdk/bin/chef shell-init bash)" script: KITCHEN_LOCAL_YAML=.kitchen.docker.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE} matrix: include: - before_script: - eval "$(/opt/chefdk/bin/chef shell-init bash)" - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/cookstyle --version - /opt/chefdk/embedded/bin/foodcritic --version - script: - /opt/chefdk/bin/chef exec rake env: UNIT_AND_LINT=1
sudo: required dist: trusty # install the pre-release chef-dk. Use chef-stable-precise to install the stable release addons: apt: sources: - chef-stable-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-ubuntu-1204 - INSTANCE=default-ubuntu-1404 - INSTANCE=default-ubuntu-1604 - INSTANCE=default-debian-7 - INSTANCE=default-debian-8 before_script: - sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) - eval "$(/opt/chefdk/bin/chef shell-init bash)" script: KITCHEN_LOCAL_YAML=.kitchen.docker.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE} matrix: include: - before_script: - eval "$(/opt/chefdk/bin/chef shell-init bash)" - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/cookstyle --version - /opt/chefdk/embedded/bin/foodcritic --version - script: - /opt/chefdk/bin/chef exec rake env: UNIT_AND_LINT=1
Remove Vault 0.6.0 from build testing.
language: java jdk: - openjdk12 sudo: required env: matrix: - VAULT_VER=0.6.0 - VAULT_VER=0.6.5 - VAULT_VER=0.7.0 - VAULT_VER=0.7.3 - VAULT_VER=0.8.0 - VAULT_VER=0.8.3 - VAULT_VER=0.9.0 - VAULT_VER=0.9.6 - VAULT_VER=0.10.4 - VAULT_VER=0.11.6 - VAULT_VER=1.0.3 - VAULT_VER=1.1.5 - VAULT_VER=1.2.2 - EDITION=enterprise VAULT_VER=0.11.0 - PROFILE=springNext before_install: - test ! -f ~/.m2/settings.xml || rm ~/.m2/settings.xml install: - src/test/bash/minikube_ci_initialize.sh - src/test/bash/local_run_k8s.sh "./minikube" "./kubectl" - src/test/bash/start.sh script: ./mvnw clean verify -DMINIKUBE_IP=$(./minikube ip) -P${PROFILE:-ci} after_script: - pkill vault cache: directories: - '$HOME/.m2/repository' - '$HOME/.m2/wrapper' - 'download'
language: java jdk: - openjdk12 sudo: required env: matrix: - VAULT_VER=0.6.5 - VAULT_VER=0.7.0 - VAULT_VER=0.7.3 - VAULT_VER=0.8.0 - VAULT_VER=0.8.3 - VAULT_VER=0.9.0 - VAULT_VER=0.9.6 - VAULT_VER=0.10.4 - VAULT_VER=0.11.6 - VAULT_VER=1.0.3 - VAULT_VER=1.1.5 - VAULT_VER=1.2.2 - EDITION=enterprise VAULT_VER=0.11.0 - PROFILE=springNext before_install: - test ! -f ~/.m2/settings.xml || rm ~/.m2/settings.xml install: - src/test/bash/minikube_ci_initialize.sh - src/test/bash/local_run_k8s.sh "./minikube" "./kubectl" - src/test/bash/start.sh script: ./mvnw clean verify -DMINIKUBE_IP=$(./minikube ip) -P${PROFILE:-ci} after_script: - pkill vault cache: directories: - '$HOME/.m2/repository' - '$HOME/.m2/wrapper' - 'download'
Use castxml-macosx.tar.gz for macOS archive
sudo: true language: cpp os: - osx compiler: - clang cache: directories: - "$HOME/Library/Caches/Homebrew" script: - brew update && brew install llvm - mkdir -p ../CastXMLSuperbuild-build && cd ../CastXMLSuperbuild-build - brew list llvm | grep LLVMConfig.cmake - cmake -DUSE_SYSTEM_LLVM:BOOL=ON -DLLVM_DIR=/usr/local/Cellar/llvm/5.0.0/lib/cmake/llvm ../CastXMLSuperbuild && make -j4 - cd castxml-prefix/src/castxml-build && ctest && cd ../../.. - tar cvf castxml-osx.tar castxml && gzip -9 castxml-osx.tar - curl -F file="@castxml-osx.tar.gz" https://filebin.ca/upload.php
sudo: true language: cpp os: - osx compiler: - clang cache: directories: - "$HOME/Library/Caches/Homebrew" script: - brew update && brew install llvm - mkdir -p ../CastXMLSuperbuild-build && cd ../CastXMLSuperbuild-build - brew list llvm | grep LLVMConfig.cmake - cmake -DUSE_SYSTEM_LLVM:BOOL=ON -DLLVM_DIR=/usr/local/Cellar/llvm/5.0.0/lib/cmake/llvm ../CastXMLSuperbuild && make -j4 - cd castxml-prefix/src/castxml-build && ctest && cd ../../.. - tar cvf castxml-macosx.tar castxml && gzip -9 castxml-macosx.tar - curl -F file="@castxml-macosx.tar.gz" https://filebin.ca/upload.php
Add more different rubies to test
language: ruby rvm: # - "1.8.7" - "1.9.2" # - "1.9.3" # - jruby-18mode # JRuby in 1.8 mode # - jruby-19mode # JRuby in 1.9 mode # - rbx-18mode # - rbx-19mode # uncomment this line if your project needs to run something other than `rake`: script: bundle exec rspec spec
language: ruby rvm: - "1.8.7" - "1.9.2" - "1.9.3" - jruby-18mode # JRuby in 1.8 mode - jruby-19mode # JRuby in 1.9 mode # - rbx-18mode # - rbx-19mode # uncomment this line if your project needs to run something other than `rake`: script: bundle exec rspec spec
Add blank client id and secret env vars
language: ruby rvm: - 2.1.5 - 2.2.3 before_install: gem install bundler -v 1.10.6 cache: bundler sudo: false fast_finish: true env: - USER_ID= notifications: email: on_success: always on_failure: always
language: ruby rvm: - 2.1.5 - 2.2.3 before_install: gem install bundler -v 1.10.6 cache: bundler sudo: false fast_finish: true env: - USER_ID= - SYNAPSE_PAYMENTS_CLIENT_ID= - SYNAPSE_PAYMENTS_CLIENT_SECRET= notifications: email: on_success: always on_failure: always
Fix an error in the coverage arguments.
language: python python: - "2.7" - "3.3" before_install: - sudo apt-get update -qq - sudo apt-get install -y python-gtk2 install: - pip install behave colormath coverage coveralls multipledispatch networkx numpy>=1.7 script: - coverage run --source toyplot --omit toyplot/testing.py -m nose - coverage run --source toyplot --omit toyplot/testing.py -m behave --append - coverage report after_script: - coveralls
language: python python: - "2.7" - "3.3" before_install: - sudo apt-get update -qq - sudo apt-get install -y python-gtk2 install: - pip install behave colormath coverage coveralls multipledispatch networkx numpy>=1.7 script: - coverage run --source toyplot --omit toyplot/testing.py -m nose - coverage run --append --source toyplot --omit toyplot/testing.py -m behave - coverage report after_script: - coveralls
Add automatic deployments via Travis
language: node_js node_js: - "5" script: - npm test
language: node_js node_js: - stable cache: yarn: true directories: - node_modules install: - yarn script: - yarn test deploy: provider: npm email: joel@oblador.se api_key: secure: "T7XJiVK5NW+8D8/Fo4NMM2kaU54MRFWmRf2b3hVpUIN8padSslLSxTqphB0A4GbiqMRj3POQfrtizD3e5riGwC1niv3HMus8FP6DcsOoIYOFvg/CXnsLSvyOsNQSNSDCt/IJ1PsgpkC7GjUc8UVEaBgCWfR+8SkdDoyIoO8ntEq10zxNub16za7heLEi9Nm+Ve39VPLMj5lbKufjbCL/APIx0xjQT09pvr3vY4/9XMPkujiPHY4xmcb4kdr5p4TS+k2Ax/wjVfk4UGBlr0L/t9tpOUEO1gsrY54BR4MywfSe+0/etXVt5u0D1BnUp1I+LnhqdFjaTVeBKQWfO6tCy55hrI8pGMx4tFVISzqYIHSlrIE+zMaOjBzYU4VhM6uRaCPfQ2+3S252aMX9IkKw0p5mhb35vx7lMXkm1dRFUIXgJfXlJM+Wg0IuVd5SxpnBlp5C4KKDnuXkHsFsWd49H65smQhig6gIw9N1pID03puW/aaDToLpzrU/Q+U1wIg29aWTw5aVQYT31xtW4ofqYaNpTkHwgiC2W4bu8Yk8x3yvfbb67eJYQtBPjsb9aswv8UYc5uEejYGy1B7IRCWEU7f8By52nJB24XGFbij6d4SLpX+MMhumxVt7o3yJiDpzZB7nFC+c0AZuy3CF2lLg2jbxe4XJKJogB6py18V7bLY=" on: tags: true repo: oblador/react-native-progress condition: "$TRAVIS_TAG =~ ^v[0-9]+\\.[0-9]+\\.[0-9]+.*$"
Allow builds against Go tip to fail
language: go go: - 1.6 - tip install: true # Bypass installing deps on travis to force vendoring script: go test -v -race ./...
language: go go: - 1.6 - tip matrix: fast_finish: true allow_failures: - go: tip install: true # Bypass installing deps on travis to force vendoring script: go test -v -race ./...
Remove NPM self-update from TravisCI
language: node_js node_js: - "8" - "6" - "4" before_install: - npm update -g npm - npm install -g grunt-cli sudo: false
language: node_js node_js: - "8" - "6" - "4" before_install: - npm install -g grunt-cli sudo: false
Test on latest node 4 version
language: node_js sudo: false node_js: - "4.2" - "stable"
language: node_js sudo: false node_js: - "4" - node
Use node 10 on TravisCI
language: node_js cache: yarn: true directories: - node_modules before_install: - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporter - ./cc-test-reporter before-build node_js: - "8" script: - yarn test - yarn deploy && rm -rf ./node_modules/.cache - ls -l build/* build.zip - sha256sum build/* build.zip | tee SHA256SUMS.txt - cat build/* | sha256sum | tee -a SHA256SUMS.txt after_script: - yarn codecov - yarn coveralls - ./cc-test-reporter after-build --coverage-input-type lcov deploy: provider: releases api_key: $GITHUB_OAUTH_TOKEN file: - build.zip - SHA256SUMS.txt skip_cleanup: true on: tags: true
language: node_js cache: yarn: true directories: - node_modules before_install: - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporter - ./cc-test-reporter before-build node_js: - "10" script: - yarn test - yarn deploy && rm -rf ./node_modules/.cache - ls -l build/* build.zip - sha256sum build/* build.zip | tee SHA256SUMS.txt - cat build/* | sha256sum | tee -a SHA256SUMS.txt after_script: - yarn codecov - yarn coveralls - ./cc-test-reporter after-build --coverage-input-type lcov deploy: provider: releases api_key: $GITHUB_OAUTH_TOKEN file: - build.zip - SHA256SUMS.txt skip_cleanup: true on: tags: true
Test against Node.js version 8 at Travis CI
sudo: false language: node_js node_js: - "7" - "6" addons: apt: packages: - imagemagick script: - npm run lint - npm test cache: directories: - node_modules matrix: fast_finish: true
sudo: false language: node_js node_js: - "8" - "6" addons: apt: packages: - imagemagick script: - npm run lint - npm test cache: directories: - node_modules matrix: fast_finish: true
Use public release for CI
language: objective-c notifications: email: on_success: never on_failure: change env: - ATOM_CHANNEL=beta script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh' branches: only: - master
language: objective-c notifications: email: on_success: never on_failure: change script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh' branches: only: - master
Remove build command and replace with pack command for src projects as pack will run a build anyway.
language: CSharp mono: - latest install: - curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_BRANCH=dev sh && source ~/.dnx/dnvm/dnvm.sh - dnvm upgrade - dnu restore env: - DNX_BUILD_VERSION=$TRAVIS_BRANCH-$TRAVIS_BUILD_NUMBER script: - dnu build --configuration Release src/SharpEqualsTester/ - dnu build --configuration Release test/SharpEqualsTester.Tests - dnx --project test/SharpEqualsTester.Tests --configuration Release test - dnu pack src/SharpEqualsTester/ --configuration Release - nuget push src/SharpEqualsTester/bin/Release/SharpEqualsTester.*.nupkg -ApiKey 40a11e65-c7f8-47cb-bfb9-c86ccd5e8234 -NonInteractive
language: CSharp mono: - latest install: - curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_BRANCH=dev sh && source ~/.dnx/dnvm/dnvm.sh - dnvm upgrade - dnu restore env: - DNX_BUILD_VERSION=$TRAVIS_BRANCH-$TRAVIS_BUILD_NUMBER script: - dnu pack --configuration Release src/SharpEqualsTester/ - dnu build --configuration Release test/SharpEqualsTester.Tests - dnx --project test/SharpEqualsTester.Tests --configuration Release test - nuget push src/SharpEqualsTester/bin/Release/SharpEqualsTester.*.nupkg -ApiKey 40a11e65-c7f8-47cb-bfb9-c86ccd5e8234 -NonInteractive
Drop support for oldest versions of node
language: node_js node_js: - "5" - "5.1" - "4" - "4.2" - "4.1" - "4.0" - "0.12" - "0.11" - "0.10" - "0.8" - "0.6" - "iojs"
language: node_js node_js: - "5" - "5.1" - "4" - "4.2" - "4.1" - "4.0" - "0.12" - "0.11" - "0.10" - "iojs"
Remove xvfb for saucelabs. Use wct instead of polymer-cli
sudo: false dist: trusty language: node_js node_js: 8.0 cache: directories: - node_modules addons: firefox: latest google-chrome: latest install: - npm install - bower install before_script: - gulp lint version:check - xvfb-run -s '-screen 0 1024x768x24' polymer test script: - if [[ "$TRAVIS_EVENT_TYPE" != "pull_request" && "$TRAVIS_BRANCH" != quick/* ]]; then xvfb-run -s '-screen 0 1024x768x24' polymer test --env saucelabs; fi - if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then xvfb-run -s '-screen 0 1024x768x24' polymer test --env saucelabs-cron; fi
sudo: false dist: trusty language: node_js node_js: 8.0 cache: directories: - node_modules addons: firefox: latest google-chrome: latest install: - npm install - bower install before_script: - gulp lint version:check - xvfb-run -s '-screen 0 1024x768x24' wct script: - if [[ "$TRAVIS_EVENT_TYPE" != "pull_request" && "$TRAVIS_BRANCH" != quick/* ]]; then wct --env saucelabs; fi - if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then wct --env saucelabs-cron; fi
Use latest DITA-OT version (3.0.2) for CI builds
sudo: false language: java jdk: - oraclejdk8 env: global: - DITA_OT_VERSION=3.0.1 install: - ".travis/install.sh" script: - ".travis/publish.sh" after_success: - ".travis/deploy.sh"
sudo: false language: java jdk: - oraclejdk8 env: global: - DITA_OT_VERSION=3.0.2 install: - ".travis/install.sh" script: - ".travis/publish.sh" after_success: - ".travis/deploy.sh"
Add PHP 7.2 to Travis-CI build
language: php php: - 7.0 - 7.1 - nightly before_script: - travis_retry composer self-update - travis_retry composer install --no-interaction --prefer-source --dev script: - vendor/bin/parallel-lint src tests - vendor/bin/phpcs --config-set ignore_warnings_on_exit 1 - vendor/bin/phpcs --standard=psr2 src - if [[ ${TRAVIS_PHP_VERSION:0:3} == "7.0" ]]; then vendor/bin/phpcs --standard=phpcs.xml src --ignore=tests/Sniffs; fi - if [[ ${TRAVIS_PHP_VERSION:0:3} == "7.0" ]]; then vendor/bin/phpcs --standard=codor.xml src -spn; fi - vendor/bin/phpunit --debug --coverage-clover=coverage.xml - vendor/bin/phpmd src text codesize,unusedcode,naming - vendor/bin/phploc src - vendor/bin/phpcpd src - php churn run src after_success: - bash <(curl -s https://codecov.io/bash)
language: php php: - 7.0 - 7.1 - 7.2 - nightly before_script: - travis_retry composer self-update - travis_retry composer install --no-interaction --prefer-source --dev script: - vendor/bin/parallel-lint src tests - vendor/bin/phpcs --config-set ignore_warnings_on_exit 1 - vendor/bin/phpcs --standard=psr2 src - if [[ ${TRAVIS_PHP_VERSION:0:3} == "7.0" ]]; then vendor/bin/phpcs --standard=phpcs.xml src --ignore=tests/Sniffs; fi - if [[ ${TRAVIS_PHP_VERSION:0:3} == "7.0" ]]; then vendor/bin/phpcs --standard=codor.xml src -spn; fi - vendor/bin/phpunit --debug --coverage-clover=coverage.xml - vendor/bin/phpmd src text codesize,unusedcode,naming - vendor/bin/phploc src - vendor/bin/phpcpd src - php churn run src after_success: - bash <(curl -s https://codecov.io/bash)
Test against one more Ruby.
language: ruby rvm: - 1.9.2 env: DISPLAY=:99.0 before_script: - mysql -e 'create database stizun_test;' - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" bundler_args: --without development # uncomment this line if your project needs to run something other than `rake`: script: bundle exec rake stizun:test
language: ruby rvm: - 1.9.2 - 1.9.3 env: DISPLAY=:99.0 before_script: - mysql -e 'create database stizun_test;' - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" bundler_args: --without development # uncomment this line if your project needs to run something other than `rake`: script: bundle exec rake stizun:test
Remove unit test run altogether
language: csharp solution: SharpHaven.sln mono: - latest install: - nuget restore SharpHaven.sln - nuget install NUnit.Runners -Version 2.6.3 -OutputDirectory testrunner script: - xbuild /p:Configuration=Release SharpHaven.sln - mono ./testrunner/NUnit.Runners.2.6.3/tools/nunit-console.exe -nologo \ ./Haven.Common.Tests/Haven.Common.Tests.csproj \ ./Haven.Resources.Tests/Haven.Resources.Tests.csproj
language: csharp solution: SharpHaven.sln mono: - latest install: - nuget restore SharpHaven.sln - nuget install NUnit.Runners -Version 2.6.3 -OutputDirectory testrunner script: - xbuild /p:Configuration=Release SharpHaven.sln
Fix NUnit for Travis CI
## Travis CI Integration language: csharp solution: libgame.sln install: - nuget restore libgame.sln - nuget install NUnit.Runners -OutputDirectory testrunner script: - xbuild mono-addins/Mono.Addins/Mono.Addins.csproj - xbuild libgame.sln - mono ./testrunner/NUnit.Runners*/tools/nunit-console.exe libgame.UnitTests/bin/Debug/libgame.UnitTests.dll
## Travis CI Integration language: csharp solution: libgame.sln install: - nuget restore libgame.sln - nuget install NUnit.Runners -OutputDirectory testrunner script: - xbuild mono-addins/Mono.Addins/Mono.Addins.csproj - xbuild libgame.sln - mono ./testrunner/NUnit.ConsoleRunner.3.5.0/tools/nunit3-console.exe libgame.UnitTests/bin/Debug/libgame.UnitTests.dll
Add a workaround for problematic `curl` issue
language: node_js node_js: - "5.5" - "5.0" - "4.2" before_install: npm set progress=false install: npm install before_script: - rvm install 2.2.3 - rvm use 2.2.3 # - ruby --version - gem install jekyll --no-rdoc --no-ri --pre # - jekyll --version # - node_modules/.bin/grunt --version # - node_modules/.bin/bower --version - node_modules/.bin/bower install --config.interactive=false - node_modules/.bin/grunt build - node_modules/.bin/grunt docs-build - node_modules/.bin/grunt dist - node_modules/.bin/grunt docs-dist script: echo "Done!"
language: node_js node_js: - "5.5" - "5.0" - "4.2" before_install: - npm set progress=false - export PATH=$(python -c 'from sys import argv;from collections import OrderedDict as od;print(":".join(od((p,None) for p in argv[1].split(":") if p.startswith("/")).keys()))' "$PATH") install: npm install before_script: - rvm install 2.2.3 - rvm use 2.2.3 # - ruby --version - gem install jekyll --no-rdoc --no-ri --pre # - jekyll --version # - node_modules/.bin/grunt --version # - node_modules/.bin/bower --version - node_modules/.bin/bower install --config.interactive=false - node_modules/.bin/grunt build - node_modules/.bin/grunt docs-build - node_modules/.bin/grunt dist - node_modules/.bin/grunt docs-dist script: echo "Done!"
Remove matrix in Travis CI config
os: - linux - osx matrix: include: - os: osx osx_image: xcode8.3 addons: apt: sources: - sourceline: 'deb https://dl.yarnpkg.com/debian/ stable main' key_url: 'https://dl.yarnpkg.com/debian/pubkey.gpg' packages: - yarn env: - NODE_VERSION="9" script: ./scripts/travis-build.sh
os: - linux - osx addons: apt: sources: - sourceline: 'deb https://dl.yarnpkg.com/debian/ stable main' key_url: 'https://dl.yarnpkg.com/debian/pubkey.gpg' packages: - yarn env: - NODE_VERSION="9" script: ./scripts/travis-build.sh
Update Travis CI config to run most tests on OpenJDK 8
language: ruby rvm: - jruby-19mode - jruby-9.0.5.0 - jruby-head matrix: allow_failures: - rvm: jruby-head jdk: - openjdk7 sudo: false # cache: # directories: # - $HOME/.m2/repository env: global: - JAVA_OPTS="-Xmx512m" before_install: - gem install bundler - gem update bundler install: travis_retry bundle install before_script: - unset RACK_ENV RAILS_ENV - bundle exec rake build script: - bundle exec rake rubocop - bundle exec rake spec - cd integration-tests - travis_wait bundle exec rake spec:wildfly:setup - bundle exec rake spec:all branches: only: - master
language: ruby rvm: - jruby-19mode - jruby-9.0.5.0 - jruby-head matrix: include: - jdk: openjdk7 - env: INTEG_SUITE="spec:disk spec:jar" allow_failures: - rvm: jruby-head jdk: - openjdk8 env: matrix: - INTEG_SUITE=spec:all global: - JAVA_OPTS="-Xmx512m" sudo: false cache: directories: - $HOME/.m2/repository before_install: - gem install bundler - gem update bundler install: travis_retry bundle install before_script: - unset RACK_ENV RAILS_ENV - bundle exec rake build script: - bundle exec rake rubocop - bundle exec rake spec - cd integration-tests - travis_wait bundle exec rake spec:wildfly:setup - bundle exec rake $INTEG_SUITE branches: only: - master
Exclude trunk tests from Python 2.6
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 env: - DJANGO=Django==1.4.10 - DJANGO=Django==1.5.5 - DJANGO=Django==1.6.2 - DJANGO=https://github.com/django/django/tarball/master install: - pip install --use-mirrors $DJANGO - pip install --use-mirrors coverage coveralls script: coverage run -a --branch setup.py test matrix: exclude: - python: 3.2 env: DJANGO=Django==1.4.10 - python: 3.3 env: DJANGO=Django==1.4.10 after_success: coveralls
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 env: - DJANGO=Django==1.4.10 - DJANGO=Django==1.5.5 - DJANGO=Django==1.6.2 - DJANGO=https://github.com/django/django/tarball/master install: - pip install --use-mirrors $DJANGO - pip install --use-mirrors coverage coveralls script: coverage run -a --branch setup.py test matrix: exclude: - python: 2.6 env: DJANGO=https://github.com/django/django/tarball/master - python: 3.2 env: DJANGO=Django==1.4.10 - python: 3.3 env: DJANGO=Django==1.4.10 after_success: coveralls
Fix integration between Travis and Coverall
language: java after_success: - mvn clean cobertura:cobertura coveralls:cobertura
language: java after_success: - mvn clean cobertura:cobertura coveralls:report
Remove now default 'sudo: false'
sudo: false language: python python: - pypy - pypy3 - 2.6 - 2.7 - 3.3 - 3.4 - 3.5 install: - pip install -rrequirements-dev.txt coveralls script: - coverage run --source sass,sassc,sassutils -m pytest sasstests.py - flake8 . after_success: - coveralls cache: directories: - $HOME/.cache/pip
language: python python: - pypy - pypy3 - 2.6 - 2.7 - 3.3 - 3.4 - 3.5 install: - pip install -rrequirements-dev.txt coveralls script: - coverage run --source sass,sassc,sassutils -m pytest sasstests.py - flake8 . after_success: - coveralls cache: directories: - $HOME/.cache/pip
Add code coverage, only package on deploy
sudo: false language: java cache: directories: - "$HOME/.m2/repository" jdk: - oraclejdk8 - oraclejdk7 - openjdk6 after_success: mvn package deploy: provider: releases api_key: secure: CkiqeHfVkf6HeYW6wpBDg8j4GcW3+6I3EKqPXX8CI3oZdM32RU2jU8Jo977g2tLpMvPQRMO+pFXUMTBU1ScTG7eQz0fYoseoCfrTNU2ANHh6vdrIVEvxKXAj2tf4VxLiEVj97PJVHvQfD+XaT6BvIwIWlxNb3bycsXM4KGGlYZg= file: $TRAVIS_BUILD_DIR/target/rabbitmq-flume-plugin-standalone-$TRAVIS_TAG.jar on: repo: aweber/rabbitmq-flume-plugin jdk: oraclejdk7 tags: true all_branches: true
sudo: false language: java cache: directories: - "$HOME/.m2/repository" jdk: - oraclejdk8 - oraclejdk7 - openjdk6 after_success: - bash <(curl -s https://codecov.io/bash) before_deploy: mvn package deploy: provider: releases api_key: secure: CkiqeHfVkf6HeYW6wpBDg8j4GcW3+6I3EKqPXX8CI3oZdM32RU2jU8Jo977g2tLpMvPQRMO+pFXUMTBU1ScTG7eQz0fYoseoCfrTNU2ANHh6vdrIVEvxKXAj2tf4VxLiEVj97PJVHvQfD+XaT6BvIwIWlxNb3bycsXM4KGGlYZg= file: $TRAVIS_BUILD_DIR/target/rabbitmq-flume-plugin-standalone-$TRAVIS_TAG.jar on: repo: aweber/rabbitmq-flume-plugin jdk: oraclejdk7 tags: true all_branches: true
Use weblablib instead of weblablib.py as source
language: python services: - redis python: - 2.7 - 3.3 - 3.4 - 3.5 - 3.6 install: - python setup.py install - pip install python-coveralls nose script: coverage run --source=weblablib.py -m nose after_success: coveralls
language: python services: - redis python: - 2.7 - 3.3 - 3.4 - 3.5 - 3.6 install: - python setup.py install - pip install python-coveralls nose script: coverage run --source=weblablib -m nose after_success: coveralls
Use latest DITA-OT version (2.5.1) for CI builds
sudo: false language: java jdk: - oraclejdk8 env: global: - DITA_OT_VERSION=2.5 install: - ".travis/install.sh" script: - ".travis/publish.sh" after_success: - ".travis/deploy.sh"
sudo: false language: java jdk: - oraclejdk8 env: global: - DITA_OT_VERSION=2.5.1 install: - ".travis/install.sh" script: - ".travis/publish.sh" after_success: - ".travis/deploy.sh"
Remove Go 1.8 from Travis-CI
language: go go: - 1.8.x - 1.9.x - tip matrix: allow_failures: - go: tip fast_finish: true script: - go test -v ./...
language: go go: - 1.9.x - 1.10.x - tip matrix: allow_failures: - go: tip fast_finish: true script: - go test -v ./...
Use the latest version of java 8.
sudo: false language: java jdk: - oraclejdk8 env: global: - SONATYPE_USERNAME=ralscha23 - secure: RiyNF3cW/HnO5/olysHLVAsEZeGEkE0BS6+ZduDTQUkr4VGJRYAaPtLdkwHVsojT0GcZQrQ4+3ciQwgxwhVeAQKkUfAk5rMAS8KvNXxZg3iXeTjkXr+RtE67SV4fQaeoWHKRvTrvW2NUzMCc1VM6zIwBpsjNazUxI0P3K2b/UBQ= after_success: - python addsettings.py - mvn clean deploy -DskipTests=true --settings ~/.m2/mySettings.xml cache: directories: - $HOME/.m2
sudo: false addons: apt: packages: - oracle-java8-installer language: java jdk: - oraclejdk8 env: global: - SONATYPE_USERNAME=ralscha23 - secure: RiyNF3cW/HnO5/olysHLVAsEZeGEkE0BS6+ZduDTQUkr4VGJRYAaPtLdkwHVsojT0GcZQrQ4+3ciQwgxwhVeAQKkUfAk5rMAS8KvNXxZg3iXeTjkXr+RtE67SV4fQaeoWHKRvTrvW2NUzMCc1VM6zIwBpsjNazUxI0P3K2b/UBQ= after_success: - python addsettings.py - mvn clean deploy -DskipTests=true --settings ~/.m2/mySettings.xml cache: directories: - $HOME/.m2
Use Ubuntu 16 / xenial per default
sudo: false language: python python: - "2.7" # - "3.3" # End-of-life September 2017 - "3.4" - "3.5" - "3.6" - "3.7" dist: xenial install: - pip install tox-travis - pip install flake8 script: - tox # - flake8 . # Now part of tox.ini
sudo: false language: python dist: xenial # Ubuntu 16, required for Python 3.7+ python: - "2.7" # - "3.3" # End-of-life September 2017 - "3.4" - "3.5" - "3.6" - "3.7" install: - pip install tox-travis - pip install flake8 script: - tox # - flake8 . # Now part of tox.ini
Update CMake using apt addon and change cmocka install to not require root
sudo: required language: c install: - wget https://cmocka.org/files/1.0/cmocka-1.0.1.tar.xz - tar xvf cmocka-1.0.1.tar.xz - cd cmocka-1.0.1 - mkdir build - cd build - cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug -DWITH_STATIC_LIB=1 .. - sudo make install - cd ../.. - rm -rf cmocka-1.0.1 script: - cd test - mkdir build - cd build - cmake .. - make - ./bin/run_tests
language: c addons: apt: sources: - kubuntu-backports packages: - cmake before_install: cmake --version install: - wget https://cmocka.org/files/1.0/cmocka-1.0.1.tar.xz - tar xvf cmocka-1.0.1.tar.xz - cd cmocka-1.0.1 - mkdir build - cd build - cmake -DCMAKE_INSTALL_PREFIX=../../cmocka -DCMAKE_BUILD_TYPE=Debug -DWITH_STATIC_LIB=1 .. - make install - cd ../.. - rm -rf cmocka-1.0.1 script: - cd test - mkdir build - cd build - cmake -DCMOCKA_ROOT_DIR=cmocka .. - make - ./bin/run_tests
Remove coveralls key since it's a public project
language: node_js node_js: - '4' env: matrix: - TASK=lint - TASK=unittest GUI=1 global: secure: m1hVHTy/jgPlj2Z79Gt++NFKKUIBMYtOVtU9WbQSTpAesspPvNZbfirUSdo/50rfLD9UWO9RGITWbBx9JJ6QakbxN0reTC40O/dbJOWmhr97vZwLNENmfqfgAttb3U1WYC0BcdYo3XsKz/8dsQVhXHDLgq+WUeyj+y7Ku+R71pZgJxDuTCzyUCEXGotVMwMtWx6JjlZtyjyJX+Ec8Em2aC81z9Udcm60cFFr7RXMpSMkOeKBj7ujCUxXsIoxTigXJaWQOcsUcBNG9Gh2QO3ATc1YiRdXhxqi3O8yVAJUpm6Lt4gBk9VAGN01cIJzOZzYq5GqwmgR8ZrRBtz/8rQL/KDQLxpuo1K9iEZ1d6OXDgcdY6CpgguFKsRhLnB758LQ51ZA4K5pTSxPPN7yY39c2tRz7GqR97TMafg5lRqBEVp9qH4dlFowh1lOOEM9swO5cljc/92HsOqd2XMRP4CmatAbb25plLYnVL4tBdQrFQzluhkYHkYcpPBSwJRAITRTlvZ28jHf7ert9u+f7jUthGxbI6RpLmAwuynWcHaWjJpBRenfAOHMUWzfzMix9Zn4gS70AC1RaPuC1DMgH/jcTaR7Q3hscTrdmarHD0kSOiIvJcZp767EtNeifiW1DOHW2vWOrrgKeXm0XwQ72jlIbKkJLykjWdpjFJmMcqec9/U= cache: directories: - node_modules before_install: - npm install -g npm@3 - npm --version before_script: - if [ $GUI ]; then export DISPLAY=:99.0 && sh -e /etc/init.d/xvfb start && sleep 3; fi script: - npm run $TASK
language: node_js node_js: - '4' env: matrix: - TASK=lint - TASK=unittest GUI=1 cache: directories: - node_modules before_install: - npm install -g npm@3 - npm --version before_script: - if [ $GUI ]; then export DISPLAY=:99.0 && sh -e /etc/init.d/xvfb start && sleep 3; fi script: - npm run $TASK
Allow failures in ruby HEAD and rbx
language: ruby rvm: - 2.0.0 - 1.9.3 - rbx-19mode - jruby-19mode
language: ruby rvm: - 2.0.0 - 1.9.3 - ruby-head - rbx-19mode - jruby-19mode matrix: allow_failures: - rvm: ruby-head - rvm: rbx-19mode
Remove obsolete Riak client hackery.
language: python python: - "2.6" - "2.7" matrix: include: # Test on pypy without coverage, because it's unnecessary and very slow. - python: "pypy" env: NO_COVERAGE="1" services: - redis-server install: # We easy_install a binary riak_pb package because pip install needs `protoc'. - "easy_install 'riak_pb<1.3.0'" - "pip install -r requirements.pip" - "pip install coverage" - "pip install overalls" script: - if [ -z "$NO_COVERAGE" ]; then COVERAGE_CMD="coverage run --source=vumi_wikipedia"; else COVERAGE_CMD=""; fi - VUMITEST_REDIS_DB=1 $COVERAGE_CMD `which trial` vumi_wikipedia after_success: - if [ -z "$NO_COVERAGE" ]; then coveralls; fi
language: python python: - "2.6" - "2.7" matrix: include: # Test on pypy without coverage, because it's unnecessary and very slow. - python: "pypy" env: NO_COVERAGE="1" services: - redis-server install: - "pip install -r requirements.pip" - "pip install coverage" - "pip install overalls" script: - if [ -z "$NO_COVERAGE" ]; then COVERAGE_CMD="coverage run --source=vumi_wikipedia"; else COVERAGE_CMD=""; fi - VUMITEST_REDIS_DB=1 $COVERAGE_CMD `which trial` vumi_wikipedia after_success: - if [ -z "$NO_COVERAGE" ]; then coveralls; fi
Fix gulp task executed for PRs.
language: node_js sudo: false node_js: stable addons: sauce_connect: true firefox: latest apt: sources: - google-chrome packages: - google-chrome-stable before_install: - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start before_script: - npm install script: - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then gulp ci; else gulp pr; fi
language: node_js sudo: false node_js: stable addons: sauce_connect: true firefox: latest apt: sources: - google-chrome packages: - google-chrome-stable before_install: - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start before_script: - npm install script: - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then gulp ci; else gulp test-pr; fi
Add Travis script for test
language: go go: - 1.6 - 1.7 - master install: - go get github.com/fatih/color - go get github.com/boltdb/bolt
language: go go: - 1.6 - 1.7 - master install: - go get github.com/fatih/color - go get github.com/boltdb/bolt script: go test
Revert to Python 3.4 for Travis
language: python python: - "3.5_with_system_site_packages" virtualenv: system_site_packages: true before_install: - sudo apt-add-repository -y ppa:ubuntugis/ubuntugis-unstable - sudo apt-get update - sudo apt-get install -qq gdal-bin - sudo apt-get install -qq python-gdal python3-gdal - sudo apt-get install fftw3 libfftw3-dev - sudo apt-get install python3-tk - pip install --upgrade Cython - pip install --upgrade --force-reinstall numpy script: py.test scarplet/tests
language: python python: - "3.4" virtualenv: system_site_packages: true before_install: - sudo apt-add-repository -y ppa:ubuntugis/ubuntugis-unstable - sudo apt-get update - sudo apt-get install -qq gdal-bin - sudo apt-get install -qq python-gdal python3-gdal - sudo apt-get install fftw3 libfftw3-dev - sudo apt-get install python3-tk - pip install --upgrade Cython - pip install --upgrade --force-reinstall numpy script: py.test scarplet/tests
Fix build error for TravisCI in Node.js v0.8
language: node_js node_js: - 0.8 - 0.10
before_install: - '[ "${TRAVIS_NODE_VERSION}" != "0.8" ] || npm install -g npm@1.4.28' - npm install -g npm@latest language: node_js node_js: - 0.8 - 0.10
Extend support to py 2.6 -- 3.4
language: python python: - "2.7" # command to install dependencies install: - pip install -r requirements.txt -r requirements-testing.txt - pip install coveralls # command to run tests script: py.test after_success: coveralls
language: python python: - "2.7" - "2.6" - "3.3" - "3.4" install: - pip install -r requirements.txt -r requirements-testing.txt - pip install coveralls script: py.test after_success: coveralls
Change 'highlighter' from pygments to rouge
# General Jekyll Config highlighter: pygments url: http://jwoest.github.io lsi: false exclude: [LICENSE, CNAME, README.md, .gitignore, Gemfile, Gemfile.lock]
# General Jekyll Config highlighter: rouge url: http://jwoest.github.io lsi: false exclude: [LICENSE, CNAME, README.md, .gitignore, Gemfile, Gemfile.lock]
Set CI fuzz to be 30 seconds.
name: CIFuzz on: [pull_request] jobs: Fuzzing: runs-on: ubuntu-latest steps: - name: Build Fuzzers id: build uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master with: oss-fuzz-project-name: 'jsonschema' dry-run: false - name: Run Fuzzers uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master with: oss-fuzz-project-name: 'jsonschema' fuzz-seconds: 600 dry-run: false - name: Upload Crash uses: actions/upload-artifact@v1 if: failure() && steps.build.outcome == 'success' with: name: artifacts path: ./out/artifacts
name: CIFuzz on: [pull_request] jobs: Fuzzing: runs-on: ubuntu-latest steps: - name: Build Fuzzers id: build uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master with: oss-fuzz-project-name: 'jsonschema' dry-run: false - name: Run Fuzzers uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master with: oss-fuzz-project-name: 'jsonschema' fuzz-seconds: 30 dry-run: false - name: Upload Crash uses: actions/upload-artifact@v1 if: failure() && steps.build.outcome == 'success' with: name: artifacts path: ./out/artifacts
Update ruby versions of circleci
version: 2.1 jobs: test: parameters: ruby-version: type: string docker: - image: cimg/ruby:<< parameters.ruby-version >>-browsers steps: - checkout - run: bundle install - run: bundle exec rspec workflows: all-tests: jobs: - test: matrix: parameters: ruby-version: ["2.7.5", "3.0.3"]
version: 2.1 jobs: test: parameters: ruby-version: type: string docker: - image: cimg/ruby:<< parameters.ruby-version >>-browsers steps: - checkout - run: bundle install - run: bundle exec rspec workflows: all-tests: jobs: - test: matrix: parameters: ruby-version: ["2.7.6", "3.0.4", "3.1.2"]
Update from Hackage at 2017-09-16T20:05:01Z
homepage: https://github.com/alx741/graphite#readme changelog-type: '' hash: 15f8589f38c3afeb3ad778ef253de5822a814ee16789588f2a5df3087977af08 test-bench-deps: base: -any hspec: -any graphite: -any QuickCheck: -any maintainer: alx@sillybytes.net synopsis: Graphs and networks library changelog: '' basic-deps: base: ! '>=4.7 && <5' unordered-containers: -any process: -any graphviz: -any hashable: -any random: -any QuickCheck: -any all-versions: - '0.0.1.0' - '0.0.2.0' - '0.2.0.0' author: Daniel Campoverde latest: '0.2.0.0' description-type: markdown description: ! '# graphite An experimental Haskell graph library ' license-name: BSD3
homepage: https://github.com/alx741/graphite#readme changelog-type: '' hash: cdb10a73f6a4b2e96938d1a045c97433f3897dc9dfd299eba4aa229c0d5d4ab5 test-bench-deps: base: -any hspec: -any graphite: -any QuickCheck: -any maintainer: alx@sillybytes.net synopsis: Graphs and networks library changelog: '' basic-deps: base: ! '>=4.7 && <5' unordered-containers: -any process: -any graphviz: -any hashable: -any random: -any QuickCheck: -any all-versions: - '0.0.1.0' - '0.0.2.0' - '0.2.0.0' - '0.2.1.0' author: Daniel Campoverde latest: '0.2.1.0' description-type: markdown description: ! '# graphite An experimental Haskell graph library ' license-name: BSD3
Upgrade compose version on example
version: '3' services: dipex: image: amancevice/dipex build: . environment: AWS_ACCESS_KEY_ID: AWS_SECRET_ACCESS_KEY: TEST: volumes: - ~/.aws:/root/.aws:ro
version: '3.5' services: dipex: image: amancevice/dipex build: . environment: AWS_ACCESS_KEY_ID: AWS_SECRET_ACCESS_KEY: TEST: volumes: - ~/.aws:/root/.aws:ro
Update Highpoint South Christmas visit slots
--- name: Highpoint South nomis_id: HPI address: - Stradishall - 'CB8 9YG ' email: socialvisits.highpoint@hmps.gsi.gov.uk enabled: true estate: Highpoint phone: 01440 743134 slot_anomalies: 2015-08-31: - 1400-1600 slots: fri: - 1430-1630 mon: - 1400-1600 sat: - 1400-1600 sun: - 0900-1100 - 1400-1600 unbookable: - 2014-12-25 - 2014-12-26 - 2015-04-03
--- name: Highpoint South nomis_id: HPI address: - Stradishall - 'CB8 9YG ' email: socialvisits.highpoint@hmps.gsi.gov.uk enabled: true estate: Highpoint phone: 01440 743134 slot_anomalies: 2015-08-31: - 1400-1600 2015-12-24: - 1400-1600 slots: fri: - 1430-1630 mon: - 1400-1600 sat: - 1400-1600 sun: - 0900-1100 - 1400-1600 unbookable: - 2014-12-25 - 2014-12-26 - 2015-04-03 - 2015-12-25 - 2015-12-26 - 2016-01-01
Install CocoaPods on OS X boxes
json: travis_build_environment: use_tmpfs_for_builds: false home: /Users/travis group: staff rvm: default: 1.9.3 rubies: - name: 1.8.7 - name: 1.9.3 gems: - bundler - rake - cocoapods recipes: - homebrew - travis_build_environment::osx - rvm::multi
json: travis_build_environment: use_tmpfs_for_builds: false home: /Users/travis group: staff rvm: default: 1.9.3 rubies: - name: 1.8.7 - name: 1.9.3 gems: - bundler - rake - cocoapods recipes: - homebrew - travis_build_environment::osx - rvm::multi - cocoapods
Update funding with GitHub Sponsors link
# These are supported funding model platforms # github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] liberapay: eproxus
# These are supported funding model platforms github: [eproxus] liberapay: eproxus
Update from Hackage at 2017-01-05T14:44:20Z
homepage: '' changelog-type: '' hash: 6468bf251bdb9628edfc0d50ea1989664e538e0f96711ef4fbb3b0e4a08f2526 test-bench-deps: {} maintainer: Simon Marlow <marlowsd@gmail.com> synopsis: Knowledge of GHC's installation directories changelog: '' basic-deps: base: ! '>=3 && <5' all-versions: - '0.1' - '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' author: Simon Marlow latest: '0.1.0.9' description-type: haddock description: Knowledge of GHC's installation directories license-name: BSD3
homepage: '' changelog-type: '' hash: b47858cf533ae8d72bd422106bcb9e075ae477ab2e537f59ffe437277840bcef test-bench-deps: {} maintainer: Simon Marlow <marlowsd@gmail.com> synopsis: Knowledge of GHC's installation directories changelog: '' basic-deps: base: ! '>=3 && <5' all-versions: - '0.1' - '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' author: Simon Marlow latest: '0.1.0.9' description-type: haddock description: Knowledge of GHC's installation directories license-name: BSD3
Update Test Kitchen platforms to the latest
driver: name: vagrant provisioner: name: chef_zero platforms: - name: centos-5.11 - name: centos-6.8 - name: centos-7.2 - name: debian-7.11 - name: debian-8.5 - name: fedora-24 run_list: yum::dnf_yum_compat - name: opensuse-13.2 - name: opensuse-leap-42.1 - name: ubuntu-12.04 - name: ubuntu-14.04 - name: ubuntu-16.04 suites: - name: default run_list: - recipe[ssh_known_hosts_test] attributes: {} - name: cacher run_list: - recipe[ssh_known_hosts_test::cacher] attributes: {} - name: cacher-client run_list: - recipe[ssh_known_hosts_test::default] attributes: ssh_known_hosts: use_data_bag_cache: true - name: known_hosts_test run_list: - recipe[ssh_known_hosts_test::custom]
driver: name: vagrant provisioner: name: chef_zero platforms: - name: centos-5.11 - name: centos-6.8 - name: centos-7.2 - name: debian-7.11 - name: debian-8.6 - name: fedora-25 run_list: yum::dnf_yum_compat - name: opensuse-13.2 - name: opensuse-leap-42.1 - name: ubuntu-12.04 - name: ubuntu-14.04 - name: ubuntu-16.04 suites: - name: default run_list: - recipe[ssh_known_hosts_test] attributes: {} - name: cacher run_list: - recipe[ssh_known_hosts_test::cacher] attributes: {} - name: cacher-client run_list: - recipe[ssh_known_hosts_test::default] attributes: ssh_known_hosts: use_data_bag_cache: true - name: known_hosts_test run_list: - recipe[ssh_known_hosts_test::custom]
Update docker cloud api env property
redis: image: 'redis:latest' api: image: 'craftship/phonebox-api:latest' links: - redis ports: - '80:8080' volumes: - /usr/src/app workers: image: 'craftship/phonebox-workers:latest' links: - redis volumes: - /usr/src/app environment: - TWILIO_SID - TWILIO_TOKEN - TWILIO_FROM_NUMBER - TWILIO_TO_NUMBER
redis: image: 'redis:latest' api: image: 'craftship/phonebox-api:latest' links: - redis ports: - '80:8080' volumes: - /usr/src/app environment: - TWILIO_FROM_NUMBER - TWILIO_TO_NUMBER workers: image: 'craftship/phonebox-workers:latest' links: - redis volumes: - /usr/src/app environment: - TWILIO_SID - TWILIO_TOKEN
Rename 'build' job to 'test' for GitHub Actions
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: tests on: push: branches: [ "main" ] pull_request: branches: [ "main" ] jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false matrix: python-version: ["3.7", "3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v3 with: submodules: recursive - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} - name: Install graphviz run: | sudo apt-get install graphviz - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt - name: Test with nose2 run: | coverage run -m nose2 tests coverage lcov -o cover/coverage.lcov - name: Coveralls uses: coverallsapp/github-action@master with: path-to-lcov: cover/coverage.lcov github-token: ${{ secrets.GITHUB_TOKEN }}
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: tests on: push: branches: [ "main" ] pull_request: branches: [ "main" ] jobs: test: runs-on: ubuntu-latest strategy: fail-fast: false matrix: python-version: ["3.7", "3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v3 with: submodules: recursive - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} - name: Install graphviz run: | sudo apt-get install graphviz - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt - name: Test with nose2 run: | coverage run -m nose2 tests coverage lcov -o cover/coverage.lcov - name: Coveralls uses: coverallsapp/github-action@master with: path-to-lcov: cover/coverage.lcov github-token: ${{ secrets.GITHUB_TOKEN }}
Configure legacy domain to preserve path for repoint
--- site: bis_dius whitehall_slug: department-for-business-innovation-skills host: www.dius.gov.uk redirection_date: 13th December 2012 tna_timestamp: 20121212135622 title: Department for Business&#44; Innovation & Skills furl: www.gov.uk/bis homepage: https://www.gov.uk/government/organisations/department-for-business-innovation-skills css: department-for-business-innovation-skills global: =301 https://www.gov.uk/government/organisations/department-for-business-innovation-skills aliases: - dius.gov.uk
--- site: bis_dius whitehall_slug: department-for-business-innovation-skills host: www.dius.gov.uk redirection_date: 13th December 2012 tna_timestamp: 20121212135622 title: Department for Business&#44; Innovation & Skills furl: www.gov.uk/bis homepage: https://www.gov.uk/government/organisations/department-for-business-innovation-skills css: department-for-business-innovation-skills global: =301 https://www.bis.gov.uk aliases: - dius.gov.uk global_redirect_append_path: true
Update HMP Aylesbury Christmas slots
--- name: Aylesbury nomis_id: AYI address: |- Bierton Road postcode: HP20 1EH email_address: socialvisits.aylesbury@hmps.gsi.gov.uk phone_no: 01296 444099 enabled: true private: false closed: false adult_age: 10 recurring: mon: - 1415-1615 tue: - 1415-1615 thu: - 1415-1615 sat: - 1400-1545 sun: - 1400-1545 unbookable: - 2018-02-01 - 2018-03-01 - 2018-04-05 - 2018-05-03 - 2018-06-07 - 2018-07-05 - 2018-08-02 - 2018-09-06 - 2018-10-04 - 2018-11-01 - 2018-12-06
--- name: Aylesbury nomis_id: AYI address: |- Bierton Road postcode: HP20 1EH email_address: socialvisits.aylesbury@hmps.gsi.gov.uk phone_no: 01296 444099 enabled: true private: false closed: false adult_age: 10 recurring: mon: - 1415-1615 tue: - 1415-1615 thu: - 1415-1615 sat: - 1400-1545 sun: - 1400-1545 unbookable: - 2018-11-01 - 2018-12-06 - 2018-12-25 - 2018-12-26 - 2018-12-28 - 2019-01-01 - 2019-01-02 - 2019-01-03 - 2019-01-04
Add sitemap gem for sitemap generation
# Site settings title: Blog by Hilzu email: hilzu@iki.fi description: > Random thoughts mostly about technology and especially about web stack. baseurl: "" # the subpath of your site, e.g. /blog/ url: "https://blog.hilzu.moe" # the base hostname & protocol for your site twitter_username: ze_hilda github_username: hilzu permalink: pretty # Build settings markdown: kramdown exclude: [vendor] timezone: Europe/Helsinki encoding: utf-8
# Site settings title: Blog by Hilzu email: hilzu@iki.fi description: > Random thoughts mostly about technology and especially about web stack. baseurl: "" # the subpath of your site, e.g. /blog/ url: "https://blog.hilzu.moe" # the base hostname & protocol for your site twitter_username: ze_hilda github_username: hilzu permalink: pretty # Build settings markdown: kramdown exclude: [vendor] timezone: Europe/Helsinki encoding: utf-8 gems: - jekyll-sitemap
Allow nightly failures again until the ring mess is cleaned up
language: rust dist: trusty sudo: false rust: - nightly - stable - beta env: - TARGET=none - TARGET=wasm32-unknown-unknown - TARGET=asmjs-unknown-emscripten - TARGET=wasm32-unknown-emscripten script: - nvm install 9 - ./ci.sh
language: rust dist: trusty sudo: false rust: - nightly - stable - beta matrix: allow_failures: - rust: nightly env: - TARGET=none - TARGET=wasm32-unknown-unknown - TARGET=asmjs-unknown-emscripten - TARGET=wasm32-unknown-emscripten script: - nvm install 9 - ./ci.sh
Allow TravisCI failures on jruby and rbx 1.9 mode
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode - ruby-head - jruby-head - ree script: bundle exec rake spec_travis gemfile: .travis.gemfile before_script: - mysql -e 'create database sequel_test;' - psql -c 'create database sequel_test;' -U postgres
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode - ruby-head - jruby-head - ree script: bundle exec rake spec_travis gemfile: .travis.gemfile before_script: - mysql -e 'create database sequel_test;' - psql -c 'create database sequel_test;' -U postgres matrix: allow_failures: - rvm: jruby-19mode - rvm: rbx-19mode
Fix Nodejs version for Travis
language: node_js node_js: - "6.1.x" - "5.11.x"
language: node_js node_js: - "6.9.2" - "5.12.0"
Add numexpr. We really need a requirements.txt file.
language: python python: - "2.7" # - "3.3" # - "3.4" notifications: email: false before_install: # - "sudo apt-get update" - "sudo apt-get install libhdf5-serial-dev" install: - "pip install pep8 pylint tables bokeh scipy" # TODO: Move tables, etc. to requirements.txt, specify versions. script: - "pylint --rcfile=.pylintrc --disable=fixme bamliquidator_internal/" # - "pep8 --ignore=E501,E302,E303 ."
language: python python: - "2.7" # - "3.3" # - "3.4" notifications: email: false before_install: # - "sudo apt-get update" - "sudo apt-get install libhdf5-serial-dev" install: - "pip install pep8 pylint tables bokeh numexpr scipy" # TODO: Move tables, etc. to requirements.txt, specify versions. script: - "pylint --rcfile=.pylintrc --disable=fixme bamliquidator_internal/" # - "pep8 --ignore=E501,E302,E303 ."
Exclude legacy/regression builds on exotic rvms.
before_script: - "sh -e /etc/init.d/xvfb start" script: "DISPLAY=:99.0 bundle exec rake" rvm: - "1.8.7" - "1.9.2" - "1.9.3" - "ree" - "jruby" - "rbx" env: - "RAILS_VERSION=rails2" - "RAILS_VERSION=rails2_3_5" - "RAILS_VERSION=rails3" - "RAILS_VERSION=pojs-rspec1" - "RAILS_VERSION=pojs-rspec2"
before_script: - "sh -e /etc/init.d/xvfb start" script: "DISPLAY=:99.0 bundle exec rake" rvm: - "1.8.7" - "1.9.2" - "1.9.3" - "ree" - "jruby" - "rbx" env: - "RAILS_VERSION=rails2" - "RAILS_VERSION=rails2_3_5" - "RAILS_VERSION=rails3" - "RAILS_VERSION=pojs-rspec1" - "RAILS_VERSION=pojs-rspec2" matrix: exclude: - rvm: rbx env: RAILS_VERSION=rails2 - rvm: rbx env: RAILS_VERSION=rails2_3_5 - rvm: rbx env: RAILS_VERSION=pojs-rspec1 - rvm: rbx env: RAILS_VERSION=pojs-rspec2 - rvm: jruby env: RAILS_VERSION=rails2 - rvm: jruby env: RAILS_VERSION=rails2_3_5 - rvm: jruby env: RAILS_VERSION=pojs-rspec1 - rvm: jruby env: RAILS_VERSION=pojs-rspec2 - rvm: 1.9.2 env: RAILS_VERSION=rails2 - rvm: 1.9.2 env: RAILS_VERSION=rails2_3_5 - rvm: 1.9.2 env: RAILS_VERSION=pojs-rspec1 - rvm: 1.9.2 env: RAILS_VERSION=pojs-rspec2 - rvm: ree env: RAILS_VERSION=pojs-rspec2 - rvm: 1.8.7 env: RAILS_VERSION=rails2 - rvm: 1.8.7 env: RAILS_VERSION=rails2_3_5 - rvm: 1.8.7 env: RAILS_VERSION=pojs-rspec1 - rvm: 1.8.7 env: RAILS_VERSION=pojs-rspec2
Print the output of `gofmt -d` (if any)
name: go-presubmit on: push: branches: ['master'] pull_request: paths: ['go/**', '.github/workflows/presubmit-go.yml'] defaults: run: working-directory: go jobs: lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: gofmt run: test -z "$(gofmt -d .)" - name: golint run: | go get -u golang.org/x/lint/golint $(go env GOPATH)/bin/golint -set_exit_status=1 ./... unit-test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Run tests run: go test ./...
name: go-presubmit on: push: branches: ['master'] pull_request: paths: ['go/**', '.github/workflows/presubmit-go.yml'] defaults: run: working-directory: go jobs: lint: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: gofmt run: test -z "$(gofmt -d . | tee >&2)" - name: golint run: | go get -u golang.org/x/lint/golint $(go env GOPATH)/bin/golint -set_exit_status=1 ./... unit-test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Run tests run: go test ./...
Update dry-core and remove dry-equalizer from runtime deps
name: dry-validation codacy_id: f30e3ff5ec304c55a73868cdbf055c67 gemspec: authors: ["Piotr Solnica"] email: ["piotr.solnica@gmail.com"] summary: "Validation library" files: ["config/*.yml"] development_dependencies: - bundler - rake - rspec runtime_dependencies: - [concurrent-ruby, "~> 1.0"] - [dry-core, "~> 0.4"] - [dry-container, "~> 0.7", ">= 0.7.1"] - [dry-equalizer, "~> 0.2"] - [dry-initializer, "~> 3.0"] - [dry-schema, "~> 1.5", ">= 1.5.2"]
name: dry-validation codacy_id: f30e3ff5ec304c55a73868cdbf055c67 gemspec: authors: ["Piotr Solnica"] email: ["piotr.solnica@gmail.com"] summary: "Validation library" files: ["config/*.yml"] development_dependencies: - bundler - rake - rspec runtime_dependencies: - [concurrent-ruby, "~> 1.0"] - [dry-core, "~> 0.5", ">= 0.5"] - [dry-container, "~> 0.7", ">= 0.7.1"] - [dry-initializer, "~> 3.0"] - [dry-schema, "~> 1.5", ">= 1.5.2"]
Remove input from plugin type.
--- profile::base::windows::app::packages: - 7zip - git - putty - winscp - flashplayerplugin - adobereader - googlechrome - vmwarevsphereclient - firefox - vim profile::base::windows::time::ntp_servers: - fw.fr.lan - us.pool.ntp.org profile::base::windows::time::timezone: 'Mountain Standard Time' profile::base::windows::motd::content: | Welcome to %{facts.hostname} - %{facts.fqdn} Access to and use of this server is restricted to those activities expressly permitted by the system administration staff. If you're not sure if it's allowed, then DON'T DO IT. profile::base::windows::rdp::rdp_enable: true profile::base::windows::rdp::rdp_nla_enable: false profile::os::monitor::influxdburi: "http://monitor:8086" profile::os::monitor::influxdbname: 'Monitor' profile::os::monitor::influxdbinputs: profile::os::monitor::influxdbinput_list: win_disk: plugin_type: 'inputs.win_perf_counters.object' options: ObjectName: 'LogicalDisk' Instances: '*' Counters: - '% Idle Time' - '% Disk Time' - '% Disk Read Time' - '% Disk Write Time' - '% User Time' - 'Current Disk Queue Length' Measurement: 'win_disk'
--- profile::base::windows::app::packages: - 7zip - git - putty - winscp - flashplayerplugin - adobereader - googlechrome - vmwarevsphereclient - firefox - vim profile::base::windows::time::ntp_servers: - fw.fr.lan - us.pool.ntp.org profile::base::windows::time::timezone: 'Mountain Standard Time' profile::base::windows::motd::content: | Welcome to %{facts.hostname} - %{facts.fqdn} Access to and use of this server is restricted to those activities expressly permitted by the system administration staff. If you're not sure if it's allowed, then DON'T DO IT. profile::base::windows::rdp::rdp_enable: true profile::base::windows::rdp::rdp_nla_enable: false profile::os::monitor::influxdburi: "http://monitor:8086" profile::os::monitor::influxdbname: 'Monitor' profile::os::monitor::influxdbinputs: profile::os::monitor::influxdbinput_list: win_disk: plugin_type: 'win_perf_counters.object' options: ObjectName: 'LogicalDisk' Instances: '[*]' Counters: - '% Idle Time' - '% Disk Time' - '% Disk Read Time' - '% Disk Write Time' - '% User Time' - 'Current Disk Queue Length' Measurement: 'win_disk'
Build using v2 of the picolisp-action
name: CI on: [push] jobs: build: runs-on: ubuntu-latest timeout-minutes: 5 strategy: matrix: arch: ['src', 'src64'] version: ['17.12', '18.6', '18.12', '19.6', '19.12', '20.6', 'latest', 'pil21'] steps: - uses: actions/checkout@v1 - uses: aw/picolisp-action@48d0cf4 with: version: ${{matrix.version}} architecture: ${{matrix.arch}} - name: Run the tests on PicoLisp ${{matrix.arch}} v${{matrix.version}} run: make check
name: CI on: [push] jobs: build: runs-on: ubuntu-latest timeout-minutes: 5 strategy: matrix: arch: ['src', 'src64'] version: ['17.12', '18.6', '18.12', '19.6', '19.12', '20.6', 'latest', 'pil21'] steps: - uses: actions/checkout@v1 - uses: aw/picolisp-action@v2 with: version: ${{matrix.version}} architecture: ${{matrix.arch}} - name: Run the tests on PicoLisp ${{matrix.arch}} v${{matrix.version}} run: make check
Add Python 3.4 to path, it has pip.
version: '{branch}-{build}' build_script: - cmd: ./gradlew.bat assemble test_script: - cmd: ./gradlew.bat check on_finish: - pip install --user codecov - codecov -e OS -f build/reports/jacoco/test/jacocoTestReport.xml # TODO submit multiple junit xml or combine all into single file - ps: | $url = "https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)" $file = '.\build\test-results\TEST-nl.esciencecenter.xenon.util.RealFileUtilsTest.xml' (New-Object 'System.Net.WebClient').UploadFile($url, (Resolve-Path $file)) $file = '.\build\test-results\TEST-nl.esciencecenter.xenon.adaptors.local.LocalUtilsTest.xml' (New-Object 'System.Net.WebClient').UploadFile($url, (Resolve-Path $file)) artifacts: - path: build/distributions/*.zip name: Java archive
version: '{branch}-{build}' build_script: - cmd: ./gradlew.bat assemble test_script: - cmd: ./gradlew.bat check on_finish: - "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%" - pip install codecov - codecov -e OS -f build/reports/jacoco/test/jacocoTestReport.xml # TODO submit multiple junit xml or combine all into single file - ps: | $url = "https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)" $file = '.\build\test-results\TEST-nl.esciencecenter.xenon.util.RealFileUtilsTest.xml' (New-Object 'System.Net.WebClient').UploadFile($url, (Resolve-Path $file)) $file = '.\build\test-results\TEST-nl.esciencecenter.xenon.adaptors.local.LocalUtilsTest.xml' (New-Object 'System.Net.WebClient').UploadFile($url, (Resolve-Path $file)) artifacts: - path: build/distributions/*.zip name: Java archive
Add openjdk11 to Travis configuration
language: java jdk: openjdk8 env: NODE_VERSION=8 before_install: nvm install $NODE_VERSION jobs: include: - stage: "Shared Module" name: "Build" script: ./gradlew :shared:build - name: "Tests" script: ./gradlew :shared:test -i - stage: "Language Server" name: "Tests" script: ./gradlew :server:test -i - name: "Executable" script: ./gradlew :server:installDist - stage: "Editor extensions" name: "VSCode" script: ./gradlew :editors:vscode:build - name: "Atom" script: ./gradlew :editors:atom:build
language: java jdk: - openjdk8 - openjdk11 env: NODE_VERSION=8 before_install: nvm install $NODE_VERSION jobs: include: - stage: "Shared Module" name: "Build" script: ./gradlew :shared:build - name: "Tests" script: ./gradlew :shared:test -i - stage: "Language Server" name: "Tests" script: ./gradlew :server:test -i - name: "Executable" script: ./gradlew :server:installDist - stage: "Editor extensions" name: "VSCode" script: ./gradlew :editors:vscode:build - name: "Atom" script: ./gradlew :editors:atom:build
Stop building for 5.5 since it's EOL. Our current dependent version of PHPUnit requires 5.6+, though the library itself should still be OK for PHP 5.5+ for now
language: php php: - 5.5 - 5.6 - 7.0 - hhvm before_script: composer install env: - PHRETS_TESTING_USERNAME=fake PHRETS_TESTING_PASSWORD=fake script: phpunit --coverage-text
language: php php: - 5.6 - 7.0 - hhvm before_script: composer install env: - PHRETS_TESTING_USERNAME=fake PHRETS_TESTING_PASSWORD=fake script: phpunit --coverage-text
Remove `stable` from test suite
language: node_js before_install: - npm i -g npm node_js: - 4 - 6 - 8 - stable
language: node_js before_install: - npm i -g npm node_js: - 4 - 6 - 8
Update config YAML with Elise's info
# Site Settings title: Lagrange tagline: a minimalist Jekyll theme description: baseurl: #"/Lagrange" url: #"https://lenpaul.github.io" github: url: #"https://lenpaul.github.io/Lagrange" author: name: "Paul Le" email: "l.nguyen.paul@gmail.com" twitter: "paululele" instagram: "paululele" github: "lenpaul" facebook: "Le.Paul.94" linkedin: "lenpaul" navigation: - title: About url: /about - title: Writing url: /writing - title: Contact url: /contact paginate: 5 disqus: #"your-disqus" # Build settings markdown: kramdown highlighter: rouge permalink: none gems: [jekyll-paginate]
# Site Settings title: My Life Unlearned tagline: this is a tagline description: baseurl: #"" url: #"https://lenpaul.github.io" github: url: #"http://elisepotts.github.io" author: name: "Elise Marie Potts" email: "elise.potts@gmail.com" twitter: "@elisempotts" github: "@elisepotts" linkedin: "Elise Potts" navigation: - title: About url: /about - title: Writing url: /writing - title: Contact url: /contact paginate: 5 disqus: #"your-disqus" # Build settings markdown: kramdown highlighter: rouge permalink: none gems: [jekyll-paginate]
Add default page number for sources
PolitikportalBundle_homepage: pattern: /hello/{name} defaults: { _controller: PolitikportalBundle:Front:index } source: pattern: /source/{source} defaults: { _controller: PolitikportalBundle:Sources:getSource } sources: pattern: /sources/{page} defaults: { _controller: PolitikportalBundle:Sources:getSources }
PolitikportalBundle_homepage: pattern: /hello/{name} defaults: { _controller: PolitikportalBundle:Front:index } source: pattern: /source/{source} defaults: { _controller: PolitikportalBundle:Sources:getSource } sources: pattern: /sources/{page} defaults: { _controller: PolitikportalBundle:Sources:getSources, page: 1 }
Create password from using apache htpasswd command
--- - hosts: webservers sudo: yes tasks: - name: Write gunicorn config file template: src=assets/gunicorn.j2 dest=/etc/init/ecep.conf notify: - restart gunicorn - name: Write nginx config file template: src=assets/nginx.j2 dest=/etc/nginx/sites-available/ecep.conf notify: - restart nginx - name: Link nginx config to sites-enabled file: state=link src=/etc/nginx/sites-available/ecep.conf path=/etc/nginx/sites-enabled/ecep notify: - restart nginx - name: Remove default nginx config file: state=absent path=/etc/nginx/sites-enabled/default notify: - restart nginx handlers: - name: restart nginx action: service name=nginx state=restarted - name: restart gunicorn action: service name=ecep state=restarted
--- - hosts: webservers sudo: yes tasks: - name: Write gunicorn config file template: src=assets/gunicorn.j2 dest=/etc/init/ecep.conf notify: - restart gunicorn - command: touch /etc/nginx/.htpasswd - name: Creating User/Password to sign into staging server command: htpasswd -b /etc/nginx/.htpasswd ${http_user} ${http_password} only_if: "'${http_password}' != '' and '${http_user}' != ''" - name: Write nginx config file template: src=assets/nginx.j2 dest=/etc/nginx/sites-available/ecep.conf notify: - restart nginx - name: Link nginx config to sites-enabled file: state=link src=/etc/nginx/sites-available/ecep.conf path=/etc/nginx/sites-enabled/ecep notify: - restart nginx - name: Remove default nginx config file: state=absent path=/etc/nginx/sites-enabled/default notify: - restart nginx handlers: - name: restart nginx action: service name=nginx state=restarted - name: restart gunicorn action: service name=ecep state=restarted
Use master branch for versionbot
name: versionist on: push: branches: - "main" jobs: versionist: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 with: fetch-depth: 0 persist-credentials: false # requires with 'repo' access. # using GITHUB_TOKEN will NOT trigger other workflows - id: versionist uses: tmigone/versionist@v0.4.6 with: github_email: "versionist@users.noreply.github.com" github_username: "versionist" github_token: ${{ secrets.GITHUB_TOKEN }} branch: main
name: versionist on: push: branches: - "master" jobs: versionist: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 with: fetch-depth: 0 persist-credentials: false # requires with 'repo' access. # using GITHUB_TOKEN will NOT trigger other workflows - id: versionist uses: tmigone/versionist@v0.4.6 with: github_email: "versionist@users.noreply.github.com" github_username: "versionist" github_token: ${{ secrets.GITHUB_TOKEN }} branch: master
Update SubHub to 1.1.1 (3)
Categories: - Multimedia License: GPL-3.0-only AuthorName: FunkyMuse AuthorWebSite: https://funkymuse.dev/ SourceCode: https://github.com/FunkyMuse/Aurora IssueTracker: https://github.com/FunkyMuse/Aurora/issues Changelog: https://github.com/FunkyMuse/Aurora/releases Donate: https://patreon.com/funkymuse AutoName: SubHub RepoType: git Repo: https://github.com/FunkyMuse/Aurora Builds: - versionName: 1.0.0 versionCode: 1 commit: 1.0.0 subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk - update-alternatives --auto java gradle: - yes AutoUpdateMode: Version UpdateCheckMode: Tags UpdateCheckData: build.gradle|verCode\s?=\s=?(\d+)|.|verName\s?=\s?["'](.+)["'] CurrentVersion: 1.0.0 CurrentVersionCode: 1
Categories: - Multimedia License: GPL-3.0-only AuthorName: FunkyMuse AuthorWebSite: https://funkymuse.dev/ SourceCode: https://github.com/FunkyMuse/Aurora IssueTracker: https://github.com/FunkyMuse/Aurora/issues Changelog: https://github.com/FunkyMuse/Aurora/releases Donate: https://patreon.com/funkymuse AutoName: SubHub RepoType: git Repo: https://github.com/FunkyMuse/Aurora Builds: - versionName: 1.0.0 versionCode: 1 commit: 1.0.0 subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk - update-alternatives --auto java gradle: - yes - versionName: 1.1.1 versionCode: 3 commit: be6c1918f948dbbe1dfc9d8895bca819ef5e1c3f subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk - update-alternatives --auto java gradle: - yes AutoUpdateMode: Version UpdateCheckMode: Tags UpdateCheckData: build.gradle|verCode\s?=\s=?(\d+)|.|verName\s?=\s?["'](.+)["'] CurrentVersion: 1.1.1 CurrentVersionCode: 3
Make sure core is ready for standalone
name: Java on: [ push ] jobs: build: runs-on: ubuntu-latest strategy: matrix: java: [ '8', '11', '17' ] steps: - name: checkout uses: actions/checkout@v2 - name: set up jdk uses: actions/setup-java@v2 with: java-version: ${{ matrix.java }} distribution: 'adopt' - name: lightning-core run: mvn --projects lightning-core --batch-mode --update-snapshots clean verify - name: lightning-standalone run: mvn --projects lightning-standalone --batch-mode --update-snapshots clean compile assembly:single verify - name: jmeter-lightning-maven-plugin run: mvn --projects jmeter-lightning-maven-plugin --batch-mode --update-snapshots clean verify
name: Java on: [ push ] jobs: build: runs-on: ubuntu-latest strategy: matrix: java: [ '8', '11', '17' ] steps: - name: checkout uses: actions/checkout@v2 - name: set up jdk uses: actions/setup-java@v2 with: java-version: ${{ matrix.java }} distribution: 'adopt' - name: lightning-core run: mvn --projects lightning-core --batch-mode --update-snapshots clean install - name: lightning-standalone run: mvn --projects lightning-standalone --batch-mode --update-snapshots clean compile assembly:single verify - name: jmeter-lightning-maven-plugin run: mvn --projects jmeter-lightning-maven-plugin --batch-mode --update-snapshots clean verify
Update from Hackage at 2017-06-22T20:27:23Z
homepage: https://github.com/fgaz/yabi changelog-type: '' hash: bdbeacafd9f3d10097914ca03f838e909e237d57f26a4ef1973b6102a64b01b3 test-bench-deps: {} maintainer: fgaz@users.noreply.github.com synopsis: Yet Another Brainfuck Interpreter changelog: '' basic-deps: base: ==4.* word8: -any all-versions: - '0.1.0.0' - '0.1.1.0' author: Francesco Gazzetta latest: '0.1.1.0' description-type: haddock description: ! 'Yet Another Brainfuck Interpreter. Usage: yabi path' license-name: MIT
homepage: https://github.com/fgaz/yabi changelog-type: '' hash: d82e20fbccf326d863127d619850ecd07a2978a7db3812683a55b37c6417012b test-bench-deps: {} maintainer: fgaz@users.noreply.github.com synopsis: Yet Another Brainfuck Interpreter changelog: '' basic-deps: base: ==4.* word8: -any all-versions: - '0.1.0.0' - '0.1.1.0' - '0.2.0.0' author: Francesco Gazzetta latest: '0.2.0.0' description-type: haddock description: ! 'Yet Another Brainfuck Interpreter. Usage: yabi path' license-name: MIT