From 30cde58e4ccc163ef614a0a21dbffdf973f6d7a4 Mon Sep 17 00:00:00 2001 From: BD103 <59022059+BD103@users.noreply.github.com> Date: Sat, 20 Apr 2024 11:41:04 -0400 Subject: [PATCH] fix: exclude `bevy_dylib` from build --- .github/workflows/create-caches.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create-caches.yml b/.github/workflows/create-caches.yml index 80208c0445aef..84c7e6c3d913f 100644 --- a/.github/workflows/create-caches.yml +++ b/.github/workflows/create-caches.yml @@ -35,7 +35,8 @@ jobs: uses: ./.github/actions/install-linux-deps - name: Build workspace - run: cargo build --workspace + # Exclude bevy_dylib because it causes a linker error on Windows due to exporting more than 65k objects. + run: cargo build --workspace --exclude bevy_dylib - name: Save cache uses: ./.github/actions/cache