Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Remove JRuby build from Travis CI
addons: postgresql: '9.3' cache: bundler language: ruby rvm: - '2.1' # < 1.7.14 - 'jruby-1.7.13' # >= 1.7.14 - 'jruby-1.7.14' script: bundle exec rake spec yard sudo: false
addons: postgresql: '9.3' cache: bundler language: ruby rvm: - '2.1' # JRuby failing for redcarpet and shoulda-matchers gems # < 1.7.14 #- 'jruby-1.7.13' # >= 1.7.14 #- 'jruby-1.7.14' script: bundle exec rake spec yard sudo: false
Fix for Travis to use Node.js 4
language: node_js sudo: false node_js: - "0.10" - "0.12" - "iojs"
language: node_js sudo: false node_js: - "4" - "iojs"
Disable GPG plugin for `install` step.
language: java jdk: - oraclejdk8 - oraclejdk7 - openjdk7 script: - mvn clean install verify -Dgpg.skip=true before_install: - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16"
language: java install: mvn install -DskipTests -Dgpg.skip jdk: - oraclejdk8 - oraclejdk7 - openjdk7 script: - mvn clean install verify -Dgpg.skip=true before_install: - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16"
Update and upgrade before running apt-get install
language: node_js node_js: - "0.10" addons: postgresql: "9.3" before_install: - sudo apt-get install libicu-dev prosody luarocks openjdk-7-jdk - sudo luarocks install luabitop # Workaround for a permissions issue with Travis virtual machine images # that breaks Python's multiprocessing: # https://github.com/travis-ci/travis-cookbooks/issues/155 - sudo rm -rf /dev/shm - sudo ln -s /run/shm /dev/shm - sudo cp resources/prosody.cfg.lua /etc/prosody/prosody.cfg.lua - sudo service prosody stop - resources/setup-buddycloud.sh - resources/setup-database.sh - resources/run-buddycloud.sh before_script: - npm install -g grunt-cli
language: node_js node_js: - "0.10" addons: postgresql: "9.3" before_install: - sudo apt-get update - sudo apt-get upgrade - sudo apt-get install libicu-dev prosody luarocks openjdk-7-jdk - sudo luarocks install luabitop # Workaround for a permissions issue with Travis virtual machine images # that breaks Python's multiprocessing: # https://github.com/travis-ci/travis-cookbooks/issues/155 - sudo rm -rf /dev/shm - sudo ln -s /run/shm /dev/shm - sudo cp resources/prosody.cfg.lua /etc/prosody/prosody.cfg.lua - sudo service prosody stop - resources/setup-buddycloud.sh - resources/setup-database.sh - resources/run-buddycloud.sh before_script: - npm install -g grunt-cli
Build Scheme before Test on CI
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage osx_image: xcode7.3 language: objective-c # cache: cocoapods # podfile: XCFitDemo/Podfile # before_install: # - gem install cocoapods # - pod install --project-directory=XCFitDemo script: - cd XCFitDemo/ - pwd # - set -o pipefail && xcodebuild test -workspace Example/XCFit.xcworkspace -scheme XCFit-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty - set -o pipefail && xcodebuild -project XCFitDemo.xcodeproj -scheme XCFitDemo -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=9.3' test | xcpretty -r html -r junit --test --color
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage osx_image: xcode7.3 language: objective-c # cache: cocoapods # podfile: XCFitDemo/Podfile # before_install: # - gem install cocoapods # - pod install --project-directory=XCFitDemo script: - cd XCFitDemo/ - pwd # - set -o pipefail && xcodebuild test -workspace Example/XCFit.xcworkspace -scheme XCFit-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty - set -o pipefail && xcodebuild -project XCFitDemo.xcodeproj -scheme XCFitDemo -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=9.3' clean build test | xcpretty -r html -r junit --test --color
Fix mocha es6 modules loading issues
launchers: Node: command: node_modules/.bin/mocha -R tap --compilers js:mocha-traceur test/**/*.spec.js protocol: tap launch_in_dev: - Node src_files: - "lib/**/*.js" - "wrappers/**/*.js" - "test/**/*.spec.js" - "index.js"
launchers: Node: command: node_modules/.bin/mocha -R tap --compilers js:mocha-traceur/no-dependencies test/**/*.spec.js protocol: tap launch_in_dev: - Node src_files: - "lib/**/*.js" - "wrappers/**/*.js" - "test/**/*.spec.js" - "index.js"
Test on Python 3.10 (fix)
name: Tests on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [3.6, 3.8, 3.10] steps: - name: Checkout 🛎️ uses: actions/checkout@v2 - name: Setup ffmpeg uses: FedericoCarboni/setup-ffmpeg@v1 id: setup-ffmpeg - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install --quiet tensorflow tensorflow-probability torch jax jaxlib plotly nbformat ipython pylint coverage pytest pip install . - name: Test with pytest run: | coverage run -m pytest tests/commit - name: Upload coverage run: bash <(curl -s https://codecov.io/bash) - name: pylint continue-on-error: true run: | pylint --rcfile=./demos/.pylintrc demos pylint --rcfile=./tests/.pylintrc tests pylint --rcfile=./phi/.pylintrc phi
name: Tests on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: ['3.6', '3.8', '3.10'] steps: - name: Checkout 🛎️ uses: actions/checkout@v2 - name: Setup ffmpeg uses: FedericoCarboni/setup-ffmpeg@v1 id: setup-ffmpeg - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install --quiet tensorflow tensorflow-probability torch jax jaxlib plotly nbformat ipython pylint coverage pytest pip install . - name: Test with pytest run: | coverage run -m pytest tests/commit - name: Upload coverage run: bash <(curl -s https://codecov.io/bash) - name: pylint continue-on-error: true run: | pylint --rcfile=./demos/.pylintrc demos pylint --rcfile=./tests/.pylintrc tests pylint --rcfile=./phi/.pylintrc phi
Use FreeBSD 11.2 & 12.0 on Cirrus CI
freebsd_instance: image: freebsd-11-2-release-amd64 task: install_script: pkg install -y rust gmake asciidoc pkgconf stfl curl json-c ncurses openssl sqlite3 gettext-tools script: RUST_BACKTRACE=1 gmake all test test_script: cargo test
freebsd_task: freebsd_instance: matrix: - image: freebsd-11-2-release-amd64 - image: freebsd-12-0-release-amd64 install_script: pkg install -y rust gmake asciidoc pkgconf stfl curl json-c ncurses openssl sqlite3 gettext-tools script: RUST_BACKTRACE=1 gmake all test test_script: cargo test
Use Node 8 on Travic CI
language: node_js cache: yarn notifications: email: false node_js: - '7' before_script: - npm prune after_success: - bash <(curl -s https://codecov.io/bash) - npm run semantic-release branches: except: - /^v\d+\.\d+\.\d+$/
language: node_js cache: yarn notifications: email: false node_js: - '8' before_script: - npm prune after_success: - bash <(curl -s https://codecov.io/bash) - npm run semantic-release branches: except: - /^v\d+\.\d+\.\d+$/
Remove verbose flag from sbt
language: scala jdk: - oraclejdk7 env: global: - secure: D67lbC+UaIrlmL9KC7eegzw5i0xeRI+L99iUenR5krhfCOZtKX1VcJtR4fl+YXYQ6QJwJbAx1N5RkjshZcR/v9iD8++9E8KkhixF3n1fHmeQa61AQ1GpQTPv2PiEIxvnf0qJNfjsc14Kcp5lgXd9ZtDSxLVrjsR5mJO2JyVkHqk= before_script: - echo "TRAVIS_REPO_SLUG=$TRAVIS_REPO_SLUG, TRAVIS_PULL_REQUEST=$TRAVIS_PULL_REQUEST, TRAVIS_BRANCH=$TRAVIS_BRANCH" script: scripts/sbt -v clean coveralls doc after_success: - scripts/update-site-from-travis.sh notifications: email: false
language: scala jdk: - oraclejdk7 env: global: - secure: D67lbC+UaIrlmL9KC7eegzw5i0xeRI+L99iUenR5krhfCOZtKX1VcJtR4fl+YXYQ6QJwJbAx1N5RkjshZcR/v9iD8++9E8KkhixF3n1fHmeQa61AQ1GpQTPv2PiEIxvnf0qJNfjsc14Kcp5lgXd9ZtDSxLVrjsR5mJO2JyVkHqk= before_script: - echo "TRAVIS_REPO_SLUG=$TRAVIS_REPO_SLUG, TRAVIS_PULL_REQUEST=$TRAVIS_PULL_REQUEST, TRAVIS_BRANCH=$TRAVIS_BRANCH" script: scripts/sbt clean coveralls doc after_success: - scripts/update-site-from-travis.sh notifications: email: false
Use native test from Travis
language: python sudo: false python: - '3.4' install: python setup.py develop script: python setup.py nosetests deploy: provider: pypi user: alynn on: tags: true all_branches: true password: secure: f9Qlsme1aNar/y8K3zpLDSOZNXHZl7g24A03SUCUObA12wWHGTBuTfq2j/ZJrUy75y7Eemlj66iB2ZaDzbDGIqCphNhHo6fiV/dWzGsiLNYMX0POQRFDTXOzm64ftzh2nBjYM2N87aRyiGnNrQMBNRGc4cyn8yqiKQGSBL4mZB8=
language: python sudo: false python: - '3.4' install: python setup.py develop script: python setup.py test deploy: provider: pypi user: alynn on: tags: true all_branches: true password: secure: f9Qlsme1aNar/y8K3zpLDSOZNXHZl7g24A03SUCUObA12wWHGTBuTfq2j/ZJrUy75y7Eemlj66iB2ZaDzbDGIqCphNhHo6fiV/dWzGsiLNYMX0POQRFDTXOzm64ftzh2nBjYM2N87aRyiGnNrQMBNRGc4cyn8yqiKQGSBL4mZB8=
Drop support for old rubies.
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
language: ruby rvm: - "2.3.0"
Use go get on 1.10
language: go os: - linux - osx - windows go: - "1.10.x" - "1.11.x" - "1.12.x" - "1.13.x" before_script: - | if [[ $TRAVIS_GO_VERSION == '1.13.x' && $TRAVIS_OS_NAME == 'linux' ]]; then curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin fi script: - go test -v -race ./... - | if [[ $TRAVIS_GO_VERSION == '1.13.x' && $TRAVIS_OS_NAME == 'linux' ]]; then golangci-lint run fi env: - GO111MODULE=on
language: go os: - linux - osx - windows go: - "1.10.x" - "1.11.x" - "1.12.x" - "1.13.x" before_script: - | if [[ $TRAVIS_GO_VERSION == '1.10.x' ]]; then go get -t -u ./... fi - | if [[ $TRAVIS_GO_VERSION == '1.13.x' && $TRAVIS_OS_NAME == 'linux' ]]; then curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin fi script: - go test -v -race ./... - | if [[ $TRAVIS_GO_VERSION == '1.13.x' && $TRAVIS_OS_NAME == 'linux' ]]; then golangci-lint run fi env: - GO111MODULE=on
Add Python 3.7 to CI setup. Remove 3.4 to not increase runtime
language: python os: - linux python: - 2.7 - 3.4 - 3.5 - 3.6 - nightly before_install: - openssl aes-256-cbc -K $encrypted_e7f042a9cf96_key -iv $encrypted_e7f042a9cf96_iv -in settings.yml.enc -out settings.yml -d install: # Sometimes, only lxml master branch compiles with Python nightly # - if [[ "$( python --version | grep 'a' )" ]] ; then pip install cython && pip install git+https://github.com/lxml/lxml.git ; fi # Only PyYAML master branch compiles with Python nightly - if [[ "$( python --version | grep 'a' )" ]] ; then pip install git+https://github.com/yaml/pyyaml.git ; fi - pip install . # Install test dependencies manually since we're calling tests/__init__.py directly in the 'script' section - pip install PyYAML requests_mock psutil - pip install coverage - pip install coveralls script: - coverage run --source=exchangelib setup.py test after_success: coveralls jobs: include: - stage: wipe_test_account # Wipe contents of the test account after a complete build, to avoid account going over quota script: python tests/__init__.py -q EWSTest.wipe_test_account python: 3.6 os: linux
language: python os: - linux python: - 2.7 - 3.5 - 3.6 - 3.7 - nightly before_install: - openssl aes-256-cbc -K $encrypted_e7f042a9cf96_key -iv $encrypted_e7f042a9cf96_iv -in settings.yml.enc -out settings.yml -d install: # Sometimes, only lxml master branch compiles with Python nightly # - if [[ "$( python --version | grep 'a' )" ]] ; then pip install cython && pip install git+https://github.com/lxml/lxml.git ; fi # Only PyYAML master branch compiles with Python nightly - if [[ "$( python --version | grep 'a' )" ]] ; then pip install git+https://github.com/yaml/pyyaml.git ; fi - pip install . # Install test dependencies manually since we're calling tests/__init__.py directly in the 'script' section - pip install PyYAML requests_mock psutil - pip install coverage - pip install coveralls script: - coverage run --source=exchangelib setup.py test after_success: coveralls jobs: include: - stage: wipe_test_account # Wipe contents of the test account after a complete build, to avoid account going over quota script: python tests/__init__.py -q EWSTest.wipe_test_account python: 3.7 os: linux
Adjust parameters for cookstyle and foodcritic
sudo: required dist: trusty addons: apt: sources: - chef-current-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" before_script: - eval "$(chef shell-init bash)" - chef --version - cookstyle --version - foodcritic --version script: - cookstyle - foodcritic
sudo: required dist: trusty addons: apt: sources: - chef-current-trusty packages: - chefdk # Don't `bundle install` which takes about 1.5 mins install: echo "skip bundle install" before_script: - eval "$(chef shell-init bash)" - chef --version - cookstyle --version - foodcritic --version script: - cookstyle -D --fail-level W - foodcritic -f any .
Add gofmt to CI checks.
language: go sudo: false go: - 1.6 install: - go get -v github.com/golang/lint/golint - go get -d -t -v ./... - go build -v ./... script: - go vet ./... - $HOME/gopath/bin/golint . - go test -v ./...
language: go sudo: false go: - 1.6 install: - go get -v github.com/golang/lint/golint - go get -d -t -v ./... - go build -v ./... script: - go vet ./... - gofmt -l -d . - $HOME/gopath/bin/golint . - go test -v ./...
Use id to select test device
language: objective-c osx_image: xcode8.2 xcode_project: MathSwift.xcodeproj xcode_scheme: MathSwift xcode_sdk: iphonesimulator script: xcodebuild test -project MathSwift.xcodeproj -scheme MathSwift -destination 'platform=iOS Simulator,name=iPhone 7' CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
language: objective-c osx_image: xcode8.2 xcode_project: MathSwift.xcodeproj xcode_scheme: MathSwift xcode_sdk: iphonesimulator script: xcodebuild test -project MathSwift.xcodeproj -scheme MathSwift -destination 'platform=iOS Simulator,id=22FA2149-1241-469C-BF6D-462D3837DB72' CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO
Drop support for Ruby 2.2 (EOL)
language: ruby sudo: false matrix: include: - rvm: ruby-head - rvm: 2.6 - rvm: 2.5 - rvm: 2.4 - rvm: 2.3 - rvm: 2.2 - rvm: jruby-9.2.6.0 env: JRUBY_OPTS="--debug" LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 allow_failures: - rvm: ruby-head # https://github.com/cucumber/cucumber-ruby/issues/1336 - rvm: jruby-9.2.6.0 fast_finish: true # whitelist branches: only: - master
language: ruby sudo: false matrix: include: - rvm: ruby-head - rvm: 2.6 - rvm: 2.5 - rvm: 2.4 - rvm: 2.3 - rvm: jruby-9.2.6.0 env: JRUBY_OPTS="--debug" LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 allow_failures: - rvm: ruby-head # https://github.com/cucumber/cucumber-ruby/issues/1336 - rvm: jruby-9.2.6.0 fast_finish: true # whitelist branches: only: - master
Test latest Django (allow failures), and improve the version strings
language: python services: - postgresql python: - "2.7" - "3.3" - "3.4" - "3.5" env: - DJANGO=1.7.11 - DJANGO=1.8.14 - DJANGO=1.9.9 - DJANGO=1.10 matrix: exclude: - python: "3.5" env: DJANGO=1.7.11 - python: "3.3" env: DJANGO=1.9.9 - python: "3.3" env: DJANGO=1.10 install: - pip install -q django-model-utils psycopg2 six swapper tox tqdm - pip install -q Django==$DJANGO before_script: - psql -U postgres -c "create extension postgis" - psql -c 'create database django_cities;' -U postgres - psql -c 'CREATE EXTENSION postgis;' -U postgres -d django_cities script: - PYTHONPATH=. python test_project/manage.py test test_app --noinput
language: python services: - postgresql python: - "2.7" - "3.3" - "3.4" - "3.5" env: - DJANGO_VERSION='Django>=1.7,<1.8' - DJANGO_VERSION='Django>=1.8,<1.9' - DJANGO_VERSION='Django>=1.9,<1.10' - DJANGO_VERSION='Django>=1.10,<2.0' - DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz' matrix: exclude: - python: "3.5" env: DJANGO_VERSION='Django>=1.7,<1.8' - python: "3.3" env: DJANGO_VERSION='Django>=1.9,<1.10' - python: "3.3" env: DJANGO_VERSION='Django>=1.10,<2.0' - python: "3.3" env: DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz' allow_failures: - env: DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz' install: - pip install -q $DJANGO_VERSION - pip install -q django-model-utils psycopg2 six swapper tox tqdm before_script: - psql -U postgres -c "create extension postgis" - psql -c 'create database django_cities;' -U postgres - psql -c 'CREATE EXTENSION postgis;' -U postgres -d django_cities script: - PYTHONPATH=. python test_project/manage.py test test_app --noinput
Use OpenJDK8 instead of OracleJDK8 because the Oracle one disappeared from Travis
language: java jdk: - oraclejdk8 before_install: - chmod +x gradlew after_success: - ./gradlew cobertura coveralls deploy: - provider: script script: ./gradlew bintrayUpload -PbintrayUser="${BINTRAY_USER}" -PbintrayKey="${BINTRAY_KEY}" -PdryRun=false skip_cleanup: true on: tags: true
language: java jdk: - openjdk8 before_install: - chmod +x gradlew after_success: - ./gradlew cobertura coveralls deploy: - provider: script script: ./gradlew bintrayUpload -PbintrayUser="${BINTRAY_USER}" -PbintrayKey="${BINTRAY_KEY}" -PdryRun=false skip_cleanup: true on: tags: true
Use only latest of certain Node.js releases for build.
language: node_js node_js: - "6" - "6.0.0" - "6.1.0" - "6.2.0" - "6.2.1" - "6.2.2" - "6.3.0" - "6.3.1" - "6.4.0" - "6.5.0" - "6.6.0" - "6.7.0" script: - npm run test:coveralls
language: node_js node_js: - "6" - "6.0.0" - "6.1.0" - "6.2.x" - "6.3.x" - "6.4.0" - "6.5.0" - "6.6.0" - "6.7.0" script: - npm run test:coveralls
Disable integration tests on rails 3.2 due to incompatible dummy app.
language: ruby bundler_args: --without development rvm: - 2.0.0 - 1.9.3 - jruby - rbx-19mode gemfile: - gemfiles/Gemfile.rails-3-2 - gemfiles/Gemfile.rails-4-0 services: - rabbitmq script: - bundle exec rake spec:msgr - bundle exec rake spec:integration
language: ruby bundler_args: --without development services: - rabbitmq rvm: - 2.0.0 - 1.9.3 - jruby - rbx-19mode gemfile: - gemfiles/Gemfile.rails-3-2 - gemfiles/Gemfile.rails-4-0 env: - SUITE=msgr - SUITE=integration matrix: exclude: - gemfile: gemfiles/Gemfile.rails-3-2 env: SUITE=integration script: - bundle exec rake spec:$SUITE
Fix a RVM install version
language: node_js node_js: 4 before_install: - rvm install 2.3 install: - npm install - gem install scss_lint script: - npm run lint
language: node_js node_js: 4 before_install: - rvm install 2.2.2 install: - npm install - gem install scss_lint script: - npm run lint
Put node 4 and 5 back
language: node_js sudo: false install: - "npm install" script: - "npm run travis" node_js: - "6" - "7" - "8" cache: directories: - 'node_modules'
language: node_js sudo: false install: - "npm install" script: - "npm run travis" node_js: - "4" - "5" - "6" - "7" - "8" cache: directories: - 'node_modules'
Update Travis config for testing matrix
language: python python: - "3.4" - "3.5" - "3.6" script: - python runtests.py
language: python python: - "3.4" - "3.5" - "3.6" env: - DJANGO_VERSION=1.10.8 - DJANGO_VERSION=1.11.9 - DJANGO_VERSION=2.0.1 install: pip install -r requirements.txt pip install Django==$DJANGO_VERSION script: - python runtests.py
Test on PHP7.0 and hhvm
language: php php: - 5.5 - 5.6 before_script: - travis_retry composer self-update - travis_retry composer install --prefer-source --no-interaction after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover script: phpunit --coverage-clover=coverage.clover matrix: fast_finish: true
language: php php: - 5.5 - 5.6 - 7.0 - hhvm before_script: - travis_retry composer self-update - travis_retry composer install --prefer-source --no-interaction after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover sudo: false script: phpunit --coverage-clover=coverage.clover matrix: fast_finish: true
Use node v5 - node-sass issues
language: node_js node_js: - "node" before_install: - '[ "${TRAVIS_NODE_VERSION}" != "0.8" ] || npm install -g npm@1.4.28' - npm install -g npm@latest install: - npm install script: npm run js:test
language: node_js node_js: - "5" before_install: - '[ "${TRAVIS_NODE_VERSION}" != "0.8" ] || npm install -g npm@1.4.28' - npm install -g npm@latest install: - npm install script: npm run js:test
Use the pre-release builds of chefdk
# Use Travis's cointainer based infrastructure sudo: false addons: apt: sources: - chef-stable-precise packages: - chefdk # Don't `bundle install` install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/opt/chefdk/bin/chef shell-init bash)" # We have to install chef-sugar for ChefSpec - /opt/chefdk/embedded/bin/chef gem install chef-sugar script: - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/rubocop --version - /opt/chefdk/embedded/bin/rubocop - /opt/chefdk/embedded/bin/foodcritic --version - /opt/chefdk/embedded/bin/foodcritic . --exclude spec - /opt/chefdk/embedded/bin/rspec spec
# Use Travis's cointainer based infrastructure sudo: false addons: apt: sources: - chef-current-precise packages: - chefdk # Don't `bundle install` install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/opt/chefdk/bin/chef shell-init bash)" # We have to install chef-sugar for ChefSpec - /opt/chefdk/embedded/bin/chef gem install chef-sugar script: - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/rubocop --version - /opt/chefdk/embedded/bin/rubocop - /opt/chefdk/embedded/bin/foodcritic --version - /opt/chefdk/embedded/bin/foodcritic . --exclude spec - /opt/chefdk/embedded/bin/rspec spec
Update Travis YAML for generating docs.
before_install: - sudo add-apt-repository --yes ppa:hansjorg/rust - sudo add-apt-repository --yes ppa:cmrx64/cargo - sudo apt-get update -qq install: - sudo apt-get install -qq rust-nightly cargo script: - cargo build - cargo test
language: rust env: global: - secure: DEEHr+VSH3P0mzeEsd8iQniYvu/KSx5FtHHDXd1Wrs5zThQosfzk4uR/4OL5QxcGU2fGNHRXBqg1aPUarsRd6znFVOPU8cdyOmEgFF8vBCBVkZf3ZbtQcufhDHHki8EPg3UVlMqYnp8mloBFvj5QSTE00rzFFvXYF0PS4IFRrmY= before_install: - sudo add-apt-repository --yes ppa:hansjorg/rust - sudo add-apt-repository --yes ppa:cmrx64/cargo - sudo apt-get update -qq install: - sudo apt-get install -qq rust-nightly cargo script: - cargo build - cargo test after_script: - cargo doc - curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
Test Travis CI: Update build script
language: cpp compiler: - clang before_install: - mkdir -p _build - sudo add-apt-repository -y ppa:george-edison55/cmake-3.x - sudo apt-get update install: - sudo apt-get install -y cmake - cmake --version script: - cd _build - cmake .. - cmake --build .
language: cpp compiler: - clang before_install: - mkdir -p _build/cmake_bin _build/cmake_build - wget https://cmake.org/files/v3.3/cmake-3.3.2-Linux-x86_64.tar.gz -O _build/cmake_bin/cmake.tgz - tar xvfz _build/cmake_bin/cmake.tgz -C _build/cmake_bin - export CMAKE3="$(pwd)/_build/cmake_bin/cmake-3.3.2-Linux-x86_64/bin/cmake" install: script: - cd _build/cmake_build && $CMAKE3 .. - cd _build/cmake_build && $CMAKE3 --build .
Use the latest stable Node.js version on Travis CI and enable caching
language: node_js node_js: - "0.12" before_install: - npm install -g gulp-cli
language: node_js node_js: - node cache: directories: - node_modules install: - npm install -g gulp-cli - npm install - npm update
Upgrade Travis environment to PHP 7.2
language: php php: - '7.1' before_script: - cp .env.travis .env - mysql -e 'create database homestead_test;' - composer self-update - composer install --dev --no-interaction - php artisan key:generate - php artisan migrate --database=testing script: - mkdir -p build/logs - vendor/bin/phpunit -c phpunit.xml.dist after_success: - travis_retry php vendor/bin/coveralls cache: directories: - vendor addons: mariadb: '10.1'
language: php php: - '7.2' before_script: - cp .env.travis .env - mysql -e 'create database homestead_test;' - composer self-update - composer install --dev --no-interaction - php artisan key:generate - php artisan migrate --database=testing script: - mkdir -p build/logs - vendor/bin/phpunit -c phpunit.xml.dist after_success: - travis_retry php vendor/bin/coveralls cache: directories: - vendor addons: mariadb: '10.1'
Disable Python 3 support in Travis until a new release of pyramid_mailer is released
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" install: python setup.py develop script: python setup.py test services: - mongodb
language: python python: - "2.6" - "2.7" install: python setup.py develop script: python setup.py test services: - mongodb
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 nasm to apt-get list for Travis
language: cpp compiler: - gcc - clang branches: except: - gh-pages before_install: - sudo apt-get update -qq - sudo apt-get install -qq g++-4.6-multilib gcc-multilib libc6-dev-i386 lib32z1-dev install: make gtest-bootstrap script: make && make test && make clean && make ENABLE64BIT=Yes && make test && make clean && make BUILDTYPE=Release && make test && make BUILDTYPE=Release clean && make ENABLE64BIT=Yes BUILDTYPE=Release && make test
language: cpp compiler: - gcc - clang branches: except: - gh-pages before_install: - sudo apt-get update -qq - sudo apt-get install -qq nasm g++-4.6-multilib gcc-multilib libc6-dev-i386 lib32z1-dev install: make gtest-bootstrap script: make && make test && make clean && make ENABLE64BIT=Yes && make test && make clean && make BUILDTYPE=Release && make test && make BUILDTYPE=Release clean && make ENABLE64BIT=Yes BUILDTYPE=Release && make test
Extend test coverage to newer python 3 versions
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" install: - "python setup.py install" - "pip install coveralls" script: - "nosetests --with-coverage --cover-package=tr" after_success: - coveralls notifications: email: recipients: - yukino0131@me.com on_success: always on_failure: always
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "3.7" - "3.8" - "3.9-dev" install: - "python setup.py install" - "pip install coveralls" script: - "nosetests --with-coverage --cover-package=tr" after_success: - coveralls notifications: email: on_success: always on_failure: always
Add node.js to the build
language: java jdk: - oraclejdk8
language: java jdk: - oraclejdk8 install: - npm install - mvn install -DskipTests=true script: - mvn test - ls target/
Fix coverage for python 3.2
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.5-dev" # 3.5 development branch - "3.6" - "3.6-dev" # 3.6 development branch - "3.7-dev" # 3.7 development branch - "nightly" # currently points to 3.7-dev # command to install dependencies install: "pip install -r requirements.dev.txt" # command to run tests script: nosetests -v --with-coverage --cover-erase --cover-package=wunderclient
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.5-dev" # 3.5 development branch - "3.6" - "3.6-dev" # 3.6 development branch - "3.7-dev" # 3.7 development branch - "nightly" # currently points to 3.7-dev before_install: - if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then pip install 'coverage<4.0.0'; else pip install coverage; fi # command to install dependencies install: "pip install -r requirements.dev.txt" # command to run tests script: nosetests -v --with-coverage --cover-erase --cover-package=wunderclient
Remove HHVM-nightly from Travis as it's no longer supported
language: php php: - 5.6 - 5.5 - hhvm - hhvm-nightly sudo: false env: matrix: - PREFER_LOWEST="--prefer-lowest --prefer-stable" - PREFER_LOWEST="" before_install: - composer self-update install: - composer update --prefer-source $PREFER_LOWEST
language: php php: - 5.6 - 5.5 - hhvm sudo: false env: matrix: - PREFER_LOWEST="--prefer-lowest --prefer-stable" - PREFER_LOWEST="" before_install: - composer self-update install: - composer update --prefer-source $PREFER_LOWEST
Add --runInBand back to Travis
--- language: node_js node_js: - node - "4" cache: yarn: true directories: - node_modules env: global: - NODE_ENV=development matrix: - JOB=test AST_COMPARE=1 matrix: fast_finish: true include: - node_js: "node" env: JOB=lint install: - yarn install before_script: - yarn check-deps script: - if [ "${JOB}" = "lint" ]; then yarn lint && yarn lint-docs; fi - if [ "${JOB}" = "test" ]; then yarn test --maxWorkers=4 --ci; fi - if [ "${JOB}" = "test" ]; then yarn codecov; fi branches: only: - master
--- language: node_js node_js: - node - "4" cache: yarn: true directories: - node_modules env: global: - NODE_ENV=development matrix: - JOB=test AST_COMPARE=1 matrix: fast_finish: true include: - node_js: "node" env: JOB=lint install: - yarn install before_script: - yarn check-deps script: - if [ "${JOB}" = "lint" ]; then yarn lint && yarn lint-docs; fi - if [ "${JOB}" = "test" ]; then yarn test --runInBand --ci; fi - if [ "${JOB}" = "test" ]; then yarn codecov; fi branches: only: - master
Add latest ruby version to Travis build matrix
language: ruby rvm: - "1.9.3" - "2.0.0" - "2.1.0" - "2.1.1" - "2.1.2" gemfile: - gemfiles/rails_30.gemfile - gemfiles/rails_31.gemfile - gemfiles/rails_32.gemfile - gemfiles/rails_40.gemfile - gemfiles/rails_41.gemfile
language: ruby rvm: - "1.9.3" - "2.0.0" - "2.1.0" - "2.1.1" - "2.1.2" - "2.1.3" gemfile: - gemfiles/rails_30.gemfile - gemfiles/rails_31.gemfile - gemfiles/rails_32.gemfile - gemfiles/rails_40.gemfile - gemfiles/rails_41.gemfile
Update from Hackage at 2016-01-11T13:15:42+0000
homepage: http://www.cse.chalmers.se/~emax/bookshelf/Manual.shelf.html changelog-type: '' hash: c12033919565985ac656e63a41fc8972d69a712a1142c5b957fae0af84093f76 test-bench-deps: base: <5 process: -any maintainer: Emil Axelsson <emax@chalmers.se> synopsis: A simple document organizer with some wiki functionality changelog: '' basic-deps: base: <5 filepath: -any pandoc-types: ! '>=1.12' containers: -any pandoc: ! '>=1.12' pandoc-citeproc: ! '>=0.2' parseargs: -any directory: -any all-versions: - '0.1.1' - '0.1.2' - '0.1.3' - '0.1.5' - '0.1.6' - '0.2' - '0.3' - '0.3.1' - '0.4' - '0.5' author: Emil Axelsson <emax@chalmers.se> latest: '0.5' description-type: haddock description: A simple document organizer with some wiki functionality license-name: GPL
homepage: http://www.cse.chalmers.se/~emax/bookshelf/Manual.shelf.html changelog-type: '' hash: 8691aa438ccfd96def58e25b1731cd2718a996ee26bb911a56aa74466759a92b test-bench-deps: base: <5 process: -any maintainer: Emil Axelsson <emax@chalmers.se> synopsis: A simple document organizer with some wiki functionality changelog: '' basic-deps: base: <5 filepath: -any pandoc-types: ! '>=1.16' containers: -any pandoc: -any pandoc-citeproc: -any parseargs: -any directory: -any all-versions: - '0.1.1' - '0.1.2' - '0.1.3' - '0.1.5' - '0.1.6' - '0.2' - '0.3' - '0.3.1' - '0.4' - '0.5' - '0.6' author: Emil Axelsson <emax@chalmers.se> latest: '0.6' description-type: haddock description: A simple document organizer with some wiki functionality license-name: GPL
Add Bazel@HEAD with no bzlmod tests.
--- build_targets: &build_targets - "//..." # TODO: Look into broken targets in //toolchains - "-//toolchains/..." build_targets_bzlmod: &build_targets_bzlmod - "//..." - "-//toolchains/..." # TODO(pcloudy): pkg_tar doesn't work with Bzlmod due to https://github.com/bazelbuild/bazel/issues/14259 # Enable once the issue is fixed. - "-//distro/..." buildifier: version: latest warnings: "all" tasks: ubuntu2004: build_targets: *build_targets macos: build_targets: *build_targets windows: build_targets: *build_targets ubuntu2004_bzlmod: bazel: last_green platform: ubuntu2004 build_flags: - "--config=bzlmod" build_targets: *build_targets_bzlmod macos_bzlmod: bazel: last_green platform: macos build_flags: - "--config=bzlmod" build_targets: *build_targets_bzlmod windows_bzlmod: bazel: last_green platform: windows build_flags: - "--config=bzlmod" build_targets: *build_targets_bzlmod
--- build_targets: &build_targets - "//..." # TODO: Look into broken targets in //toolchains - "-//toolchains/..." build_targets_bzlmod: &build_targets_bzlmod - "//..." - "-//toolchains/..." # TODO(pcloudy): pkg_tar doesn't work with Bzlmod due to https://github.com/bazelbuild/bazel/issues/14259 # Enable once the issue is fixed. - "-//distro/..." buildifier: version: latest warnings: "all" tasks: ubuntu2004: build_targets: *build_targets macos: build_targets: *build_targets windows: build_targets: *build_targets ubuntu2004_head: bazel: last_green platform: ubuntu2004 build_targets: *build_targets macos_head: bazel: last_green platform: macos build_targets: *build_targets windows_head: bazel: last_green platform: windows build_targets: *build_targets ubuntu2004_bzlmod: bazel: last_green platform: ubuntu2004 build_flags: - "--config=bzlmod" build_targets: *build_targets_bzlmod macos_bzlmod: bazel: last_green platform: macos build_flags: - "--config=bzlmod" build_targets: *build_targets_bzlmod windows_bzlmod: bazel: last_green platform: windows build_flags: - "--config=bzlmod" build_targets: *build_targets_bzlmod
Install latest Firefox ESR release
language: java jdk: - oraclejdk8 sudo: false cache: directories: - $HOME/.gradle before_install: - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16" - "export DISPLAY=:99.0" deploy: provider: script script: ./gradlew bintrayUpload skip_cleanup: true on: branch: master tags: true after_success: - ls -l rollup/dist/
language: java jdk: - oraclejdk8 sudo: false addons: firefox: "latest-esr" cache: directories: - $HOME/.gradle before_install: - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16" - "export DISPLAY=:99.0" deploy: provider: script script: ./gradlew bintrayUpload skip_cleanup: true on: branch: master tags: true after_success: - ls -l rollup/dist/
Add node 0.12 and iojs for CI
language: node_js node_js: - "0.11" - "0.10"
language: node_js node_js: - "0.12" - "0.10" - "iojs"
Add Ruby 2.3 to Travis config
sudo: false language: ruby rvm: - 2.2.1 - 2.2.3 cache: bundler script: "bundle exec rake test"
sudo: false language: ruby rvm: - 2.2.1 - 2.2.4 - 2.3.0 cache: bundler script: "bundle exec rake test"
Update Ruby versions to test against
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode - ruby-head - jruby-head
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.2 - jruby-19mode - rbx-2
Remove Python 3.2 from interpreters list
language: python python: - "2.7" - "3.2" - "3.3" - "3.4" install: - pip install . - pip install mock==2.0 - pip install -r requirements.txt script: nosetests
language: python python: - "2.7" - "3.3" - "3.4" install: - pip install . - pip install mock==2.0 - pip install -r requirements.txt script: nosetests
Add Ruby 2.5 to TravisCI builds
language: ruby rvm: - 2.4 - 2.3 - 2.2
language: ruby rvm: - 2.5 - 2.4 - 2.3 - 2.2
Switch build to use xcodebuild
language: objective-c osx_image: xcode7.3 xcode_project: PSOperations.xcodeproj xcode_sdk: - iphonesimulator - iphonesimulator xcode_scheme: - PSOperations - PSOperationsAppForTests before_install: - brew update - brew outdated xctool || brew upgrade xctool
language: objective-c osx_image: xcode7.3 script: - xcodebuild test -project PSOperations.xcodeproj -scheme PSOperations -destination 'platform=iOS Simulator,name=iPhone 6s' -destination 'platform=tvOS Simulator,name=Apple TV 1080p' - xcodebuild test -project PSOperations.xcodeproj -scheme PSOperationsAppForTests -destination 'platform=iOS Simulator,name=iPhone 6s'
Use the correct scheme for testing.
language: objective-c osx_image: xcode7.3 xcode_workspace: Example/AirRivet.xcworkspace xcode_scheme: AirRivet xcode_sdk: iphonesimulator9.3 deploy: skip_cleanup: true provider: script script: ./scripts/deploy.sh on: tags: true
language: objective-c osx_image: xcode7.3 xcode_workspace: Example/AirRivet.xcworkspace xcode_scheme: AirRivet-Example xcode_sdk: iphonesimulator9.3 deploy: skip_cleanup: true provider: script script: ./scripts/deploy.sh on: tags: true
Test against Ruby 2.0.0 and 2.1.0
language: ruby rvm: - 1.9.2 - 1.9.3 - ruby-head
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - ruby-head
Include Ruby 2.0 in Travis runs
language: ruby rvm: - "1.9.3" # - jruby-19mode # JRuby in 1.9 mode # - rbx-19mode # uncomment this line if your project needs to run something other than `rake`: env: global: - DB_HOST=127.0.0.1 matrix: # - GEM_SOURCE=rubygems DB=postgres DB_USER=postgres # - GEM_SOURCE=rubygems DB=mysql DB_USER=root - GEM_SOURCE=git DB=postgres DB_USER=postgres - GEM_SOURCE=git DB=mysql DB_USER=root before_install: gem install rake gemfile: .travis/gemfiles/Gemfile.empty script: rake test:integration
language: ruby rvm: - "1.9.3" - "2.0.0" # - jruby-19mode # JRuby in 1.9 mode # - rbx-19mode # uncomment this line if your project needs to run something other than `rake`: env: global: - DB_HOST=127.0.0.1 matrix: # - GEM_SOURCE=rubygems DB=postgres DB_USER=postgres # - GEM_SOURCE=rubygems DB=mysql DB_USER=root - GEM_SOURCE=git DB=postgres DB_USER=postgres - GEM_SOURCE=git DB=mysql DB_USER=root before_install: gem install rake gemfile: .travis/gemfiles/Gemfile.empty script: rake test:integration
Fix failing selenium tests on TravisCI.
language: ruby cache: bundler rvm: - "2.2.0" notifications: email: false bundler_args: --without development:production --deployment --retry=3 --jobs=3 before_script: - bundle exec rake db:create - bundle exec rake db:migrate script: xvfb-run bundle exec rake test addons: postgresql: "9.3"
language: ruby cache: bundler rvm: - "2.2.0" notifications: email: false bundler_args: --without development:production --deployment --retry=3 --jobs=3 before_script: - bundle exec rake db:create - bundle exec rake db:migrate before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" script: bundle exec rake test addons: postgresql: "9.3"
Switch to rbx-2 for Travis build.
language: ruby rvm: - 2.1.0 - 2.0.0 - 1.9.3 - 1.9.2 - rbx script: bundle exec rake spec cache: bundler
language: ruby rvm: - 2.1.0 - 2.0.0 - 1.9.3 - 1.9.2 - rbx-2 script: bundle exec rake spec cache: bundler
Use openjdk8 to avoid Travis CI installation errors
sudo: false language: scala scala: - 2.10.7 - 2.11.12 - 2.12.9 - 2.13.0 jdk: - oraclejdk8 - oraclejdk11 - openjdk11 script: - java -version - sbt test
sudo: false language: scala scala: - 2.10.7 - 2.11.12 - 2.12.9 - 2.13.0 jdk: - openjdk8 - oraclejdk11 - openjdk11 script: - java -version - sbt test
Drop support for Ruby versions before 2.2.5
language: ruby rvm: - 2.1.5 - 2.0.0 - 1.9.3
language: ruby rvm: - 2.3.1 - 2.2.5
Use Node 0.10 on Travis
language: node_js node_js: - "0.8" before_script: - npm install -g grunt-cli - npm install -g bower - bower install branches: only: - master - develop
language: node_js node_js: - "0.10" before_script: - npm install -g grunt-cli - npm install -g bower - bower install branches: only: - master - develop
Remove Python 3.2 from Travis CI build matrix
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.5-dev" # 3.5 development branch - "nightly" # currently points to 3.6-dev - "pypy" install: - pip install tox script: - tox -e coverage after_success: - coveralls
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.5-dev" # 3.5 development branch - "nightly" # currently points to 3.6-dev - "pypy" install: - pip install tox script: - tox -e coverage after_success: - coveralls
Add note for build chain config
language: node_js env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 node_js: - "0.12" - "0.11" - "0.10" - "iojs" - "iojs-v1.0.4" - "node" - "4.0"
language: node_js # Add build chain config for Node GYP in Node 4.x env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 node_js: - "0.12" - "0.11" - "0.10" - "iojs" - "iojs-v1.0.4" - "node" - "4.0"
Migrate to Travis CI container-based infrastructure
language: node_js node_js: - "0.10" - "0.11" - "0.12" - "4.0" - "4.1" before_install: - sudo apt-get update -qq - sudo apt-get install -qq default-jdk g++ make - echo -e "127.0.0.1 localhost\n127.0.0.1 travis001.onddo.com" | sudo tee -a /etc/hosts - sudo hostname 'travis001.onddo.com' - hostname | sudo tee /etc/hostname - npm install -g jshint || true
language: node_js sudo: false addons: apt: sources: - ubuntu-toolchain-r-test packages: - default-jdk - g++-4.8 - make node_js: - "0.10" - "0.11" - "0.12" - "4.0" - "4.1" before_install: - export CXX=g++-4.8 - npm install -g jshint || true
Use Swift 3.0p1 on Ubuntu.
language: generic matrix: include: - os: Linux dist: trusty env: SWIFT_SNAPSHOT_NAME=DEVELOPMENT-SNAPSHOT-2016-05-31-a sudo: required - os: Linux dist: trusty env: "SWIFT_SNAPSHOT_NAME=https://swift.org/builds/swift-2.2.1-release/ubuntu1404/swift-2.2.1-RELEASE/swift-2.2.1-RELEASE-ubuntu14.04.tar.gz" sudo: required - os: osx osx_image: xcode7.3 env: SWIFT_SNAPSHOT_NAME=DEVELOPMENT-SNAPSHOT-2016-05-31-a before_install: - ./xcconfig/before-install.sh install: - ./xcconfig/install.sh script: - export SWIFTENV_ROOT="$HOME/.swiftenv" - export PATH="${SWIFTENV_ROOT}/bin:${SWIFTENV_ROOT}/shims:$PATH" # - env|sort - make
language: generic matrix: include: - os: Linux dist: trusty env: "SWIFT_SNAPSHOT_NAME=https://swift.org/builds/swift-3.0-preview-1/ubuntu1404/swift-3.0-preview-1/swift-3.0-preview-1-ubuntu14.04.tar.gz" sudo: required - os: Linux dist: trusty env: "SWIFT_SNAPSHOT_NAME=https://swift.org/builds/swift-2.2.1-release/ubuntu1404/swift-2.2.1-RELEASE/swift-2.2.1-RELEASE-ubuntu14.04.tar.gz" sudo: required - os: osx osx_image: xcode7.3 env: SWIFT_SNAPSHOT_NAME=DEVELOPMENT-SNAPSHOT-2016-05-31-a before_install: - ./xcconfig/before-install.sh install: - ./xcconfig/install.sh script: - export SWIFTENV_ROOT="$HOME/.swiftenv" - export PATH="${SWIFTENV_ROOT}/bin:${SWIFTENV_ROOT}/shims:$PATH" - make
Test against Ruby 2.3.0 on Travis CI
language: ruby rvm: - 2.2 - 2.1 - 2.0.0 - 1.9.3 - rbx-2 - jruby-19mode - jruby-head sudo: false bundler_args: --without=guard notifications: disabled: true script: - bundle exec rake - bundle exec rubocop
language: ruby rvm: - 2.3.0 - 2.2 - 2.1 - 2.0.0 - 1.9.3 - rbx-2 - jruby-19mode - jruby-head sudo: false bundler_args: --without=guard notifications: disabled: true script: - bundle exec rake - bundle exec rubocop
Fix CI for bundler v2
language: ruby rvm: - 2.0 - 2.1 - 2.2 - 2.3 - 2.4 - 2.5 - 2.6 - ruby-head bundler_args: "--jobs=2" before_install: - gem install bundler --no-document script: bundle exec rspec branches: only: - master notifications: email: false slack: secure: A2NfkamFIfgKSrV3KFMW+vYsCt9H9WgXJf6A4T+aAi8d/2WjeXbl0jB7FYBT8ut1Xgi43TrmoqDqvWSv9ly7yc0qFfIG4dtb8THmUJ+P11UDWPQXt40IFX/zX8ueQs9MA8h1sgtPyvenM7pRpKG+r6ooRHErPcYpx0zCb6JbDhY= matrix: allow_failures: - rvm: ruby-head include: - rvm: 2.6 env: RUBYOPT="--jit" - rvm: ruby-head env: RUBYOPT="--jit"
language: ruby rvm: - 2.0 - 2.1 - 2.2 - 2.3 - 2.4 - 2.5 - 2.6 - ruby-head bundler_args: "--jobs=2" before_install: - travis_retry gem update --system || travis_retry gem update --system 2.7.8 - travis_retry gem install bundler --no-document || travis_retry gem install bundler --no-document -v 1.17.3 script: bundle exec rspec branches: only: - master notifications: email: false slack: secure: A2NfkamFIfgKSrV3KFMW+vYsCt9H9WgXJf6A4T+aAi8d/2WjeXbl0jB7FYBT8ut1Xgi43TrmoqDqvWSv9ly7yc0qFfIG4dtb8THmUJ+P11UDWPQXt40IFX/zX8ueQs9MA8h1sgtPyvenM7pRpKG+r6ooRHErPcYpx0zCb6JbDhY= matrix: allow_failures: - rvm: ruby-head include: - rvm: 2.6 env: RUBYOPT="--jit" - rvm: ruby-head env: RUBYOPT="--jit"
Add notifications to our Slack channel.
language: java jdk: - oraclejdk8 before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/
language: java jdk: - oraclejdk8 before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - "$HOME/.gradle/caches/" - "$HOME/.gradle/wrapper/" notifications: slack: secure: l8CRTBmVulwZ29is+bEC2DE6X//CiReJvVQOUsFVVg0Ib0EMFOxj1HRUVRleba+mBG08TvFdq2hUgI7fz7lXprir72EcLWx0iRjGm4pH8DsF84Yq9f98WkBSLGHSlIQbj1oHFXzPAyMCNv5Bi4SnywRiFr0iBEA51wUjHrs86jfR5uYn5/DAx6dKmmTQ/D1dHZ+h1eXZRQSc2sSEGMOA/FqIkEjmkImcwSDbpm4GftVFzdKG5KoA7ak5CF+SyFhk7V8HWsu+15kwMiC884GpWWsOp3hjlFshrVw3yF0lJBEL3GGxKZy5OZIX1uJ9gLut/XfY62d8DJBPffAkxOifRZn8TR97rj7oB6+NOJTIgfOqQayrGwCbajKOTiQDiW4P9hzTaEqAi6egi9lDHkka4C+IfWr91XMqzuXtY2wSz10kzWYnatzM2sq7Juts9kmQzQE3bbmKZAVDJE0p4LuSqckblepM2+1WCcktIkJRbretPI9jjuKQ3s/IIejMhFBVownmAuiC2UkeuKd3av3YfEY3F8Rir3vk4qCr/Yz5P8J7pvqWqFnexC8bSuow00TUm8q9ptXfqjS/w5r8dau54vDvXfzXbD28lT9ovoENtL59CFtOc4+MGDKOn5HvIR2oT5/VnKI1BGhtPU6b6mxcpf5gZvZEAm39Pmbu7X8eW/o=
Move testing from Precies to Trusty, add rubinius, update to lates minor ruby versions
language: ruby cache: bundler rvm: - 1.9.3 - 2.0.0 - 2.1.10 - 2.2.5 - 2.3.1 - jruby-19mode - jruby-head - rbx-2 before_install: # bundler installation needed for jruby-head # https://github.com/travis-ci/travis-ci/issues/5861 - gem install bundler env: - JRUBY_OPTS="-Xcli.debug=true --debug"
dist: trusty sudo: false language: ruby cache: bundler rvm: - 2.0.0 - 2.1.10 - 2.2.7 - 2.3.4 - 2.4.1 - jruby-9.0.5.0 - jruby-9.1.12.0 - rbx-3.82 before_install: # bundler installation needed for jruby-head # https://github.com/travis-ci/travis-ci/issues/5861 - gem install bundler env: - JRUBY_OPTS="-Xcli.debug=true --debug"
Remove unneeded npm install in dist-tools
language: node_js node_js: - "0.10" branches: only: - master - normalized before_script: - "npm install git://github.com/aws/aws-sdk-js-apis#$TRAVIS_BRANCH" - "pushd dist-tools && npm install && popd" script: "if [ $INTEGRATION ]; then cucumber.js -f pretty; else npm test; fi" # env: # global: # - secure: "..." # matrix: # - UNIT=1 # - AWS_REGION=us-east-1 INTEGRATION=1
language: node_js node_js: - "0.10" branches: only: - master - normalized before_script: - "npm install git://github.com/aws/aws-sdk-js-apis#$TRAVIS_BRANCH" script: "if [ $INTEGRATION ]; then cucumber.js -f pretty; else npm test; fi" # env: # global: # - secure: "..." # matrix: # - UNIT=1 # - AWS_REGION=us-east-1 INTEGRATION=1
Add basic info to jekyll config
# Site settings title: Your awesome title email: your-email@domain.com description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description. baseurl: "" # the subpath of your site, e.g. /blog/ url: "http://yourdomain.com" # the base hostname & protocol for your site twitter_username: jekyllrb github_username: jekyll # Build settings markdown: kramdown exclude: [vendor]
# 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: "http://blog.hilzu.moe" # the base hostname & protocol for your site twitter_username: ze_hilda github_username: hilzu # Build settings markdown: kramdown exclude: [vendor]
Exclude COPYING and README.md from the generated site
markdown: kramdown highlighter: pygments permalink: /news/:year/:month/:day/:title/ excerpt_separator: "" google_analytics_id: UA-46880695-1 organization_url: https://github.com/frida repository: https://github.com/frida/frida timezone: Europe/Oslo collections: docs: output: true name: Frida • A world-class dynamic instrumentation framework description: Inject JavaScript to explore native apps on Windows, Mac, Linux, iOS, Android, and QNX url: http://www.frida.re twitter: username: fridadotre gems: - jekyll-feed - jekyll-redirect-from - jemoji - jekyll-sitemap - jekyll-seo-tag - jekyll-avatar - jekyll-gist
markdown: kramdown highlighter: pygments permalink: /news/:year/:month/:day/:title/ excerpt_separator: "" google_analytics_id: UA-46880695-1 organization_url: https://github.com/frida repository: https://github.com/frida/frida timezone: Europe/Oslo collections: docs: output: true name: Frida • A world-class dynamic instrumentation framework description: Inject JavaScript to explore native apps on Windows, Mac, Linux, iOS, Android, and QNX url: http://www.frida.re twitter: username: fridadotre exclude: ["COPYING", "README.md"] gems: - jekyll-feed - jekyll-redirect-from - jemoji - jekyll-sitemap - jekyll-seo-tag - jekyll-avatar - jekyll-gist
Switch to rouge for highlighting
# visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings paginate: 10 # pagination based on number of posts paginate_path: "page:num" highlighter: pygments markdown: redcarpet name: "[ antoinealb.net ]" description: A blog about robotics, embedded software and Linux author: name: Antoine Albertelli email: antoinea101@gmail.com github: antoinealb twitter: antoinealb bio: Robotics enthusiast studying Microengineering in Lausanne, Switzerland logo: false # Exclude our ruby stuff exclude: [README.md .bundle, bin, vendor, Gemfile, Gemfile.lock, Rakefile, s3_website.yml, .last_optimized] # Details for the RSS feed generator url: 'http://antoinealb.net' baseurl: '/' gems: - jekyll-feed - jekyll-sitemap
# visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings paginate: 10 # pagination based on number of posts paginate_path: "page:num" highlighter: rouge markdown: redcarpet name: "[ antoinealb.net ]" description: A blog about robotics, embedded software and Linux author: name: Antoine Albertelli email: antoinea101@gmail.com github: antoinealb twitter: antoinealb bio: Robotics enthusiast studying Microengineering in Lausanne, Switzerland logo: false # Exclude our ruby stuff exclude: [README.md .bundle, bin, vendor, Gemfile, Gemfile.lock, Rakefile, s3_website.yml, .last_optimized] # Details for the RSS feed generator url: 'http://antoinealb.net' baseurl: '/' gems: - jekyll-feed - jekyll-sitemap
Update config settings for newer jekyll
markdown: rdiscount pygments: true permalink: /posts/:title auto: true future: false rdiscount: extensions: [smart] name: Matt Yoho url: http://mattyoho.com description: Wholesale optimism distributor. twitter: mattyoho github: mattyoho instagram: mattyoho gravatar_url: http://www.gravatar.com/avatar/52ee95ca6e345d86a414741dccaa6dce email: mby@mattyoho.com email_base64: bWJ5QG1hdHR5b2hvLmNvbQ==
markdown: kramdown highlighter: pygments permalink: /posts/:title future: false kramdown: gfm: true name: Matt Yoho url: http://mattyoho.com description: Wholesale optimism distributor. twitter: mattyoho github: mattyoho instagram: mattyoho gravatar_url: http://www.gravatar.com/avatar/52ee95ca6e345d86a414741dccaa6dce email: mby@mattyoho.com email_base64: bWJ5QG1hdHR5b2hvLmNvbQ==
Exclude node modules & minima readme
# 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 edit after that. If you find # yourself editing this file very often, consider using Jekyll's data files # feature for the data you need to update frequently. # # For technical reasons, this file is *NOT* reloaded automatically when you use # 'bundle exec jekyll serve'. If you change this file, please restart the server process. # Site settings # These are used to personalize your new site. If you look in the HTML files, # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. # You can create any custom variable you would like, and they will be accessible # in the templates via {{ site.myvariable }}. title: dylan on email: email@test.com description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description. baseurl: "" # the subpath of your site, e.g. /blog url: "" # the base hostname & protocol for your site, e.g. http://example.com twitter_username: dylanon github_username: dylanon # Build settings markdown: kramdown theme: minima gems: - jekyll-feed exclude: - Gemfile - Gemfile.lock
# 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 edit after that. If you find # yourself editing this file very often, consider using Jekyll's data files # feature for the data you need to update frequently. # # For technical reasons, this file is *NOT* reloaded automatically when you use # 'bundle exec jekyll serve'. If you change this file, please restart the server process. # Site settings # These are used to personalize your new site. If you look in the HTML files, # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. # You can create any custom variable you would like, and they will be accessible # in the templates via {{ site.myvariable }}. title: dylan on email: email@test.com description: > # this means to ignore newlines until "baseurl:" Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description. baseurl: "" # the subpath of your site, e.g. /blog url: "" # the base hostname & protocol for your site, e.g. http://example.com twitter_username: dylanon github_username: dylanon # Build settings markdown: kramdown theme: minima gems: - jekyll-feed exclude: - Gemfile - Gemfile.lock - node_modules - README-minima.md
Add codeclimate test coverage token
--- language: ruby rvm: 2.0.0 before_install: - gem install bundler --no-ri --no-rdoc script: CODECLIMATE_REPO_TOKEN=x bundle && bundle exec rspec addons: code_climate: repo_token: x
--- language: ruby rvm: 2.0.0 before_install: - gem install bundler --no-ri --no-rdoc script: CODECLIMATE_REPO_TOKEN=2f6f03ad98447b63d5ad55055331c2fbd76526fbffdc5365d4a3b9e3d59dbc70 bundle && bundle exec rspec addons: code_climate: repo_token: 2f6f03ad98447b63d5ad55055331c2fbd76526fbffdc5365d4a3b9e3d59dbc70
Test on more php versions
language: php php: - 5.4 - 5.5 - 5.6 - hhvm sudo: false install: travis_retry composer install --no-interaction --prefer-source script: phpunit
language: php php: - 5.4 - 5.5.9 - 5.5 - 5.6 - 7.0 - hhvm sudo: false install: travis_retry composer install --no-interaction --prefer-source script: phpunit
Use newer version of Maven
language: java jdk: - oraclejdk8
language: java jdk: - oraclejdk8 before_install: - wget https://archive.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.zip - unzip -qq apache-maven-3.3.9-bin.zip - export M2_HOME=$PWD/apache-maven-3.3.9 - export PATH=$M2_HOME/bin:$PATH
Revert "Fix Travis config to reflect new requirements"
language: scala sudo: false scala: - 2.11.8 jdk: - oraclejdk8 script: - sbt ++$TRAVIS_SCALA_VERSION clean coverage test coverageReport scalastyle - sbt ++$TRAVIS_SCALA_VERSION coverageAggregate after_success: - bash <(curl -s https://codecov.io/bash)
language: scala sudo: false scala: - 2.10.6 - 2.11.7 jdk: - openjdk7 - oraclejdk7 - oraclejdk8 script: - sbt ++$TRAVIS_SCALA_VERSION clean coverage test coverageReport scalastyle - sbt ++$TRAVIS_SCALA_VERSION coverageAggregate after_success: - bash <(curl -s https://codecov.io/bash)
Switch back to parallel spec tests
--- sudo: false dist: trusty language: ruby cache: bundler before_install: - bundle -v - rm -f Gemfile.lock - gem update --system - gem --version - bundle -v script: - 'bundle exec rake $CHECK' bundler_args: --without system_tests rvm: - 2.5.0 env: global: - BEAKER_PUPPET_COLLECTION=puppet6 PUPPET_GEM_VERSION="~> 6.0" matrix: fast_finish: true include: - env: CHECK="syntax lint metadata_lint check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop" - env: CHECK=spec - env: PUPPET_GEM_VERSION="~> 5.0" CHECK=spec rvm: 2.4.4 - env: PUPPET_GEM_VERSION="~> 4.0" CHECK=spec rvm: 2.1.9 branches: only: - master - /^v\d/ notifications: email: false deploy: provider: puppetforge user: puppet password: secure: "" on: tags: true all_branches: true condition: "$DEPLOY_TO_FORGE = yes"
--- sudo: false dist: trusty language: ruby cache: bundler before_install: - bundle -v - rm -f Gemfile.lock - gem update --system - gem --version - bundle -v script: - 'bundle exec rake $CHECK' bundler_args: --without system_tests rvm: - 2.5.0 env: global: - BEAKER_PUPPET_COLLECTION=puppet6 PUPPET_GEM_VERSION="~> 6.0" matrix: fast_finish: true include: - env: CHECK="syntax lint metadata_lint check:symlinks check:git_ignore check:dot_underscore check:test_file rubocop" - env: CHECK=parallel_spec - env: PUPPET_GEM_VERSION="~> 5.0" CHECK=parallel_spec rvm: 2.4.4 - env: PUPPET_GEM_VERSION="~> 4.0" CHECK=parallel_spec rvm: 2.1.9 branches: only: - master - /^v\d/ notifications: email: false deploy: provider: puppetforge user: puppet password: secure: "" on: tags: true all_branches: true condition: "$DEPLOY_TO_FORGE = yes"
Fix invalid deps and move AttributeFactory to component
language: php php: - 5.5 - 5.6 - 7.0 before_script: composer install --dev --prefer-source script: bin/phpspec run -fpretty --verbose
language: php php: - 5.5 - 5.6 - 7.0 before_script: composer install --no-interaction --prefer-source script: bin/phpspec run -fpretty --verbose
Include patchelf as a build requirement
package: name: julia version: 0.5.0 source: fn: julia-0.5.0-full.tar.gz url: https://github.com/JuliaLang/julia/releases/download/v0.5.0/julia-0.5.0-full.tar.gz md5: b61385671ba74767ab452363c43131fb # from https://s3.amazonaws.com/julialang/bin/checksums/julia-0.5.0.md5 build: string: mkl script_env: - MKLROOT test: files: - run_test.jl commands: - which julia - julia --version - julia --check-bounds=yes run_test.jl about: home: http://julialang.org license_file: LICENSE.md summary: Julia compiled with Intel Math Kernel Library (Intel MKL)
package: name: julia version: 0.5.0 source: fn: julia-0.5.0-full.tar.gz url: https://github.com/JuliaLang/julia/releases/download/v0.5.0/julia-0.5.0-full.tar.gz md5: b61385671ba74767ab452363c43131fb # from https://s3.amazonaws.com/julialang/bin/checksums/julia-0.5.0.md5 requirements: build: - patchelf build: string: mkl script_env: - MKLROOT test: files: - run_test.jl commands: - which julia - julia --version - julia --check-bounds=yes run_test.jl about: home: http://julialang.org license_file: LICENSE.md summary: Julia compiled with Intel Math Kernel Library (Intel MKL)
Update from Hackage at 2017-04-03T21:47:57Z
homepage: https://github.com/tonyday567/numhask changelog-type: '' hash: 57c2756453b0794874932aafa25d2f2a2d27f0f7a619cba2f75481d06e0a7e89 test-bench-deps: numhask: -any base: ! '>=4.7 && <5' doctest: -any HUnit: -any tasty-quickcheck: -any tasty-hunit: -any tasty: -any QuickCheck: -any maintainer: tonyday567@gmail.com synopsis: A numeric prelude changelog: '' basic-deps: base: ! '>=4.7 && <4.10' adjunctions: ! '>=4.3 && <5' distributive: ! '>=0.5 && <0.6' protolude: ! '>=0.1 && <0.3' singletons: ! '>=2.2 && <2.3' QuickCheck: ! '>=2.8 && <3' vector: ! '>=0.11 && <0.13' all-versions: - '0.0.1' author: Tony Day latest: '0.0.1' description-type: haddock description: ! 'Classes for numbers, higher-dimension representable objects, and algebras that combine them. See NumHask.Examples for usage. > import NumHask.Prelude' license-name: BSD3
homepage: https://github.com/tonyday567/numhask changelog-type: '' hash: dd4f8cdfa2c75684def5f1380bf160b3adf700739343f4d1bfab014918a34d9b test-bench-deps: numhask: -any base: ! '>=4.7 && <5' doctest: -any HUnit: -any tasty-quickcheck: -any tasty-hunit: -any tasty: -any QuickCheck: -any maintainer: tonyday567@gmail.com synopsis: A numeric prelude changelog: '' basic-deps: base: ! '>=4.7 && <4.10' adjunctions: ! '>=4.3 && <5' distributive: ! '>=0.5 && <0.6' protolude: ! '>=0.1 && <0.3' singletons: ! '>=2.2 && <2.3' QuickCheck: ! '>=2.8 && <3' vector: ! '>=0.11 && <0.13' all-versions: - '0.0.1' - '0.0.2' author: Tony Day latest: '0.0.2' description-type: haddock description: ! 'Classes for numbers, higher-dimension representable objects, and algebras that combine them. See NumHask.Examples for usage. > import NumHask.Prelude' license-name: BSD3
Remove redundant AppVeyor matrix entry
environment: NODE_CONFIG: '{"db": {"host": "localhost"}}' PGUSER: postgres PGPASSWORD: Password12! POSTGRES_PATH: C:\Program Files\PostgreSQL\10 matrix: - nodejs_version: "8.16.0" - nodejs_version: "8.16.0" - nodejs_version: "10.15.3" - nodejs_version: "10.15.3" USE_QLOBBER_PG: 1 - nodejs_version: "12.2.0" - nodejs_version: "12.2.0" USE_QLOBBER_PG: 1 services: - postgresql101 install: - ps: Remove-NodeJsInstallation $(Get-InstalledNodeJsVersion).version $(Get-InstalledNodeJsVersion).bitness - ps: cmd /c start /wait msiexec /i $(Get-NodeJsInstallPackage $env:nodejs_version x64) /q - node --version - npm --version - npm install before_test: - set path=%postgres_path%\\bin;%path% - "psql -c \"create database \\\"qlobber-pg\\\";\"" test_script: - npm explore qlobber-pg -- npm run migrate up - npm run test build: off
environment: NODE_CONFIG: '{"db": {"host": "localhost"}}' PGUSER: postgres PGPASSWORD: Password12! POSTGRES_PATH: C:\Program Files\PostgreSQL\10 matrix: - nodejs_version: "8.16.0" - nodejs_version: "10.15.3" - nodejs_version: "10.15.3" USE_QLOBBER_PG: 1 - nodejs_version: "12.2.0" - nodejs_version: "12.2.0" USE_QLOBBER_PG: 1 services: - postgresql101 install: - ps: Remove-NodeJsInstallation $(Get-InstalledNodeJsVersion).version $(Get-InstalledNodeJsVersion).bitness - ps: cmd /c start /wait msiexec /i $(Get-NodeJsInstallPackage $env:nodejs_version x64) /q - node --version - npm --version - npm install before_test: - set path=%postgres_path%\\bin;%path% - "psql -c \"create database \\\"qlobber-pg\\\";\"" test_script: - npm explore qlobber-pg -- npm run migrate up - npm run test build: off
Update before running the tests
language: php before_script: - composer install --dev --prefer-source php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm script: - phpunit --coverage-text
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm before_script: - composer self-update - composer install --prefer-source --no-interaction --dev script: - phpunit --coverage-text
Use the right make rule for Travis builds
language: go go: - 1.x - 1.8.x - master services: - docker jobs: include: - stage: deploy script: # build caddy - make travis-build # build image and push - docker login --username="$DOCKER_USER" --password="$DOCKER_PASSWORD" - make docker - make docker-push go: 1.x
language: go go: - 1.x - 1.8.x - master services: - docker script: - make travis-build jobs: include: - stage: deploy script: # build caddy - make travis-build # build image and push - docker login --username="$DOCKER_USER" --password="$DOCKER_PASSWORD" - make docker - make docker-push go: 1.x
Update image format for docker 1.12 due to new restrictions
after_script: - docker images before_script: - cd "$VERSION" - IMAGE="bitcoind:$VERSION" env: - VERSION=0.13 - VERSION=0.13/alpine - VERSION=0.12 - VERSION=0.12/alpine - VERSION=0.11 - VERSION=0.11/alpine language: bash script: - docker build -t "$IMAGE" . - docker run "$IMAGE" --version | grep "Bitcoin Core" services: docker
after_script: - docker images before_script: - cd "$VERSION" - IMAGE="bitcoind:${VERSION/\//-}" env: - VERSION=0.13 - VERSION=0.13/alpine - VERSION=0.12 - VERSION=0.12/alpine - VERSION=0.11 - VERSION=0.11/alpine language: bash script: - docker build -t "$IMAGE" . - docker run "$IMAGE" --version | grep "Bitcoin Core" services: docker
Add Ruby 2.2.0 to test targets on Travis CI
rvm: - "1.9.3" - "2.0.0" - "2.1.0"
rvm: - "1.9.3" - "2.0.0" - "2.1.0" - "2.2.0"
Use 9.4 postgres for jsonb support.
language: ruby sudo: false cache: bundler rvm: - 2.3.0 before_script: - psql -c 'create database reread_test;' -U postgres notifications: email: false slack: secure: wZ1UPEcH/Zf/wSPvpR1q76vpUQvAEGuwR5500ML8C+shW7PedvuSZaiZYAOZxhyD17RXzXYroON0ArEk3NUcKD8supPzYjUWzCeWDIFaYxEb7dOm7tpRBf4GuQ/oy8HGsBi947ZTX3WytGWZU0q0aRu2EirPcoY05vzley/hYTI=
language: ruby sudo: false cache: bundler rvm: - 2.3.0 addons: postgresql: 9.4 before_script: - psql -c 'create database reread_test;' -U postgres notifications: email: false slack: secure: wZ1UPEcH/Zf/wSPvpR1q76vpUQvAEGuwR5500ML8C+shW7PedvuSZaiZYAOZxhyD17RXzXYroON0ArEk3NUcKD8supPzYjUWzCeWDIFaYxEb7dOm7tpRBf4GuQ/oy8HGsBi947ZTX3WytGWZU0q0aRu2EirPcoY05vzley/hYTI=
Remove Oracle JDK 7 and OpenJDK 7 from Travis CI.
language: java before_install: sudo pip install codecov install: mvn install --quiet -DskipTests=true -B script: mvn test --quiet -B jdk: - openjdk7 - oraclejdk7 - oraclejdk8 after_success: codecov
language: java before_install: sudo pip install codecov install: mvn install --quiet -DskipTests=true -B script: mvn test --quiet -B jdk: - oraclejdk8 after_success: codecov
Use the latest 2.1 and 2.2 ruby versions for the test builds
before_install: - gem update bundler - sed -i '1d' Gemfile before_script: - npm install -g mocha-phantomjs@2.0.2 - bundle exec rake test_js &> /dev/null & - sleep 5 cache: bundler language: ruby rvm: - 2.0.0 - 2.1.0 - 2.2.0 script: - bundle exec rspec - mocha-phantomjs http://localhost:4567/test - bundle exec rubocop sudo: false
before_install: - gem update bundler - sed -i '1d' Gemfile before_script: - npm install -g mocha-phantomjs@2.0.2 - bundle exec rake test_js &> /dev/null & - sleep 5 cache: bundler language: ruby rvm: - 2.0.0 - 2.1 - 2.2 script: - bundle exec rspec - mocha-phantomjs http://localhost:4567/test - bundle exec rubocop sudo: false
Install wand using -e option in Travis CI
language: python python: - 2.6 - 2.7 - pypy install: - pip install pytest pytest-cov pytest-capturelog coveralls script: - python -mwand.version --verbose - py.test --cov wand --durations=20 after_success: - coveralls notifications: irc: channels: - "ircs://ssl.ozinger.org:16667#hongminhee" - "irc.freenode.net#wand" on_success: change on_failure: always
language: python python: - 2.6 - 2.7 - pypy install: - pip install pytest pytest-cov pytest-capturelog coveralls - pip install -e . script: - python -mwand.version --verbose - py.test --cov wand --durations=20 after_success: - coveralls notifications: irc: channels: - "ircs://ssl.ozinger.org:16667#hongminhee" - "irc.freenode.net#wand" on_success: change on_failure: always
Add rubinius to the build matrix
language: ruby services: postgresql before_script: - psql -c "CREATE USER rdo WITH PASSWORD 'rdo';" -U postgres - psql -c "CREATE DATABASE rdo WITH OWNER rdo;" -U postgres script: "CONNECTION=postgres://rdo:rdo@127.0.0.1/rdo?encoding=utf-8 bundle exec rake spec" rvm: - 1.9.2 - 1.9.3 notifications: email: chris@w3style.co.uk
language: ruby services: postgresql before_script: - psql -c "CREATE USER rdo WITH PASSWORD 'rdo';" -U postgres - psql -c "CREATE DATABASE rdo WITH OWNER rdo;" -U postgres script: "CONNECTION=postgres://rdo:rdo@127.0.0.1/rdo?encoding=utf-8 bundle exec rake spec" rvm: - 1.9.2 - 1.9.3 - rbx-19mode notifications: email: chris@w3style.co.uk
Fix script for scala 2.10.1
language: scala scala: - "2.10.1" - "2.10.0" jdk: - oraclejdk7 - openjdk7 - openjdk6 services: - mongodb
language: scala script: sbt ';set scalaVersion in Global := "2.10.1"; test' scala: - "2.10.1" - "2.10.0" jdk: - oraclejdk7 - openjdk7 - openjdk6 services: - mongodb
Exclude 0.10 and 0.12 node from Travis.yml
language: node_js node_js: - "0.10" - "0.12" - "4.0" - "4.1" - "4.2" before_install: npm i npm@2.14.4 --global install: - npm install - npm install codecov.io --save services: addons: postgresql: "9.3" apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 env: global: - CXX=g++-4.8 before_script: - psql -c 'create database testdb;' -U postgres - psql -c "CREATE USER test WITH UNENCRYPTED PASSWORD 'test' " -U postgres - psql testdb -c "CREATE EXTENSION hstore SCHEMA public;" -U postgres script: - npm test
language: node_js node_js: - "4.0" - "4.1" - "4.2" before_install: npm i npm@2.14.4 --global install: - npm install - npm install codecov.io --save services: addons: postgresql: "9.3" apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 env: global: - CXX=g++-4.8 before_script: - psql -c 'create database testdb;' -U postgres - psql -c "CREATE USER test WITH UNENCRYPTED PASSWORD 'test' " -U postgres - psql testdb -c "CREATE EXTENSION hstore SCHEMA public;" -U postgres script: - npm test
Fix workspace path in Travis.yml
language: objective-c cache: cocoapods xcode_workspace: Cortado/Cortado.xcworkspace xcode_scheme: Cortado xcode_sdk: iphonesimulator before_install: - gem install activesupport --no-ri --no-rdoc - gem install cocoapods cocoapods-keys --no-ri --no-rdoc - gem install slather --no-ri --no-rdoc - pod keys set foursquareClientID "foursquareClientID" Cortado - pod keys set foursquareClientSecret "foursquareClientSecret" Cortado - pod keys set mixpanelToken "mixpanelToken" Cortado after_success: slather
language: objective-c cache: cocoapods xcode_workspace: Cortado.xcworkspace xcode_scheme: Cortado xcode_sdk: iphonesimulator before_install: - gem install activesupport --no-ri --no-rdoc - gem install cocoapods cocoapods-keys --no-ri --no-rdoc - gem install slather --no-ri --no-rdoc - pod keys set foursquareClientID "foursquareClientID" Cortado - pod keys set foursquareClientSecret "foursquareClientSecret" Cortado - pod keys set mixpanelToken "mixpanelToken" Cortado after_success: slather
Use Travis-CI docker infrastructure, which makes build run faster
language: c before_install: - sudo apt-get update -qq - sudo apt-get install -y libavutil-dev libavcodec-dev libavformat-dev libavresample-dev script: - cmake . && cmake --build . - make test compiler: - gcc - clang
language: c addons: apt: packages: - libavutil-dev - libavcodec-dev - libavformat-dev - libavresample-dev script: - cmake . && cmake --build . - make test compiler: - gcc - clang
Use latest version of specified ruby
rvm: - 1.9.3 - 2.0.0 - 2.1.2
rvm: - 1.9.3-p551 - 2.0.0-p648 - 2.1.10
Use bundled Lua and libdwarf
language: c compiler: - clang - gcc env: global: - LUA_VER=5.3.0 matrix: - COVERAGE=true - COVERAGE=false install: - sudo apt-get install libdwarf-dev libelf-dev ninja-build - $COVERAGE && sudo pip install cpp-coveralls || true script: - wget -O - http://www.lua.org/ftp/lua-$LUA_VER.tar.gz | tar -xzf - - ln -s lua-$LUA_VER lua - $COVERAGE && export CC="${CC} -fprofile-arcs -ftest-coverage -O0 -g" || true - ./configure --enable-checks - ninja - ./run-tests --verbose after_success: - $COVERAGE && coveralls --exclude lua --exclude lua-$LUA_VER --gcov-options '\-lp' || true
language: c compiler: - clang - gcc env: matrix: - COVERAGE=true - COVERAGE=false install: - $COVERAGE && sudo pip install cpp-coveralls || true script: - $COVERAGE && export CC="${CC} -fprofile-arcs -ftest-coverage -O0 -g" || true - ./configure --objdir=out --enable-checks --enable-bundled-lua --enable-bundled-libdwarf - make V=1 - ./run-tests --verbose after_success: - $COVERAGE && coveralls --exclude lua --exclude lua-$LUA_VER --gcov-options '\-lp' || true
Support openjdk12 on Travis CI Fixes gh-80
language: java jdk: - openjdk11 - oraclejdk8 after_success: - chmod -R 777 ./travis/after_success.sh - ./travis/after_success.sh env: global: - secure: "dgaO+01IuaJgtHpZ2z3leAfU91vgfRtjJpCuGdhvoSs03uU7kuQGXmm8Fg8b\n8Z8DqBCO+mJY47WNrwlBrb2Xbo12YRxZViG9tEnhvaWogNKJ62wLBIOC/wvD\nLeQZeAcgXQvbA2Ug8Lg0NXxqtI5depdMOHzA2QSApLl2izW97Wc=" - secure: "OowVY4Gao6pTRQFgHHLVx8gEtBeAOH6A7jLubFDzBizLGFFEHvEfV+PckM9C\nHRXpxCjGyWxBu0O9yClda0BXXQhNTGgAvso8A/XvZxr06dHIZy//QoR3U6GS\nzdVPaERRPSJEzDUEHdquhpWLiJd/tQaky9gK70HabjDf7+FcOoo="
language: java jdk: - openjdk12 - openjdk11 - oraclejdk8 after_success: - chmod -R 777 ./travis/after_success.sh - ./travis/after_success.sh env: global: - secure: "dgaO+01IuaJgtHpZ2z3leAfU91vgfRtjJpCuGdhvoSs03uU7kuQGXmm8Fg8b\n8Z8DqBCO+mJY47WNrwlBrb2Xbo12YRxZViG9tEnhvaWogNKJ62wLBIOC/wvD\nLeQZeAcgXQvbA2Ug8Lg0NXxqtI5depdMOHzA2QSApLl2izW97Wc=" - secure: "OowVY4Gao6pTRQFgHHLVx8gEtBeAOH6A7jLubFDzBizLGFFEHvEfV+PckM9C\nHRXpxCjGyWxBu0O9yClda0BXXQhNTGgAvso8A/XvZxr06dHIZy//QoR3U6GS\nzdVPaERRPSJEzDUEHdquhpWLiJd/tQaky9gK70HabjDf7+FcOoo="
Remove unsupported Go versions from build
sudo: false language: go go: - 1.1 - 1.2 - 1.3 - 1.4 - 1.5 - 1.6 - tip
sudo: false language: go go: - 1.5 - 1.6 - tip
Add 1.0.14 and 1.0.16 to the build matrix
language: clojure lein: lein2 dist: trusty jdk: - oraclejdk8 cache: directories: - $HOME/.lein - $HOME/.m2 env: - LIBSODIUM_VERSION=1.0.15 - LIBSODIUM_VERSION=1.0.13 matrix: allow_failures: - env: LIBSODIUM_VERSION=1.0.13 fast_finish: true install: - wget https://github.com/lvh/libsodium-debs/raw/master/libsodium-${LIBSODIUM_VERSION}_amd64.deb - sudo dpkg -i libsodium-${LIBSODIUM_VERSION}_amd64.deb script: - lein with-profile +test cljfmt check - lein with-profile +test kibit - lein with-profile +test eastwood || true - lein with-profile +test ancient || true - lein test after_success: - lein with-profile +test cloverage --codecov - bash <(curl -s https://codecov.io/bash) -f target/coverage/codecov.json
language: clojure lein: lein2 dist: trusty jdk: - oraclejdk8 cache: directories: - $HOME/.lein - $HOME/.m2 env: - LIBSODIUM_VERSION=1.0.16 - LIBSODIUM_VERSION=1.0.15 - LIBSODIUM_VERSION=1.0.14 - LIBSODIUM_VERSION=1.0.13 matrix: allow_failures: - env: LIBSODIUM_VERSION=1.0.14 - env: LIBSODIUM_VERSION=1.0.13 fast_finish: true install: - wget https://github.com/lvh/libsodium-debs/raw/master/libsodium-${LIBSODIUM_VERSION}_amd64.deb - sudo dpkg -i libsodium-${LIBSODIUM_VERSION}_amd64.deb script: - lein with-profile +test cljfmt check - lein with-profile +test kibit - lein with-profile +test eastwood || true - lein with-profile +test ancient || true - lein test after_success: - lein with-profile +test cloverage --codecov - bash <(curl -s https://codecov.io/bash) -f target/coverage/codecov.json
Test with Node.js 5.1 on Travis CI.
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4.2' branches: only: - master - travis-ci # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_install: - npm install - npm install istanbul coveralls
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4.2' - '5.1' branches: only: - master - travis-ci # Not using `npm install --dev` because it is recursive. It will pull in the all # development dependencies for CoffeeScript. Way too much spew in the Travis CI # build output. before_install: - npm install - npm install istanbul coveralls