|
@@ -527,6 +527,7 @@ jobs:
|
|
|
emsdk-master/emsdk update
|
|
|
emsdk-master/emsdk install latest
|
|
|
emsdk-master/emsdk activate latest
|
|
|
+ sudo apt-get install build-essential
|
|
|
|
|
|
- name: Build example_sdl2_opengl3 with Emscripten
|
|
|
run: |
|
|
@@ -535,13 +536,26 @@ jobs:
|
|
|
popd
|
|
|
make -C examples/example_sdl2_opengl3 -f Makefile.emscripten
|
|
|
|
|
|
- - name: Build example_glfw_wgpu
|
|
|
+ # This build compiles example_glfw_wgpu using Makefile.emscripten and Emscripten GLFW built-in implementation (-sUSE_GLFW=3)
|
|
|
+ # This ensures 2 things: the make build works, and the GLFW built-in implementation is tested
|
|
|
+ - name: Build example_glfw_wgpu with Emscripten/Makefile
|
|
|
run: |
|
|
|
pushd emsdk-master
|
|
|
source ./emsdk_env.sh
|
|
|
popd
|
|
|
make -C examples/example_glfw_wgpu -f Makefile.emscripten
|
|
|
|
|
|
+ # This build compiles example_glfw_wgpu using CMakeLists.txt and Emscripten GLFW contrib port (--use-port=contrib.glfw3)
|
|
|
+ # This ensures 2 things: the CMake build works, and the GLFW contrib port is tested
|
|
|
+ - name: Build example_glfw_wgpu with Emscripten/CMake
|
|
|
+ run: |
|
|
|
+ pushd emsdk-master
|
|
|
+ source ./emsdk_env.sh
|
|
|
+ popd
|
|
|
+ emcc -v
|
|
|
+ emcmake cmake -B build -DCMAKE_BUILD_TYPE=Release examples/example_glfw_wgpu
|
|
|
+ cmake --build build
|
|
|
+
|
|
|
Android:
|
|
|
runs-on: ubuntu-24.04
|
|
|
steps:
|