From 39ca56bf33975b8a8b7e87928d67dc66366161da Mon Sep 17 00:00:00 2001 From: Alexander Amelkin Date: Wed, 3 Nov 2021 16:13:30 +0300 Subject: [PATCH] ci: Add support for MacOS-11 GitHub has made macos-11 virtual environment available. Enable it for ipmitool. Signed-off-by: Alexander Amelkin --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e13ddc2..0ae024c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,10 @@ jobs: run: make distcheck macos-catalina: - runs-on: macos-10.15 + strategy: + matrix: + os: [ macos-10.15, macos-11 ] + runs-on: ${{ matrix.os }} steps: - name: install dependencies