[latex3-commits] [latex3/pdfresources] develop: exclude dvips tests when not on windows (d6c427d)
github at latex-project.org
github at latex-project.org
Tue Nov 7 11:24:36 CET 2023
Repository : https://github.com/latex3/pdfresources
On branch : develop
Link : https://github.com/latex3/pdfresources/commit/d6c427d718a5f1862ab97644bc6031bef7c2ede2
>---------------------------------------------------------------
commit d6c427d718a5f1862ab97644bc6031bef7c2ede2
Author: Ulrike Fischer <fischer at troubleshooting-tex.de>
Date: Tue Nov 7 11:24:36 2023 +0100
exclude dvips tests when not on windows
>---------------------------------------------------------------
d6c427d718a5f1862ab97644bc6031bef7c2ede2
build.lua | 26 ++++++++++++++++++--------
1 file changed, 18 insertions(+), 8 deletions(-)
diff --git a/build.lua b/build.lua
index 70e05ee..1f89eb0 100644
--- a/build.lua
+++ b/build.lua
@@ -60,14 +60,24 @@ checkruns = 4
checkengines = {"pdftex","luatex","xetex"}
-
-checkconfigs = {"build", -- luatex, pdftex, xetex
- "config-noxetex", --pdftex + luatex (std)
- "config-luatex", -- luatex
- "config-dvips", -- latex + dvips
- "config-pdftex", -- pdftex
- "config-xetex" -- xetex
- }
+if os.type == "windows" then
+ checkconfigs = {"build", -- luatex, pdftex, xetex
+ "config-noxetex", --pdftex + luatex (std)
+ "config-luatex", -- luatex
+ "config-dvips", -- latex + dvips
+ "config-pdftex", -- pdftex
+ "config-xetex" -- xetex
+ }
+else
+-- exclude dvips tests if not on windows
+ checkconfigs = {"build", -- luatex, pdftex, xetex
+ "config-noxetex", --pdftex + luatex (std)
+ "config-luatex", -- luatex
+ -- "config-dvips", -- latex + dvips
+ "config-pdftex", -- pdftex
+ "config-xetex" -- xetex
+ }
+end
-- tagging
tagfiles = {
More information about the latex3-commits
mailing list.