Sha256: 8f2a660262e8799855271dc64399c341c69c33eca9f5b51198521a9b0e44d5b0

Contents?: true

Size: 1.22 KB

Versions: 12

Compression:

Stored size: 1.22 KB

Contents

language: ruby

addons:
  apt:
    packages:
      # https://docs.travis-ci.com/user/docker/#installing-a-newer-docker-version
      - docker-ce

services:
- docker

# We expect RAILS_ENV to start off unset, then adjust its value as
# necessary.
before_script:
  - unset RAILS_ENV

cache:
  bundler: true

before_install:
  # see https://blog.travis-ci.com/docker-rate-limits 
  # and also https://www.docker.com/blog/what-you-need-to-know-about-upcoming-docker-hub-rate-limiting/
  # if we do not use authorized account, 
  # the pulls-per-IP quota is shared with other Travis users
  - >
    if [ ! -z "$DOCKERHUB_PASSWORD" ] && [ ! -z "$DOCKERHUB_USERNAME" ]; then
      echo "$DOCKERHUB_PASSWORD" | docker login -u "$DOCKERHUB_USERNAME" --password-stdin  ;
    fi

 
# GEM_ALTERNATIVE_NAME only needed for deployment 
jobs:
  include:
  - stage: test
    script:
    - mkdir tmp
    - GEM_ALTERNATIVE_NAME='' bundle exec rake test

    
before_deploy:
  - |
    nvm install --lts \
      && nvm use --lts \
      && npm i -g \
        semantic-release \
        @semantic-release/git \
        @semantic-release/changelog \
        semantic-release-rubygem

deploy:
  - provider: script
    script: ./release.sh
    on:
      branch: master

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
appmap-0.51.3 .travis.yml
appmap-0.51.2 .travis.yml
appmap-0.51.1 .travis.yml
appmap-0.51.0 .travis.yml
appmap-0.50.0 .travis.yml
appmap-0.49.0 .travis.yml
appmap-0.48.2 .travis.yml
appmap-0.48.1 .travis.yml
appmap-0.48.0 .travis.yml
appmap-0.47.1 .travis.yml
appmap-0.47.0 .travis.yml
appmap-0.46.0 .travis.yml