examples: fix simple_shader compile error, add 2 shader examples to CI (#21112)

This commit is contained in:
Larpon 2024-03-27 13:05:42 +01:00 committed by GitHub
parent 8997c515c5
commit 22744ce495
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 3 additions and 3 deletions

View file

@ -282,12 +282,12 @@ pub fn new_test_session(_vargs string, will_compile bool) TestSession {
if testing.github_job != 'misc-tooling' {
// These examples need .h files that are produced from the supplied .glsl files,
// using by the shader compiler tools in https://github.com/floooh/sokol-tools-bin/archive/pre-feb2021-api-changes.tar.gz
skip_files << 'examples/sokol/simple_shader_glsl/simple_shader.v'
skip_files << 'examples/sokol/sdf/sdf.v'
skip_files << 'examples/sokol/02_cubes_glsl/cube_glsl.v'
skip_files << 'examples/sokol/03_march_tracing_glsl/rt_glsl.v'
skip_files << 'examples/sokol/04_multi_shader_glsl/rt_glsl.v'
skip_files << 'examples/sokol/05_instancing_glsl/rt_glsl.v'
skip_files << 'examples/sokol/07_simple_shader_glsl/simple_shader.v'
skip_files << 'examples/sokol/08_sdf/sdf.v'
// Skip obj_viewer code in the CI
skip_files << 'examples/sokol/06_obj_viewer/show_obj.v'
// skip the audio examples too on most CI jobs