]> git.immae.eu Git - github/fretlink/ansible-kong-app.git/blame - .travis.yml
travis: Use encrypted token for slack notifications
[github/fretlink/ansible-kong-app.git] / .travis.yml
CommitLineData
d213edd1 1---
6fc5ba3e 2language: nix
c3564f47
PB
3nix: 2.3.1
4
d213edd1
GD
5
6# Use the new container infrastructure
7sudo: false
8
d213edd1 9install:
c3564f47
PB
10 # Update nix channels
11 - nix-channel --add https://nixos.org/channels/nixpkgs-19.09-darwin nixpkgs
12 - nix-channel --remove nixpkgs-unstable
13 - nix-channel --update
14
d213edd1 15 # Install ansible
a3c4b3d5 16 - nix-env -i python3 ansible ansible-lint
d8c5e33f 17 - nix-env -if ./dhall-1.34.0.nix
d213edd1
GD
18
19 # Check ansible version
20 - ansible --version
c3564f47 21 - ansible-lint --version
d213edd1
GD
22
23 # Create ansible.cfg with correct roles_path
24 - printf '[defaults]\nroles_path=../' >ansible.cfg
a3c4b3d5
PB
25 # Basic webserver to fake a Kong
26 - |
27 ./tests/kong.py&
d213edd1
GD
28
29script:
30 # Basic role syntax check
31 - ansible-playbook tests/test.yml -i tests/inventory --syntax-check
32 - ansible-lint .
a3c4b3d5 33 - ansible-playbook tests/test.yml -i tests/inventory -D
77e27a11 34 - scripts/dhall_check.sh
d213edd1
GD
35
36notifications:
37 webhooks: https://galaxy.ansible.com/api/v1/notifications/
c8f71059
PB
38 slack:
39 rooms:
40 - secure: cNAlklFQhu3CRi4Vp+U1veIbSvpAvqVNa0I9knRe8r5Xz6jczuxtKYVnP5m8q1iY38zx3ekjFn+2VdFQgr0twqUYGFMr+YbOWfLdcWxmA6BI29/6kdpoX0uihMEOl5uAyVm7hOiU/DfPxsbQMJeEFY4r/eYM+wErAtFC0c8bWt4oskjJJQPmr7DB/fOaefKkGoVjKElO6goVRWy2fHkGdldvV5EcQPdNW82ZY0w27e7fWm9Yv0D/Jr7Qu9i00UCdT3LyJ05cKVdaxxQOx0xjh+h0V4lN/CRfEBk8LQW3Ror+vnFgQHFkxSzY/MOASBvxZPMj/PFPCP1AwYlxz46dDHnaN2+tNc4Pdj/2qqZPjDW03KqjLRNY3fyfvjX2Yz+2da2hiF7WZReRcFZp0KGxLGTrpFFQ+JOEbYDvK0p4ZswNkDwnI9iYJoI7wntL614y4wIiCRxDR1/aTOGLr+M05WSdBhocL0x8IGVZNKa2yRpcgwlM35QMYSd7QFQmgB6MCIlqHxa1zGg124iepjL1SXp49SwQBI9k1mO4N7z469ZVyEdqydBMMQiiay2mP+fEBAM9gOboV4rMkCSQoMMED+MyiwGRioFor34/t7MQFM18ZoUemQAYRK7iAyCO7JnQOkilAVi+ZIfpiUrrBhBpz5JopeaFEIp4yAuJRyvWD0c=
41 on_success: change # default: always
42 on_failure: always # default: always
43 on_pull_requests: false