Skip to content

Commit f58f6eb

Browse files
author
Paul Dreik
committed
ci: fix bad indentation
the ci job on #211 showed green, but after it was merged devel failed. how?
1 parent 87bb882 commit f58f6eb

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

.github/workflows/clang18.yml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -33,31 +33,31 @@ jobs:
3333
with:
3434
path: '**/*.log'
3535

36-
cmake:
37-
name: Compiles with clang 18, using cmake
38-
runs-on: ubuntu-24.04
36+
cmake:
37+
name: Compiles with clang 18, using cmake
38+
runs-on: ubuntu-24.04
3939

40-
steps:
41-
- name: checkout
42-
uses: actions/checkout@v4
43-
- name: install packages
44-
run: |
45-
sudo apt install \
46-
build-essential \
40+
steps:
41+
- name: checkout
42+
uses: actions/checkout@v4
43+
- name: install packages
44+
run: |
45+
sudo apt install \
46+
build-essential \
47+
cmake \
48+
nettle-dev \
49+
libxxhash-dev \
50+
libcatch2-dev \
51+
time \
52+
clang-18
53+
- name: configure
54+
run: |
4755
cmake \
48-
nettle-dev \
49-
libxxhash-dev \
50-
libcatch2-dev \
51-
time \
52-
clang-18
53-
- name: configure
54-
run: |
55-
cmake \
56-
-B build \
57-
-S inofficial_cmake/ \
58-
-DCMAKE_COMPILE_WARNING_AS_ERROR=On \
59-
-DCMAKE_CXX_COMPILER=clang++-18
60-
- name: build
61-
run: cmake --build build
62-
- name: test
63-
run: ctest --test-dir build --output-on-failure
56+
-B build \
57+
-S inofficial_cmake/ \
58+
-DCMAKE_COMPILE_WARNING_AS_ERROR=On \
59+
-DCMAKE_CXX_COMPILER=clang++-18
60+
- name: build
61+
run: cmake --build build
62+
- name: test
63+
run: ctest --test-dir build --output-on-failure

0 commit comments

Comments
 (0)