Skip to content

Commit

Permalink
CI: Switch to Ubuntu 24.04 for Clang job
Browse files Browse the repository at this point in the history
The previous commit fails to build on 22.04, which is stuck with Clang 14.0.0.

Error: src/backends/PipeWire/PipeWire.cpp:347:28: error: no matching constructor for initialization of 'pipewire::Engine::Node'
          m_nodes.emplace(info->id, Node(id, name, static_cast< Direction >(direction)));
                                    ^    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  src/backends/PipeWire/PipeWire.hpp:45:9: note: candidate constructor (the implicit copy constructor) not viable: requires 1 argument, but 3 were provided
          struct Node {
                 ^
  src/backends/PipeWire/PipeWire.hpp:45:9: note: candidate constructor (the implicit move constructor) not viable: requires 1 argument, but 3 were provided
  src/backends/PipeWire/PipeWire.hpp:45:9: note: candidate constructor (the implicit default constructor) not viable: requires 0 arguments, but 3 were provided
  • Loading branch information
davidebeatrici committed Aug 5, 2024
1 parent fc0fe76 commit 1237a5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
matrix:
include:
- name: 'Ubuntu (Clang)'
os: ubuntu-latest
os: ubuntu-24.04
cCompiler: 'clang'
cppCompiler: 'clang++'
- name: 'Ubuntu (GCC)'
Expand Down

0 comments on commit 1237a5c

Please sign in to comment.