Skip to content

Commit

Permalink
CI ARM: fixed XIMEA installer URL
Browse files Browse the repository at this point in the history
Linux ARM installer are no longer part of Linux package but have a
separate one. See failed run:
<https://github.com/CESNET/UltraGrid/actions/runs/6622231780/job/17987434585>
  • Loading branch information
MartinPulec committed Oct 24, 2023
1 parent 054668c commit a7f801e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/scripts/Linux/install_others.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,13 @@ if [ "$(id -u)" -eq 0 ]; then
fi

install_ximea() {
curl -LO https://www.ximea.com/downloads/recent/XIMEA_Linux_SP.tgz
tar xzf XIMEA_Linux_SP.tgz
if [ "$(dpkg --print-architecture | cut -b1-3)" = arm ]; then
filename=XIMEA_Linux_ARM_SP.tgz
else
filename=XIMEA_Linux_SP.tgz
fi
curl -LO https://www.ximea.com/downloads/recent/$filename
tar xzf $filename
cd package
touch bin/streamViewer.64 # TOREMOVE
sudo ./install -noudev
Expand Down

0 comments on commit a7f801e

Please sign in to comment.