diff options
author | Frédéric Menou <frederic.menou@fretlink.com> | 2018-07-09 12:16:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-09 12:16:01 +0200 |
commit | 6bbc5a167fb43110a5b16746c112298f392be2b8 (patch) | |
tree | 877f23368f49ee94a780a2ff155a045bb96e07c5 /.travis.yml | |
parent | 6b4dbb21c7c1e081f8c9d8f84cd9e3153468315a (diff) | |
parent | 6fc5ba3e26c7dd416eb7bd13009ae6baaf72fee5 (diff) | |
download | ansible-kong-app-6bbc5a167fb43110a5b16746c112298f392be2b8.tar.gz ansible-kong-app-6bbc5a167fb43110a5b16746c112298f392be2b8.tar.zst ansible-kong-app-6bbc5a167fb43110a5b16746c112298f392be2b8.zip |
Merge pull request #6 from fmenou/nix
Use Nix for build
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml index 812d0fe..de15287 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -1,20 +1,12 @@ | |||
1 | --- | 1 | --- |
2 | language: python | 2 | language: nix |
3 | python: "2.7" | ||
4 | 3 | ||
5 | # Use the new container infrastructure | 4 | # Use the new container infrastructure |
6 | sudo: false | 5 | sudo: false |
7 | 6 | ||
8 | # Install ansible | ||
9 | addons: | ||
10 | apt: | ||
11 | packages: | ||
12 | - python-pip | ||
13 | |||
14 | install: | 7 | install: |
15 | # Install ansible | 8 | # Install ansible |
16 | - pip install ansible | 9 | - nix-env -i python2.7-ansible python2.7-ansible-lint |
17 | - pip install ansible-lint | ||
18 | 10 | ||
19 | # Check ansible version | 11 | # Check ansible version |
20 | - ansible --version | 12 | - ansible --version |