From 9804bde9c2927cf9f5249d7028846c4d9d6be441 Mon Sep 17 00:00:00 2001 From: Chris Seymour Date: Sat, 14 Oct 2023 18:52:51 +0100 Subject: [PATCH] C: drive and 8 threads --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4c96ce865..48196c33a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,16 +33,16 @@ jobs: if: matrix.os == 'windows-2019-large' with: name: PATH - value: D:\a\dorado\dorado\dist\bin;$env:PATH + value: C:\a\dorado\dorado\dist\bin;$env:PATH - name: Build dorado run: | cmake -S . -B cmake-build ${{ matrix.arch }} - cmake --build cmake-build --config Release -j 4 + cmake --build cmake-build --config Release -j 8 - name: Cleanup torch uses: JesseTG/rm@v1.0.3 with: - path: D:\a\dorado\dorado\3rdparty + path: C:\a\dorado\dorado\3rdparty - name: Test dorado run: | - cmake --build cmake-build --config Release --target install -j 4 + cmake --build cmake-build --config Release --target install -j 8 ctest -C Release --test-dir cmake-build --output-on-failure --verbose