95b03d1e1d
[ROCm/rocprofiler-sdk commit: edbaed38c7]
82 строки
2.6 KiB
YAML
82 строки
2.6 KiB
YAML
name: Generate AFAR
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
rocm-release:
|
|
description: 'ROCm Release Version'
|
|
required: true
|
|
type: string
|
|
build-number:
|
|
description: 'ROCm CI Build Number'
|
|
required: true
|
|
type: string
|
|
build-job-name:
|
|
description: 'ROCm CI Build Job Name'
|
|
required: true
|
|
type: string
|
|
aqlprofile-change:
|
|
description: 'If AQLProfile Needs to be changed'
|
|
required: false
|
|
type: boolean
|
|
aqlprofile-revision:
|
|
description: 'AQLProfile Commit Hash'
|
|
required: false
|
|
type: string
|
|
rocprofiler-sdk-revision:
|
|
description: 'ROCProfiler-SDK Commit Hash'
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
generate-packages:
|
|
runs-on: gpuless-runner-set
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
if: ${{ inputs.aqlprofile-change }}
|
|
with:
|
|
ref: '${{ inputs.aqlprofile-revision }}'
|
|
path: 'aqlprofile'
|
|
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: '${{ inputs.rocprofiler-sdk-revision }}'
|
|
path: 'rocprofiler-sdk'
|
|
|
|
- name: Install Requirements
|
|
timeout-minutes: 10
|
|
shell: bash
|
|
run: |
|
|
git config --global --add safe.directory '${{github.workspace}}/*'
|
|
apt-get update
|
|
amdgpu-repo --rocm-build=${{ inputs.build-job-name }}/${{ inputs.build-number }}
|
|
apt-get upgrade -y
|
|
apt-get install -y build-essential cmake rocm-llvm-dev python3-pip libdw-dev
|
|
python3 -m pip install -r ${{github.workspace}}/rocprofiler-sdk/requirements.txt
|
|
|
|
- name: Building AQLProfile Packages
|
|
if: ${{ inputs.aqlprofile-change }}
|
|
shell: bash
|
|
run: |
|
|
cmake -B build-aqlprofile -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=/opt/rocm -DCPACK_GENERATOR="STGZ" ${{github.workspace}}/aqlprofile
|
|
cmake --build build-aqlprofile --parallel 16
|
|
cmake --build build-aqlprofile --target install --parallel 16
|
|
cmake --build build-aqlprofile --target package --parallel 16
|
|
|
|
- name: Building ROCProfiler-SDK Packages
|
|
shell: bash
|
|
run: |
|
|
cmake -B build-rocprofiler-sdk -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=/opt/rocm -DCPACK_GENERATOR="STGZ" -DROCPROFILER_BUILD_{TESTS,SAMPLES}=ON ${{github.workspace}}/rocprofiler-sdk
|
|
cmake --build build-rocprofiler-sdk --parallel 16
|
|
cmake --build build-rocprofiler-sdk --target package --parallel 16
|
|
|
|
- name: Archive Packages
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Packages-${{ inputs.rocm-release }}
|
|
path: |
|
|
${{github.workspace}}/build-*/*.sh
|
|
|