We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73f29d3 commit e133286Copy full SHA for e133286
1 file changed
.github/workflows/linux.yaml
@@ -7,14 +7,19 @@ on:
7
8
jobs:
9
Latest:
10
- runs-on: ubuntu-24.04
+ runs-on: ubuntu-latest
11
strategy:
12
matrix:
13
cxx: ['g++-14', 'clang++-18']
14
env:
15
CMAKE_OPTIONS: -DDEV_MODE=ON -DBUILD_TESTING=ON -G Ninja
16
CXX: ${{matrix.cxx}}
17
steps:
18
+ - name: install utf8cpp
19
+ run: |
20
+ sudo apt-get update
21
+ sudo apt-get install -y --no-install-recommends libutfcpp-dev
22
+
23
- name: list compilers
24
run: dpkg --list | grep compiler
25
0 commit comments