Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions eng/pipelines/coreclr/hardware-intrinsics-wasm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
trigger: none
pr:
branches:
include:
- main
paths:
include:
- eng/pipelines/coreclr/hardware-intrinsics-wasm.yml
- eng/pipelines/coreclr/templates/jit-hardware-intrinsics-wasm.yml
- src/coreclr/jit/*wasm*
- src/tests/JIT/HardwareIntrinsics/Wasm/**

variables:
- template: /eng/pipelines/common/variables.yml
- template: /eng/pipelines/helix-platforms.yml

extends:
template: /eng/pipelines/common/templates/pipeline-with-resources.yml
parameters:
isOfficialBuild: false
stages:
- stage: Build
jobs:
- template: /eng/pipelines/coreclr/templates/jit-hardware-intrinsics-wasm.yml
parameters:
platforms:
- browser_wasm
testBuildArgs: '/p:EnableWasmHWIntrinsicsTests=true -tree:JIT/HardwareIntrinsics/Wasm'
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
parameters:
- name: platforms
type: object
- name: testBuildArgs
type: string

jobs:
# Build CoreCLR + libraries for wasm and compile the wasm HardwareIntrinsics
# tests. Browser/V8 can't execute these tests yet (wasm SIMD support is
# incomplete), so this is build-only coverage -- sendToHelix is false. See the
# note in build-runtime-tests-and-send-to-helix.yml.
- template: /eng/pipelines/common/platform-matrix.yml
parameters:
jobTemplate: /eng/pipelines/common/global-build-job.yml
helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml
buildConfig: Release
runtimeFlavor: coreclr
platforms: ${{ parameters.platforms }}
variables:
- name: timeoutPerTestInMinutes
value: 60
- name: timeoutPerTestCollectionInMinutes
value: 180
jobParameters:
testGroup: outerloop
nameSuffix: CoreCLR
buildArgs: -s clr+libs+packs -c $(_BuildConfig) /p:TestAssemblies=false
timeoutInMinutes: 180
postBuildSteps:
- template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml
parameters:
creator: dotnet-bot
testBuildArgs: ${{ parameters.testBuildArgs }}
testRunNamePrefixSuffix: CoreCLR
sendToHelix: false
extraVariablesTemplates:
- template: /eng/pipelines/common/templates/runtimes/test-variables.yml
parameters:
testGroup: outerloop
Loading