Skip to content

Commit

Permalink
Upgrade versions (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagoftsm committed Feb 21, 2024
1 parent 7b7f8ac commit 4032b13
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
kernel_version:
- '6.1.26'
- '6.6.17'
libc:
- glibc
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
kernel_version:
- '6.1.26'
- '6.6.17'
libc:
- glibc
runs-on: ubuntu-latest
Expand Down
10 changes: 5 additions & 5 deletions Dockerfile.glibc.core
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ FROM ubuntu:23.04 AS build
ARG ARCH=x86
ENV ARCH=$ARCH

ARG LOCAL_KERNEL_VERSION=6.1.26
ARG LOCAL_KERNEL_VERSION=6.6.17

ENV _LIBC=glibc

ENV DEBIAN_FRONTEND=noninteractive
# hadolint ignore=DL3018,DL3015,DL3008,DL3009
RUN apt-get update && \
apt-get install -y build-essential autoconf automake coreutils pkg-config \
bc libelf-dev libssl-dev clang-tools-15 libclang-15-dev \
llvm-15 rsync bison flex tar xz-utils wget libbfd-dev \
bc libelf-dev libssl-dev clang-tools-16 libclang-16-dev \
llvm-16 rsync bison flex tar xz-utils wget libbfd-dev \
libcap-dev

# hadolint ignore=DL3059
RUN ln -s /usr/bin/clang-15 /usr/bin/clang && \
ln -s /usr/bin/llvm-strip-15 /usr/bin/llvm-strip
RUN ln -s /usr/bin/clang-16 /usr/bin/clang && \
ln -s /usr/bin/llvm-strip-16 /usr/bin/llvm-strip

# hadolint ignore=DL3003,SC3009,DL4006,SC2046
RUN mkdir -p /usr/src && \
Expand Down
2 changes: 1 addition & 1 deletion kernel-collector

0 comments on commit 4032b13

Please sign in to comment.