mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
ci: skip compiling the simple_sin_tones.v example again, but only in the tests-sanitize-memory-clang job
This commit is contained in:
parent
1b5af1f989
commit
7a36b44c6a
4 changed files with 5 additions and 0 deletions
1
.github/workflows/bootstrapping_ci.yml
vendored
1
.github/workflows/bootstrapping_ci.yml
vendored
|
@ -1,6 +1,7 @@
|
||||||
name: Bootstrapping CI
|
name: Bootstrapping CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- '**.yml'
|
- '**.yml'
|
||||||
|
|
1
.github/workflows/linux_ci.yml
vendored
1
.github/workflows/linux_ci.yml
vendored
|
@ -1,6 +1,7 @@
|
||||||
name: CI Linux
|
name: CI Linux
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- '**.md'
|
- '**.md'
|
||||||
|
|
1
.github/workflows/sanitized_ci.yml
vendored
1
.github/workflows/sanitized_ci.yml
vendored
|
@ -12,6 +12,7 @@ name: Sanitized CI
|
||||||
## V modules.
|
## V modules.
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
- '!**'
|
- '!**'
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue