From fa3481fc78793a0ef5b8dc15d92165e8c1274001 Mon Sep 17 00:00:00 2001 From: Minecon724 Date: Sat, 19 Oct 2024 17:28:32 +0200 Subject: [PATCH] closer --- .forgejo/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 0c596b4..648d061 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -4,13 +4,13 @@ jobs: runs-on: docker container: debian:sid steps: - - run: apt update + - run: dpkg --add-architecture amd64 && apt update - name: Install prerequisites run: apt install -y git ca-certificates - name: Install toolchain run: apt install -y gcc-x86-64-linux-gnu gcc-aarch64-linux-gnu make - - name: Install dependencies - run: apt install -y libelf-dev + - name: Install dependencies (arm64 & amd64) + run: apt install -y libelf-dev:arm64 libelf-dev:amd64 - name: Clone repository run: git clone https://git.m724.eu/Minecon724/criscv.git . - run: CC=x86_64-linux-gnu-gcc make libinfo