Skip to content

Commit

Permalink
ci: fixed workflow for windows os
Browse files Browse the repository at this point in the history
  • Loading branch information
jfayot committed Nov 25, 2024
1 parent 30c8fa0 commit d26b1a1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ jobs:
shell: bash
run: |
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
- name: Install dependencies on Windows
if: runner.os == 'Windows'
run: |
choco install -y nasm
echo "C:\Program Files\NASM" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
Expand Down

0 comments on commit d26b1a1

Please sign in to comment.