mirror of
https://github.com/N64Recomp/N64Recomp.git
synced 2025-12-20 15:02:43 +00:00
Update validate.yml - Renamed build artifacts
This commit is contained in:
parent
525673efdd
commit
58bccbd47c
1 changed files with 2 additions and 6 deletions
8
.github/workflows/validate.yml
vendored
8
.github/workflows/validate.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue