From e1654e9dd39f9003b2c06e51fd502857f9d20514 Mon Sep 17 00:00:00 2001 From: Jeroen van Rijn Date: Tue, 2 May 2023 14:16:07 +0200 Subject: [PATCH] Don't test Botan on MacOS for now Homebrew decided to update the formula for Botan to support version 3.0 of the package only. Until we update the bindings and the Windows library to match, we can't test on Mac. --- .github/workflows/ci.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5fb98fca4..1a6fa65bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,9 +56,9 @@ jobs: runs-on: macos-latest steps: - uses: actions/checkout@v1 - - name: Download LLVM, botan and setup PATH + - name: Download LLVM and setup PATH run: | - brew install llvm@11 botan + brew install llvm@11 echo "/usr/local/opt/llvm@11/bin" >> $GITHUB_PATH TMP_PATH=$(xcrun --show-sdk-path)/user/include echo "CPATH=$TMP_PATH" >> $GITHUB_ENV @@ -87,11 +87,6 @@ jobs: cd tests/core make timeout-minutes: 10 - - name: Vendor library tests - run: | - cd tests/vendor - make - timeout-minutes: 10 - name: Odin internals tests run: | cd tests/internal