From 7c119de0e602d4db0b1327378b6539077acfa535 Mon Sep 17 00:00:00 2001 From: Tig Date: Sun, 7 Jul 2024 17:04:35 -0600 Subject: [PATCH] need to install sed on macos --- .github/workflows/dotnet-core.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 7b5cfdf96..67959afc9 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -36,6 +36,10 @@ jobs: - name: Build Debug run: dotnet build --configuration Debug --no-restore + - name: Install sed on macOS + if: runner.os == 'macOS' + run: brew install gnu-sed + # See https://github.com/microsoft/vstest/issues/2952 for why the --blame stuff below is needed. # Without it, the test runner crashes on ubuntu (but not Windows)/ - name: Test