From: Dmitry Misharov Date: Tue, 22 Apr 2025 07:52:14 +0000 (+0200) Subject: Replace ilammy/setup-nasm with nasm install from choco X-Git-Tag: openssl-3.0.17~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ab2d5d2d6f849d0f83bcad9b13e2bb389b9e37a5;p=thirdparty%2Fopenssl.git Replace ilammy/setup-nasm with nasm install from choco Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/27462) (cherry picked from commit 1ad186986c8c90dfc58666531c0554641e022dbb) --- diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 9d9e8ea47f0..7a53e54d280 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -31,9 +31,10 @@ jobs: - uses: ilammy/msvc-dev-cmd@v1 with: arch: ${{ matrix.platform.arch }} - - uses: ilammy/setup-nasm@v1 - with: - platform: ${{ matrix.platform.arch }} + - name: install nasm + run: | + choco install nasm ${{ matrix.platform.arch == 'win32' && '--x86' || '' }} + "C:\Program Files${{ matrix.platform.arch == 'win32' && ' (x86)' || '' }}\NASM" | Out-File -FilePath "$env:GITHUB_PATH" -Append - uses: shogo82148/actions-setup-perl@v1 - name: prepare the build directory run: mkdir _build