File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -154,14 +154,14 @@ jobs:
154
154
uses : actions/upload-artifact@v4
155
155
with :
156
156
name : pktvisord-linux-${{matrix.arch}}-static
157
- path : build/bin/pktvisord
157
+ path : ${{github.workspace}}/src/ build/bin/pktvisord
158
158
retention-days : 7
159
159
160
160
- name : Upload pktvisor-reader
161
161
uses : actions/upload-artifact@v4
162
162
with :
163
163
name : pktvisor-reader-linux-${{matrix.arch}}-static
164
- path : build/bin/pktvisor-reader
164
+ path : ${{github.workspace}}/src/ build/bin/pktvisor-reader
165
165
retention-days : 7
166
166
167
167
pkvisor-cli :
Original file line number Diff line number Diff line change 1
1
FROM ubuntu:noble AS cppbuild
2
2
3
- ENV BUILD_DEPS "g++ cmake make automake autoconf git pkgconf jq python3 python3-pip python3-setuptools ca-certificates"
3
+ ENV BUILD_DEPS "g++ cmake make automake autoconf git pkgconf jq python3 libasan8 python3-pip python3-setuptools ca-certificates"
4
4
5
5
RUN \
6
6
apt-get update && \
Original file line number Diff line number Diff line change 1
1
FROM ubuntu:noble
2
2
3
- ENV RUNTIME_DEPS "curl ca-certificates libasan6 wget gzip"
3
+ ENV RUNTIME_DEPS "curl ca-certificates libasan8 wget gzip"
4
4
5
5
RUN \
6
6
apt-get update && \
You can’t perform that action at this time.
0 commit comments