Skip to content
Snippets Groups Projects
Select Git revision
  • c6c349509905dfd034eb1648ebbce59da815dc3f
  • master default
  • host01
  • ns4
  • kodi
5 results

notify.shore.co.il.conf

Blame
  • .travis.yml 1.24 KiB
    ---
    language: python
    python: ["2.7", "3.4"]
    dist: trusty
    sudo: True
    group: beta
    services: [docker]
    env:
        - platform: openbsd60
          driver: vagrant
        - platform: openbsd59
          driver: vagrant
        - platform: xenial
          driver: vagrant
        - platform: trusty
          driver: vagrant
        - platform: jessie
          driver: vagrant
        - platform: wheezy
          driver: vagrant
        - driver: docker
          platform: all
    matrix:
        fast_finish: True
        allow_failures:
            - python: "3.4"
            - env: platform=openbsd59 driver=vagrant
            - env: platform=jessie driver=vagrant
            - env: platform=wheezy driver=vagrant
    cache:
      - pip
      - directories:
          - $HOME/.pre-commit
    
    install:
      - sudo apt-get update
      - sudo apt-get install -y linux-headers-$(uname -r) virtualbox
      - wget https://releases.hashicorp.com/vagrant/1.9.1/vagrant_1.9.1_x86_64.deb
      - sudo dpkg -i vagrant_1.9.1_x86_64.deb
      - pip install -r tests/requirements.txt | cat
      - ansible-galaxy install git+file://$(pwd),$(git rev-parse --abbrev-ref HEAD) -p .molecule/roles
      - molecule dependency
    
    script:
      - pre-commit run --all-files
      - molecule test --driver $driver --platform $platform
    
    notifications:
      webhooks: https://galaxy.ansible.com/api/v1/notifications/
      email: false