diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2024-03-06 14:49:15 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-06 14:49:15 +0000 |
| commit | 703eab2f15b959797dfa1d81c4e9bc37ec00ff80 (patch) | |
| tree | 2086dfbe6da4f4f502a87c63f81b91ec1ff905a7 /.github | |
| parent | 04bfc926eedbdee2276748365056e8fa44be8184 (diff) | |
| parent | c044e295ce4a36eea5a58b21a16d3c2a8a792d26 (diff) | |
Merge pull request #3229 from Yawning/feature/moar-crypto
core/crypto: More improvements/additions
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 12 |
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 |