v/.github/workflows/compile_shaders_in_examples.sh

7 lines
132 B
Bash
Executable file

#!/usr/bin/env bash
for f in examples/sokol/*/ ; do
echo "compiling shaders for $f ...";
time ./v shader $f;
echo "done";
done;