Skip to content

Commit

Permalink
oh, to time travel to the past and end the suffering
Browse files Browse the repository at this point in the history
  • Loading branch information
lilith committed Aug 23, 2024
1 parent 52f4656 commit ec88c51
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,13 @@ jobs:
### Install Nasm for Windows ###
- name: Install nasm
run: choco install nasm
if: ${{contains( matrix.os, 'windows' )}}
if: ${{contains( matrix.os, 'windows' ) && !contains( matrix.os, 'windows-11-arm' )}}

### Install Nasm for Windows (arm) ###
- name: Install nasm
run: winget install nasm
if: ${{contains( matrix.os, 'windows-11-arm' )}}


### Fallback in case Nasm install fails ###
- name: Install nasm (windows fallback)
Expand Down

0 comments on commit ec88c51

Please sign in to comment.