mirror of
https://github.com/linux-system-roles/network.git
synced 2026-07-22 18:46:45 +00:00
17 lines
422 B
Bash
Executable file
17 lines
422 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Run integration test for this repository. It fetches the test harness from
|
|
# docker.io, which is built from
|
|
#
|
|
# http://github.com/linux-system-roles/test-harness
|
|
|
|
set -xeuf -o pipefail
|
|
|
|
CACHEDIR=${CACHEDIR:-$PWD/.image-cache}
|
|
mkdir -p $CACHEDIR
|
|
|
|
docker run --privileged \
|
|
--rm \
|
|
--volume $PWD:/role \
|
|
--volume $CACHEDIR:/cache \
|
|
cockpit/linux-system-roles-test
|