Plan file support #331
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: "Unit Tests (ROCm)" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
UnitTest: | |
runs-on: [ self-hosted, AMD ] | |
defaults: | |
run: | |
shell: bash | |
strategy: | |
matrix: | |
rocm: [ rocm6.0 ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.rocm }} | |
cancel-in-progress: true | |
# container: | |
# image: "ghcr.io/microsoft/ark/ark:base-dev-${{ matrix.rocm }}" | |
# options: --privileged --ipc=host --security-opt seccomp=unconfined --group-add video --ulimit memlock=-1:-1 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Dubious ownership exception | |
run: | | |
git config --global --add safe.directory /__w/ark/ark | |
- name: Build | |
run: | | |
mkdir build && cd build | |
cmake -DCMAKE_BUILD_TYPE=Debug .. | |
make -j ut | |
- name: RunUT | |
run: | | |
cd build && ARK_ROOT=$PWD ARK_IGNORE_BINARY_CACHE=1 ctest --stop-on-failure --verbose --schedule-random | |
- name: ReportCoverage | |
run: | | |
cd build | |
lcov --capture --directory . --output-file coverage.info | |
lcov --remove coverage.info \ | |
'/usr/*' \ | |
'/tmp/*' \ | |
'*/third_party/*' \ | |
'*/ark/*_test.*' \ | |
'*/examples/*' \ | |
'*/python/*' \ | |
'*/ark/unittest/unittest_utils.cc' \ | |
--output-file coverage.info | |
lcov --list coverage.info | |
bash <(curl -s https://codecov.io/bash) -f coverage.info || echo "Codecov did not collect coverage reports" | |
- name: BuildPython | |
run: | | |
python3 -m pip install -r requirements.txt | |
python3 -m pip install . |