2e50d88fe6
* Removing regex from the tool * Adding alternative for regex regarding handling * Adding ROCpd * Removing regex include * Apply suggestion from @jomadsen_amdeng Co-authored-by: Madsen, Jonathan <Jonathan.Madsen@amd.com> * Apply suggestion from @jomadsen_amdeng Co-authored-by: Madsen, Jonathan <Jonathan.Madsen@amd.com> * Apply suggestion from @jomadsen_amdeng Co-authored-by: Madsen, Jonathan <Jonathan.Madsen@amd.com> * Adding Standalone Regex Header File * Fixing Regex to handle grouping and * Fixing Regex to handle grouping and * Fixing Regex to handle grouping and * Formatting Fix * Update rocprofiler-sdk-restrictions.yml * Separating regex.hpp to source and header & Adding Tests for parity with std::regex * Update regex.cpp * Using snake_case for naming and addressing some comments * Adding more tests & README for regex implementation * Updating rocprofiler sdk restrictions workflow * Updating more tests & README for regex implementation * Update README_regex.md * Rename README_regex.md to README.md --------- Co-authored-by: Ammar ELWazir <aelwazir@amd.com> Co-authored-by: Elwazir, Ammar <Ammar.Elwazir@amd.com> Co-authored-by: Madsen, Jonathan <Jonathan.Madsen@amd.com>
56 строки
1.8 KiB
YAML
56 строки
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: "source/lib/common source/lib/rocprofiler-sdk source/lib/rocprofiler-sdk-roctx source/lib/output source/lib/rocprofiler-sdk-tool"
|
|
|
|
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
|
|
working-directory: projects/rocprofiler-sdk
|
|
run: |
|
|
set +e
|
|
FILES="$(find ${FOLDERS} -type f -not -name "*.md" -not -name "*.txt")"
|
|
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
|