File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 39
39
- intel-xpumanager-sidecar
40
40
41
41
# # Demo images
42
- - crypto-perf
43
- - opae-nlb-demo
42
+ # - crypto-perf
43
+ # - opae-nlb-demo
44
44
steps :
45
45
- uses : actions/checkout@v4
46
46
- uses : actions/setup-go@v5
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM debian:unstable -slim AS builder
15
+ FROM debian:stable -slim AS builder
16
16
17
17
RUN apt-get update && apt-get install -y --no-install-recommends libaccel-config-dev \
18
18
gcc g++ nasm make cmake autoconf automake libtool pkg-config git ca-certificates uuid-dev
@@ -29,7 +29,7 @@ RUN cd / && git clone --recurse-submodules --depth 1 --branch v1.5.0 https://git
29
29
cmake -DLOG_HW_INIT=ON .. && \
30
30
make install
31
31
32
- FROM debian:unstable -slim
32
+ FROM debian:stable -slim
33
33
34
34
RUN apt-get update && apt-get install -y --no-install-recommends pciutils accel-config accel-config-test && rm -rf /var/lib/apt/lists/\*
35
35
Original file line number Diff line number Diff line change 1
- FROM debian:sid -slim as builder
1
+ FROM debian:stable -slim as builder
2
2
3
3
ARG DIR=/dpdk-build
4
4
WORKDIR $DIR
5
5
6
- RUN echo "deb-src http://deb.debian.org/debian unstable main" >> \
6
+ RUN echo "deb-src http://deb.debian.org/debian stable main" >> \
7
7
/etc/apt/sources.list.d/deb-src.list
8
8
RUN apt-get update && apt-get install -y --no-install-recommends wget build-essential meson ninja-build python3-pyelftools libnuma-dev python3-pip pkg-config dpkg-dev libipsec-mb-dev
9
9
@@ -37,7 +37,7 @@ RUN mkdir -p /install_root/licenses/dpdk && \
37
37
cd /install_root/licenses/dpdk && \
38
38
apt-get source --download-only -y libatomic1 libnuma1
39
39
40
- FROM debian:sid -slim
40
+ FROM debian:stable -slim
41
41
RUN apt-get update && apt-get install -y --no-install-recommends libipsec-mb1 libnuma1 libatomic1 && ldconfig -v
42
42
COPY --from=builder /install_root /
43
43
COPY run-dpdk-test /usr/bin/
Original file line number Diff line number Diff line change 1
- FROM debian:unstable -slim AS builder
1
+ FROM debian:stable -slim AS builder
2
2
3
3
# Install build dependencies
4
4
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
@@ -24,7 +24,7 @@ RUN cd /usr/src/opae/opae-sdk-${OPAE_RELEASE} && \
24
24
make -j xfpga nlb0 nlb3
25
25
26
26
27
- FROM debian:unstable -slim
27
+ FROM debian:stable -slim
28
28
29
29
RUN apt-get update && apt-get install --no-install-recommends -y libjson-c5
30
30
You can’t perform that action at this time.
0 commit comments