Message ID | 20220715073121.8979-1-pvorel@suse.cz (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [1/1] ci/alpine.sh: Install bash | expand |
On Fri, 2022-07-15 at 09:31 +0200, Petr Vorel wrote: > bash is a dependency for tests, not being installed by default on > containers. > > This fixes: > ../test-driver: line 112: ./ima_hash.test: not found > ../test-driver: line 112: ./sign_verify.test: not found > ../test-driver: line 112: ./boot_aggregate.test: not found > > Signed-off-by: Petr Vorel <pvorel@suse.cz> Thanks, Petr!
diff --git a/ci/alpine.sh b/ci/alpine.sh index 63d7954..0e4ba0d 100755 --- a/ci/alpine.sh +++ b/ci/alpine.sh @@ -26,6 +26,7 @@ apk add \ attr-dev \ autoconf \ automake \ + bash \ diffutils \ docbook-xml \ docbook-xsl \
bash is a dependency for tests, not being installed by default on containers. This fixes: ../test-driver: line 112: ./ima_hash.test: not found ../test-driver: line 112: ./sign_verify.test: not found ../test-driver: line 112: ./boot_aggregate.test: not found Signed-off-by: Petr Vorel <pvorel@suse.cz> --- ci/alpine.sh | 1 + 1 file changed, 1 insertion(+)