Skip to content

[AIMIGRAPHX-1149] Fix prop scope #1527

[AIMIGRAPHX-1149] Fix prop scope

[AIMIGRAPHX-1149] Fix prop scope #1527

Workflow file for this run

name: rocm-cmake
on: [push, pull_request]
jobs:
cancel:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.6.0
with:
access_token: ${{ github.token }}
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade setuptools pip wheel
python -m pip install cget cmakelang[YAML]
- name: Run linter
run: |
cget build -T analyze -DSPHINX_EXECUTABLE=python3
# python isn't sphinx, but we won't be calling it anyway
test:
runs-on: ${{ matrix.platform }}
strategy:
max-parallel: 4
matrix:
platform:
- ubuntu-24.04
- windows-2022
cmake-version:
- 3.31.0
- 3.22.1
- 3.16.3
compiler:
- default
- clang
# There are problems with nmake and ninja with this version of cmake
# on windows
exclude:
- platform: windows-2022
cmake-version: 3.16.3
# clang++ is only tested on windows; linux is already covered by the
# default compiler
- platform: ubuntu-24.04
compiler: clang
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v1.9
with:
cmake-version: ${{ matrix.cmake-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade setuptools pip wheel
python -m pip install cget ninja
python -m pip install -r docs/requirements.txt
- name: Install Doxygen
uses: ssciwr/doxygen-install@v1
with:
version: "1.10.0"
- name: Setup git
run: |
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
- name: Install LLVM/Clang
if: matrix.compiler == 'clang'
uses: KyleMayes/install-llvm-action@v2
with:
version: "20"
directory: ${{ runner.temp }}/llvm
- name: Setup clang++
if: matrix.compiler == 'clang'
shell: bash
run: |
echo "CC=clang" >> $GITHUB_ENV
echo "CXX=clang++" >> $GITHUB_ENV
- name: Cmake version
run: cmake --version
- name: Run tests (default generator)
if: matrix.compiler != 'clang'
run: cget build --test
- name: Build docs (default generator)
if: matrix.compiler != 'clang'
run: cget build -T doc
- name: Clean build
run: |
cget build -Cy
cget clean -y
- name: Run tests (Ninja generator)
run: cget build --test -DROCM_CMAKE_GENERATOR=Ninja
- name: Build docs (Ninja generator)
run: cget build -T doc