Skip to content
This repository has been archived by the owner on Nov 6, 2023. It is now read-only.

Commit

Permalink
install nasm from zip file
Browse files Browse the repository at this point in the history
  • Loading branch information
alehandru committed Sep 7, 2023
1 parent 566723b commit a6187ac
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build gRPC for Windows

on:
push:
branches: ['nh-57056-cpp17-github-actions']
branches: ['nh-57056-cpp17-github-actions-temp']

# Inputs for reusable workflow

Expand Down Expand Up @@ -30,7 +30,7 @@ jobs:
build:
strategy:
matrix:
arch: ['32', '64']
arch: ['64']
configuration: ['Release']
fail-fast: false

Expand All @@ -42,6 +42,14 @@ jobs:
choco install -y nasm
dir "C:/Program Files/NASM"
- name: Install NASM
shell: pwsh
run: |
mkdir -p ${{ github.workspace }}\temp\nasm
Invoke-WebRequest "https://www.nasm.us/pub/nasm/releasebuilds/2.16.01/win64/nasm-2.16.01-win64.zip" -OutFile "${{ github.workspace }}\temp\nasm.zip"
Expand-Archive -LiteralPath '${{ github.workspace }}\temp\nasm.zip' -DestinationPath 'C:/nasm'
ls 'C:/nasm'
- name: CMake version installed with Visual Studio
shell: pwsh
working-directory: ${{ github.workspace }}
Expand Down

0 comments on commit a6187ac

Please sign in to comment.