chore: Remove autoconf purge step and adjust installation method for autoconf
Some checks failed
Build OS / Deploy Documentation to GitHub Pages (push) Failing after 1m46s
Build OS / Build Cross-Compiler & Toolchain (push) Failing after 13m37s
Build OS / Analyze with CodeQL (cpp) (push) Has been skipped
Build OS / Build amd64 (push) Has been skipped
Build OS / Build i386 (push) Has been skipped
Build OS / Build aarch64 (push) Has been skipped
Build OS / Flawfinder (push) Failing after 2m29s

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
EnderIce2 2025-01-04 18:37:32 +02:00
parent f015ff606f
commit 4c0cb59aa7
No known key found for this signature in database
GPG Key ID: 2EE20AF089811A5A

View File

@ -52,13 +52,6 @@ jobs:
if: steps.cache-cross.outputs.cache-hit != 'true'
run: sudo apt update
- name: Purge autoconf
if: steps.cache-cross.outputs.cache-hit != 'true'
run: |
sudo apt --purge remove *autoconf*
sudo apt autoremove
sudo apt clean
- name: Install GCC Dependencies
if: steps.cache-cross.outputs.cache-hit != 'true'
run: sudo apt -y install build-essential bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo libzstd-dev libisl-dev m4 automake gettext gperf dejagnu guile-3.0 guile-3.0-dev expect tcl autogen tex-common sphinx-common git ssh diffutils patch autoconf2.69 libtool
@ -68,10 +61,9 @@ jobs:
run: |
if [ "$(autoconf --version | head -n 1 | awk '{print $NF}')" != "2.69" ]; then
echo "Autoconf version is not 2.69, performing additional steps..."
sudo apt --purge remove *autoconf* *automake*
sudo apt -y install wget dpkg automake
sudo apt -y install wget dpkg
wget https://launchpad.net/ubuntu/+archive/primary/+files/autoconf_2.69-11.1_all.deb
sudo apt -y install ./autoconf_2.69-11.1_all.deb
sudo apt -y --allow-downgrades install ./autoconf_2.69-11.1_all.deb
fi
- name: Clone All