From 7be5e70fa9323c14b3f0ce78be47e9fddff079ee Mon Sep 17 00:00:00 2001 From: frectonz Date: Sat, 19 Oct 2024 00:26:24 +0300 Subject: [PATCH] chore: set nasm env var for all build environments --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e2dbf9f..4a0f059 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -107,6 +107,7 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} BUILD_MANIFEST_NAME: target/distrib/${{ join(matrix.targets, '-') }}-dist-manifest.json + AWS_LC_SYS_PREBUILT_NASM: 1 steps: - name: enable windows longpaths run: | @@ -141,7 +142,7 @@ jobs: - name: Build artifacts run: | # Actually do builds and make zips and whatnot - AWS_LC_SYS_PREBUILT_NASM=1 cargo dist build ${{ needs.plan.outputs.tag-flag }} --print=linkage --output-format=json ${{ matrix.dist_args }} > dist-manifest.json + cargo dist build ${{ needs.plan.outputs.tag-flag }} --print=linkage --output-format=json ${{ matrix.dist_args }} > dist-manifest.json echo "cargo dist ran successfully" - id: cargo-dist name: Post-build