From 266933500af73b1ef0f716060c5bb7e6785bfe0b Mon Sep 17 00:00:00 2001 From: Danya Berezun Date: Tue, 4 Mar 2025 17:52:21 +0100 Subject: [PATCH] fix macos-13 --- .github/workflows/blank.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index 51b47eb4a..22f1f9523 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -51,11 +51,11 @@ jobs: - run: eval $(opam env) - run: rm -fr runtime32 - if: ${{ matrix.os == 'macos-latest' }} + if: ${{ matrix.os == 'macos-latest' || matrix.os == 'macos-13' }} - run: opam exec -- dune b src runtime runtime32 stdlib tutorial - if: ${{ matrix.os != 'macos-latest' }} + if: ${{ matrix.os != 'macos-latest' && matrix.os != 'macos-13'}} - run: opam exec -- dune b src runtime stdlib tutorial - if: ${{ matrix.os == 'macos-latest' }} + if: ${{ matrix.os == 'macos-latest' || matrix.os == 'macos-13' }} - run: opam exec -- dune b @install --profile=release - run: opam exec -- dune install --profile=release - run: opam exec -- dune test stdlib/regression