diff --git a/.azuredevops/components/aqlprofile.yml b/.azuredevops/components/aqlprofile.yml index 77fe15e08..640761274 100644 --- a/.azuredevops/components/aqlprofile.yml +++ b/.azuredevops/components/aqlprofile.yml @@ -79,15 +79,11 @@ parameters: type: object default: buildJobs: - - gfx942: - target: gfx942 - - gfx90a: - target: gfx90a + - { os: ubuntu2404, packageManager: apt, target: gfx942 } + - { os: ubuntu2404, packageManager: apt, target: gfx90a } testJobs: - - gfx942: - target: gfx942 - - gfx90a: - target: gfx90a + - { os: ubuntu2404, packageManager: apt, target: gfx942 } + - { os: ubuntu2404, packageManager: apt, target: gfx90a } jobs: - ${{ each job in parameters.jobMatrix.buildJobs }}: @@ -99,7 +95,9 @@ jobs: variables: - group: common - template: /.azuredevops/variables-global.yml - pool: ${{ variables.MEDIUM_BUILD_POOL }} + pool: + ${{ if eq(job.os, 'ubuntu2404') }}: + vmImage: 'ubuntu-24.04' workspace: clean: all steps: @@ -196,6 +194,7 @@ jobs: parameters: componentName: ${{ parameters.componentName }} testDir: $(Agent.BuildDirectory) + testExecutable: $(Agent.BuildDirectory)/rocm/share/hsa-amd-aqlprofile/run_tests.sh - template: ${{ variables.CI_TEMPLATE_PATH }}/steps/docker-container.yml parameters: aptPackages: ${{ parameters.aptPackages }}