From b6837ab8c99c6f74799f6e7f917b9bd0e325f872 Mon Sep 17 00:00:00 2001 From: Lachlan O'Dea Date: Sat, 3 Feb 2024 18:20:06 +1100 Subject: [PATCH] try windows again --- .github/workflows/scala.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml index d15477f..84c951a 100644 --- a/.github/workflows/scala.yml +++ b/.github/workflows/scala.yml @@ -25,6 +25,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Checkout libuv (for Windows) + if: matrix.os == 'windows-latest' uses: actions/checkout@v3 with: repository: libuv/libuv @@ -52,7 +53,7 @@ jobs: - name: Run tests run: | if [ "$RUNNER_OS" == "Windows" ]; then - PATH=build/Debug:$PATH sbt "$SBT_NATIVE_COMPILE $SBT_NATIVE_LINK show nativeCompileOptions ; show nativeLinkingOptions ; test" + PATH=libuv-build/build/Debug:$PATH sbt "$SBT_NATIVE_COMPILE $SBT_NATIVE_LINK show nativeCompileOptions ; show nativeLinkingOptions ; test" else sbt "$SBT_NATIVE_COMPILE $SBT_NATIVE_LINK show nativeCompileOptions ; show nativeLinkingOptions ; test" fi