From 7162decfb768ec96ad46ccabb387b35a808d4285 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Mon, 23 Oct 2023 08:28:28 +0200 Subject: [PATCH] CI Linux: XIMEA install workaround XIMEA instller is currenctly broken (missing file bin/streamViewer.64 in the package). See failed run: --- .github/scripts/Linux/install_others.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/scripts/Linux/install_others.sh b/.github/scripts/Linux/install_others.sh index 276c83286..bdf328f4e 100755 --- a/.github/scripts/Linux/install_others.sh +++ b/.github/scripts/Linux/install_others.sh @@ -10,6 +10,7 @@ install_ximea() { curl -LO https://www.ximea.com/downloads/recent/XIMEA_Linux_SP.tgz tar xzf XIMEA_Linux_SP.tgz cd package + touch bin/streamViewer.64 # TOREMOVE sudo ./install -noudev }