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.
This commit is contained in:
Jeroen van Rijn
2023-05-02 14:16:07 +02:00
parent f0ba5d3821
commit e1654e9dd3
+2 -7
View File
@@ -56,9 +56,9 @@ jobs:
runs-on: macos-latest runs-on: macos-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Download LLVM, botan and setup PATH - name: Download LLVM and setup PATH
run: | run: |
brew install llvm@11 botan brew install llvm@11
echo "/usr/local/opt/llvm@11/bin" >> $GITHUB_PATH echo "/usr/local/opt/llvm@11/bin" >> $GITHUB_PATH
TMP_PATH=$(xcrun --show-sdk-path)/user/include TMP_PATH=$(xcrun --show-sdk-path)/user/include
echo "CPATH=$TMP_PATH" >> $GITHUB_ENV echo "CPATH=$TMP_PATH" >> $GITHUB_ENV
@@ -87,11 +87,6 @@ jobs:
cd tests/core cd tests/core
make make
timeout-minutes: 10 timeout-minutes: 10
- name: Vendor library tests
run: |
cd tests/vendor
make
timeout-minutes: 10
- name: Odin internals tests - name: Odin internals tests
run: | run: |
cd tests/internal cd tests/internal