Skip to content

Commit 65607a7

Browse files
committed
Undo changes
1 parent 1eb45e4 commit 65607a7

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

.github/workflows/clang-tidy-review.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
jobs:
1515
review:
1616
runs-on: ubuntu-24.04
17-
17+
1818
steps:
1919
- name: Checkout PR branch
2020
uses: actions/checkout@v4
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/setup-python@v5
2424
with:
2525
python-version: "3.11"
26-
26+
2727
- name: Install LLVM and Clang
2828
uses: KyleMayes/[email protected]
2929
with:
@@ -46,16 +46,12 @@ jobs:
4646
cd micromamba &&
4747
curl -Ls https://micro.mamba.pm/api/micromamba/linux-64/latest | tar -xvj bin/micromamba &&
4848
export MAMBA_ROOT_PREFIX=$GITHUB_WORKSPACE/micromamba &&
49-
eval "$(./bin/micromamba shell hook -s bash)" &&
50-
export PATH=$MAMBA_ROOT_PREFIX/bin:$PATH &&
49+
eval "$(./bin/micromamba shell hook -s posix)" &&
5150
micromamba create -n xeus-cpp -y --log-level warning -f $GITHUB_WORKSPACE/environment-dev.yml &&
5251
micromamba activate xeus-cpp &&
5352
cd .. &&
5453
git config --global --add safe.directory /github/workspace &&
55-
cmake . -B build -DCMAKE_C_COMPILER="$GITHUB_WORKSPACE/llvm/bin/clang" -DCMAKE_CXX_COMPILER="$GITHUB_WORKSPACE/llvm/bin/clang++" -DCMAKE_EXPORT_COMPILE_COMMANDS=On -DCMAKE_PREFIX_PATH=$MAMBA_ROOT_PREFIX/envs/xeus-cpp
56-
57-
- name: Upload artifacts
58-
uses: ZedThree/clang-tidy-review/[email protected]
54+
cmake . -B build -DCMAKE_C_COMPILER="$GITHUB_WORKSPACE/llvm/bin/clang" -DCMAKE_CXX_COMPILER="$GITHUB_WORKSPACE/llvm/bin/clang++" -DCMAKE_EXPORT_COMPILE_COMMANDS=On
5955
6056
- name: Upload artifacts
6157
uses: ZedThree/clang-tidy-review/[email protected]

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ endif()
8888
# Dependencies
8989
# ============
9090

91-
set(xeus_REQUIRED_VERSION 5.0.0)
91+
set(xeus_REQUIRED_VERSION 5.1.1)
9292
set(xeus_zmq_REQUIRED_VERSION 3.0.0)
9393

9494
if (NOT TARGET xeus AND NOT TARGET xeus-static)

0 commit comments

Comments
 (0)