Skip to content

Commit 34ff675

Browse files
committed
Build fix
1 parent 6d533e5 commit 34ff675

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/build-and-test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,12 @@ jobs:
152152
with:
153153
name: "OpenVINO-TestDrive-no-bindings-macOS.zip"
154154

155+
- name: Debug
156+
run: |
157+
ls -la ./
158+
ls -la ./bindings
159+
ls -la ./flutter
160+
155161
- name: Combine artifacts
156162
run: |
157163
tar -xvf macos_bindings.tgz -C ./bindings

openvino_bindings/scripts/setup_ffmpeg.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,10 @@ git checkout n$FFMPEG_VERSION
1111
./configure --prefix=/opt/ffmpeg --disable-autodetect --enable-rpath --enable-shared --disable-swscale --disable-avfilter --disable-static --disable-doc --install-name-dir=@rpath
1212
make -j8
1313
make install
14-
rm -rf /tmp/build_ffmpeg
14+
rm -rf /tmp/build_ffmpeg
15+
16+
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
17+
touch /etc/ld.so.conf.d/ffmpeg.conf
18+
bash -c "echo /opt/ffmpeg/lib >> /etc/ld.so.conf.d/ffmpeg.conf"
19+
ldconfig -v
20+
fi

0 commit comments

Comments
 (0)