diff options
-rw-r--r-- | .ansible-lint | 3 | ||||
-rw-r--r-- | default.nix | 8 | ||||
-rwxr-xr-x | scripts/ci/provision.sh | 12 |
3 files changed, 6 insertions, 17 deletions
diff --git a/.ansible-lint b/.ansible-lint deleted file mode 100644 index a31e6d4..0000000 --- a/.ansible-lint +++ /dev/null @@ -1,3 +0,0 @@ -skip_list: - - '403' -use_default_rules: true
\ No newline at end of file diff --git a/default.nix b/default.nix index 20d83e1..18374eb 100644 --- a/default.nix +++ b/default.nix @@ -32,13 +32,6 @@ in rec { touch $out ''; }); - ansibleLint = utils.baseTask.overrideAttrs (baseAttrs: { - name = "${baseAttrs.name}-ansible-lint"; - buildInputs = baseAttrs.buildInputs ++ [ pkgs.ansible-lint ]; - buildPhase = '' - ansible-lint provision.yaml - ''; - }); shellEnvironment = utils.baseTask.overrideAttrs (baseAttrs: { name = "${baseAttrs.name}-shell-inputs"; buildInputs = with pkgs; [ @@ -60,7 +53,6 @@ in rec { utils.formatNix subtasks.formatTerraform subtasks.dockerComposeLint - subtasks.ansibleLint subtasks.shellEnvironment ]; # Used in .build.yml to run Bash scripts diff --git a/scripts/ci/provision.sh b/scripts/ci/provision.sh index 1000a55..1fae87d 100755 --- a/scripts/ci/provision.sh +++ b/scripts/ci/provision.sh @@ -50,9 +50,9 @@ echo "Running the Ansible playbook..." ansible-playbook provision.yaml echo "Done." -echo "Locking git-crypt repositories back..." -git crypt lock -pushd ../vps-state/ -git crypt lock -popd -echo "Done." +# echo "Locking git-crypt repositories back..." +# git crypt lock +# pushd ../vps-state/ +# git crypt lock +# popd +# echo "Done." |