diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-21 20:40:16 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-21 20:40:16 +0200 |
commit | ddd150b7d16d289ed0d0ca8dbbcaa335761ad4f2 (patch) | |
tree | 7de243930d1359dca8efc32d317441f677f212ac /Makefile | |
parent | debian: 2.0.3-5 (diff) | |
parent | move comments from links-update to README (diff) | |
download | config-links-ddd150b7d16d289ed0d0ca8dbbcaa335761ad4f2.tar.gz config-links-ddd150b7d16d289ed0d0ca8dbbcaa335761ad4f2.zip |
Merge tag 'v2.0.4' into debian
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -34,11 +34,15 @@ test/all: test/local test/docker .PHONY: test/local test/local: - ./test/unit/test.sh + ./test/local/test.sh + +.PHONY: test/linux-home +test/linux-home: + ./test/linux-home/test.sh test/docker/%: DO - cd test && \ - DISTRO='$*' docker-compose build --pull && \ + cd test/docker && \ + DISTRO='$*' docker-compose build --force-rm --progress plain --pull -q && \ docker-compose run --rm test && \ docker-compose down -v |