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