Skip to content

Commit 3e4ebd5

Browse files
authored
chore: GHA cross build upload artifacts fix (#745)
* chore: GHA cross build upload artifacts fix * update libasan version
1 parent 85284ea commit 3e4ebd5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build_cross.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -154,14 +154,14 @@ jobs:
154154
uses: actions/upload-artifact@v4
155155
with:
156156
name: pktvisord-linux-${{matrix.arch}}-static
157-
path: build/bin/pktvisord
157+
path: ${{github.workspace}}/src/build/bin/pktvisord
158158
retention-days: 7
159159

160160
- name: Upload pktvisor-reader
161161
uses: actions/upload-artifact@v4
162162
with:
163163
name: pktvisor-reader-linux-${{matrix.arch}}-static
164-
path: build/bin/pktvisor-reader
164+
path: ${{github.workspace}}/src/build/bin/pktvisor-reader
165165
retention-days: 7
166166

167167
pkvisor-cli:

docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ubuntu:noble AS cppbuild
22

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"
44

55
RUN \
66
apt-get update && \

docker/Dockerfile.crashhandler

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ubuntu:noble
22

3-
ENV RUNTIME_DEPS "curl ca-certificates libasan6 wget gzip"
3+
ENV RUNTIME_DEPS "curl ca-certificates libasan8 wget gzip"
44

55
RUN \
66
apt-get update && \

0 commit comments

Comments
 (0)