diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index a2048d7..91d4bc4 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -55,7 +55,7 @@ jobs: if: runner.os != 'Windows' uses: actions/upload-artifact@v4 with: - name: RecompBuildArtifacts-${{ matrix.os }}-${{ matrix.type }} + name: N64Recomp-${{ matrix.os }}-${{ matrix.type }} path: | ./cmake-build/LiveRecompTest ./cmake-build/N64Recomp @@ -67,18 +67,14 @@ jobs: run: |- # enable ccache set $env:PATH="$env:USERPROFILE/.cargo/bin;$env:PATH" - $cpuCores = (Get-CimInstance -ClassName Win32_Processor).NumberOfLogicalProcessors - # remove LLVM from PATH so it doesn't overshadow the one provided by VS - $env:PATH = ($env:PATH -split ';' | Where-Object { $_ -ne 'C:\Program Files\LLVM\bin' }) -join ';' - cmake -DCMAKE_BUILD_TYPE=${{ matrix.type }} -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_MAKE_PROGRAM=ninja -G Ninja -S . -B cmake-build cmake --build cmake-build --config ${{ matrix.type }} - name: Upload Build Artifacts (Windows) if: runner.os == 'Windows' uses: actions/upload-artifact@v4 with: - name: RecompBuildArtifacts-${{ matrix.os }}-${{ matrix.type }} + name: N64Recomp-${{ matrix.os }}-${{ matrix.type }} path: | ./cmake-build/LiveRecompTest.exe ./cmake-build/N64Recomp.exe