From 7e1292dd2da13851d2b6df4f24c12d0c48f9b021 Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Fri, 12 Sep 2025 11:09:26 +1200 Subject: [PATCH] CI: brew install autoconf for iverilog --- .github/workflows/test-build.yml | 6 ++++++ .github/workflows/test-sanitizers.yml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 16ad98bec..65d931797 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -131,6 +131,12 @@ jobs: path: .local/ key: ${{ matrix.os }}-${{ steps.get-iverilog.outputs.IVERILOG_GIT }} + - name: iverilog macOS deps + if: steps.cache-iverilog.outputs.cache-hit != 'true' && runner.os == 'macOS' + shell: bash + run: | + brew install autoconf + - name: Build iverilog if: steps.cache-iverilog.outputs.cache-hit != 'true' shell: bash diff --git a/.github/workflows/test-sanitizers.yml b/.github/workflows/test-sanitizers.yml index 255b9daa5..2ffd2db15 100644 --- a/.github/workflows/test-sanitizers.yml +++ b/.github/workflows/test-sanitizers.yml @@ -70,6 +70,12 @@ jobs: path: .local/ key: ${{ matrix.os }}-${{ steps.get-iverilog.outputs.IVERILOG_GIT }} + - name: iverilog macOS deps + if: steps.cache-iverilog.outputs.cache-hit != 'true' && runner.os == 'macOS' + shell: bash + run: | + brew install autoconf + - name: Build iverilog if: steps.cache-iverilog.outputs.cache-hit != 'true' shell: bash