Compare commits

...

1 Commits

Author SHA1 Message Date
Jordan Rose
8a21ae537c CI: Test cross compilation with CC_<target> 2026-02-11 12:48:57 -08:00

View File

@ -315,6 +315,8 @@ jobs:
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
- name: Set CC_x86_64_unknown_linux_gnu
run: echo "CC_x86_64_unknown_linux_gnu=${{ matrix.target }}-gcc" >> $GITHUB_ENV
- name: Build for ${{ matrix.target }}
run: cargo build --target ${{ matrix.target }} --all-targets