Sha256: 0dd390b09dfa731dadf9267ac2df4cd2b79f81b2828376bc4a59521d139f80d4
Contents?: true
Size: 1.3 KB
Versions: 11
Compression:
Stored size: 1.3 KB
Contents
--- language: python python: "2.7" env: - ROLE_OPTIONS="postgresql_version=9.1 postgresql_shared_buffers=32MB" - ROLE_OPTIONS="postgresql_version=9.2 postgresql_shared_buffers=32MB" - ROLE_OPTIONS="postgresql_version=9.3 postgresql_shared_buffers=32MB" - ROLE_OPTIONS="postgresql_version=9.4 postgresql_shared_buffers=32MB" - ROLE_OPTIONS="postgresql_version=9.5 postgresql_shared_buffers=32MB" before_install: # Remove the PostgreSQL installed by Travis - sudo apt-get purge pgdg-keyring '^postgresql.*' -y - sudo apt-get autoremove - sudo rm -rf /etc/postgresql - sudo rm -rf /var/lib/postgresql - sudo rm /etc/apt/sources.list.d/pgdg-source.list # Install some dependencies - 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 # Syntax check - ansible-playbook -i inventory tests/playbook.yml --syntax-check # Play test - ansible-playbook -i inventory tests/playbook.yml --connection=local --sudo -e "$ROLE_OPTIONS" # Idempotence test - ansible-playbook -i inventory tests/playbook.yml --connection=local --sudo -e "$ROLE_OPTIONS" > idempotence_out - ./tests/idempotence_check.sh idempotence_out
Version data entries
11 entries across 11 versions & 1 rubygems