From 6723610470685c2ea9846764bd16d8d34c495df6 Mon Sep 17 00:00:00 2001 From: DMG Date: Thu, 22 Aug 2024 10:13:58 -0700 Subject: [PATCH] Use matrix.os for macos workflow "runs-on" Previously was using macos-latest regardless of the value of matrix.os. Should now use macOS 12, 13 and Latest. --- .github/workflows/macos.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/macos.yaml b/.github/workflows/macos.yaml index f2a7bf73..4f3deb79 100644 --- a/.github/workflows/macos.yaml +++ b/.github/workflows/macos.yaml @@ -28,9 +28,8 @@ concurrency: jobs: macos: - name: test macos with libevent - runs-on: macos-latest - + name: macOS with Libevent + strategy: fail-fast: false matrix: @@ -40,6 +39,8 @@ jobs: tls: [ 'true', 'false' ] def_debug: [ 'true', 'false' ] + runs-on: ${{ matrix.os }} + steps: - name: Install dependencies (macOS) if: contains(matrix.os, 'macos')