Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,12 @@ jobs:
with:
go-version: ">=1.22.0"
- name: Install ${{ matrix.target }} toolchain
run: brew tap messense/macos-cross-toolchains && brew install ${{ matrix.target }}
run: |
brew tap messense/macos-cross-toolchains
brew untap aws/tap || true
brew trust messense/macos-cross-toolchains
brew install ${{ matrix.target }}
shell: bash
- name: Set BORING_BSSL_SYSROOT
run: echo "BORING_BSSL_SYSROOT=$(brew --prefix ${{ matrix.target }})/toolchain/${{ matrix.target }}/sysroot" >> $GITHUB_ENV
shell: bash
Expand Down
1 change: 1 addition & 0 deletions btls/src/ssl/test/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ mod cert_compressor;
mod cert_verify;
mod custom_verify;
mod ech;
mod patches;
mod private_key_method;
mod server;
mod session;
Expand Down
Loading
Loading