diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-02 18:23:17 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-02-02 18:25:34 +0100 |
commit | 7cca99fd7ad119c27665488e28ceb86800afd574 (patch) | |
tree | 64f573301933e0a4ad279c2710adb51d82a22534 /test | |
parent | accomodate older bash-es (diff) | |
download | config-links-7cca99fd7ad119c27665488e28ceb86800afd574.tar.gz config-links-7cca99fd7ad119c27665488e28ceb86800afd574.zip |
add Docker tests for older bash-es
Diffstat (limited to 'test')
-rw-r--r-- | test/docker-compose.yml | 7 | ||||
-rwxr-xr-x | test/test.sh | 3 |
2 files changed, 9 insertions, 1 deletions
diff --git a/test/docker-compose.yml b/test/docker-compose.yml new file mode 100644 index 0000000..2d7f094 --- /dev/null +++ b/test/docker-compose.yml @@ -0,0 +1,7 @@ +version: '3' +services: + test: + image: "ubuntu:${DISTRO:-xenial}" + volumes: + - ../:/src + command: /src/test/test.sh diff --git a/test/test.sh b/test/test.sh index 05c5d65..e28f112 100755 --- a/test/test.sh +++ b/test/test.sh @@ -1,7 +1,8 @@ #!/usr/bin/env bash set -o errexit -o nounset -o pipefail -shopt -s inherit_errexit lastpipe +shopt -s inherit_errexit 2> /dev/null || true +shopt -s lastpipe script_dir="$( dirname -- "${BASH_SOURCE[0]}" )" script_dir="$( cd -- "$script_dir" && pwd )" |