56 Zeilen
1.8 KiB
YAML
56 Zeilen
1.8 KiB
YAML
|
|
name: rocprofiler-sdk Code Restrictions
|
|
permissions:
|
|
contents: read
|
|
|
|
# This workflow ensures that certain code restrictions are applied.
|
|
# For examples, rocprofiler-sdk cannot use std::regex because of issues
|
|
# when loaded into an application compiled with C++ dual ABI support because
|
|
# while std::regex itself (and std::regex_traits) being ABI-tagged,
|
|
# std::__detail::_Scanner is not. Applications compiled with dual ABI support
|
|
# will either throw an exception or produce a segfault and thus, this workflow
|
|
# attempts to catch usage of std::regex during CI.
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
paths:
|
|
- 'projects/rocprofiler-sdk/**'
|
|
- '!projects/rocprofiler-sdk/.github/workflows/pull_*.yml'
|
|
- '!projects/rocprofiler-sdk/.github/workflows/linting.yml'
|
|
- '!projects/rocprofiler-sdk/.github/workflows/markdown_lint.yml'
|
|
- '!projects/rocprofiler-sdk/*.md'
|
|
- '!projects/rocprofiler-sdk/**/README.md'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
regex:
|
|
runs-on: ubuntu-22.04
|
|
env:
|
|
FOLDERS: "projects/rocprofiler-sdk/source/lib/common projects/rocprofiler-sdk/source/lib/rocprofiler-sdk projects/rocprofiler-sdk/source/lib/rocprofiler-sdk-roctx"
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y python3-pip
|
|
python3 -m pip install -U cmake-format
|
|
|
|
- name: Apply restriction
|
|
run: |
|
|
cd projects/rocprofiler-sdk
|
|
set +e
|
|
FILES="$(find ${FOLDERS} -type f)"
|
|
GREP="$(grep -E -n 'std::regex|<regex>' ${FILES})"
|
|
if [ "${GREP}" != "" ]; then
|
|
echo -e "\nError! std::regex is not allowed in ${FOLDERS}...\n"
|
|
echo -e "\nResults:\n"
|
|
echo "${GREP}"
|
|
exit 1
|
|
fi
|