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
…) (#2618)

(cherry picked from commit 953c570)

Co-authored-by: Jérôme Laban <[email protected]>
  • Loading branch information
github-actions[bot] and jeromelaban authored Sep 19, 2023
1 parent ee035f1 commit ae5cbce
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 @@ -116,7 +116,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 @@ -401,15 +401,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 ae5cbce

Please sign in to comment.