We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1384a1 commit 3b393e3Copy full SHA for 3b393e3
.github/workflows/cpp-linter.yml
@@ -29,6 +29,9 @@ on:
29
jobs:
30
cpp-linter:
31
runs-on: ubuntu-24.04
32
+ permissions:
33
+ contents: read
34
+ pull-requests: write
35
steps:
36
- name: Checkout iceberg-cpp
37
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
@@ -57,8 +60,9 @@ jobs:
57
60
thread-comments: true
58
61
ignore: 'build|cmake_modules|ci'
59
62
database: build
63
+ verbosity: 'debug'
64
# need '-fno-builtin-std-forward_like', see https://github.com/llvm/llvm-project/issues/101614
- extra-args: '-I$PWD/src -I$PWD/build/src -fno-builtin-std-forward_like'
65
+ extra-args: '-std=c++23 -I$PWD/src -I$PWD/build/src -fno-builtin-std-forward_like'
66
- name: Fail fast?!
67
if: steps.linter.outputs.checks-failed != 0
68
run: |
0 commit comments