From: Paul Bonaud Date: Mon, 5 Oct 2020 16:48:57 +0000 (+0200) Subject: travis: use recent nixpkgs channel (20.09) to install dependencies X-Git-Tag: v0.33~3^2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=ce6889c6f90ba5bc4843afb1f4e321866b324ff6;p=github%2Ffretlink%2Fansible-kong-app.git travis: use recent nixpkgs channel (20.09) to install dependencies --- diff --git a/.travis.yml b/.travis.yml index 6c68012..6c36f0a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,20 +1,17 @@ --- language: nix -nix: 2.3.1 +nix: 2.3.4 +env: + - CUSTOM_NIX_PATH=nixpkgs=channel:nixos-20.09 - -# Use the new container infrastructure -sudo: false +# Travis nix integration will install nix AFTER the environment variables are set +# and the nix installer will overide NIX_PATH variable thus we need to re-export it +before_install: + - export NIX_PATH="$CUSTOM_NIX_PATH" install: - # Update nix channels - - nix-channel --add https://nixos.org/channels/nixpkgs-19.09-darwin nixpkgs - - nix-channel --remove nixpkgs-unstable - - nix-channel --update - - # Install ansible - - nix-env -i python3 ansible ansible-lint - - nix-env -if ./dhall-1.34.0.nix + # Install dependencies + - nix-env -i -f ./default.nix # Check ansible version - ansible --version diff --git a/dhall-1.34.0.nix b/custom.nix similarity index 82% rename from dhall-1.34.0.nix rename to custom.nix index a70d201..f8fe7ce 100644 --- a/dhall-1.34.0.nix +++ b/custom.nix @@ -1,7 +1,7 @@ { pkgs ? import {} }: with pkgs; let - mkVersion = + mkDhallVersion = version: sha256: stdenv.mkDerivation { name = "dhall-${version}"; @@ -19,4 +19,6 @@ let ''; }; in - mkVersion "1.34.0" "0n64jkgbv7a3cmlv3gxpgc11p9b5w0k9nc0zm9am2pzmp6vm6b4n" +{ + dhall = mkDhallVersion "1.34.0" "0n64jkgbv7a3cmlv3gxpgc11p9b5w0k9nc0zm9am2pzmp6vm6b4n"; +} diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..6c1756e --- /dev/null +++ b/default.nix @@ -0,0 +1,11 @@ +{ pkgs ? import {} }: with pkgs; + + let + custom = callPackage ./custom.nix {}; + in +{ + inherit ansible_2_8; + inherit (custom)dhall; + inherit (python38Packages) + ansible-lint; +} 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 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 from http.server import HTTPServer, CGIHTTPRequestHandler