Update validate.yml - Renamed build artifacts

This commit is contained in:
LT_SCHMIDDY 2025-11-24 20:28:09 -05:00 committed by GitHub
parent 525673efdd
commit 58bccbd47c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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