From 928703a42377ab1b907625a6022163595ada3812 Mon Sep 17 00:00:00 2001 From: tienntr <93871686+tienntr@users.noreply.github.com> Date: Wed, 13 Dec 2023 08:32:01 +0000 Subject: [PATCH] Don't build QEMU because we don't have python >= 3.7 QEMU 8 requires python >= 3.7, which is problematic on CentOS 7. --- .github/workflows/build-centos7.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/build-centos7.yaml b/.github/workflows/build-centos7.yaml index 404f8805d89..a50c18e9bf5 100644 --- a/.github/workflows/build-centos7.yaml +++ b/.github/workflows/build-centos7.yaml @@ -34,7 +34,7 @@ jobs: - name: Checkout submodules run: | git config --global --add safe.directory ${GITHUB_WORKSPACE} - git submodule init binutils gcc gdb glibc newlib qemu spike + git submodule init binutils gcc gdb glibc newlib spike git submodule update --recursive --progress --depth=1 -j 0 - name: Configure Newlib toolchain @@ -45,9 +45,6 @@ jobs: - name: Build Newlib toolchain run: scl enable devtoolset-11 -- make -j $(nproc) - - name: Build QEMU - run: scl enable devtoolset-11 -- make -j $(nproc) build-sim SIM=qemu - - name: Build Spike run: scl enable devtoolset-11 -- make -j $(nproc) build-sim SIM=spike