From: Martin Pitt Date: Thu, 29 Sep 2022 11:19:03 +0000 (+0200) Subject: Add ci-clear-npm-cache X-Git-Url: https://piware.de/gitweb/?p=bin.git;a=commitdiff_plain;h=b7614d3eb98e0a9421f2b5bfc8fa499b35792b34;hp=1e02b574d361c9bfa8282c1b98e21d68ed1aae4e Add ci-clear-npm-cache --- diff --git a/ci-clear-npm-cache b/ci-clear-npm-cache new file mode 100755 index 0000000..e73e4d9 --- /dev/null +++ b/ci-clear-npm-cache @@ -0,0 +1,6 @@ +#!/bin/sh +set -eux +cd ~/upstream/cockpituous/ansible +for cloud in openstack_tasks e2e; do + ansible -f15 -i inventory -m shell -a 'podman exec cockpit-tasks-1 rm -rf /work/.npm/_cacache/' $cloud +done