[clang-tidy] Adjust xeus-cpp build invocation. #13
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: clang-tidy-review | |
on: | |
pull_request: | |
paths: | |
- '**.h' | |
- '**.hpp' | |
- '**.cpp' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
review: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout PR branch | |
uses: actions/checkout@v3 | |
- name: Install LLVM and Clang | |
uses: KyleMayes/install-llvm-action@v1 | |
with: | |
version: "12.0.0" | |
- name: install mamba | |
uses: mamba-org/provision-with-micromamba@main | |
with: | |
environment-file: environment-dev.yml | |
environment-name: xeus-cpp | |
- name: Run clang-tidy | |
uses: ZedThree/[email protected] | |
id: review | |
with: | |
build_dir: build | |
apt_packages: libxml2,libxml2-dev,libtinfo-dev,zlib1g-dev,libzstd-dev,curl | |
exclude: "test/*,unittests/*,benchmark/*,demos/*" | |
split_workflow: true | |
cmake_command: > | |
set -x && pwd && | |
curl -Ls https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -xvj bin/micromamba && | |
export MAMBA_ROOT_PREFIX=/github/workspace/micromamba && | |
eval "$(./bin/micromamba shell hook -s posix)" && | |
./micromamba shell init bash && | |
./micromamba activate && | |
./micromamba install --file /github/workspace/enviroment-dev.yml && | |
cmake --version && | |
git config --global --add safe.directory /github/workspace && | |
cmake . -B build -DCMAKE_EXPORT_COMPILE_COMMANDS=On | |
- name: Upload artifacts | |
uses: ZedThree/clang-tidy-review/[email protected] |