b3b044d5bc
* Add `amd-staging` and `amd-mainline` to workflow.
* Update branch names in documentation
* Change `dev` to `amd-staging` and `main` to `amd-mainline` in documentation.
* Remove references from 2.x from workflows.
* Convert the link to LICENSE to a relative path in CONTRIBUTING.
---------
Signed-off-by: David Galiffi <David.Galiffi@amd.com>
[ROCm/rocprofiler-compute commit: e176d8eec8]
45 строки
1.2 KiB
YAML
45 строки
1.2 KiB
YAML
name: packaging
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v[1-9].[0-9]+.[0-9]+*"
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
distbuild:
|
|
runs-on: ubuntu-latest
|
|
name: Create release distribution
|
|
env:
|
|
INSTALL_DIR: /tmp
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
- name: Verify VERSION file consistent with tag
|
|
run: utils/ver_check.py --tag ${{github.ref_name}}
|
|
- name: Install Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.8'
|
|
- name: Python dependency installs
|
|
run: python3 -m pip install -t${INSTALL_DIR}/python-libs -r requirements.txt
|
|
- name: Configure
|
|
run: |
|
|
mkdir build
|
|
cd build
|
|
cmake -DPYTHON_DEPS=${INSTALL_DIR}/python-libs ..
|
|
- name: Release tarball
|
|
run: |
|
|
cd build
|
|
make package_source
|
|
- name: Rename tarball
|
|
run: mv build/omniperf-*.tar.gz build/omniperf-${{github.ref_name}}.tar.gz
|
|
- name: Archive tarball
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: omniperf-${{github.ref_name}}.tar.gz
|
|
path: build/omniperf-${{github.ref_name}}.tar.gz
|