From 6d4be958528f8dbd34a9125eedee28ca8011f781 Mon Sep 17 00:00:00 2001 From: Mike Pilgrem Date: Sat, 4 Mar 2023 10:41:07 +0000 Subject: [PATCH] pkg-config supplied in GitHub Hosted Runner for macOS `pkg-config` is now supplied in the GitHub Hosted Runner for macOS. See https://github.com/actions/runner-images/pull/7125. --- .github/workflows/integration-tests.yml | 5 ----- .github/workflows/unit-tests.yml | 5 ----- 2 files changed, 10 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 9c3e2543b2..691cf6657a 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -39,11 +39,6 @@ jobs: release-args: "" cache-bust: "23" steps: - - name: Setup macOS - if: startsWith(runner.os, 'macOS') - run: | - # pkg-config added because it is required by package digest-0.0.1.4. - brew install pkg-config - name: Clone project uses: actions/checkout@v3 - name: Cache dependencies on Unix-like OS diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index a257f00143..316b7ddcbc 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -52,11 +52,6 @@ jobs: extra-suffix: "" stack-args: "" steps: - - name: Setup macOS - if: startsWith(runner.os, 'macOS') - run: | - # pkg-config added because it is required by package digest-0.0.1.4. - brew install pkg-config - name: Clone project uses: actions/checkout@v3 - name: Cache dependencies on Unix-like OS