From 18136b7658a7e197501411e77ab547b4b6bdf86c Mon Sep 17 00:00:00 2001 From: RICCIARDI-Adrien Date: Sun, 26 Nov 2023 09:17:29 +0100 Subject: [PATCH] Added support for 32-bit and 64-bit RISC-V architectures. Signed-off-by: RICCIARDI-Adrien --- .github/workflows/generate_images.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/generate_images.yml b/.github/workflows/generate_images.yml index 3e601f9..5b948bc 100644 --- a/.github/workflows/generate_images.yml +++ b/.github/workflows/generate_images.yml @@ -7,8 +7,20 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - defconfig_name: [qemu_x86_defconfig, qemu_x86_64_defconfig, raspberrypi4_defconfig, raspberrypi4_64_defconfig, qemu_ppc64le_pseries_defconfig, qemu_mips32r2_malta_defconfig, qemu_mips64_malta_defconfig] - libc_name: [glibc, uclibc, musl] + defconfig_name: + - qemu_x86_defconfig + - qemu_x86_64_defconfig + - raspberrypi4_defconfig + - raspberrypi4_64_defconfig + - qemu_ppc64le_pseries_defconfig + - qemu_mips32r2_malta_defconfig + - qemu_mips64_malta_defconfig + - qemu_riscv32_virt_defconfig + - qemu_riscv64_virt_defconfig + libc_name: + - glibc + - uclibc + - musl env: BUILDROOT_DIRECTORY_NAME: /home/runner/buildroot-${{ matrix.defconfig_name }}-${{ matrix.libc_name }} permissions: