File tree Expand file tree Collapse file tree 4 files changed +6
-11
lines changed Expand file tree Collapse file tree 4 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -168,17 +168,12 @@ dependencies:
168
168
match : " ^version: "
169
169
170
170
- name : clang
171
- version : 18
171
+ version : 20
172
172
refPaths :
173
173
- path : nix/derivation-bpf.nix
174
174
match : llvmPackages_\d+.clang-unwrapped
175
175
- path : nix/derivation-bpf.nix
176
176
match : llvm_\d+
177
-
178
- # TODO: update to the latest clang of debian 12 packages are available.
179
- - name : clang-debian-12
180
- version : 16
181
- refPaths :
182
177
- path : hack/pull-security-profiles-operator-verify
183
178
match : CLANG_VERSION
184
179
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ apt-get install -y \
7
7
libapparmor-dev \
8
8
libelf-dev \
9
9
libseccomp-dev \
10
- libzstd-dev
10
+ libzstd-dev \
11
+ lsb-release
11
12
12
13
./hack/install-libbpf.sh
Original file line number Diff line number Diff line change @@ -3,8 +3,7 @@ set -euo pipefail
3
3
4
4
./hack/install-packages
5
5
6
- CLANG_VERSION=16
7
- apt-get install -y software-properties-common
6
+ CLANG_VERSION=20
8
7
curl -sSfL --retry 5 --retry-delay 3 https://apt.llvm.org/llvm.sh | bash -s -- $CLANG_VERSION all
9
8
ln -sf /usr/bin/clang-format-$CLANG_VERSION /usr/bin/clang-format
10
9
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ with pkgs; buildGoModule rec {
8
8
outputs = [ "out" ] ;
9
9
nativeBuildInputs = with buildPackages ; [
10
10
git
11
- llvmPackages_18 . clang-unwrapped
12
- llvm_18
11
+ llvmPackages_20 . clang-unwrapped
12
+ llvm_20
13
13
pkg-config
14
14
which
15
15
] ;
You can’t perform that action at this time.
0 commit comments