# HG changeset patch # User Markus Mützel # Date 1642144735 -3600 # Node ID d162766886ceecb484f2165f713acaa6b302604c # Parent 6ad5bb8f6a6d4332b5db86b507c4ddf876f7a034 GitHub-CI: Install autotools on Windows. * .github/workflows/codeql-analysis.yaml (windows), .github/workflows/make.yaml (windows): Autotools are no longer installed as part of the toolchain group. Install them explicitly. diff -r 6ad5bb8f6a6d -r d162766886ce .github/workflows/codeql-analysis.yaml --- a/.github/workflows/codeql-analysis.yaml Fri Jan 14 07:09:34 2022 +0100 +++ b/.github/workflows/codeql-analysis.yaml Fri Jan 14 08:18:55 2022 +0100 @@ -110,6 +110,7 @@ # The third block is for additional dependencies needed when building from a repository checkout. install: >- base-devel + ${{ matrix.target-prefix }}-autotools ${{ matrix.target-prefix }}-toolchain ${{ matrix.target-prefix }}-lapack ${{ matrix.target-prefix }}-openblas diff -r 6ad5bb8f6a6d -r d162766886ce .github/workflows/make.yaml --- a/.github/workflows/make.yaml Fri Jan 14 07:09:34 2022 +0100 +++ b/.github/workflows/make.yaml Fri Jan 14 08:18:55 2022 +0100 @@ -361,9 +361,10 @@ # The first block is for mandatory dependencies. # The second block is for optional dependencies needed when building from a release tarball. # The third block is for additional dependencies needed when building from a repository checkout. - # The fourth block is for additional run-time dependencies that aren't needed to build (to run test suite). + # The fourth block is for additional run-time dependencies (to run test suite) that aren't needed to build. install: >- base-devel + ${{ matrix.target-prefix }}-autotools ${{ matrix.target-prefix }}-toolchain ${{ matrix.target-prefix }}-lapack ${{ matrix.target-prefix }}-openblas