Install required i386 deps on runner

This commit is contained in:
Edremon 2024-11-22 19:05:40 +00:00
parent a86de0f61c
commit 06131b45a6
2 changed files with 4 additions and 0 deletions

View File

@ -92,6 +92,7 @@ jobs:
- name: "Install required packages"
shell: "bash"
run: |
sudo dpkg --add-architecture i386
sudo apt update -y
sudo apt install -y coreutils # echo, printf, etc...
sudo apt install -y build-essential
@ -100,6 +101,7 @@ jobs:
# sudo apt install -y clang
sudo apt install -y libglx-dev # needed for overlay build (header files such as GL/glx.h)
sudo apt install -y libgl-dev # needed for overlay build (header files such as GL/gl.h)
sudo apt install -y libx11-dev:i386 # needed for overlay build
# sudo apt install -y binutils # (optional) contains the tool 'readelf' mainly, and other usefull binary stuff
# build target

View File

@ -68,6 +68,7 @@ jobs:
- name: "Install required packages"
shell: "bash"
run: |
sudo dpkg --add-architecture i386
sudo apt update -y
sudo apt install -y coreutils # echo, printf, etc...
sudo apt install -y build-essential
@ -76,6 +77,7 @@ jobs:
# sudo apt install -y clang
sudo apt install -y libglx-dev # needed for overlay build (header files such as GL/glx.h)
sudo apt install -y libgl-dev # needed for overlay build (header files such as GL/gl.h)
sudo apt install -y libx11-dev:i386 # needed for overlay build
# sudo apt install -y binutils # (optional) contains the tool 'readelf' mainly, and other usefull binary stuff
- name: "Build deps"