From 0b63ea616bbeee04d610f3699fe6be7e00d6eddc Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Wed, 8 Feb 2023 11:15:46 +1100 Subject: [PATCH] Use release profile for Windows binaries --- .github/workflows/release.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8ca6ab0f92..710097b605 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -134,11 +134,15 @@ jobs: - name: Build Lighthouse for Windows portable if: matrix.arch == 'x86_64-windows-portable' - run: cargo install --path lighthouse --force --locked --features portable,gnosis --profile ${{ matrix.profile }} + # FIXME(sproul): profile set to release until this rustc issue is fixed: + # + # https://github.com/rust-lang/rust/issues/107781 + run: cargo install --path lighthouse --force --locked --features portable,gnosis --profile release - name: Build Lighthouse for Windows modern if: matrix.arch == 'x86_64-windows' - run: cargo install --path lighthouse --force --locked --features modern,gnosis --profile ${{ matrix.profile }} + # FIXME(sproul): profile set to release (see above) + run: cargo install --path lighthouse --force --locked --features modern,gnosis --profile release - name: Configure GPG and create artifacts if: startsWith(matrix.arch, 'x86_64-windows') != true