ci: fix the ubuntu-docker-musl job by skipping veb_app_test.v

This commit is contained in:
Delyan Angelov 2024-04-25 06:36:14 +03:00
parent 28cabf4736
commit fe9be9632d
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED
2 changed files with 2 additions and 0 deletions

View file

@ -268,6 +268,7 @@ pub fn new_test_session(_vargs string, will_compile bool) TestSession {
skip_files << 'examples/c_interop_wkhtmltopdf.v' // needs installation of wkhtmltopdf from https://github.com/wkhtmltopdf/packaging/releases
skip_files << 'vlib/vweb/vweb_app_test.v' // imports the `sqlite` module, which in turn includes sqlite3.h
skip_files << 'vlib/x/vweb/tests/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'

View file

@ -280,6 +280,7 @@ const skip_on_ubuntu_musl = [
'vlib/x/sessions/tests/db_store_test.v',
'vlib/x/vweb/tests/vweb_test.v',
'vlib/x/vweb/tests/vweb_app_test.v',
'vlib/veb/tests/veb_app_test.v',
]
const skip_on_linux = [
'do_not_remove',