From 63b00cabc302c17c70c285a337a06a4f89d39f40 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Wed, 6 Sep 2023 01:42:50 +1000 Subject: Set C++ standard to C++17 via environment for bgfx shader build CI job. The SPIRV tools require C++17 but it isn't set anywhere in the build files supplied with bgfx --- .github/workflows/bgfxshaders.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/bgfxshaders.yml b/.github/workflows/bgfxshaders.yml index 26b2418f696..6c4e984b893 100644 --- a/.github/workflows/bgfxshaders.yml +++ b/.github/workflows/bgfxshaders.yml @@ -34,6 +34,7 @@ jobs: - name: Build env: MINGW64: "/mingw64" + CXXFLAGS: "-std=c++17" run: make shaders - uses: actions/upload-artifact@master with: -- cgit v1.2.3