Skip to content

Commit

Permalink
CI: Add bare-bones Windows workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
thedataking committed Jul 11, 2024
1 parent 585d21a commit dafb776
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build-and-test-x86.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,24 @@ jobs:
name: meson-test-logs-x86_64-apple-darwin
path: |
${{ github.workspace }}/build/meson-logs/testlog-*.txt
test-on-windows-2022:
runs-on: windows-2022
steps:
- name: install prerequisites
run: |
choco install nasm
shell: pwsh
- name: add nasm to path
run: |
$nasmPath = "$($env:SystemDrive)\Program Files\NASM"
echo $nasmPath
dir $nasmPath
echo "$nasmPath" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: check nasm installation
run: nasm -v
- name: git checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: cargo build
run: cargo build --release

0 comments on commit dafb776

Please sign in to comment.