aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorpaulrbr-fl <43074087+paulrbr-fl@users.noreply.github.com>2020-10-12 11:28:05 +0200
committerGitHub <noreply@github.com>2020-10-12 11:28:05 +0200
commitda8563a557eaa7be2b2b42424bc86ee58550ffc1 (patch)
treed85822eb6821f86815014e14528668850cc67370
parent258e0097c2bd26bd07887c9a27dc7d0548a03419 (diff)
parentce6889c6f90ba5bc4843afb1f4e321866b324ff6 (diff)
downloadansible-kong-app-da8563a557eaa7be2b2b42424bc86ee58550ffc1.tar.gz
ansible-kong-app-da8563a557eaa7be2b2b42424bc86ee58550ffc1.tar.zst
ansible-kong-app-da8563a557eaa7be2b2b42424bc86ee58550ffc1.zip
Merge pull request #21 from paulrbr-fl/add-slack-token
travis: Use encrypted token for slack notifications
-rw-r--r--.travis.yml27
-rw-r--r--custom.nix (renamed from dhall-1.34.0.nix)6
-rw-r--r--default.nix11
-rwxr-xr-xtests/kong.py2
4 files changed, 31 insertions, 15 deletions
diff --git a/.travis.yml b/.travis.yml
index 99c10c5..6c36f0a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,20 +1,17 @@
1--- 1---
2language: nix 2language: nix
3nix: 2.3.1 3nix: 2.3.4
4env:
5 - CUSTOM_NIX_PATH=nixpkgs=channel:nixos-20.09
4 6
5 7# Travis nix integration will install nix AFTER the environment variables are set
6# Use the new container infrastructure 8# and the nix installer will overide NIX_PATH variable thus we need to re-export it
7sudo: false 9before_install:
10 - export NIX_PATH="$CUSTOM_NIX_PATH"
8 11
9install: 12install:
10 # Update nix channels 13 # Install dependencies
11 - nix-channel --add https://nixos.org/channels/nixpkgs-19.09-darwin nixpkgs 14 - nix-env -i -f ./default.nix
12 - nix-channel --remove nixpkgs-unstable
13 - nix-channel --update
14
15 # Install ansible
16 - nix-env -i python3 ansible ansible-lint
17 - nix-env -if ./dhall-1.34.0.nix
18 15
19 # Check ansible version 16 # Check ansible version
20 - ansible --version 17 - ansible --version
@@ -35,3 +32,9 @@ script:
35 32
36notifications: 33notifications:
37 webhooks: https://galaxy.ansible.com/api/v1/notifications/ 34 webhooks: https://galaxy.ansible.com/api/v1/notifications/
35 slack:
36 rooms:
37 - 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=
38 on_success: change # default: always
39 on_failure: always # default: always
40 on_pull_requests: false
diff --git a/dhall-1.34.0.nix b/custom.nix
index a70d201..f8fe7ce 100644
--- a/dhall-1.34.0.nix
+++ b/custom.nix
@@ -1,7 +1,7 @@
1{ pkgs ? import <nixpkgs> {} }: with pkgs; 1{ pkgs ? import <nixpkgs> {} }: with pkgs;
2 2
3let 3let
4 mkVersion = 4 mkDhallVersion =
5 version: sha256: 5 version: sha256:
6 stdenv.mkDerivation { 6 stdenv.mkDerivation {
7 name = "dhall-${version}"; 7 name = "dhall-${version}";
@@ -19,4 +19,6 @@ let
19 ''; 19 '';
20 }; 20 };
21in 21in
22 mkVersion "1.34.0" "0n64jkgbv7a3cmlv3gxpgc11p9b5w0k9nc0zm9am2pzmp6vm6b4n" 22{
23 dhall = mkDhallVersion "1.34.0" "0n64jkgbv7a3cmlv3gxpgc11p9b5w0k9nc0zm9am2pzmp6vm6b4n";
24}
diff --git a/default.nix b/default.nix
new file mode 100644
index 0000000..6c1756e
--- /dev/null
+++ b/default.nix
@@ -0,0 +1,11 @@
1{ pkgs ? import <nixpkgs> {} }: with pkgs;
2
3 let
4 custom = callPackage ./custom.nix {};
5 in
6{
7 inherit ansible_2_8;
8 inherit (custom)dhall;
9 inherit (python38Packages)
10 ansible-lint;
11}
diff --git a/tests/kong.py b/tests/kong.py
index 32bafb2..4e2df28 100755
--- a/tests/kong.py
+++ b/tests/kong.py
@@ -1,4 +1,4 @@
1#!/usr/bin/env python 1#!/usr/bin/env python3
2 2
3from http.server import HTTPServer, CGIHTTPRequestHandler 3from http.server import HTTPServer, CGIHTTPRequestHandler
4 4