From c94e1e05f60d4c5db7436f225c9eeddab35a7e35 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sun, 19 Jan 2025 13:01:06 +0200 Subject: [PATCH] ci: fix failure of the docker-ubuntu-musl job (keep vlib/vweb/vweb_app_test.v in the skip_files) --- cmd/tools/modules/testing/common.v | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/tools/modules/testing/common.v b/cmd/tools/modules/testing/common.v index 302dcb4c4a..b0bddcacf0 100644 --- a/cmd/tools/modules/testing/common.v +++ b/cmd/tools/modules/testing/common.v @@ -274,7 +274,8 @@ pub fn new_test_session(_vargs string, will_compile bool) TestSession { if !os.exists('/usr/local/include/wkhtmltox/pdf.h') { skip_files << 'examples/c_interop_wkhtmltopdf.v' // needs installation of wkhtmltopdf from https://github.com/wkhtmltopdf/packaging/releases } - skip_files << 'vlib/veb/tests/veb_app_test.v' // imports the `sqlite` module, which in turn includes sqlite3.h + skip_files << 'vlib/vweb/vweb_app_test.v' // imports the `sqlite` module, which in turn includes `sqlite3.h` + skip_files << 'vlib/veb/tests/veb_app_test.v' // imports the `sqlite` module, which in turn includes `sqlite3.h` } $if !macos { skip_files << 'examples/macos_tray/tray.v'