Sha256: 132aee0a40897009fdbd7c36398f872124734ec5c35001b1a268b42b7787b0ad

Contents?: true

Size: 780 Bytes

Versions: 7

Compression:

Stored size: 780 Bytes

Contents

---
language: python
python: "2.7"

env:
  - POSTGRESQL_VERSION=9.3
  - POSTGRESQL_VERSION=9.4

before_install:
  - sudo apt-get update -qq
  - sudo apt-get install -qq python-apt python-pycurl locales
  - echo 'en_US.UTF-8 UTF-8' | sudo tee /var/lib/locales/supported.d/local
install:
  - pip install ansible==1.8.4
script:
  - echo localhost > inventory
  - ansible-playbook -i inventory test.yml --syntax-check
  - ansible-playbook -i inventory test.yml --connection=local --sudo -e "postgresql_version=$POSTGRESQL_VERSION"
  - >
    ansible-playbook -i inventory test.yml --connection=local --sudo -e "postgresql_version=$POSTGRESQL_VERSION"
    | grep -q 'changed=0.*failed=0'
    && (echo 'Idempotence test: pass' && exit 0)
    || (echo 'Idempotence test: fail' && exit 1)

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
taperole-1.3.6 vendor/ANXS.postgresql/.travis.yml
taperole-1.3.5 vendor/ANXS.postgresql/.travis.yml
taperole-1.3.4 vendor/ANXS.postgresql/.travis.yml
taperole-1.3.3 vendor/ANXS.postgresql/.travis.yml
taperole-1.3.2 vendor/ANXS.postgresql/.travis.yml
taperole-1.3.1 vendor/ANXS.postgresql/.travis.yml
taperole-1.3.0 vendor/ANXS.postgresql/.travis.yml