aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorYawning Angel <yawning@schwanenlied.me>2024-03-02 21:52:43 +0900
committerYawning Angel <yawning@schwanenlied.me>2024-03-04 18:20:56 +0900
commitc044e295ce4a36eea5a58b21a16d3c2a8a792d26 (patch)
treed211d456f2de4b333054542fb472833600bd8eb7 /.github
parent87ab3f5dc87dd64f3d7f55cabf1545be8998e997 (diff)
vendor/botan: Remove
This is infrequently maintained, and has been a strict subset of what is available in `core:crypto` for a while. Instead of improving the bindings, it is better to spend resources improving `core:crypto`.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 1d30e1dd0..a839f3f2c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -7,8 +7,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- - name: Download LLVM, botan
- run: sudo apt-get install llvm-11 clang-11 libbotan-2-dev botan
+ - name: Download LLVM
+ run: sudo apt-get install llvm-11 clang-11
- name: build odin
run: ./build_odin.sh release
- name: Odin version
@@ -61,9 +61,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@13 botan
+ brew install llvm@13
echo "/usr/local/opt/llvm@13/bin" >> $GITHUB_PATH
TMP_PATH=$(xcrun --show-sdk-path)/user/include
echo "CPATH=$TMP_PATH" >> $GITHUB_ENV
@@ -102,9 +102,9 @@ jobs:
runs-on: macos-14 # This is an arm/m1 runner.
steps:
- uses: actions/checkout@v1
- - name: Download LLVM, botan and setup PATH
+ - name: Download LLVM and setup PATH
run: |
- brew install llvm@13 botan
+ brew install llvm@13
echo "/opt/homebrew/opt/llvm@13/bin" >> $GITHUB_PATH
TMP_PATH=$(xcrun --show-sdk-path)/user/include
echo "CPATH=$TMP_PATH" >> $GITHUB_ENV