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
141 changes: 141 additions & 0 deletions eng/pipelines/coreclr/hardware-intrinsics.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
trigger: none
pr:
branches:
include:
- main
paths:
include:
- eng/pipelines/**
- src/coreclr/jit/**
- src/tests/Common/GenerateHWIntrinsicTests/**
- src/tests/JIT/HardwareIntrinsics/**

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

extends:
template: /eng/pipelines/common/templates/pipeline-with-resources.yml
parameters:
isOfficialBuild: false
stages:
- stage: Build
jobs:
- 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
platforms:
- windows_x86
- windows_x64
variables:
- name: timeoutPerTestInMinutes
value: 60
- name: timeoutPerTestCollectionInMinutes
value: 180
jobParameters:
testGroup: outerloop
nameSuffix: CoreCLR
buildArgs: -s clr+libs -c $(_BuildConfig)
timeoutInMinutes: 360
postBuildSteps:
- template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml
parameters:
creator: dotnet-bot
testBuildArgs: 'tree JIT/HardwareIntrinsics'
testRunNamePrefixSuffix: CoreCLR
extraVariablesTemplates:
- template: /eng/pipelines/common/templates/runtimes/test-variables.yml
parameters:
testGroup: outerloop

- 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
platforms:
- linux_arm
- linux_x64
- osx_arm64
variables:
- name: timeoutPerTestInMinutes
value: 60
- name: timeoutPerTestCollectionInMinutes
value: 180
jobParameters:
testGroup: outerloop
nameSuffix: CoreCLR
buildArgs: -s clr+libs -c $(_BuildConfig)
timeoutInMinutes: 360
postBuildSteps:
- template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml
parameters:
creator: dotnet-bot
testBuildArgs: '-tree:JIT/HardwareIntrinsics'
testRunNamePrefixSuffix: CoreCLR
extraVariablesTemplates:
- template: /eng/pipelines/common/templates/runtimes/test-variables.yml
parameters:
testGroup: outerloop

- 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
platforms:
- windows_x86
- windows_x64
variables:
- name: timeoutPerTestInMinutes
value: 60
- name: timeoutPerTestCollectionInMinutes
value: 180
jobParameters:
testGroup: outerloop
nameSuffix: NativeAOT
buildArgs: -s clr.aot+libs.native+libs.sfx -c $(_BuildConfig)
timeoutInMinutes: 360
postBuildSteps:
- template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml
parameters:
creator: dotnet-bot
testBuildArgs: 'tree JIT/HardwareIntrinsics'
testRunNamePrefixSuffix: NativeAOT
nativeAotTest: true
extraVariablesTemplates:
- template: /eng/pipelines/common/templates/runtimes/test-variables.yml
parameters:
testGroup: outerloop

- 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
platforms:
- linux_arm
- linux_x64
- osx_arm64
variables:
- name: timeoutPerTestInMinutes
value: 60
- name: timeoutPerTestCollectionInMinutes
value: 180
jobParameters:
testGroup: outerloop
nameSuffix: NativeAOT
buildArgs: -s clr.aot+libs.native+libs.sfx -c $(_BuildConfig)
timeoutInMinutes: 360
postBuildSteps:
- template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml
parameters:
creator: dotnet-bot
testBuildArgs: '-tree:JIT/HardwareIntrinsics'
testRunNamePrefixSuffix: NativeAOT
nativeAotTest: true
extraVariablesTemplates:
- template: /eng/pipelines/common/templates/runtimes/test-variables.yml
parameters:
testGroup: outerloop
2 changes: 1 addition & 1 deletion eng/pipelines/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ extends:
- template: /eng/pipelines/coreclr/nativeaot-post-build-steps.yml
parameters:
creator: dotnet-bot
testBuildArgs: 'nativeaot tree ";nativeaot;Loader;Interop;JIT/HardwareIntrinsics;" /p:BuildNativeAotFrameworkObjects=true'
testBuildArgs: 'nativeaot tree ";nativeaot;Loader;Interop;" /p:BuildNativeAotFrameworkObjects=true'
liveLibrariesBuildConfig: Release
testRunNamePrefixSuffix: NativeAOT_$(_BuildConfig)
extraVariablesTemplates:
Expand Down
1 change: 1 addition & 0 deletions src/tests/JIT/HardwareIntrinsics/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@
<PropertyGroup>
<RunAnalyzers>true</RunAnalyzers>
<EnableNETAnalyzers>false</EnableNETAnalyzers>
<CLRTestPriority>1</CLRTestPriority>
</PropertyGroup>
</Project>
Loading