From 8f64ee165000327d6c8fca21983109e5a458595c Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Mon, 10 Jun 2024 01:15:33 +0200 Subject: [PATCH] Try to fix CI --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6fd19a494..589424e06 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,12 @@ jobs: - name: Setup Rust toolchain uses: dtolnay/rust-toolchain@stable + - run: choco install nasm + if: startsWith(matrix.os, 'windows') + + - run: echo "%PATH%;C:\Program Files\NASM" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + if: startsWith(matrix.os, 'windows') + - name: cargo build run: cargo build