From 9c5772b51dde630714f4ddd485426ffbe04f49e0 Mon Sep 17 00:00:00 2001 From: Systemcluster Date: Mon, 12 Feb 2024 00:17:22 +0900 Subject: [PATCH] Add Windows build check to CI --- .github/workflows/llama-cpp-rs-check.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/llama-cpp-rs-check.yml b/.github/workflows/llama-cpp-rs-check.yml index b6d23056..0a2f433e 100644 --- a/.github/workflows/llama-cpp-rs-check.yml +++ b/.github/workflows/llama-cpp-rs-check.yml @@ -67,4 +67,16 @@ jobs: - name: Setup Rust uses: dtolnay/rust-toolchain@stable - name: Build - run: cargo build \ No newline at end of file + run: cargo build + windows: + name: Check that it builds on windows + runs-on: windows-latest + steps: + - name: checkout + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 + with: + submodules: recursive + - name: Setup Rust + uses: dtolnay/rust-toolchain@stable + - name: Build + run: cargo build