From f7b26bbcfed404658a88932e442163cab0585bca Mon Sep 17 00:00:00 2001 From: Martin Evans Date: Thu, 21 May 2026 14:06:46 +0100 Subject: [PATCH 1/2] Disabled DevBuild, this downloads potentially incompatible version of wasmtime and should not be enabled by default. --- Directory.Build.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Directory.Build.props b/Directory.Build.props index 9e9f3635..8b02eb2b 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,6 +1,6 @@ - true + false 44.0.0 $(WasmtimeVersion)$(WasmtimeDotnetVersion)-dev From 5685da70936cee9680fb6e67d29d5cdb98517082 Mon Sep 17 00:00:00 2001 From: Martin Evans Date: Thu, 21 May 2026 14:16:27 +0100 Subject: [PATCH 2/2] Disabled devbuild in CI --- .github/workflows/main.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f0f3567a..8e48c10b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,8 +12,6 @@ jobs: build: name: Test .NET embedding of Wasmtime runs-on: ${{ matrix.os }} - env: - DevBuild: 'false' strategy: fail-fast: false matrix: @@ -45,11 +43,6 @@ jobs: # workaround for actions/setup-dotnet#155 - name: Clear package cache run: dotnet clean Wasmtime.sln && dotnet nuget locals all --clear - - name: Enable development builds for the main branch - if: github.ref == 'refs/heads/main' || github.base_ref == 'main' - shell: bash - run: | - echo "DevBuild=true" >> $GITHUB_ENV - name: Restore packages run: dotnet restore Wasmtime.sln - name: Build