Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Change the way we set up the mongo tail test
machine: post: - cd $HOME && git clone --depth 1 -v git@github.com:clever/ci-scripts.git && cd ci-scripts && git show --oneline -s - $HOME/ci-scripts/circleci/golang-install 1.7 services: - docker checkout: post: - $HOME/ci-scripts/circleci/golang-move-project compile: override: - make build test: override: - sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10 - sudo echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list - sudo apt-get update - sudo apt-get install mongodb-org - mongo --eval 'rs.initiate()' - make test post: - $HOME/ci-scripts/circleci/report-card $RC_DOCKER_USER $RC_DOCKER_PASS "$RC_DOCKER_EMAIL" $RC_GITHUB_TOKEN deployment: all: branch: master owner: Clever commands: - $HOME/ci-scripts/circleci/docker-publish $DOCKER_USER $DOCKER_PASS "$DOCKER_EMAIL" $DOCKER_ORG - $HOME/ci-scripts/circleci/catapult-publish $CATAPULT_URL $CATAPULT_USER $CATAPULT_PASS oplog-dump general: build_dir: ../.go_workspace/src/github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME
machine: post: - cd $HOME && git clone --depth 1 -v git@github.com:clever/ci-scripts.git && cd ci-scripts && git show --oneline -s - $HOME/ci-scripts/circleci/golang-install 1.7 services: - docker checkout: post: - $HOME/ci-scripts/circleci/golang-move-project compile: override: - make build test: override: - echo "replSet = TailTest" | sudo tee --append /etc/mongod.conf > /dev/null - sudo service mongod restart - mongo --eval 'rs.initiate()' - make test post: - $HOME/ci-scripts/circleci/report-card $RC_DOCKER_USER $RC_DOCKER_PASS "$RC_DOCKER_EMAIL" $RC_GITHUB_TOKEN deployment: all: branch: master owner: Clever commands: - $HOME/ci-scripts/circleci/docker-publish $DOCKER_USER $DOCKER_PASS "$DOCKER_EMAIL" $DOCKER_ORG - $HOME/ci-scripts/circleci/catapult-publish $CATAPULT_URL $CATAPULT_USER $CATAPULT_PASS oplog-dump general: build_dir: ../.go_workspace/src/github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME
Deploy to docker hub, not heroku
machine: node: version: 5.7.0 test: pre: - npm install -g coveralls - npm install -g codeclimate-test-reporter - npm install -g snyk override: - npm run citestcoverage post: - coveralls < lcov.info - codeclimate-test-reporter < lcov.info deployment: staging: branch: master heroku: appname: change-maker-api
machine: services: - docker node: version: 5.9.0 test: pre: - npm install -g coveralls - npm install -g codeclimate-test-reporter - npm install -g snyk override: - npm run citestcoverage post: - coveralls < lcov.info - codeclimate-test-reporter < lcov.info - docker build -t joe8bit/change-maker-api:$CIRCLE_SHA1 . deployment: hub: branch: master commands: - docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS - docker push joe8bit/change-maker-api:$CIRCLE_SHA1
Use nearest resampling for speed
globals: image: resampling_method: bicubic paletted: false formats: image/png: mode: RGBA transparent: true resampling_method: bicubic png8: format: image/png mode: P transparent: true resampling_method: nearest encoding_options: quantizer: fastoctree mapserver: binary: '../../bin/mapserv' cache: meta_size: [4,4] meta_buffer: 0 base_dir: '/var/tile/cache' lock_dir: '/var/tile/cache/locks' tile_lock_dir: '/var/tile/cache/tile_locks'
globals: image: resampling_method: nearest paletted: false formats: image/png: mode: RGBA transparent: true resampling_method: nearest png8: format: image/png mode: P transparent: true resampling_method: nearest encoding_options: quantizer: fastoctree mapserver: binary: '../../bin/mapserv' cache: meta_size: [4,4] meta_buffer: 0 base_dir: '/var/tile/cache' lock_dir: '/var/tile/cache/locks' tile_lock_dir: '/var/tile/cache/tile_locks'
Update from Hackage at 2022-05-03T10:41:42Z
homepage: https://github.com/unfoldml/jsonl-conduit changelog-type: '' hash: 3673327a0d56b6bde12ee5d7e5d89f4e25e7a6a11546181bab3961c81838c311 test-bench-deps: jsonl-conduit: -any bytestring: -any base: -any hspec: -any conduit: -any aeson: -any maintainer: UnfoldML AB synopsis: Conduit interface to JSONL-encoded data changelog: '' basic-deps: jsonl: '>=0.2' bytestring: -any base: '>=4.7 && <5' conduit: -any aeson: -any all-versions: - 0.1.0.0 - 0.1.0.1 author: Marco Zocca latest: 0.1.0.1 description-type: markdown description: | # jsonl-conduit [![Build Status](https://travis-ci.org/unfoldml/jsonl-conduit.png)](https://travis-ci.org/unfoldml/jsonl-conduit) TODO Description. license-name: BSD-3-Clause
homepage: https://github.com/unfoldml/jsonl-conduit changelog-type: '' hash: b18fc4876238a5f9a0a0c27ec53238c4b32b73f81a635c11ad916e82895551bb test-bench-deps: jsonl-conduit: -any bytestring: -any base: -any hspec: -any conduit: -any aeson: -any maintainer: UnfoldML AB synopsis: Conduit interface to JSONL-encoded data changelog: '' basic-deps: jsonl: '>=0.2' bytestring: -any base: '>=4.7 && <5' conduit: -any aeson: -any all-versions: - 0.1.0.0 - 0.1.0.1 - 0.1.0.2 author: Marco Zocca latest: 0.1.0.2 description-type: markdown description: | # jsonl-conduit Streaming interface to JSONL data based on `conduit`. license-name: BSD-3-Clause
Configure Travis CI to not send emails on success
# For more information about the configurations used # in this file, please see the Travis CI documentation. # # https://docs.travis-ci.com language: node_js matrix: include: - os: linux dist: trusty addons: apt: sources: - google-chrome packages: - google-chrome-stable before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sleep 3 node_js: - node - os: osx before_install: - brew cask install google-chrome node_js: - node
# For more information about the configurations used # in this file, please see the Travis CI documentation. # # https://docs.travis-ci.com language: node_js matrix: include: - os: linux dist: trusty addons: apt: sources: - google-chrome packages: - google-chrome-stable before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sleep 3 node_js: - node - os: osx before_install: - brew cask install google-chrome node_js: - node notifications: email: on_failure: always on_success: never
Add osx build to Travis CI configuration
language: rust rust: - stable - beta - nightly matrix: allow_failures: - rust: nightly
language: rust rust: - stable - beta - nightly os: - linux - osx matrix: allow_failures: - rust: nightly
Remove warnings from github build
name: Ivan Danov description: Learn. Keep it simple. Dream big. meta_description: "My Personal Blog, Blogging about science, technology, startups and my dreams." aboutPage: true markdown: kramdown highlighter: pygments paginate: 20 baseurl: / domain_name: 'https://idanov.github.io/' google_analytics: 'UA-71919301-1' disqus: false disqus_shortname: 'ivandanov' # Details for the RSS feed generator url: 'https://idanov.github.io/' author: 'Ivan Danov' authorTwitter: 'ivandanov' permalink: pretty gems: - jemoji defaults: - scope: path: "" # empty string for all files type: pages values: layout: default - scope: path: "" # empty string for all files type: posts values: layout: post - scope: path: "" type: drafts values: layout: post
name: Ivan Danov description: Learn. Keep it simple. Dream big. meta_description: "My Personal Blog, Blogging about science, technology, startups and my dreams." aboutPage: true markdown: kramdown highlighter: rouge paginate: 20 baseurl: / domain_name: 'https://idanov.github.io/' google_analytics: 'UA-71919301-1' disqus: false disqus_shortname: 'ivandanov' # Details for the RSS feed generator url: 'https://idanov.github.io/' author: 'Ivan Danov' authorTwitter: 'ivandanov' permalink: pretty gems: - jemoji defaults: - scope: path: "" # empty string for all files type: pages values: layout: default - scope: path: "" # empty string for all files type: posts values: layout: post - scope: path: "" type: drafts values: layout: post
Update Escapepod to 0.7.2 (7)
Categories: - Multimedia License: MIT WebSite: https://github.com/y20k/escapepod/wiki SourceCode: https://github.com/y20k/escapepod IssueTracker: https://github.com/y20k/escapepod/issues Changelog: https://github.com/y20k/escapepod/releases AutoName: Escapepod RepoType: git Repo: https://github.com/y20k/escapepod Builds: - versionName: 0.7.0 versionCode: 5 commit: v0.7.0 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 0.7.0 CurrentVersionCode: 5
Categories: - Multimedia License: MIT WebSite: https://github.com/y20k/escapepod/wiki SourceCode: https://github.com/y20k/escapepod IssueTracker: https://github.com/y20k/escapepod/issues Changelog: https://github.com/y20k/escapepod/releases AutoName: Escapepod RepoType: git Repo: https://github.com/y20k/escapepod Builds: - versionName: 0.7.0 versionCode: 5 commit: v0.7.0 subdir: app gradle: - yes - versionName: 0.7.2 versionCode: 7 commit: v0.7.2 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 0.7.2 CurrentVersionCode: 7
Update MacOS Cmake to new version 3.0.0
name: MacOS Cmake on: workflow_dispatch: inputs: extra_resolve_options: description: "Extra Resolve Options" required: false schedule: - cron: "0 1 * * *" # 3 AM CET push: pull_request: env: EXTRA_RESOLVE_OPTIONS: ${{ github.event.inputs.extra_resolve_options }} jobs: MacOS-cmake: name: MacOS Cmake uses: steinwurf/macos-cmake-action/.github/workflows/action.yml@2.0.0 with: extra_resolve_options: $EXTRA_RESOLVE_OPTIONS
name: MacOS Cmake on: workflow_dispatch: inputs: extra_resolve_options: description: "Extra Resolve Options" required: false schedule: - cron: "0 1 * * *" # 3 AM CET push: pull_request: env: EXTRA_RESOLVE_OPTIONS: ${{ github.event.inputs.extra_resolve_options }} jobs: MacOS-cmake: name: MacOS Cmake uses: steinwurf/macos-cmake-action/.github/workflows/action.yml@3.0.0 with: extra_resolve_options: $EXTRA_RESOLVE_OPTIONS
Add HTTP request limit for distrib and msys also
name: Sync MSYS2 Mirror on: schedule: - cron: 0 2 * * * jobs: rclone: runs-on: ubuntu-latest steps: - name: Sync distrib uses: wei/rclone@v1.1.1 env: RCLONE_CONF: ${{ secrets.RCLONE_CONF }} with: args: sync -L --s3-no-check-bucket msys2:distrib do-spaces:msys2/distrib - name: Sync msys uses: wei/rclone@v1.1.1 env: RCLONE_CONF: ${{ secrets.RCLONE_CONF }} with: args: sync -L --s3-no-check-bucket msys2:msys do-spaces:msys2/msys - name: Sync mingw uses: wei/rclone@v1.1.1 env: RCLONE_CONF: ${{ secrets.RCLONE_CONF }} with: args: sync -L --s3-no-check-bucket --tpslimit 50 msys2:mingw do-spaces:msys2/mingw
name: Sync MSYS2 Mirror on: schedule: - cron: 0 2 * * * jobs: rclone: runs-on: ubuntu-latest steps: - name: Sync distrib uses: wei/rclone@v1.1.1 env: RCLONE_CONF: ${{ secrets.RCLONE_CONF }} with: args: sync -L --s3-no-check-bucket --tpslimit 50 msys2:distrib do-spaces:msys2/distrib - name: Sync msys uses: wei/rclone@v1.1.1 env: RCLONE_CONF: ${{ secrets.RCLONE_CONF }} with: args: sync -L --s3-no-check-bucket --tpslimit 50 msys2:msys do-spaces:msys2/msys - name: Sync mingw uses: wei/rclone@v1.1.1 env: RCLONE_CONF: ${{ secrets.RCLONE_CONF }} with: args: sync -L --s3-no-check-bucket --tpslimit 50 msys2:mingw do-spaces:msys2/mingw
Use latest for image tags for now
# Default values for riff. # This is a YAML-formatted file. # Declare variables to be passed into your templates. create: crd: true faas: true rbac: # Specifies whether RBAC resources should be created create: true apiVersion: v1beta1 serviceAccount: # Specifies whether a service account should be created create: true # The name of the service account to use. # If not set and create is true, a name is generated using the fullname template name: functionController: replicaCount: 1 image: repository: projectriff/function-controller tag: 0.0.4-build.5 pullPolicy: IfNotPresent sidecar: image: tag: 0.0.4-build.4 topicController: replicaCount: 1 image: repository: projectriff/topic-controller tag: 0.0.4-build.4 pullPolicy: IfNotPresent httpGateway: replicaCount: 1 image: repository: projectriff/http-gateway tag: 0.0.4-build.7 pullPolicy: IfNotPresent service: name: http type: LoadBalancer externalPort: 80 kafka: broker: nodes: transport-kafka.riff-system:9092 zookeeper: nodes: transport-zookeeper.riff-system:2181
# Default values for riff. # This is a YAML-formatted file. # Declare variables to be passed into your templates. create: crd: true faas: true rbac: # Specifies whether RBAC resources should be created create: true apiVersion: v1beta1 serviceAccount: # Specifies whether a service account should be created create: true # The name of the service account to use. # If not set and create is true, a name is generated using the fullname template name: functionController: replicaCount: 1 image: repository: projectriff/function-controller tag: latest pullPolicy: IfNotPresent sidecar: image: tag: latest topicController: replicaCount: 1 image: repository: projectriff/topic-controller tag: latest pullPolicy: IfNotPresent httpGateway: replicaCount: 1 image: repository: projectriff/http-gateway tag: latest pullPolicy: IfNotPresent service: name: http type: LoadBalancer externalPort: 80 kafka: broker: nodes: transport-kafka.riff-system:9092 zookeeper: nodes: transport-zookeeper.riff-system:2181
Update DeuFeiTage to 4.3.0 (404)
Categories: - Time License: GPL-3.0-or-later WebSite: https://micmun.github.io/DeuFeiTage/ SourceCode: https://github.com/MicMun/DeuFeiTage IssueTracker: https://github.com/MicMun/DeuFeiTage/issues Changelog: https://github.com/MicMun/DeuFeiTage/blob/HEAD/Changelog.md AutoName: DeuFeiTage Description: |- Find the date of a public holiday for this or another year. * Choose a German state * Choose a year between this year-4 and this year+4 * Every holiday can be touched to show a short description RepoType: git Repo: https://github.com/MicMun/DeuFeiTage.git Builds: - versionName: 4.1.0 versionCode: 402 commit: v4.1.0 subdir: app gradle: - yes - versionName: 4.2.0 versionCode: 403 commit: v4.2.0 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 4.2.0 CurrentVersionCode: 403
Categories: - Time License: GPL-3.0-or-later WebSite: https://micmun.github.io/DeuFeiTage/ SourceCode: https://github.com/MicMun/DeuFeiTage IssueTracker: https://github.com/MicMun/DeuFeiTage/issues Changelog: https://github.com/MicMun/DeuFeiTage/blob/HEAD/Changelog.md AutoName: DeuFeiTage Description: |- Find the date of a public holiday for this or another year. * Choose a German state * Choose a year between this year-4 and this year+4 * Every holiday can be touched to show a short description RepoType: git Repo: https://github.com/MicMun/DeuFeiTage.git Builds: - versionName: 4.1.0 versionCode: 402 commit: v4.1.0 subdir: app gradle: - yes - versionName: 4.2.0 versionCode: 403 commit: v4.2.0 subdir: app gradle: - yes - versionName: 4.3.0 versionCode: 404 commit: v4.3.0 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 4.3.0 CurrentVersionCode: 404
Use servant-pandoc 0.4.1.1 which includes build fix
flags: {} packages: - '.' - thrift-hs/ - location: git: git@github.com:rimmington/servant-pandoc commit: d2ef74e5237fa400edaf8a7e7559bba05dffa099 - location: git: git@github.com:thaldyron/stm-io-hooks commit: 8f467d0970e62aa02cc87837b9189649725fe2dd extra-deps: - data-default-generics-0.3 - hzk-2.1.0 - servant-0.4.2 - servant-client-0.4.2 - servant-docs-0.4.2 - servant-pandoc-0.4.1 - servant-server-0.4.2 - utility-ht-0.0.10 - uuid-aeson-0.1.0.0 - wai-cors-0.2.2 - xdg-basedir-0.2.2 resolver: nightly-2015-07-23
flags: {} packages: - '.' - thrift-hs/ - location: git: git@github.com:thaldyron/stm-io-hooks commit: 8f467d0970e62aa02cc87837b9189649725fe2dd extra-deps: - data-default-generics-0.3 - hzk-2.1.0 - servant-0.4.2 - servant-client-0.4.2 - servant-docs-0.4.2 - servant-pandoc-0.4.1.1 - servant-server-0.4.2 - utility-ht-0.0.10 - uuid-aeson-0.1.0.0 - wai-cors-0.2.2 - xdg-basedir-0.2.2 resolver: nightly-2015-07-23
Support DB env variable also for development.
# This is to allow testing on different DB systems by setting # the DB environment variable. # # MySQL and Postgresql username and password are set to # match expecations on Travis-CI to simplify automatic testing. # # Development is expected to be on sqlite3 sqlite: &sqlite adapter: sqlite3 database: db/test.sqlite3 mysql: &mysql adapter: mysql2 username: root password: database: has_accounts_test postgresql: &postgresql adapter: postgresql username: postgres password: database: has_accounts_test test: pool: 5 timeout: 5000 host: localhost <<: *<%= ENV['DB'] || 'sqlite' %> development: <<: *sqlite
# This is to allow testing on different DB systems by setting # the DB environment variable. # # MySQL and Postgresql username and password are set to # match expecations on Travis-CI to simplify automatic testing. # # Set the DB environment variable when running specs etc. # # sqlite3 is the default. sqlite: &sqlite adapter: sqlite3 database: db/test.sqlite3 mysql: &mysql adapter: mysql2 username: root password: database: has_accounts_test postgresql: &postgresql adapter: postgresql username: postgres password: database: has_accounts_test test: pool: 5 timeout: 5000 host: localhost <<: *<%= ENV['DB'] || 'sqlite' %> development: pool: 5 timeout: 5000 host: localhost <<: *<%= ENV['DB'] || 'mysql' %>
Fix broken URL for MathJAX Javascript dependency.
<!DOCTYPE html> <html> <head> <meta http-equiv='Content-Type' content='text/html; charset=utf-8' /> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax: { inlineMath: [['$','$'], ['\\(','\\)']], skipTags: ['script', 'noscript', 'style', 'textarea'], processEscapes: true } }); </script> <script type="text/javascript" src="https://c328740.ssl.cf1.rackcdn.com/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> <!-- need to use include to see value of page.chapter variable --> <style type="text/css"> {% include numbering.css %} </style> <script type="text/javascript"> // clear content of H3 nodes that start with "Example:" // the content is only there to determine ID of the H3 element (redcarpet doesn't let us set css id) $( document ).ready(function(){ $("h3[id*='example']").text("") }) </script> <link rel="stylesheet" type="text/css" href="public/stylesheets/screen.css"> </head> <body> {{ content }} </body> </html>
<!DOCTYPE html> <html> <head> <meta http-equiv='Content-Type' content='text/html; charset=utf-8' /> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax: { inlineMath: [['$','$'], ['\\(','\\)']], skipTags: ['script', 'noscript', 'style', 'textarea'], processEscapes: true } }); </script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/2.3-latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> <!-- need to use include to see value of page.chapter variable --> <style type="text/css"> {% include numbering.css %} </style> <script type="text/javascript"> // clear content of H3 nodes that start with "Example:" // the content is only there to determine ID of the H3 element (redcarpet doesn't let us set css id) $( document ).ready(function(){ $("h3[id*='example']").text("") }) </script> <link rel="stylesheet" type="text/css" href="public/stylesheets/screen.css"> </head> <body> {{ content }} </body> </html>
Fix translations for group pages
# ruby encoding: utf-8 de: groups: group: Gruppe index: title: Gruppenübersicht all_groups: Alle Gruppen show: assign_rooms: Räume zuweisen assigned: zugewiesen unassigned: entfernt unassign_user: Zuweisung entfernen user_overview: Benutzerübersicht member: Mitglied leader: Gruppenleiter enter_email: Email-Adresse eingeben edit: assign_rooms: Räume zuweisen assigned: zugewiesen unassigned: entfernt user_overview: Benutzerübersicht unassign: Aus Gruppe entfernen assign: Gruppe zuweisen degrade: Gruppenleiterschaft entziehen promote: zum Gruppenleiter ernennen back: Zurück rename: Gruppe Umbenennen user_not_found: Kein Benutzer mit dieser Email-Adresse gefunden! assign_user: Nutzer zuweisen actions: Aktionen role: Rolle manage_rooms: currentRooms: Aktuelle Gruppenräume addRoom: Räume Hinzufügen add: Hinzufügen delete: Entfernen
# ruby encoding: utf-8 de: groups: group: Gruppe index: title: Gruppenübersicht all_groups: Alle Gruppen show: assign_rooms: Räume zuweisen assigned: zugewiesen unassigned: entfernt unassign_user: Zuweisung entfernen user_overview: Benutzerübersicht member: Mitglied leader: Gruppenleiter enter_email: Email-Adresse eingeben edit: assign_rooms: Räume zuweisen assigned: zugewiesen unassigned: entfernt user_overview: Benutzerübersicht unassign: Aus Gruppe entfernen assign: Gruppe zuweisen degrade: Gruppenleiterschaft entziehen promote: zum Gruppenleiter ernennen back: Zurück rename: Gruppe umbenennen user_not_found: Kein Benutzer mit dieser Email-Adresse gefunden! assign_user: Nutzer zuweisen actions: Aktionen role: Rolle manage_rooms: currentRooms: Aktuelle Gruppenräume addRoom: Räume hinzufügen add: Hinzufügen delete: Entfernen
Add test step to execute django tests
before_script: - export PYENV_ROOT="$HOME/.pyenv" - export PATH="$PYENV_ROOT/bin:$PATH" - eval "$(pyenv init -)" - eval "$(pyenv virtualenv-init -)" - pyenv global 3.6.0 - which python - python -V test: script: - pylint --load-plugins pylint_django --errors-only verleihtool/ depot/ rental/
before_script: - export PYENV_ROOT="$HOME/.pyenv" - export PATH="$PYENV_ROOT/bin:$PATH" - eval "$(pyenv init -)" - eval "$(pyenv virtualenv-init -)" - pyenv global 3.6.0 - which python - python -V lint: script: - pylint --load-plugins pylint_django --errors-only verleihtool/ depot/ rental/ test: script: - python manage.py test
Use a newer version of CocoaPods with Travis CI.
language: objective-c xcode_workspace: Spectacle.xcworkspace xcode_scheme: Spectacle
language: objective-c xcode_workspace: Spectacle.xcworkspace xcode_scheme: Spectacle before_install: - gem install cocoapods -v '0.33.1' before_script: - export LANG=en_US.UTF-8
Revert "Clean workspace before build/test. Because cleaning is always a good approche, isn't it? ;)"
language: android jdk: - oraclejdk8 android: components: # Uncomment the lines below if you want to # use the latest revision of Android SDK Tools - tools - platform-tools - tools # The BuildTools version used by your project - build-tools-26.0.1 # The SDK version used to compile your project - android-22 - android-26 # Additional components - extra-google-google_play_services - extra-google-m2repository - extra-android-m2repository - addon-google_apis-google-24 # Specify at least one system image, # if you need to run emulator(s) during your tests - sys-img-armeabi-v7a-android-22 before_script: # First assemble the project before launching the emulator - ./gradlew assemble # List available emulators - android list targets # Emulator Management: Create, Start and Wait - echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a - emulator -avd test -no-skin -no-audio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 & script: - ./gradlew clean build jacocoTestReport assembleAndroidTest connectedCheck after_success: - bash <(curl -s https://codecov.io/bash)
language: android jdk: - oraclejdk8 android: components: # Uncomment the lines below if you want to # use the latest revision of Android SDK Tools - tools - platform-tools - tools # The BuildTools version used by your project - build-tools-26.0.1 # The SDK version used to compile your project - android-22 - android-26 # Additional components - extra-google-google_play_services - extra-google-m2repository - extra-android-m2repository - addon-google_apis-google-24 # Specify at least one system image, # if you need to run emulator(s) during your tests - sys-img-armeabi-v7a-android-22 before_script: # First assemble the project before launching the emulator - ./gradlew assemble # List available emulators - android list targets # Emulator Management: Create, Start and Wait - echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a - emulator -avd test -no-skin -no-audio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 & script: - ./gradlew build jacocoTestReport assembleAndroidTest connectedCheck after_success: - bash <(curl -s https://codecov.io/bash)
Change coveralls to run first
language: php php: - 5.4 - 5.5 before_script: - curl -s http://getcomposer.org/installer | php - php composer.phar install --dev script: - vendor/bin/phpunit --coverage-text after_script: - vendor/bin/phpcs -v --report=summary --standard=PSR1,PSR2 src tests - vendor/bin/phpmd src text codesize,unusedcode,design - vendor/bin/phpmd tests text codesize,unusedcode,design - vendor/bin/coveralls
language: php php: - 5.4 - 5.5 before_script: - curl -s http://getcomposer.org/installer | php - php composer.phar install --dev script: - vendor/bin/phpunit --coverage-text after_script: - vendor/bin/coveralls - vendor/bin/phpcs -v --report=summary --standard=PSR1,PSR2 src tests - vendor/bin/phpmd src text codesize,unusedcode,design - vendor/bin/phpmd tests text codesize,unusedcode,design
Test project in more envs
language: python python: - "2.7" - "3.4" install: - pip install -r requirements.txt - pip install coveralls script: - coverage run --source=easy manage.py test after_success: coveralls
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" matrix: - DJANGO="Django<1.8" # 1.7 - DJANGO="Django<1.9" # 1.8 - DJANGO="Django<1.10" # 1.9 - DJANGO="Django<1.11" # 1.10 cache: directories: - $HOME/.cache/pip install: - pip install "$DJANGO" - pip install -r requirements.txt - pip install coveralls matrix: exclude: - python: "3.5" env: DJANGO="Django<1.8" - python: "3.2" env: DJANGO="Django<1.10" - python: "3.3" env: DJANGO="Django<1.10" script: - coverage run --source=easy manage.py test after_success: coveralls
Fix coverage source module name
language: python python: - 2.7 - 3.3 - 3.4 - pypy install: - pip install -r requirements.txt - pip install coveralls script: - coverage run --source=ant setup.py test - python setup.py install - antfs-cli --help after_success: - coveralls
language: python python: - 2.7 - 3.3 - 3.4 - pypy install: - pip install -r requirements.txt - pip install coveralls script: - coverage run --source=antfs_cli setup.py test - python setup.py install - antfs-cli --help after_success: - coveralls
Add some relevant lines for grep
language: haskell script: wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --no-cache --quiet | sh
language: haskell script: wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --no-cache --quiet | sh relevant: | Ninja was Shake was -rw-rw
Add test on Node.js v0.12
language: node_js node_js: - "0.10"
language: node_js node_js: - "0.10" - "0.12" sudo: false
Add 1.9.3 and JRuby to the build matrix
rvm: - 1.8.7 - 1.9.2 - ree - ruby-head
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - ruby-head - ree - jruby # Uncomment when I'll be able to bundle install properly locally #- rbx #- rbx-2.0
Drop PyPy support (bcrypt via coaster is incompatible)
sudo: false language: python cache: pip python: - "2.7" - "3.6" - "pypy" addons: postgresql: "9.4" services: - postgresql # command to install dependencies install: - pip install setuptools --upgrade - python setup.py develop - pip install nose coverage coveralls - 'if [[ "$TRAVIS_PYTHON_VERSION" != "pypy" ]]; then pip install psycopg2; fi' # command to run tests before_script: - psql -c 'create database myapp_test;' -U postgres script: - 'if [[ "$TRAVIS_PYTHON_VERSION" != "pypy" ]]; then ./runtests.sh; fi' - 'if [[ "$TRAVIS_PYTHON_VERSION" == "pypy" ]]; then SQLALCHEMY_DATABASE_URI="sqlite://" ./runtests.sh ; fi' after_success: - coveralls notifications: email: false slack: - hasgeek:HDCoMDj3T4ICB59qFFVorCG8 - friendsofhasgeek:3bLViYSzhfaThJovFYCVD3fX
sudo: false language: python cache: pip python: - "2.7" - "3.6" addons: postgresql: "9.4" services: - postgresql # command to install dependencies install: - pip install setuptools --upgrade - python setup.py develop - pip install nose coverage coveralls psycopg2 - 'if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then pip install PySqlite; fi' # command to run tests before_script: - psql -c 'create database myapp_test;' -U postgres script: - ./runtests.sh after_success: - coveralls notifications: email: false slack: - hasgeek:HDCoMDj3T4ICB59qFFVorCG8 - friendsofhasgeek:3bLViYSzhfaThJovFYCVD3fX
Use the updated TravisCI docker and docker-compose installed versions
language: python sudo: required services: - docker python: - 2.7 - 3.3 - 3.4 - 3.5 - pypy - pypy3 env: global: - DOCKER_VERSION=1.10.2-0~trusty - DOCKER_COMPOSE_VERSION=1.7.0 before_install: # upgrade docker-engine to specific version - sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION} # reinstall docker-compose at specific version - sudo rm /usr/local/bin/docker-compose - curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose - chmod +x docker-compose - sudo mv docker-compose /usr/local/bin install: - pip install -e .[test] - pip install coverage coveralls before_script: - docker-compose up -d script: - nosetests --with-coverage after_success: - coveralls --rcfile=coverage.rc matrix: allow_failures: - python: pypy3
language: python sudo: required services: - docker python: - 2.7 - 3.3 - 3.4 - 3.5 - pypy - pypy3 install: - pip install -e .[test] - pip install coverage coveralls before_script: - docker-compose up -d script: - nosetests --with-coverage after_success: - coveralls --rcfile=coverage.rc matrix: allow_failures: - python: pypy3
Add auto npm deploy of git tags
sudo: false language: node_js node_js: - "0.12" script: npm run-script test
sudo: false language: node_js node_js: - "0.12" script: npm run-script test deploy: provider: npm email: tech@cargomedia.ch api_key: secure: hPYCZrjv+BAlPNZ0b2ycOzrcTNcIz86z9LkaC7Wx0ig/TWHUSwrGIBw3BBcEZPBffEI4dGyKNC5g/l3Lfuv+jGynLrCgCGv1+9th2a1arvde97SvczP/MJcBGZ1C9rA8lDvvhhC7RVyGt1A+TtGHyyiOa6IPb0bOTfqTOGxMMZRB2OUmZjbn2aa6fldpay3TXr1k3eMo+K71LV1dfpGnoBG4GKlsb07MhjpHIaLneDT2q8KhiK4BG4gdNTV+kU1m0974ZnaGc1FGo02sAfJGzMIGOYCCHEhyG1zv1E9goz+JUeagts/qRjzLe8IkSOBLG5S9sDQTBASS/GP8TbHLt/XmvII1dnusf3pKNHt1q5RjT+mQr/O42S4fnLJvuyNTuUvrRebM3gBSQ9sjwZzLr3/XFbVbiK4MpayLghrK6WKnS+/Y1CZhN0uCGgSF9tXhN5VTwLhxucdAEP6INkqqWostZq3UA20ZEXlix3sXKWuGJL2mD6w8mFK/JbuQPi8BmQ1scJCnqwsPmCjlTcBWnG08PNtQfWNurK6LBZZLVkD7nNPK9ErU9SHDLpbafCSBrxmqewKbReQRqQJBliAWj0L9NCNNf/oqu8ohwSIlqYl1935UqYSW6+ixBvHvPVf1hE0WGrBcogLgvJJ8C3VR4NSczFTvgAynf8PIn94WmBk= on: tags: true repo: cargomedia/hubot-pulsar
Bring back gcc and clang testing
language: ruby dist: xenial cache: bundler: true directories: - "${HOME}/cache" bundler_args: --jobs 3 --retry 5 rvm: - '2.5' - '2.6' - '2.7' - '3.0' matrix: fast_finish: true allow_failures: - rvm: '3.0' branches: only: - main notifications: email: on_success: never on_failure: always before_install: - gem install bundler - bundle config set --local path 'vendor/bundle' - bundle config set --local without 'development' before_script: - export CFLAGS="-I${PREFIX}/include" LDFLAGS="-L${PREFIX}/lib" - export LD_LIBRARY_PATH="${PREFIX}/lib" - bundle exec rake clean script: - bundle exec rake compile - bundle exec rake test
language: ruby dist: xenial cache: bundler: true directories: - "${HOME}/cache" bundler_args: --jobs 3 --retry 5 rvm: - '2.5' - '2.6' - '2.7' - '3.0' env: matrix: - COMPILER=gcc - COMPILER=clang matrix: fast_finish: true allow_failures: - rvm: '3.0' branches: only: - main notifications: email: on_success: never on_failure: always before_install: - gem install bundler - bundle config set --local path 'vendor/bundle' - bundle config set --local without 'development' - export CC="$(which $COMPILER)" before_script: - export CFLAGS="-I${PREFIX}/include" LDFLAGS="-L${PREFIX}/lib" - export LD_LIBRARY_PATH="${PREFIX}/lib" - bundle exec rake clean script: - bundle exec rake compile - bundle exec rake test
Drop jruby because dep-selector uses C extensions
before_install: - sudo apt-get update - sudo apt-get install libgecode-dev script: "bundle exec thor spec" language: ruby bundler_args: --without development rvm: - 1.9.2 - 1.9.3 - 2.0.0 - jruby-19mode
before_install: - sudo apt-get update - sudo apt-get install libgecode-dev script: "bundle exec thor spec" language: ruby bundler_args: --without development rvm: - 1.9.2 - 1.9.3 - 2.0.0
Use quotes for rubygems api key
language: ruby sudo: false cache: bundler script: - bundle exec rake spec rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.5 matrix: fast_finish: true deploy: provider: rubygems api_key: secure: XRT6rOJ82TsN+adM6blodauBqAXcBs9MhS0eCkMIuu2UApTxYvU6uQ+1rSzXzgJHoLXAxSWLduvVBQMwbsW6SXkqNph+qVFbP/KZ9cZdctI47IMwqlHw10qv4E4ISCOwnTrWa0hSjaUhMNgX7HsOJuGrJZh++hCYr9rGxmdr6S4= on: rvm: 2.1.5 tags: true all_branches: true notifications: email: false
language: ruby sudo: false cache: bundler script: - bundle exec rake spec rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.5 matrix: fast_finish: true deploy: provider: rubygems api_key: secure: "XRT6rOJ82TsN+adM6blodauBqAXcBs9MhS0eCkMIuu2UApTxYvU6uQ+1rSzXzgJHoLXAxSWLduvVBQMwbsW6SXkqNph+qVFbP/KZ9cZdctI47IMwqlHw10qv4E4ISCOwnTrWa0hSjaUhMNgX7HsOJuGrJZh++hCYr9rGxmdr6S4=" on: rvm: 2.1.5 tags: true all_branches: true notifications: email: false
Update Travis Ruby version locked to 2.4.0.
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 2.2.6 - 2.3.3 - 2.4.0 sudo: false cache: bundler
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" env: - CI=true rvm: - 2.4.0 sudo: false cache: bundler
Remove explicit language; defaulting to Ruby
language: c script: "make test" branches: only: - gh-pages notifications: irc: channels: - "chat.freenode.net#selenium" on_success: change on_failure: always template: - "%{repository} (%{commit}): %{message}" - "Build details: %{build_url}"
script: "make test" branches: only: - gh-pages notifications: irc: channels: - "chat.freenode.net#selenium" on_success: change on_failure: always template: - "%{repository} (%{commit}): %{message}" - "Build details: %{build_url}"
Upgrade Ruby versions to test against
language: ruby cache: bundler sudo: false rvm: - 2.4.1 - 2.3.4 - 2.2.7 gemfile: - gemfiles/activerecord_4.2.gemfile - gemfiles/activerecord_5.0.gemfile - gemfiles/activerecord_5.1.gemfile before_script: - bundle exec rake -f spec/dummy/Rakefile db:schema:load
language: ruby cache: bundler sudo: false rvm: - 2.5.0 - 2.4.3 - 2.3.6 - 2.2.9 gemfile: - gemfiles/activerecord_4.2.gemfile - gemfiles/activerecord_5.0.gemfile - gemfiles/activerecord_5.1.gemfile before_script: - bundle exec rake -f spec/dummy/Rakefile db:schema:load
Update to code.cloudfoundry.com, and go 1.7
language: go go: - 1.6 install: - go get -v github.com/tools/godep - go get -v github.com/onsi/ginkgo/ginkgo script: bin/test -nodes=2 -compilers=2 branches: only: - master addons: code_climate: repo_token: 5a9ca60422d07f52c50f36aa2c2c101619a19aa64d94fdafb352746b1db8625e
language: go go: - 1.7 go_import_path: code.cloudfoundry.com/cli install: - go get -v github.com/onsi/ginkgo/ginkgo script: bin/test -nodes=2 -compilers=2 branches: only: - master addons: code_climate: repo_token: 5a9ca60422d07f52c50f36aa2c2c101619a19aa64d94fdafb352746b1db8625e
Enable -Werror in Travis builds
language: c compiler: - gcc - clang script: autoreconf -f -i && ./configure && make check
language: c compiler: - gcc - clang script: autoreconf -f -i && CFLAGS=-Werror ./configure && make check
Disable code coverage in Travis for apple on 0.5
language: julia os: - linux - osx julia: - 0.4 - 0.5 - nightly notifications: email: false matrix: allow_failures: - julia: nightly script: - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - julia -e 'Pkg.clone(pwd())' - julia -e 'Pkg.test("Interact"; coverage=true)' after_success: - julia --color=yes -e 'cd(Pkg.dir("Interact")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
language: julia os: - linux - osx julia: - 0.4 - 0.5 - nightly notifications: email: false script: - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - julia -e 'Pkg.clone(pwd())' - julia -e 'cov=(VERSION < v"0.5-" || !is_apple() || VERSION >= v"0.6-"); Pkg.test("Interact"; coverage=cov)' after_success: - julia --color=yes -e 'cd(Pkg.dir("Interact")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
Remove test for 5.4 dependencies require at least 5.5.
language: php php: - '5.4' - '5.5' - '5.6' - '7.0' - hhvm - nightly before_script: - composer install --prefer-source --no-interaction --dev
language: php php: - '5.5' - '5.6' - '7.0' - hhvm - nightly before_script: - composer install --prefer-source --no-interaction --dev
Add Python 3.8-dev to Travis
language: python sudo: false cache: directories: - $HOME/.cache/pip python: - "3.4" - "3.5" - "3.6" - "3.7" - "3.7-dev" - "pypy3.5" matrix: fast_finish: true allow_failures: - python: '3.7-dev' dist: - xenial install: - travis_retry pip install --upgrade pip setuptools - travis_retry pip install -r requirements.txt - travis_retry pip install -r test-requirements.txt - python setup.py --version # Run test script: - pytest -vv
language: python sudo: false cache: directories: - $HOME/.cache/pip python: - "3.4" - "3.5" - "3.6" - "3.7" - "3.7-dev" - "3.8-dev" - "pypy3.5" matrix: fast_finish: true allow_failures: - python: '3.7-dev' - python: '3.8-dev' dist: - xenial install: - travis_retry pip install --upgrade pip setuptools - travis_retry pip install -r requirements.txt - travis_retry pip install -r test-requirements.txt - python setup.py --version # Run test script: - pytest -vv
Change Travis Python3 version from 3.8 to 3.7
language: python python: - "2.7" - "3.8" # command to install dependencies install: "python setup.py install" # command to run tests script: "test/run_tests.sh pythonunit"
language: python python: - "2.7" - "3.7" # command to install dependencies install: "python setup.py install" # command to run tests script: "test/run_tests.sh pythonunit"
Add a test that just does ci all in one
--- language: python python: "2.7" sudo: required services: - docker matrix: fast_finish: true env: - TEST_RUN="ansible-playbook -i herp, bastion.yml install-ci.yml provision.yml tests/validate-ci.yml --syntax-check" - TEST_RUN="ansible-playbook -i inventory/allinone bastion.yml install-ci.yml tests/validate-ci.yml -c docker -vv -e @secrets.yml.example -e ansible_become=no --skip-tags ddapi" before_install: - docker pull ubuntu:xenial - docker run -d --name allinone --privileged -v /sys/fs/cgroup:/sys/fs/cgroup:ro ubuntu:xenial systemd - docker exec -i allinone apt-get update - docker exec -i allinone apt-get install -y python-apt ca-certificates apt-transport-https sudo install: - pip install ansible script: "$TEST_RUN"
--- language: python python: "2.7" sudo: required services: - docker matrix: fast_finish: true env: - TEST_RUN="ansible-playbook -i herp, bastion.yml install-ci.yml provision.yml tests/validate-ci.yml --syntax-check" - TEST_RUN="ansible-playbook -i inventory/allinone bastion.yml install-ci.yml tests/validate-ci.yml -c docker -vv -e @secrets.yml.example -e ansible_become=no --skip-tags ddapi" - TEST_RUN="ansible-playbook -i inventory/allinone install-ci.yml tests/validate-ci.yml -c docker -vv -e @secrets.yml.example -e ansible_become=no --skip-tags ddapi" before_install: - docker pull ubuntu:xenial - docker run -d --name allinone --privileged -v /sys/fs/cgroup:/sys/fs/cgroup:ro ubuntu:xenial systemd - docker exec -i allinone apt-get update - docker exec -i allinone apt-get install -y python-apt ca-certificates apt-transport-https sudo install: - pip install ansible script: "$TEST_RUN"
Add Github releases deploy stage
language: java jdk: - oraclejdk8 script: mvn clean test jacoco:report coveralls:report # Restrict branch builds to master branches: only: - master
language: java jdk: - oraclejdk8 # Build, run tests, report code coverage script: mvn clean test jacoco:report coveralls:report # Publish application jar to Github Releases on tagged commit deploy: provider: releases api_key: secure: ZnBFf8dP6tJsKH2NInqACYJE8JGnAJK0/8GTgFlmv3fF4JxAxObAzSvzeNfouy10Jenklt4sk3lpsh7Hfok52YhM/odwej40IW5BuDl5pKNceDmLGGNoRygdpDtKz81WYKUgPLhHrSfODxa7ZDl9Y1s3hwFJ66wfxVn2aLSIgG6aUKqc/IwtQ2zhixg566c+ZW8YL0JvbTT5L100Jqf0d/sqgK7lcL88tolL9qewUSJPHcsaftC3D2ocD6qUGGoC+ed/Ad4UF6UmukOutG5TMRFTrDAXjdyEqFFBat2DzX0ax7I1HFn0ngg6zqDU4E7tdFh2Cyy7Z/+plX04/cNpCLltEwKLcyYbpVoCkel+71GN+idKyB9MN5z2yocvS1GaCNF5RIL+yrATert3EE2SQd4LNbmeqrVdKF5CEcVUCECIxDQB/ceWnMtLImgZ/+3Zo7JBnhwNbk9rk5hgBAK4yVeQGkMVjgLWtyo6LOQ2vUXcOVduPCVFG6ylCdnF1li8k1r2bPsWq1+hu09pmtf5aCTT4RgU1FcrCXyWwciOz9pD4BYyXAbkq2aBE+/IDIveWhiqqppSGZsUIO0N29gKN60kXjz0Zq7jNYVzY4GDrIBtTRaoZcb542LwpfOJPYnrSeNqOgNza7b82toVdsHDWnkagJ/a3PMDu/RRSrC3CJ0= file: application/target/application-*.jar file_glob: true skip_cleanup: true on: tags: true # Restrict branch builds to master branches: only: - master
Remove ancient Node versions from Travis config
language: node_js node_js: - "0.10" - "0.11" before_script: - npm install -g grunt-cli
language: node_js before_script: - npm install -g grunt-cli
Update Travis CI Ruby versions
language: ruby sudo: false cache: bundler gemfile: - gemfiles/rails_4.0.gemfile - gemfiles/rails_4.1.gemfile - gemfiles/rails_4.2.gemfile - gemfiles/rails_5.0.gemfile rvm: - 2.0.0 - 2.1.7 - 2.2.3 - jruby-9.0.1.0 - rbx-2.5 matrix: include: - rvm: jruby gemfile: gemfiles/rails_4.2.gemfile env: JRUBY_OPTS="--2.0" - rvm: 2.2.3 gemfile: gemfiles/rails_head.gemfile allow_failures: - gemfile: gemfiles/rails_head.gemfile
language: ruby sudo: false cache: bundler gemfile: - gemfiles/rails_4.0.gemfile - gemfiles/rails_4.1.gemfile - gemfiles/rails_4.2.gemfile rvm: - '2.0' - '2.1' - '2.2' - '2.3' - jruby-9.0.4.0 - rbx-3 matrix: include: - rvm: jruby gemfile: gemfiles/rails_4.2.gemfile env: JRUBY_OPTS="--2.0" - rvm: '2.3' gemfile: gemfiles/rails_5.0.gemfile - rvm: jruby-9.0.4.0 gemfile: gemfiles/rails_5.0.gemfile - rvm: '2.3' gemfile: gemfiles/rails_head.gemfile allow_failures: - gemfile: gemfiles/rails_head.gemfile
Update to include 9 and 10.
language: node_js node_js: - "0.10.8" - "0.10.7" - "0.10.6" - "0.10.5" - "0.10.4" - "0.10.3" - "0.10.2" - "0.10.1" - "0.10" notifications: irc: "irc.freenode.org#parttimelegend" email: on_success: never on_failure: never
language: node_js node_js: - "0.10.10" - "0.10.9" - "0.10.8" - "0.10.7" - "0.10.6" - "0.10.5" - "0.10.4" - "0.10.3" - "0.10.2" - "0.10.1" - "0.10" notifications: irc: "irc.freenode.org#parttimelegend" email: on_success: never on_failure: never
Move testing web server to port 8000
language: php php: 7.4 services: - mysql before_install: - mysql -e 'CREATE DATABASE lanager;' before_script: - composer self-update - composer install --no-interaction - php artisan serve --port 80 & script: vendor/bin/behat
language: php php: 7.4 services: - mysql before_install: - mysql -e 'CREATE DATABASE lanager;' before_script: - composer self-update - composer install --no-interaction - php artisan serve & script: vendor/bin/behat
Update Ruby versions for Travis CI
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.1
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.5
Install tokyocabinet, etc as dependencies
sudo: required dist: trusty language: c++ before_install: - git clone https://github.com/benedictpaten/sonLib.git - git clone https://github.com/benedictpaten/matchingAndOrdering.git - git clone https://github.com/benedictpaten/pinchesAndCacti.git - git clone https://github.com/benedictpaten/jobTree.git install: - export sonLibRootPath=`pwd`/sonLib - sh -c 'cd sonLib && make' - sh -c 'cd matchingAndOrdering && git checkout development && make' - sh -c 'cd pinchesAndCacti && make' - sh -c 'cd jobTree && make' script: - export sonLibRootPath=`pwd`/sonLib - make - PATH=./bin:./jobTree/bin:$PATH PYTHONPATH=.:.. make test os: - linux - osx env: - CGL_DEBUG=1 - CGL_DEBUG=ultra ASAN_OPTIONS=detect_leaks=0 matrix: exclude: # The default OSX env doesn't have a version that supports # -fsanitize=address. - env: CGL_DEBUG=ultra ASAN_OPTIONS=detect_leaks=0 os: osx
sudo: required dist: trusty language: c++ before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libtokyocabinet-dev libkyototycoon-dev kyototycoon libkyotocabinet-dev; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install tokyo-cabinet kyoto-cabinet kyoto-tycoon; fi - git clone https://github.com/benedictpaten/sonLib.git - git clone https://github.com/benedictpaten/matchingAndOrdering.git - git clone https://github.com/benedictpaten/pinchesAndCacti.git - git clone https://github.com/benedictpaten/jobTree.git install: - export sonLibRootPath=`pwd`/sonLib - sh -c 'cd sonLib && make' - sh -c 'cd matchingAndOrdering && git checkout development && make' - sh -c 'cd pinchesAndCacti && make' - sh -c 'cd jobTree && make' script: - export sonLibRootPath=`pwd`/sonLib - make - PATH=./bin:./jobTree/bin:$PATH PYTHONPATH=.:.. make test os: - linux - osx env: - CGL_DEBUG=1 - CGL_DEBUG=ultra ASAN_OPTIONS=detect_leaks=0 matrix: exclude: # The default OSX env doesn't have a version that supports # -fsanitize=address. - env: CGL_DEBUG=ultra ASAN_OPTIONS=detect_leaks=0 os: osx
Revert "add OSX to Travis build process"
os: - linux - osx language: php before_install: - composer self-update install: - travis_retry composer install --no-interaction --prefer-source php: - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: hhvm notifications: email: false
os: - linux language: php before_install: - composer self-update install: - travis_retry composer install --no-interaction --prefer-source php: - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: hhvm notifications: email: false
Remove caching to make CI less flaky
language: rust cache: cargo dist: xenial env: - ROS_DISTRO=kinetic rust: - stable - beta - nightly matrix: allow_failures: - rust: nightly fast_finish: true before_install: - sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list' - sudo apt-key adv --keyserver 'hkp://keyserver.ubuntu.com:80' --recv-key C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654 - sudo apt-get update -qq - sudo apt-get install dpkg - sudo apt-get install -y python-catkin-pkg python-rosdep python-wstool ros-$ROS_DISTRO-ros-base ros-$ROS_DISTRO-roscpp-tutorials ros-$ROS_DISTRO-rospy-tutorials ros-$ROS_DISTRO-actionlib-tutorials - source /opt/ros/$ROS_DISTRO/setup.bash - sudo rosdep init - rosdep update
language: rust dist: xenial env: - ROS_DISTRO=kinetic rust: - stable - beta - nightly matrix: allow_failures: - rust: nightly fast_finish: true before_install: - sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list' - sudo apt-key adv --keyserver 'hkp://keyserver.ubuntu.com:80' --recv-key C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654 - sudo apt-get update -qq - sudo apt-get install dpkg - sudo apt-get install -y python-catkin-pkg python-rosdep python-wstool ros-$ROS_DISTRO-ros-base ros-$ROS_DISTRO-roscpp-tutorials ros-$ROS_DISTRO-rospy-tutorials ros-$ROS_DISTRO-actionlib-tutorials - source /opt/ros/$ROS_DISTRO/setup.bash - sudo rosdep init - rosdep update
Update Travis Node version targets
language: node_js node_js: - "0.10" - "0.11.14" before_install: - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - sudo apt-get update -q - sudo apt-get install -y libstdc++6
language: node_js node_js: - "0.10" - "0.12" - "iojs" before_install: - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - sudo apt-get update -q - sudo apt-get install -y libstdc++6
Switch Travis to Xcode 10.
osx_image: xcode9.3 language: objective-c script: ./scripts/travis-ci.sh
osx_image: xcode10 language: objective-c script: ./scripts/travis-ci.sh
Test on Python 3.7 and 3.8
language: python python: - "2.7" - "3.6" - "nightly" # command to install build dependencies before_install: - pip install -r requirements_development.txt # command to install dependencies install: - pip install -r requirements.txt # command to run tests script: - make test - make translate-all
language: python python: - "2.7" - "3.7" - "3.8" # command to install build dependencies before_install: - pip install -r requirements_development.txt # command to install dependencies install: - pip install -r requirements.txt # command to run tests script: - make test - make translate-all
Switch to Docker-based infrastructure on Travis
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm matrix: allow_failures: - php: hhvm before_script: composer install -n script: vendor/bin/phpunit -v --coverage-clover=coverage.clover after_script: - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi;'
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm matrix: allow_failures: - php: hhvm sudo: false cache: directories: - $HOME/.composer/cache install: composer install -n script: vendor/bin/phpunit -v --coverage-clover=coverage.clover after_script: - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi;'
Disable node 0.6 tests on Travis CI.
language: "node_js" node_js: - "0.10" - "0.8" - "0.6" - "0.4" before_install: - "npm install istanbul -g" - "npm install coveralls -g" script: "make ci-travis" after_success: - "make submit-cov-to-coveralls"
language: "node_js" node_js: - "0.10" - "0.8" # - "0.6" - "0.4" before_install: - "npm install istanbul -g" - "npm install coveralls -g" script: "make ci-travis" after_success: - "make submit-cov-to-coveralls"
Drop testing for Ruby 2.3
language: ruby rvm: - 2.3.8 - 2.4.7 - 2.5.6 - 2.6.4 before_install: - gem install origen script: - origen -v - origen m debug - origen test -c - origen web compile --no-serve - origen lint --no-correct env: - ORIGEN_GEM_USE_FROM_SYSTEM=false ORIGEN_GEM_MANAGE_BUNDLER=false
language: ruby rvm: - 2.4.7 - 2.5.6 - 2.6.4 before_install: - gem install origen script: - origen -v - origen m debug - origen test -c - origen web compile --no-serve - origen lint --no-correct env: - ORIGEN_GEM_USE_FROM_SYSTEM=false ORIGEN_GEM_MANAGE_BUNDLER=false
Move `include` into the test stage
sudo: false dist: trusty language: php php: 7.1 env: global: - WP_CLI_BIN_DIR=/tmp/wp-cli-phar matrix: include: - php: 7.2 env: WP_VERSION=nightly - php: 7.1 env: WP_VERSION=latest - php: 7.0 env: WP_VERSION=latest - php: 5.6 env: WP_VERSION=trunk - php: 5.6 env: WP_VERSION=latest - php: 5.6 env: WP_VERSION=latest BUILD=git WP_CLI_BIN_DIR='' - php: 5.6 env: WP_VERSION=3.7.11 - php: 5.3 dist: precise env: WP_VERSION=3.7.11 DEPLOY_BRANCH=master before_script: - export PATH="$HOME/.composer/vendor/bin:$PATH" - ./ci/prepare.sh jobs: include: - stage: sniff script: ./ci/sniff.sh - stage: test script: ./ci/test.sh - stage: deploy if: branch = master script: ./ci/deploy.sh cache: directories: - vendor - $HOME/.composer/cache branches: only: - master notifications: email: on_success: never on_failure: change
sudo: false dist: trusty language: php php: 7.1 env: global: - WP_CLI_BIN_DIR=/tmp/wp-cli-phar before_script: - export PATH="$HOME/.composer/vendor/bin:$PATH" - ./ci/prepare.sh jobs: include: - stage: sniff script: ./ci/sniff.sh - stage: test script: ./ci/test.sh include: - php: 7.2 env: WP_VERSION=nightly - php: 7.1 env: WP_VERSION=latest - php: 7.0 env: WP_VERSION=latest - php: 5.6 env: WP_VERSION=trunk - php: 5.6 env: WP_VERSION=latest - php: 5.6 env: WP_VERSION=latest BUILD=git WP_CLI_BIN_DIR='' - php: 5.6 env: WP_VERSION=3.7.11 - php: 5.3 dist: precise env: WP_VERSION=3.7.11 - stage: deploy if: branch = master script: ./ci/deploy.sh cache: directories: - vendor - $HOME/.composer/cache branches: only: - master notifications: email: on_success: never on_failure: change
Change emulator to use API 17 in Travis-CI environment
language: android android: components: - build-tools-21.1.2 - android-21 - extra-android-support - sys-img-armeabi-v7a-android-21 before_script: - echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a - emulator -avd test -no-skin -no-audio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 & script: ./gradlew checkstyle build connectedCheck
language: android android: components: - build-tools-21.1.2 - android-21 - extra-android-support - sys-img-armeabi-v7a-android-17 before_script: - echo no | android create avd --force -n test -t android-17 --abi armeabi-v7a - emulator -avd test -no-skin -no-audio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 & script: ./gradlew checkstyle build connectedCheck
Update Travis CI to allow unit tests
sudo: false language: python dist: trusty cache: pip python: - 2.7 services: - postgresql addons: postgresql: 9.5 apt: packages: - postgresql-9.5-postgis-2.3 branches: only: - master env: global: - SECRET_KEY=SecretKeyForTravis - DATABASE_URL="postgis://postgres@localhost:5432/travis_ci_test" install: - pip install --upgrade pip - pip install --upgrade setuptools - pip install six - pip install -r requirements.txt before_script: - psql -c "create database travis_ci_test;" -U postgres - psql -c "create extension postgis;" -U postgres -d travis_ci_test - python manage.py migrate --noinput script: - python manage.py test -k -v 0
sudo: required language: python cache: pip dist: trusty python: - 3.5 services: - postgresql addons: postgresql: 9.5 apt: packages: - postgresql-9.5-postgis-2.3 branches: only: - master env: global: - SECRET_KEY=SecretKeyForTravisCI - DATABASE_URL=postgis://postgres@localhost:5432/travis_ci_test install: - pip install --upgrade pip - pip install --upgrade setuptools - pip install six - pip install -r requirements.txt before_script: - psql -c 'create extension postgis' -U postgres - psql -c 'create database travis_ci_test;' -U postgres - python manage.py migrate --noinput script: - python manage.py test -v 1
Update to use Node 7.6
language: node_js node_js: - "7.5.0" services: - postgresql script: "npm run coverage" notifications: email: false after_success: - npm install -g codeclimate-test-reporter - codeclimate-test-reporter < coverage/lcov.info
language: node_js node_js: - "7.6.0" services: - postgresql script: "npm run coverage" notifications: email: false after_success: - npm install -g codeclimate-test-reporter - codeclimate-test-reporter < coverage/lcov.info
Remove broken caching for sfml_install
sudo: false # This may need to change at some point notifications: email: change env: global: - LD_LIBRARY_PATH=/home/travis/build/team-code/deucalion/sfml_install/usr/local/lib language: rust rust: - nightly cache: - directories: - /home/travis/build/team-code/deucalion/sfml_install - cargo script: # Build the SFML from source >:( - if [ ! -d sfml_install ]; then ./build_sfml.sh; fi # Move the cargo config hooks - mkdir .cargo - mv .travis.cargo.config .cargo/config # Actually do the CI build. - cd deucalion-rs - cargo build --verbose && cargo test --verbose && cargo doc --verbose addons: apt: packages: - libpthread-stubs0-dev - libgl1-mesa-dev - libx11-dev - libx11-xcb-dev - libxcb-image0-dev - libxrandr-dev - libxcb-randr0-dev - libudev-dev - libfreetype6-dev - libglew-dev - libjpeg8-dev - libgpgme11-dev - libsndfile1-dev - libopenal-dev - libjpeg62 - cmake
sudo: false # This may need to change at some point notifications: email: change env: global: - LD_LIBRARY_PATH=/home/travis/build/team-code/deucalion/sfml_install/usr/local/lib language: rust rust: - nightly cache: - cargo script: # Build the SFML from source >:( - if [ ! -d sfml_install ]; then ./build_sfml.sh; fi # Move the cargo config hooks - mkdir .cargo - mv .travis.cargo.config .cargo/config # Actually do the CI build. - cd deucalion-rs - cargo build --verbose && cargo test --verbose && cargo doc --verbose addons: apt: packages: - libpthread-stubs0-dev - libgl1-mesa-dev - libx11-dev - libx11-xcb-dev - libxcb-image0-dev - libxrandr-dev - libxcb-randr0-dev - libudev-dev - libfreetype6-dev - libglew-dev - libjpeg8-dev - libgpgme11-dev - libsndfile1-dev - libopenal-dev - libjpeg62 - cmake
Enable testing on existdb 3.0 rc1
language: python # ensure use container-based infrastructure for caching sudo: false python: # - "2.6" - "2.7" addons: apt: packages: - oracle-java8-installer # versions of eXist to test against env: - EXIST_DB_VERSION=eXist-3.0.RC1 - EXIST_DB_VERSION=eXist-2.2 before_install: - export EXIST_DB_FOLDER=${HOME}/exist/${EXIST_DB_VERSION} - export JAVA_HOME=/usr/lib/jvm/java-8-oracle install: - ci/setup-existdb.sh - pip install -e . - pip install -e ".[dev]" - pip install coveralls - cp ci/testsettings.py test/localsettings.py before_script: - ci/start-existdb.sh script: nosetests test/ --with-coverage --cover-package=eulexistdb --cover-xml --with-xunit after_success: - coveralls - cd ${EXIST_DB_FOLDER} - bin/shutdown.sh # caching exist to speed up tests before_cache: - ci/teardown-db.sh cache: directories: - ${HOME}/exist
language: python # ensure use container-based infrastructure for caching sudo: false python: # - "2.6" - "2.7" addons: apt: packages: - oracle-java8-installer # versions of eXist to test against env: - EXIST_DB_VERSION=eXist-3.0.RC1 - EXIST_DB_VERSION=eXist-2.2 before_install: - export EXIST_DB_FOLDER=${HOME}/exist/${EXIST_DB_VERSION} - export JAVA_HOME=/usr/lib/jvm/java-8-oracle install: - ci/setup-existdb.sh - pip install -e . - pip install -e ".[dev]" - pip install coveralls - cp ci/testsettings.py test/localsettings.py before_script: - ci/start-existdb.sh script: nosetests test/ --with-coverage --cover-package=eulexistdb --cover-xml --with-xunit after_success: - coveralls - cd ${EXIST_DB_FOLDER} - bin/shutdown.sh # caching exist to speed up tests before_cache: - ci/teardown-db.sh cache: directories: - ${HOME}/exist
Add "go vet" to build
language: go go: - 1.6 - 1.7 install: - pip install --user behave requests script: - go build . - behave
language: go go: - 1.6 - 1.7 install: - pip install --user behave requests script: - go vet $(go list ./... | grep -v /vendor/) - go build . - behave
Stop using crate and PyPI mirrors.
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 before_install: - export PIP_USE_MIRRORS=true - export PIP_INDEX_URL=https://simple.crate.io/ install: - pip install -e . - pip install -r requirements/tests.txt Django==$DJANGO script: - make test env: - DJANGO=1.3.7 - DJANGO=1.4.5 - DJANGO=1.5.1 matrix: exclude: - python: 3.2 env: DJANGO=1.4.5 - python: 3.2 env: DJANGO=1.3.7 - python: 3.3 env: DJANGO=1.4.5 - python: 3.3 env: DJANGO=1.3.7 branches: except: templates/1.5.x
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 install: - pip install -e . - pip install -r requirements/tests.txt Django==$DJANGO script: - make test env: - DJANGO=1.3.7 - DJANGO=1.4.5 - DJANGO=1.5.1 matrix: exclude: - python: 3.2 env: DJANGO=1.4.5 - python: 3.2 env: DJANGO=1.3.7 - python: 3.3 env: DJANGO=1.4.5 - python: 3.3 env: DJANGO=1.3.7 branches: except: templates/1.5.x
Fix Travis CI for Codecov integration
language: objective-c osx_image: xcode8.2 script: - xcodebuild build test -project SwiftAlgorithmsAndDataStructuresDojo.xcodeproj -scheme SwiftAlgorithmsAndDataStructuresDojo -destination "platform=iOS Simulator,name=iPhone 7,OS=10.2" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO after_success: - slather - bash <(curl -s https://codecov.io/bash)
language: objective-c osx_image: xcode8.2 script: script: - xcodebuild -scheme SwiftAlgorithmsAndDataStructuresDojo -project SwiftAlgorithmsAndDataStructuresDojo.xcodeproj -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 7,OS=10.2' build test after_success: - bash <(curl -s https://codecov.io/bash)
Revoke Hipchat token and encrypt the new one
language: ruby rvm: 2.2.2 env: - DB=mysql sudo: false before_script: - bundle exec rake db:setup script: - bundle exec rspec spec notifications: email: false hipchat: 823d4c11858ce2bb9471e5b05d1925@678334
language: ruby rvm: 2.2.2 env: - DB=mysql sudo: false before_script: - bundle exec rake db:setup script: - bundle exec rspec spec notifications: email: false hipchat: matrix: - 823d4c11858ce2bb9471e5b05d1925@678334 rooms: secure: Jiu3zUn+qrvYuN4OoaM0PzTA71zcAeiCfend188Tl/duvzBrR1sJhY2+9n6F4xcJ8dPz8J6+qZ/Z1ox8owd305s5m7Xfo8H3rFAZxZ/bijvviAhhjGQiC39XrFgwsjjrVPK6fT03qbxu8hzYruBjsIxOw6TXIqUQHfTDVJoc/Kk= template: - 'The build #<a href="%{build_url}">%{build_number}</a> for %{branch}(<a href="%{compare_url}">%{commit}</a>)@%{repository_name} by %{author} has %{result} %{message} in %{duration}.' format: html
Add Python 3.6 to CI.
language: python sudo: false matrix: fast_finish: true include: - python: 2.7 - python: 3.4 - python: 3.5 # command to install dependencies install: - pip install -U pip - pip install -r requirements.txt - pip install pytest - pip install mock # command to run tests, e.g. python setup.py test script: - py.test -v -x --doctest-modules --pyargs datashape -rsX --tb=short notifications: email: false flowdock: b08b3ba4fb86fa48121e90b5f67ccb75 on_success: "change" on_failure: "always"
language: python sudo: false matrix: fast_finish: true include: - python: 2.7 - python: 3.4 - python: 3.5 - python: 3.6 # command to install dependencies install: - pip install -U pip - pip install -r requirements.txt - pip install pytest - pip install mock # command to run tests, e.g. python setup.py test script: - py.test -v -x --doctest-modules --pyargs datashape -rsX --tb=short notifications: email: false flowdock: b08b3ba4fb86fa48121e90b5f67ccb75 on_success: "change" on_failure: "always"
Add multiple otp versions for testing
dist: trusty sudo: required language: elixir elixir: - 1.5 addons: postgresql: '9.4' services: - postgresql before_install: - wget http://emqtt.io/downloads/stable/ubuntu14_04-deb -O emqtt.deb - sudo dpkg -i emqtt.deb - sudo service emqttd start before_script: - mix do ecto.create, ecto.migrate env: - MIX_ENV=test script: - mix coveralls.travis
dist: trusty sudo: required language: elixir elixir: - 1.5 otp_release: - 18.0 matrix: include: - elixir: 1.5 otp_release: 20.0 addons: postgresql: '9.4' services: - postgresql before_install: - wget http://emqtt.io/downloads/stable/ubuntu14_04-deb -O emqtt.deb - sudo dpkg -i emqtt.deb - sudo service emqttd start before_script: - mix do ecto.create, ecto.migrate env: - MIX_ENV=test script: - mix coveralls.travis
Update code coverage reporting on Travis
language: r r: - oldrel - release - devel cache: packages warnings_are_errors: false after_success: - | if [[ $TRAVIS_R_VERSION == 3.3.* ]]; then Rscript -e 'install.packages("covr"); covr::codecov()'; fi
language: r r: - oldrel - release - devel r_github_packages: - r-lib/covr cache: packages warnings_are_errors: false after_success: - Rscript -e 'covr::codecov()'
Build on OpenJDK 8, 11, 12 and 13
language: java matrix: include: - os: linux dist: precise jdk: oraclejdk7 env: TEST_SUITE=assemble test --tests '*SystemdJournalAppenderTest*' - os: linux jdk: oraclejdk8 env: TEST_SUITE=build - os: linux jdk: openjdk8 env: TEST_SUITE=build - os: linux jdk: oraclejdk9 env: TEST_SUITE=build - os: linux jdk: openjdk10 env: TEST_SUITE=build - os: linux jdk: openjdk11 env: TEST_SUITE=build script: - ./gradlew ${TEST_SUITE} branches: - master - 1.x
language: java jdk: - openjdk8 - openjdk11 - openjdk12 - openjdk13 script: - ./gradlew ${TEST_SUITE} branches: - master - 1.x
Use more typical CMake folder name
language: node_js node_js: - node - '10' - '8' - '6' before_install: # Build Csound. - sudo apt-get --assume-yes install libsndfile1-dev - wget https://github.com/csound/csound/archive/6.12.0.tar.gz - tar -xf 6.12.0.tar.gz - mkdir csound - cd csound # When built with DSSI <http://dssi.sourceforge.net> opcodes, attempting to # produce sound from Csound 6.10.0 and later on Travis CI results in a # segmentation fault (see https://github.com/csound/csound/issues/901). - cmake -DBUILD_DSSI_OPCODES=NO ../csound-6.12.0 - make - sudo make install - sudo ldconfig - cd .. # Get csound-api dependencies. - sudo apt-get --assume-yes install libboost-dev before_script: - npm --global install jasmine
language: node_js node_js: - node - '10' - '8' - '6' before_install: # Build Csound. - sudo apt-get --assume-yes install libsndfile1-dev - wget https://github.com/csound/csound/archive/6.12.0.tar.gz - tar -xf 6.12.0.tar.gz - mkdir build - cd build # When built with DSSI <http://dssi.sourceforge.net> opcodes, attempting to # produce sound from Csound 6.10.0 and later on Travis CI results in a # segmentation fault (see https://github.com/csound/csound/issues/901). - cmake -DBUILD_DSSI_OPCODES=NO ../csound-6.12.0 - make - sudo make install - sudo ldconfig - cd .. # Get csound-api dependencies. - sudo apt-get --assume-yes install libboost-dev before_script: - npm --global install jasmine
Add PHP 7.2 and 7.3 to Travis config
language: php php: - 7.0 - 7.1 before_script: # Disable xdebug for speed. - phpenv config-rm xdebug.ini - lscpu - free -m script: phpunit
language: php php: - 7.0 - 7.1 - 7.2 - 7.3 before_script: # Disable xdebug for speed. - phpenv config-rm xdebug.ini - lscpu - free -m script: phpunit
Update ruby versions on Travis CI
language: ruby before_install: - gem update bundler rvm: - ruby-head - 2.2.0 - 2.1.0 - 2.0.0 - 1.9.3 - jruby-head - jruby-18mode - jruby-19mode - rbx-2
language: ruby before_install: - gem update bundler rvm: - ruby-head - 2.2.0 - 2.1.0 - 2.0.0 - jruby-head
Add tagline to the site variables in the config
title: RubyVE name: RubyVE connect: twitter: https://twitter.com/rubyve gplus: https://plus.google.com/communities/106213524853304399957 ggoogle: https://groups.google.com/forum/#!forum/rubyve github: https://github.com/ruby-ve irc: irc://irc.freenode.net/#rubyve exclude: - README.md - Gemfile - Gemfile.lock - CC-LICENSE markdown: redcarpet highlighter: rouge permalink: pretty host: 0.0.0.0 port: 3000 baseurl: / url: http://ruby.org.ve lsi: false gems: - jekyll-sitemap
title: RubyVE name: RubyVE tagline: Grupo de Usuarios Ruby de Venezuela connect: twitter: https://twitter.com/rubyve gplus: https://plus.google.com/communities/106213524853304399957 ggoogle: https://groups.google.com/forum/#!forum/rubyve github: https://github.com/ruby-ve irc: irc://irc.freenode.net/#rubyve exclude: - README.md - Gemfile - Gemfile.lock - CC-LICENSE markdown: redcarpet highlighter: rouge permalink: pretty host: 0.0.0.0 port: 3000 baseurl: / url: http://ruby.org.ve lsi: false gems: - jekyll-sitemap
Update from Hackage at 2016-11-09T21:46:43Z
homepage: https://github.com/ciez/regex-do changelog-type: '' hash: 3e0051dc41bc87686743d4025e31479a823dd56931db6ea78eb1b2603d42be4c test-bench-deps: regex-pcre: -any bytestring: -any base: <=5.0 hspec: -any text: -any stringsearch: -any array: -any regex-base: -any regex-do: -any QuickCheck: -any maintainer: Imants Cekusins synopsis: PCRE wrapper changelog: '' basic-deps: regex-pcre: -any bytestring: -any base: <=5.0 text: -any stringsearch: -any array: -any regex-base: -any all-versions: - '1.4' - '1.5' - '1.6' - '1.7' - '1.8' author: Imants Cekusins latest: '1.8' description-type: haddock description: format, search, replace (String | ByteString) with PCRE regex. Utf8-safe license-name: PublicDomain
homepage: https://github.com/ciez/regex-do changelog-type: '' hash: d081d0134a94bfb5612a65ebd7090d04d683492f7362e262af98a1937418c472 test-bench-deps: regex-pcre: -any bytestring: -any base: <=5.0 hspec: -any text: -any stringsearch: -any array: -any regex-base: -any regex-do: -any QuickCheck: -any maintainer: Imants Cekusins synopsis: PCRE wrapper changelog: '' basic-deps: regex-pcre: -any bytestring: -any base: <=5.0 text: -any stringsearch: -any array: -any regex-base: -any all-versions: - '1.4' - '1.5' - '1.6' - '1.7' - '1.8' - '1.9' author: Imants Cekusins latest: '1.9' description-type: haddock description: format, search, replace (String | ByteString) with PCRE regex. Utf8-safe license-name: PublicDomain
Change home link of docs site
site_name: Benthos theme: name: mkdocs highlightjs: true hljs_languages: - yaml nav: - Home: / - Concepts: 'concepts.md' - Components: - 'Inputs': 'inputs/README.md' - 'Buffers': 'buffers/README.md' - 'Processors': 'processors/README.md' - 'Conditions': 'conditions/README.md' - 'Outputs': 'outputs/README.md' - 'Caches': 'caches/README.md' - 'Rate Limits': 'rate_limits/README.md' - 'Metrics': 'metrics/README.md' - 'Tracers': 'tracers/README.md' - Guides: - 'Getting Started': 'getting_started.md' - 'Cookbooks': 'cookbooks/README.md' - 'Pipeline': 'pipeline.md' - 'Message Batching': 'batching.md' - 'Error Handling': 'error_handling.md' - 'Workflows': 'workflows.md' - 'Config Cheats': 'configuration.md' - 'Config Interpolation': 'config_interpolation.md' - 'Applied Examples': 'examples/README.md'
site_name: Benthos theme: name: mkdocs highlightjs: true hljs_languages: - yaml nav: - Home: 'https://www.benthos.dev' - Concepts: 'concepts.md' - Components: - 'Inputs': 'inputs/README.md' - 'Buffers': 'buffers/README.md' - 'Processors': 'processors/README.md' - 'Conditions': 'conditions/README.md' - 'Outputs': 'outputs/README.md' - 'Caches': 'caches/README.md' - 'Rate Limits': 'rate_limits/README.md' - 'Metrics': 'metrics/README.md' - 'Tracers': 'tracers/README.md' - Guides: - 'Getting Started': 'getting_started.md' - 'Cookbooks': 'cookbooks/README.md' - 'Pipeline': 'pipeline.md' - 'Message Batching': 'batching.md' - 'Error Handling': 'error_handling.md' - 'Workflows': 'workflows.md' - 'Config Cheats': 'configuration.md' - 'Config Interpolation': 'config_interpolation.md' - 'Applied Examples': 'examples/README.md'
Use Ruby 2.2.5 instead of 2.2.3
sudo: false language: ruby rvm: - 2.2.3 install: - script/setup script: - script/cibuild cache: bundler: true
sudo: false language: ruby rvm: - 2.2.5 install: - script/setup script: - script/cibuild cache: bundler: true
Comment out php versions without env variables
language: php # dist: trusty php: - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 - 7.4 - 8.0 # env: # - PHPUNIT_VERSION=5.6.* matrix: include: - php: 5.6 env: PHPUNIT_VERSION=5.6.* - php: 7.0 env: PHPUNIT_VERSION=6.5.* - php: 7.1 env: PHPUNIT_VERSION=7.5.* - php: 7.2 env: PHPUNIT_VERSION=8.5.* - php: 7.3 env: PHPUNIT_VERSION=9.5.* - php: 7.4 env: PHPUNIT_VERSION=9.5.* - php: 8.0 env: PHPUNIT_VERSION=9.5.* sudo: false before_script: - composer require "phpunit/phpunit:${PHPUNIT_VERSION}" --no-update - composer update --prefer-dist script: - phpunit TestRunner.php .
language: php # dist: trusty # php: # - 5.6 # - 7.0 # - 7.1 # - 7.2 # - 7.3 # - 7.4 # - 8.0 # env: # - PHPUNIT_VERSION=5.6.* matrix: include: - php: 5.6 env: PHPUNIT_VERSION=5.6.* - php: 7.0 env: PHPUNIT_VERSION=6.5.* - php: 7.1 env: PHPUNIT_VERSION=7.5.* - php: 7.2 env: PHPUNIT_VERSION=8.5.* - php: 7.3 env: PHPUNIT_VERSION=9.5.* - php: 7.4 env: PHPUNIT_VERSION=9.5.* - php: 8.0 env: PHPUNIT_VERSION=9.5.* sudo: false before_script: - composer require "phpunit/phpunit:${PHPUNIT_VERSION}" --no-update - composer update --prefer-dist script: - phpunit TestRunner.php .
Disable to allow node 0.11 failure
language: node_js node_js: - '0.10' - '0.11' matrix: allow_failures: - node_js: '0.11'
language: node_js node_js: - '0.10' - '0.11'
Test on Java 8 & 11
language: java jdk: - oraclejdk8 - openjdk8 after_success: - mvn clean test jacoco:report coveralls:jacoco
language: java jdk: - openjdk8 - openjdk11 after_success: - mvn clean test jacoco:report coveralls:jacoco
Remove second build from scripts
language: objective-c script: - xctool -project RoundButton.xcodeproj -scheme RoundButton -sdk iphonesimulator clean build test - xctool -project RoundButton.xcodeproj -scheme RoundButton clean build test
language: objective-c script: - xctool -project RoundButton.xcodeproj -scheme RoundButton -sdk iphonesimulator clean build test
Add nightly and dev python, with allowed failures
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "pypy" - "pypy3" cache: pip: true directories: $HOME/.pylint.d notifications: email: false install: - pip install requests - pip install coverage - pip install pylint script: - bash .travis_scripts/run_travis.sh after_success: - pip install codecov - python -c 'import sys;print(str(sys.version_info[0])+"."+str(sys.version_info[1]))' > version.txt - cat version.txt | xargs codecov --env - rm version.txt after_script: - cd ..; pylint -f colorized pyautoupdate; cd pyautoupdate
language: python python: - "2.6" - "2.7" - "3.3" - "3.4" - "3.5" - "3.5-dev" - "nightly" - "pypy" - "pypy3" matrix: allow_failures: - python: "3.5-dev" - python: "nightly" cache: pip: true directories: $HOME/.pylint.d notifications: email: false install: - pip install requests - pip install coverage - pip install pylint script: - bash .travis_scripts/run_travis.sh after_success: - pip install codecov - python -c 'import sys;print(str(sys.version_info[0])+"."+str(sys.version_info[1]))' > version.txt - cat version.txt | xargs codecov --env - rm version.txt after_script: - cd ..; pylint -f colorized pyautoupdate; cd pyautoupdate
Fix Ruby versions supported by Travis CI
language: ruby sudo: false cache: bundler install: true script: - 'if [[ "$TRAVIS_RUBY_VERSION" =~ "jruby" ]]; then rvm get head && rvm reload && rvm use --install $TRAVIS_RUBY_VERSION; fi' - 'bundle install' - 'bundle exec rake test:coverage' rvm: - 2.2 - 2.3 - ruby-head - jruby-9000 - jruby-head addons: postgresql: '9.4' matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head
language: ruby sudo: false cache: bundler install: true script: - 'if [[ "$TRAVIS_RUBY_VERSION" =~ "jruby" ]]; then rvm get head && rvm reload && rvm use --install $TRAVIS_RUBY_VERSION; fi' - 'bundle install' - 'bundle exec rake test:coverage' rvm: - 2.2.4 - 2.3.0 - ruby-head - jruby-9000 - jruby-head addons: postgresql: '9.4' matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head
Test - Add Travis test for python 3.7
language: python dist: xenial python: - "3.6" before_install: - sudo apt-get install -y python3-tk - sudo apt-get install -y texlive-latex-base pgf texlive-pictures texlive-latex-extra - sudo apt-get install -y libblas-dev liblapack-dev libatlas-base-dev gfortran install: - pip3 install --editable ".[dev]" script: - python manage.py test after_success: - coverage run --source=survey --omit=survey/migrations/* ./manage.py test - coverage html - coveralls
language: python dist: xenial python: - "3.6" - "3.7" before_install: - sudo apt-get install -y python3-tk - sudo apt-get install -y texlive-latex-base pgf texlive-pictures texlive-latex-extra - sudo apt-get install -y libblas-dev liblapack-dev libatlas-base-dev gfortran install: - pip3 install --editable ".[dev]" script: - python manage.py test after_success: - coverage run --source=survey --omit=survey/migrations/* ./manage.py test - coverage html - coveralls
Use NodeJS 7 on Travis
language: node_js branches: only: - master node_js: - '6' before_install: - openssl aes-256-cbc -K $encrypted_2c4c9a008ff2_key -iv $encrypted_2c4c9a008ff2_iv -in deploy_rsa.enc -out deploy_rsa -d addons: ssh_known_hosts: 192.241.157.86 before_deploy: - npm install -g pm2 - eval "$(ssh-agent -s)" - chmod 600 $TRAVIS_BUILD_DIR/deploy_rsa - ssh-add $TRAVIS_BUILD_DIR/deploy_rsa deploy: provider: script skip_cleanup: true script: npm run deploy on: branch: master
language: node_js branches: only: - master node_js: - '7' before_install: - openssl aes-256-cbc -K $encrypted_2c4c9a008ff2_key -iv $encrypted_2c4c9a008ff2_iv -in deploy_rsa.enc -out deploy_rsa -d addons: ssh_known_hosts: 192.241.157.86 before_deploy: - npm install -g pm2 - eval "$(ssh-agent -s)" - chmod 600 $TRAVIS_BUILD_DIR/deploy_rsa - ssh-add $TRAVIS_BUILD_DIR/deploy_rsa deploy: provider: script skip_cleanup: true script: npm run deploy on: branch: master
Prepare heroku deployment of REST WS
language: java jdk: - oraclejdk8 addons: apt: packages: - oracle-java8-installer before_install: - "export DISPLAY=:99.0" - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x24" - "sh -e /etc/init.d/xvfb start" - cd jg-bom - mvn clean install - cd .. install: - mvn clean install -Pprod -fae after_success: - mvn test jacoco:report org.eluder.coveralls:coveralls-maven-plugin:report deploy: provider: heroku api_key: "GtRVItHpHcU9H22bW5CGygXxHYmgG7QaqLhcegS0Zi5//plFuOdpeKXwOxkFgGxUyC0JDsXc3ghpTGfEVrqOdI8JAKG9PPNrfVI1niWznFdECve7RoSL9on7uM9MJ3sr2c3dzoesmFbhZ0FGSnXO4FYM9UiPfD5EOSpPDZ0ikB8=" buildpack: https://github.com/jgrades/heroku-buildpack-java.git notifications: email: recipients: - jgrades.project@gmail.com
language: java jdk: - oraclejdk8 addons: apt: packages: - oracle-java8-installer before_install: - "export DISPLAY=:99.0" - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x24" - "sh -e /etc/init.d/xvfb start" - cd jg-bom - mvn clean install - cd .. install: - mvn clean install -Pprod -fae after_success: - mvn test jacoco:report org.eluder.coveralls:coveralls-maven-plugin:report deploy: provider: heroku api_key: "bv/GtfZUmqQ/gwjRLuI95tQRCxq78AoGjbaEr+nV32Rnx2wTzCuWstAYMOsM+9Ii9MUvDYiKisHjo1e8TSL25KSuDTY13xO3+lSINP0lXKOkPE9JVfmcKmrjr2nsRybwZPfBdqQv5ehFit2ucdErkJuwRhr9gUNv+vDYV1+v1I8=" buildpack: https://github.com/jgrades/heroku-buildpack-java.git notifications: email: recipients: - jgrades.project@gmail.com
Use modulesync to manage meta files
--- language: ruby bundler_args: --without development script: ["bundle exec rake validate", "bundle exec rake lint", "bundle exec rake spec SPEC_OPTS='--format documentation'", "bundle exec rake metadata"] matrix: fast_finish: true include: - rvm: 1.8.7 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 2.0.0 env: PUPPET_GEM_VERSION="~> 3.0" notifications: email: false deploy: provider: puppetforge user: camptocamp password: secure: "" on: tags: true # all_branches is required to use tags all_branches: true # Only publish if our main Ruby target builds rvm: 1.9.3
--- language: ruby bundler_args: --without development script: ["bundle exec rake validate", "bundle exec rake lint", "bundle exec rake spec SPEC_OPTS='--format documentation'", "bundle exec rake metadata"] matrix: fast_finish: true include: - rvm: 1.8.7 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 1.9.3 env: PUPPET_GEM_VERSION="~> 3.0" - rvm: 2.0.0 env: PUPPET_GEM_VERSION="~> 3.0" notifications: email: false deploy: provider: puppetforge user: camptocamp password: secure: "qZtDFDSfjs0icw1eE+2gX9Fa68sgnumDrsk31IEKsUwz+raoINCDAk5omZcM8g08mkyr3hKR2wBj0d5cW4sy38IWf0FQ4f6hGjoLD9L2Kc/MWemn5gSlgTHZ/OCGHiA1ReVPmRMSzq7w31U/DidHnxQp9lhunG6gEx59DKyRvQY=" on: tags: true # all_branches is required to use tags all_branches: true # Only publish if our main Ruby target builds rvm: 1.9.3
Remove --split-obj, since we don't need it
# Use a minimal base image. language: c # Do not spam us with build status emails please. notifications: email: false addons: apt: sources: - fpcomplete-trusty packages: - stack # Haskell requires libgmp for big integers. - libgmp-dev cache: directories: - $HOME/.stack - $TRAVIS_BUILD_DIR/.stack-work install: # Install the compiler. Pass --no-terminal to tell Stack it is not running in # an interactive terminal, so it prints messages sequentially instead of # updating them. The latter is less spammy but Travis does not support these # interactive terminal capabilities. - stack setup -j2 --no-terminal script: # Build and test. Pass --split-objs to produce smaller binaries. (It is a kind # of hack to do dead code elimination by putting every function in a separate # object, so the linker will not link unused functions.) - stack build -j2 --no-terminal --split-objs - stack test -j2 --no-terminal --split-objs
# Use a minimal base image. language: c # Do not spam us with build status emails please. notifications: email: false addons: apt: sources: - fpcomplete-trusty packages: - stack # Haskell requires libgmp for big integers. - libgmp-dev cache: directories: - $HOME/.stack - $TRAVIS_BUILD_DIR/.stack-work install: # Install the compiler. Pass --no-terminal to tell Stack it is not running in # an interactive terminal, so it prints messages sequentially instead of # updating them. The latter is less spammy but Travis does not support these # interactive terminal capabilities. - stack setup -j2 --no-terminal script: # Build and test. - stack build -j2 --no-terminal - stack test -j2 --no-terminal
Disable ruby-head for now, minor testunit syntax change
language: ruby before_script: - bundle exec rake db:migrate rvm: - 1.9.2 - 1.9.3 - jruby-19mode - rbx-19mode - ruby-head notifications: recipients: - jeremy.olliver@gmail.com
language: ruby # before_script: # - bundle exec rake db:migrate rvm: - 1.9.2 - 1.9.3 - jruby-19mode - rbx-19mode # - ruby-head notifications: recipients: - jeremy.olliver@gmail.com
Use 'node' instead of the deprecated 'stable'
language: node_js sudo: false node_js: - stable addons: firefox: '42.0' cache: directories: - node_modules - "$HOME/.cache/bower" before_install: - "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild --update-binary && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi" before_script: - npm install web-component-tester bower polylint - bower install - polylint - export PATH=$PWD/node_modules/.bin:$PATH script: - xvfb-run wct
language: node_js sudo: false node_js: - node addons: firefox: '42.0' cache: directories: - node_modules - "$HOME/.cache/bower" before_install: - "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild --update-binary && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi" before_script: - npm install web-component-tester bower polylint - bower install - polylint - export PATH=$PWD/node_modules/.bin:$PATH script: - xvfb-run wct
Add PHP 7.2 to Travis
language: php php: - '7.0' - '7.1' install: composer install
language: php php: - '7.0' - '7.1' - '7.2' install: composer install
Add all supported PHP versions
language: php php: - 7.0 - 5.6 install: composer install script: phpunit --configuration tests/phpunit/phpunit.xml
language: php php: - 7.1 - 7.0 - 5.6 - 5.5 install: composer install script: ./bin/phpunit -c tests/phpunit/phpunit.xml
Add coverage reports to Travis-CI config.
language: go
language: go before_install: - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - go get code.google.com/p/go.tools/cmd/cover script: - $HOME/gopath/bin/goveralls -repotoken 3Tqtm74sm5Mm2s9JsNc7JYlrYlrIsk0pw
Update Node.js versions on Travis CI
language: node_js cache: yarn node_js: - node - "8" - "6" - "4" install: - YARN_IGNORE_ENGINES=true yarn
language: node_js cache: yarn node_js: - node - "9" - "8" - "6" - "4" install: - YARN_IGNORE_ENGINES=true yarn
Move install to before_install, fixes previous commit
language: node_js node_js: - "0.10" install: - "npm install -g coffee-script" - "phantomjs -v"
language: node_js node_js: - "0.10" before_install: - "npm install -g coffee-script" - "phantomjs -v"
Fix Travis on OS X
sudo: required dist: trusty language: c++ before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libtokyocabinet-dev libkyototycoon-dev kyototycoon libkyotocabinet-dev; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install tokyo-cabinet kyoto-cabinet kyoto-tycoon; fi script: - make && PATH=$PATH:`pwd`/bin make test os: - linux - osx env: - CGL_DEBUG=1 - CGL_DEBUG=ultra matrix: exclude: # The default OSX env doesn't have a version that supports # -fsanitize=address. - env: CGL_DEBUG=ultra os: osx
sudo: required dist: trusty language: c++ before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libtokyocabinet-dev libkyototycoon-dev kyototycoon libkyotocabinet-dev; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then rvm install ruby-2.3.3; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then rvm use 2.3.3; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install tokyo-cabinet kyoto-cabinet kyoto-tycoon; fi script: - make && PATH=$PATH:`pwd`/bin make test os: - linux - osx env: - CGL_DEBUG=1 - CGL_DEBUG=ultra matrix: exclude: # The default OSX env doesn't have a version that supports # -fsanitize=address. - env: CGL_DEBUG=ultra os: osx
Update comment, trigger new build
language: node_js sudo: false node_js: - "0.12" env: matrix: # Support the latest 0.x, 1.0.x and 1.1.x # GRUNT_LAXAR_VERSION=^0.8.0 LAXAR_VERSION=LaxarJS/laxar#^0.26.0 - GRUNT_LAXAR_VERSION=~1.0.0-0 LAXAR_VERSION=~1.0.0 - GRUNT_LAXAR_VERSION=~1.1.0-0 LAXAR_VERSION=~1.1.0 before_install: - echo "{}" > "package.json" - export PATH="$PATH:$(npm bin)" install: - npm install "codecov.io" "grunt-laxar@${GRUNT_LAXAR_VERSION}" - cp node_modules/grunt-laxar/widgets/package.json package.json - npm install - bower install "laxar#${LAXAR_VERSION}" after_success: - cat lcov.info | codecov notifications: irc: channels: "chat.freenode.net#laxarjs" template: "%{repository_slug} (%{commit}) [%{branch}]: %{message}"
language: node_js sudo: false node_js: - "0.12" env: matrix: # Support the latest 1.0.x and 1.1.x versions # GRUNT_LAXAR_VERSION=^0.8.0 LAXAR_VERSION=LaxarJS/laxar#^0.26.0 - GRUNT_LAXAR_VERSION=~1.0.0-0 LAXAR_VERSION=~1.0.0 - GRUNT_LAXAR_VERSION=~1.1.0-0 LAXAR_VERSION=~1.1.0 before_install: - echo "{}" > "package.json" - export PATH="$PATH:$(npm bin)" install: - npm install "codecov.io" "grunt-laxar@${GRUNT_LAXAR_VERSION}" - cp node_modules/grunt-laxar/widgets/package.json package.json - npm install - bower install "laxar#${LAXAR_VERSION}" after_success: - cat lcov.info | codecov notifications: irc: channels: "chat.freenode.net#laxarjs" template: "%{repository_slug} (%{commit}) [%{branch}]: %{message}"
Test on Node 0.8 in Travis CI.
language: "node_js" node_js: - 0.4 - 0.6
language: "node_js" node_js: - 0.4 - 0.6 - 0.8
Build both with java 7 and 8 on Travis
language: java sudo: false jdk: - oraclejdk7 cache: directories: - '$HOME/.m2/repository' services: - postgresql addons: postgresql: '9.1' before_script: - psql -U postgres -c 'create database datability;'
language: java sudo: false jdk: - oraclejdk7 - oraclejdk8 cache: directories: - '$HOME/.m2/repository' services: - postgresql addons: postgresql: '9.1' before_script: - psql -U postgres -c 'create database datability;'
Drop PHP 7.4 in workflow.
name: PHP Composer on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build-test: strategy: fail-fast: true matrix: operating-system: [ubuntu-latest] php: ['7.4', '8.0', '8.1'] name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} runs-on: ${{ matrix.operating-system }} steps: - uses: actions/checkout@v2 - uses: php-actions/composer@master - name: PHPUnit Tests uses: php-actions/phpunit@v1 with: bootstrap: vendor/autoload.php configuration: phpunit.xml args: --coverage-text - name: Check PHP Version run: php -v
name: PHP Composer on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build-test: strategy: fail-fast: true matrix: operating-system: [ubuntu-latest] php: ['8.0', '8.1'] name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} runs-on: ${{ matrix.operating-system }} steps: - uses: actions/checkout@v2 - uses: php-actions/composer@master - name: PHPUnit Tests uses: php-actions/phpunit@v1 with: bootstrap: vendor/autoload.php configuration: phpunit.xml args: --coverage-text - name: Check PHP Version run: php -v