Skip to content

Commit

Permalink
windows fix
Browse files Browse the repository at this point in the history
  • Loading branch information
joshstevens19 committed Aug 6, 2024
1 parent 3f4eefb commit 169d917
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,19 @@ jobs:
if: matrix.target == 'x86_64-pc-windows-msvc'
run: |
choco install nasm
echo "::add-path::C:\\Program Files\\NASM"
- name: Verify nasm installation
refreshenv
nasm -v
echo "C:\Program Files\NASM" >> $GITHUB_PATH
- name: Refresh environment
if: matrix.target == 'x86_64-pc-windows-msvc'
run: |
nasm -v
where nasm
Import-Module "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
refreshenv
- name: Set AWS_LC_SYS_NO_ASM for Windows
if: matrix.target == 'x86_64-pc-windows-msvc'
run: echo "AWS_LC_SYS_NO_ASM=1" >> $GITHUB_ENV

- name: Build binaries
working-directory: cli
Expand Down

0 comments on commit 169d917

Please sign in to comment.