Skip to content

Commit 315308a

Browse files
committed
[CI] try using a custom docker image for the CI
doxygen in the default ubuntu runner is too old...
1 parent f6e87d2 commit 315308a

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@ on: [push]
88
jobs:
99
build-llvm19:
1010
runs-on: ubuntu-latest
11+
container: t0b1fox/tpde
1112
steps:
1213
- uses: actions/checkout@v4
1314
with:
1415
submodules: recursive
15-
- name: Install dependencies
16-
run: sudo apt install -y ninja-build cmake clang-19 llvm-19-dev doxygen
1716
- name: Configure
18-
run: CC=clang CXX=clang++ cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug -DTPDE_BUILD_DOCS=ON -DLIT=/usr/lib/llvm-19/build/utils/lit/lit.py
17+
run: CC=clang CXX=clang++ cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug -DTPDE_BUILD_DOCS=ON -DLIT=/usr/bin/lit
1918
- name: Build
2019
run: ninja -v -C build
2120
- name: Test

0 commit comments

Comments
 (0)