From f26ee1b76d8963a567dacffeb21d3c1988849647 Mon Sep 17 00:00:00 2001 From: Anton Bachin Date: Tue, 15 Oct 2024 11:17:18 +0300 Subject: [PATCH] CI: make sure build isn't broken by new examples w-dream-html depends on external package dream-html, which, in turn, depends on package dream, which makes it awkward to install dream-html inside Dream's CI. So skip this example. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b2330298..a6a2e55b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -55,7 +55,7 @@ jobs: run: | set -e set -x - EXAMPLES=$(find example -maxdepth 1 -type d -not -name "w-mirage*" -not -name "r-tyxml" | grep -v "^example/0" | grep -v "^example$" | sort) + EXAMPLES=$(find example -maxdepth 1 -type d -not -name "w-mirage*" -not -name "r-tyxml" -not -name "w-dream-html" | grep -v "^example/0" | grep -v "^example$" | sort) shopt -s nullglob for EXAMPLE in $EXAMPLES do