Skip to content

Commit ae5cbce

Browse files
fix: Restore nosimd builds for edge enhanced security and safari (#2612) (#2618)
(cherry picked from commit 953c570) Co-authored-by: Jérôme Laban <[email protected]>
1 parent ee035f1 commit ae5cbce

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

native/wasm/build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Task("libHarfBuzzSharp")
116116
.WithCriteria(IsRunningOnLinux())
117117
.Does(() =>
118118
{
119-
bool hasSimdEnabled = EMSCRIPTEN_FEATURES.Contains("simd") || EMSCRIPTEN_FEATURES.Contains("_simd");;
119+
bool hasSimdEnabled = EMSCRIPTEN_FEATURES.Contains("simd") || EMSCRIPTEN_FEATURES.Contains("_simd");
120120
bool hasThreadingEnabled = EMSCRIPTEN_FEATURES.Contains("mt");
121121
bool hasWasmEH = EMSCRIPTEN_FEATURES.Contains("_wasmeh");
122122

scripts/azure-templates-stages.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -401,15 +401,23 @@ stages:
401401
version: 3.1.12
402402
features: mt,simd
403403

404-
# .NET 8 Preview 4
404+
# .NET 8
405405
- 3.1.34:
406406
displayName: 3.1.34
407407
version: 3.1.34
408-
features: _wasmeh,_simd,st
408+
features: _wasmeh,st
409409
- 3.1.34:
410410
displayName: '3.1.34_Threading'
411411
version: 3.1.34
412-
features: _wasmeh,_simd,mt
412+
features: _wasmeh,mt
413+
- 3.1.34:
414+
displayName: '3.1.34_SIMD'
415+
version: 3.1.34
416+
features: _wasmeh,simd,st
417+
- 3.1.34:
418+
displayName: '3.1.34_SIMD_Threading'
419+
version: 3.1.34
420+
features: _wasmeh,simd,mt
413421

414422
- ${{ if ne(parameters.buildPipelineType, 'tests') }}:
415423
- stage: managed

0 commit comments

Comments
 (0)