v / .github / workflows / compile_shaders_in_examples.sh
7 lines · 6 sloc · 132 bytes · 5f83a4d110804e3ba33f547ad2f450b3b71cf733
Raw
1#!/usr/bin/env bash
2
3for f in examples/sokol/*/ ; do
4 echo "compiling shaders for $f ...";
5 time ./v shader $f;
6 echo "done";
7done;
8