From f1cc46e6c70cae8f7ff0a4c7c512d25696c38041 Mon Sep 17 00:00:00 2001 From: JoshuaMoelans <60878493+JoshuaMoelans@users.noreply.github.com> Date: Thu, 25 Jun 2026 20:05:49 +0200 Subject: [PATCH] Skip DependencyConflict package on WebGL 2021.3 Unity 2021.3's WebGL plugin resolver rejects duplicate unaliased BCL assemblies (System.Buffers, System.Memory, etc.) shipped by both the Sentry SDK and the DependencyConflict test package. Other platforms and newer Unity versions are unaffected. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f608b9fb8..86ae624e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -217,6 +217,7 @@ jobs: path: dependency-conflict-package - name: Add DependencyConflict to the project + if: ${{ !startsWith(matrix.unity-version, '2021') }} run: ./test/Scripts.Integration.Test/add-dependency-conflict.ps1 -PackagePath "dependency-conflict-package" - name: Configure Sentry