Skip to content

Commit fe258df

Browse files
authored
Merge pull request #1101 from bart0sh/PR0121-fix-CI-issues
fpga,dsa,iaa: Fix CI issue (attempt 2)
2 parents 02d4251 + 7aff35e commit fe258df

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
## See the License for the specific language governing permissions and
1515
## limitations under the License.
1616
###
17-
FROM debian:testing-slim AS builder
17+
FROM debian:stable-slim AS builder
1818
RUN echo "deb-src http://deb.debian.org/debian unstable main" >> /etc/apt/sources.list.d/deb-src.list && apt update && apt install -y --no-install-recommends gcc make patch autoconf automake libtool pkg-config libjson-c-dev uuid-dev curl ca-certificates
1919
ARG ACCEL_CONFIG_VERSION="3.4.6.4"
2020
ARG ACCEL_CONFIG_DOWNLOAD_URL="https://github.com/intel/idxd-config/archive/accel-config-v$ACCEL_CONFIG_VERSION.tar.gz"
2121
ARG ACCEL_CONFIG_SHA256="5f9ee68f51913d803b9b0e51cdadaff14ea1523f6e9e4d4ab3e85de644ba6d21"
2222
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
2323
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
2424
###
25-
FROM debian:testing-slim
25+
FROM debian:stable-slim
2626
RUN apt update && apt install -y libjson-c5 jq
2727
COPY --from=builder /usr/lib64/libaccel-config.so.1.0.0 "/lib/x86_64-linux-gnu/"
2828
RUN ldconfig && mkdir -p /licenses/accel-config

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:testing-slim AS builder
1+
FROM debian:stable-slim AS builder
22

33
RUN echo "deb-src http://deb.debian.org/debian unstable main" >> \
44
/etc/apt/sources.list.d/deb-src.list && \
@@ -21,7 +21,7 @@ RUN cd idxd-config-accel-config-v$ACCEL_CONFIG_VERSION && \
2121
make && \
2222
make install
2323
###
24-
FROM debian:testing-slim
24+
FROM debian:stable-slim
2525

2626
RUN apt update && apt install -y libjson-c5 jq
2727

demo/opae-nlb-demo/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:testing-slim AS builder
1+
FROM debian:stable-slim AS builder
22

33
# Install build dependencies
44
RUN apt-get update && apt-get install -y curl python3-dev git gcc g++ make cmake uuid-dev libjson-c-dev libedit-dev libudev-dev
@@ -23,7 +23,7 @@ RUN cd /usr/src/opae/opae-sdk-${OPAE_RELEASE} && \
2323
make -j xfpga nlb0 nlb3
2424

2525

26-
FROM debian:testing-slim
26+
FROM debian:stable-slim
2727

2828
RUN apt-get update && apt-get install -y libjson-c5
2929

0 commit comments

Comments
 (0)