Skip to content

Commit 29f26fe

Browse files
authored
[CI] Force overwrite of iga64 in igc dev driver (#16073)
Fix the installation failures. dpkg: error processing archive intel-igc-opencl-devel_2.1.0+0_amd64.deb (--install): trying to overwrite '/usr/local/bin/iga64', which is also in package intel-igc-media 1.0.17791.9 dpkg-deb: error: paste subprocess was killed by signal (Broken pipe) Setting up intel-igc-core-2 (2.1.0) ...
1 parent 61d963b commit 29f26fe

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

devops/scripts/install_drivers.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,9 @@ InstallIGFX () {
143143
echo "Download IGC dev git hash $IGC_DEV_VER"
144144
get_pre_release_igfx $IGC_DEV_URL $IGC_DEV_VER
145145
echo "Install IGC dev git hash $IGC_DEV_VER"
146-
dpkg -i *.deb
146+
# New dev IGC packaged iga64 conflicting with iga64 from intel-igc-media
147+
# force overwrite to workaround it first.
148+
dpkg -i --force-overwrite *.deb
147149
echo "Install libopencl-clang"
148150
# Workaround only, will download deb and install with dpkg once fixed.
149151
cp -d libopencl-clang.so.14* /usr/local/lib/

0 commit comments

Comments
 (0)