From f11c00a4e337ce802e2185d531de04b415d411eb Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Tue, 26 Nov 2024 03:37:31 +0200 Subject: [PATCH] chore: (Again) Fix workflow error Too bad that there's no way of testing a workflow. --- .github/workflows/makefile.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index adcc6f18..a67846e5 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -51,7 +51,9 @@ jobs: - name: Install GCC Dependencies if: steps.cache-cross.outputs.cache-hit != 'true' - run: sudo apt install build-essential autoconf2.69 bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo libzstd-dev libisl-dev autoconf m4 automake gettext gperf dejagnu guile-3.0 guile-3.0-dev expect tcl autogen tex-common sphinx-common git ssh diffutils patch -y + run: | + sudo apt -y install build-essential bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo libzstd-dev libisl-dev autoconf m4 automake gettext gperf dejagnu guile-3.0 guile-3.0-dev expect tcl autogen tex-common sphinx-common git ssh diffutils patch + sudo apt -y remove autoconf* && sudo apt -y install autoconf2.69 - name: Clone All if: steps.cache-cross.outputs.cache-hit != 'true'