2f44b40d68
* OEL7: Fix CentOS7 Extras for OEL7 * Molecule: add logs collection for jobs
12 lines
186 B
Bash
Executable file
12 lines
186 B
Bash
Executable file
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
export LC_ALL=C.UTF-8
|
|
export LANG=C.UTF-8
|
|
|
|
for d in $(find roles -name molecule -type d)
|
|
do
|
|
pushd $(dirname $d)
|
|
molecule test --all
|
|
popd
|
|
done
|