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 8edc3f1 commit a423ccd
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,14 +123,18 @@ jobs:
# Get-Command nasm | Format-List
# nasm -v

- name: Set AWS_LC_SYS_NO_ASM for Windows
- name: Set and verify 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
shell: bash
run: |
echo "AWS_LC_SYS_NO_ASM=1" >> $GITHUB_ENV
echo "AWS_LC_SYS_NO_ASM is set to: $AWS_LC_SYS_NO_ASM"
- name: Build binaries
working-directory: cli
env:
SVM_TARGET_PLATFORM: ${{ matrix.svm_target_platform }}
AWS_LC_SYS_NO_ASM: 1
shell: bash
run: |
set -eo pipefail
Expand Down

0 comments on commit a423ccd

Please sign in to comment.