Skip to content

Commit b534c16

Browse files
authored
Merge pull request #1282 from mythi/PR-2022-081
demo: update accel-config 3.5.2
2 parents d1e228e + 6e77933 commit b534c16

File tree

5 files changed

+154
-136
lines changed

5 files changed

+154
-136
lines changed

build/docker/intel-idxd-config-initcontainer.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
###
1717
FROM debian:unstable-slim AS builder
1818
RUN apt-get update && apt-get install -y --no-install-recommends gcc make patch autoconf automake libtool pkg-config libjson-c-dev uuid-dev curl ca-certificates
19-
ARG ACCEL_CONFIG_VERSION="3.5.0"
19+
ARG ACCEL_CONFIG_VERSION="3.5.2"
2020
ARG ACCEL_CONFIG_DOWNLOAD_URL="https://github.com/intel/idxd-config/archive/accel-config-v$ACCEL_CONFIG_VERSION.tar.gz"
21-
ARG ACCEL_CONFIG_SHA256="4d2fecbbb29f293791214f475c44e73c25171f75c1725dbc516731b768e2e7c9"
21+
ARG ACCEL_CONFIG_SHA256="a2d52007b4bfdc050a21893466e78328c6800f9a87b0806c7e7f5775ff48387b"
2222
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
2323
RUN curl -fsSL "$ACCEL_CONFIG_DOWNLOAD_URL" -o accel-config.tar.gz && echo "$ACCEL_CONFIG_SHA256 accel-config.tar.gz" | sha256sum -c - && tar -xzf accel-config.tar.gz
2424
RUN cd idxd-config-accel-config-v$ACCEL_CONFIG_VERSION && ./git-version-gen && autoreconf -i && ./configure -q --libdir=/usr/lib64 --disable-test --disable-docs && make && make install

build/docker/templates/intel-idxd-config-initcontainer.Dockerfile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
55
automake libtool pkg-config \
66
libjson-c-dev uuid-dev curl ca-certificates
77

8-
ARG ACCEL_CONFIG_VERSION="3.5.0"
8+
ARG ACCEL_CONFIG_VERSION="3.5.2"
99
ARG ACCEL_CONFIG_DOWNLOAD_URL="https://github.com/intel/idxd-config/archive/accel-config-v$ACCEL_CONFIG_VERSION.tar.gz"
10-
ARG ACCEL_CONFIG_SHA256="4d2fecbbb29f293791214f475c44e73c25171f75c1725dbc516731b768e2e7c9"
10+
ARG ACCEL_CONFIG_SHA256="a2d52007b4bfdc050a21893466e78328c6800f9a87b0806c7e7f5775ff48387b"
1111

1212
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
1313
RUN curl -fsSL "$ACCEL_CONFIG_DOWNLOAD_URL" -o accel-config.tar.gz && \

demo/accel-config-demo/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM ubuntu:20.04 AS builder
15+
FROM ubuntu:22.04 AS builder
1616

1717
RUN apt update && apt install -y --no-install-recommends \
1818
gcc make patch autoconf automake libtool pkg-config curl ca-certificates \
1919
libjson-c-dev uuid-dev zlib1g-dev
2020

21-
ARG ACCEL_CONFIG_VERSION="3.5.0"
21+
ARG ACCEL_CONFIG_VERSION="3.5.2"
2222
ARG ACCEL_CONFIG_DOWNLOAD_URL="https://github.com/intel/idxd-config/archive/accel-config-v$ACCEL_CONFIG_VERSION.tar.gz"
23-
ARG ACCEL_CONFIG_SHA256="4d2fecbbb29f293791214f475c44e73c25171f75c1725dbc516731b768e2e7c9"
23+
ARG ACCEL_CONFIG_SHA256="a2d52007b4bfdc050a21893466e78328c6800f9a87b0806c7e7f5775ff48387b"
2424

2525
RUN curl -fsSL "$ACCEL_CONFIG_DOWNLOAD_URL" -o accel-config.tar.gz && echo "$ACCEL_CONFIG_SHA256 accel-config.tar.gz" | sha256sum -c - && tar -xzf accel-config.tar.gz
2626

@@ -35,9 +35,9 @@ RUN cd idxd-config-accel-config-v$ACCEL_CONFIG_VERSION && \
3535
./configure -q --libdir=/usr/lib64 --enable-test=yes --disable-docs && \
3636
make install
3737

38-
FROM ubuntu:20.04
38+
FROM ubuntu:22.04
3939

40-
RUN apt update && apt install -y libjson-c4
40+
RUN apt update && apt install -y libjson-c5
4141

4242
COPY --from=builder /usr/lib64/libaccel-config.so.1.0.0 "/lib/x86_64-linux-gnu/"
4343
RUN ldconfig

0 commit comments

Comments
 (0)