From 025e60e63575d2dc9fc41f6b52893c32a5c1ce87 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Mon, 1 Jun 2026 18:20:30 +1000 Subject: [PATCH] =?UTF-8?q?ci:=20wgpu=20mac=20=E2=80=94=20cover=20ifcviewe?= =?UTF-8?q?r-wgpu-minimal=20+=20wgpu-mem-probe=20in=20paths=20filter?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The first run after BUNDLE DESTINATION fix didn't trigger because that commit only touched src/ifcviewer-wgpu-minimal/CMakeLists.txt, which the workflow's paths: list didn't cover. Add the two sibling subprojects (-minimal and wgpu-mem-probe) since they participate in the same configure pass. (Manual workflow_dispatch is still unavailable until this workflow lands on the default branch — GitHub gates the "Run workflow" button on the default branch's copy of the file.) Co-Authored-By: Claude Opus 4.7 --- .github/workflows/ci-wgpu-mac.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci-wgpu-mac.yml b/.github/workflows/ci-wgpu-mac.yml index ef57b37900..322a86a923 100644 --- a/.github/workflows/ci-wgpu-mac.yml +++ b/.github/workflows/ci-wgpu-mac.yml @@ -17,6 +17,8 @@ on: - v0.8.0 paths: - 'src/ifcviewer-wgpu/**' + - 'src/ifcviewer-wgpu-minimal/**' + - 'src/wgpu-mem-probe/**' - 'src/ifcviewer/SidecarCache.*' - 'src/ifcviewer/InstancedGeometry.h' - 'src/ifcviewer/VertexQuantization.h' @@ -25,6 +27,8 @@ on: pull_request: paths: - 'src/ifcviewer-wgpu/**' + - 'src/ifcviewer-wgpu-minimal/**' + - 'src/wgpu-mem-probe/**' - 'src/ifcviewer/SidecarCache.*' - 'src/ifcviewer/InstancedGeometry.h' - 'src/ifcviewer/VertexQuantization.h'