Skip to content

Commit

Permalink
fix: Restore nosimd builds for edge enhanced security and safari (#2612)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban authored Sep 18, 2023
1 parent 4eafe32 commit 953c570
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion native/wasm/build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Task("libHarfBuzzSharp")
.WithCriteria(IsRunningOnLinux())
.Does(() =>
{
bool hasSimdEnabled = EMSCRIPTEN_FEATURES.Contains("simd") || EMSCRIPTEN_FEATURES.Contains("_simd");;
bool hasSimdEnabled = EMSCRIPTEN_FEATURES.Contains("simd") || EMSCRIPTEN_FEATURES.Contains("_simd");
bool hasThreadingEnabled = EMSCRIPTEN_FEATURES.Contains("mt");
bool hasWasmEH = EMSCRIPTEN_FEATURES.Contains("_wasmeh");
Expand Down
14 changes: 11 additions & 3 deletions scripts/azure-templates-stages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -307,15 +307,23 @@ stages:
version: 3.1.12
features: mt,simd

# .NET 8 Preview 4
# .NET 8
- 3.1.34:
displayName: 3.1.34
version: 3.1.34
features: _wasmeh,_simd,st
features: _wasmeh,st
- 3.1.34:
displayName: '3.1.34_Threading'
version: 3.1.34
features: _wasmeh,_simd,mt
features: _wasmeh,mt
- 3.1.34:
displayName: '3.1.34_SIMD'
version: 3.1.34
features: _wasmeh,simd,st
- 3.1.34:
displayName: '3.1.34_SIMD_Threading'
version: 3.1.34
features: _wasmeh,simd,mt

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

0 comments on commit 953c570

Please sign in to comment.