-
Notifications
You must be signed in to change notification settings - Fork 114
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
bb373e5
commit 9369154
Showing
2 changed files
with
17 additions
and
5 deletions.
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 |
---|---|---|
|
@@ -293,7 +293,7 @@ jobs: | |
- name: Set CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER | ||
run: echo "CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=${{ matrix.target }}-gcc" >> $GITHUB_ENV | ||
- name: Build for ${{ matrix.target }} | ||
run: cargo build --target ${{ matrix.target }} --all-targets | ||
run: cargo build -vvv --target ${{ matrix.target }} --all-targets | ||
|
||
cross-build-fips: | ||
name: Cross build from macOS to Linux (FIPS) | ||
|
@@ -320,18 +320,30 @@ jobs: | |
directory: ${{ runner.temp }}/llvm | ||
- name: Add clang++-12 link | ||
working-directory: ${{ runner.temp }}/llvm/bin | ||
run: ln -s clang clang++-12 | ||
run: ln -s clang++ clang++-12 | ||
- name: Install ${{ matrix.target }} toolchain | ||
# 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: Debug brew | ||
run: brew linkage x86_64-unknown-linux-gnu | ||
- name: Debug brew2 | ||
run: brew linkage --test x86_64-unknown-linux-gnu | ||
- name: Debug brew3 | ||
run: brew doctor | ||
- 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 | ||
- name: Set BORING_BSSL_FIPS_SYSROOT | ||
run: echo "BORING_BSSL_FIPS_SYSROOT=$BORING_BSSL_FIPS_COMPILER_EXTERNAL_TOOLCHAIN/${{ matrix.target }}/sysroot" >> $GITHUB_ENV | ||
shell: bash | ||
- name: Set CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER | ||
run: echo "CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=${{ matrix.target }}-gcc" >> $GITHUB_ENV | ||
run: echo "CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=x86_64-linux-gnu-gcc" >> $GITHUB_ENV | ||
- name: Debug | ||
run: which clang | ||
shell: bash | ||
- name: Debug | ||
run: ls /Users/runner/work/_temp/llvm/bin | ||
shell: bash | ||
- name: Build for ${{ matrix.target }} | ||
run: cargo build --target ${{ matrix.target }} --all-targets --features fips | ||
|
||
|
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