Skip to content

Commit 7a36b44

Browse files
committed
ci: skip compiling the simple_sin_tones.v example again, but only in the tests-sanitize-memory-clang job
1 parent 1b5af1f commit 7a36b44

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed

.github/workflows/bootstrapping_ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Bootstrapping CI
22

33
on:
4+
workflow_dispatch:
45
push:
56
paths-ignore:
67
- '**.yml'

.github/workflows/linux_ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: CI Linux
22

33
on:
4+
workflow_dispatch:
45
push:
56
paths-ignore:
67
- '**.md'

.github/workflows/sanitized_ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ name: Sanitized CI
1212
## V modules.
1313

1414
on:
15+
workflow_dispatch:
1516
push:
1617
paths:
1718
- '!**'

cmd/tools/modules/testing/common.v

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

0 commit comments

Comments
 (0)