-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ef8146b
commit a7bfe0d
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -322,7 +322,8 @@ jobs: | |
working-directory: ${{ runner.temp }}/llvm/bin | ||
run: ln -s clang clang++-12 | ||
- name: Install ${{ matrix.target }} toolchain | ||
run: brew tap messense/macos-cross-toolchains && brew install --overwrite [email protected] && brew install ${{ matrix.target }} | ||
# TODO(rmehra): find a better way to overwrite the python3 version without specifying version | ||
run: brew tap messense/macos-cross-toolchains && brew install --overwrite [email protected] && brew install ${{ matrix.target }} | ||
- name: Set BORING_BSSL_FIPS_COMPILER_EXTERNAL_TOOLCHAIN | ||
run: echo "BORING_BSSL_FIPS_COMPILER_EXTERNAL_TOOLCHAIN=$(brew --prefix ${{ matrix.target }})/toolchain" >> $GITHUB_ENV | ||
shell: bash | ||
|