Merge branch '2.x' into 2.x-dev #65
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: mi100 | |
on: | |
push: | |
branches: | |
- '2.x' | |
# Allows manual execution | |
workflow_dispatch: | |
permissions: | |
contents: read | |
checks: write | |
pull-requests: write | |
jobs: | |
build: | |
runs-on: [mi100, rhel9] | |
env: | |
PYTHONPATH: ${{ github.workspace }}/python-libs | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
token: ${{ secrets.GH_PAT }} | |
- name: pythonpath | |
run: echo ${PYTHONPATH} | |
- name: Install Python collateral (build and test) | |
run: | | |
pip3 install -t ${PYTHONPATH} -r requirements.txt | |
pip3 install -t ${PYTHONPATH} -r requirements-test.txt | |
- name: Configure | |
run: | | |
mkdir build | |
cd build | |
ml cmake | |
cmake -DENABLE_COVERAGE=ON .. | |
- name: Create HIP binary (vcopy) | |
run: hipcc -o tests/vcopy ./sample/vcopy.cpp | |
- name: Run [profile] mode | |
run: | | |
cd build | |
ml cmake | |
srun -N 1 -J omniperf -p ci -t 00:10:00 ctest --verbose -R test_profiler_general | |
- name: Run [analyze] mode | |
if: '!cancelled()' | |
run: | | |
cd build | |
ml cmake | |
srun -N 1 -J omniperf -p ci -t 00:55:00 ctest --verbose -R test_analyze_commands | |
- name: Pytest coverage comment | |
if: '!cancelled()' | |
uses: MishaKav/pytest-coverage-comment@v1.1.48 | |
with: | |
pytest-xml-coverage-path: 'tests/coverage.xml' | |
junitxml-path: 'tests/test-results.xml' | |
coverage-path-prefix: src/ |