ci: skip compiling the simple_sin_tones.v example again, but only in the tests-sanitize-memory-clang job

This commit is contained in:
Delyan Angelov 2024-05-22 08:45:50 +03:00
parent 1b5af1f989
commit 7a36b44c6a
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED
4 changed files with 5 additions and 0 deletions

View file

@ -1,6 +1,7 @@
name: Bootstrapping CI name: Bootstrapping CI
on: on:
workflow_dispatch:
push: push:
paths-ignore: paths-ignore:
- '**.yml' - '**.yml'

View file

@ -1,6 +1,7 @@
name: CI Linux name: CI Linux
on: on:
workflow_dispatch:
push: push:
paths-ignore: paths-ignore:
- '**.md' - '**.md'

View file

@ -12,6 +12,7 @@ name: Sanitized CI
## V modules. ## V modules.
on: on:
workflow_dispatch:
push: push:
paths: paths:
- '!**' - '!**'

View file

@ -280,6 +280,8 @@ pub fn new_test_session(_vargs string, will_compile bool) TestSession {
} }
if testing.github_job == 'tests-sanitize-memory-clang' { if testing.github_job == 'tests-sanitize-memory-clang' {
skip_files << 'vlib/net/openssl/openssl_compiles_test.c.v' skip_files << 'vlib/net/openssl/openssl_compiles_test.c.v'
// Fails compilation with: `/usr/bin/ld: /lib/x86_64-linux-gnu/libpthread.so.0: error adding symbols: DSO missing from command line`
skip_files << 'examples/sokol/sounds/simple_sin_tones.v'
} }
if testing.github_job != 'misc-tooling' { if testing.github_job != 'misc-tooling' {
// These examples need .h files that are produced from the supplied .glsl files, // These examples need .h files that are produced from the supplied .glsl files,