Install libs

original commit: 716f0eec0d1d00905e92237401aaa5bf524a4a47
This commit is contained in:
Paulo Matos 2020-04-26 14:12:15 +02:00
parent d2fc1f4235
commit 00bb57300b

View File

@ -21,12 +21,17 @@ jobs:
submodules: 'recursive' submodules: 'recursive'
- name: Proceed with TARGET_MACHINE == ${{ matrix.mach }} - name: Proceed with TARGET_MACHINE == ${{ matrix.mach }}
run: echo $TARGET_MACHINE run: echo $TARGET_MACHINE
- name: Install multilib for 32-bit - name: Install libs for 32-bit
if: matrix.mach == 'i3le' || matrix.mach == 'ti3le' if: matrix.mach == 'i3le' || matrix.mach == 'ti3le'
run: | run: |
sudo dpkg --add-architecture i386 sudo dpkg --add-architecture i386
sudo apt-get update sudo apt-get update
sudo apt-get install -y gcc-multilib lib32ncurses5-dev libx32ncurses5-dev uuid-dev:i386 libssl-dev:i386 sudo apt-get install -y gcc-multilib lib32ncurses5-dev libx32ncurses5-dev uuid-dev:i386 libssl-dev:i386
- name: Install libs for 64-bit
if: matrix.mach == 'a6le' || matrix.mach == 'ta6le'
run: |
sudo apt-get update
sudo apt-get install -y libncurses5-dev libxncurses5-dev uuid-dev libssl-dev
- name: Build bootfiles - name: Build bootfiles
run: .github/scripts/dobootfile.sh run: .github/scripts/dobootfile.sh
- name: Build Chez - name: Build Chez