diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-21 20:23:16 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-21 20:23:16 +0200 |
commit | a87914970bb985176ad09c422f0942908492de0f (patch) | |
tree | 5d0750cba12a80970a76e782667f57bf541d8398 /test | |
parent | t/d: move docker-compose.yml to docker/ (diff) | |
download | config-links-a87914970bb985176ad09c422f0942908492de0f.tar.gz config-links-a87914970bb985176ad09c422f0942908492de0f.zip |
t/l: fail unless $CI is set
Diffstat (limited to 'test')
-rw-r--r-- | test/docker/docker-compose.yml | 2 | ||||
-rwxr-xr-x | test/linux-home/test.sh | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/test/docker/docker-compose.yml b/test/docker/docker-compose.yml index 552fadb..0689ad3 100644 --- a/test/docker/docker-compose.yml +++ b/test/docker/docker-compose.yml @@ -6,3 +6,5 @@ services: dockerfile: test/docker/Dockerfile args: DISTRO: "${DISTRO:-xenial}" + environment: + CI: y diff --git a/test/linux-home/test.sh b/test/linux-home/test.sh index f4b1028..edb2d5b 100755 --- a/test/linux-home/test.sh +++ b/test/linux-home/test.sh @@ -83,8 +83,12 @@ show_env() { } main() { - show_env + if [ -z "${CI:+x}" ]; then + echo "$script_name: please don't run it outside of CI runs" >&2 + exit 1 + fi + show_env test_my_dotfiles_work } |