mirror of
https://github.com/N64Recomp/N64Recomp.git
synced 2025-12-20 23:12:40 +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'
|
if: runner.os != 'Windows'
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: RecompBuildArtifacts-${{ matrix.os }}-${{ matrix.type }}
|
name: N64Recomp-${{ matrix.os }}-${{ matrix.type }}
|
||||||
path: |
|
path: |
|
||||||
./cmake-build/LiveRecompTest
|
./cmake-build/LiveRecompTest
|
||||||
./cmake-build/N64Recomp
|
./cmake-build/N64Recomp
|
||||||
|
|
@ -67,10 +67,6 @@ jobs:
|
||||||
run: |-
|
run: |-
|
||||||
# enable ccache
|
# enable ccache
|
||||||
set $env:PATH="$env:USERPROFILE/.cargo/bin;$env:PATH"
|
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 -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 }}
|
cmake --build cmake-build --config ${{ matrix.type }}
|
||||||
|
|
@ -78,7 +74,7 @@ jobs:
|
||||||
if: runner.os == 'Windows'
|
if: runner.os == 'Windows'
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: RecompBuildArtifacts-${{ matrix.os }}-${{ matrix.type }}
|
name: N64Recomp-${{ matrix.os }}-${{ matrix.type }}
|
||||||
path: |
|
path: |
|
||||||
./cmake-build/LiveRecompTest.exe
|
./cmake-build/LiveRecompTest.exe
|
||||||
./cmake-build/N64Recomp.exe
|
./cmake-build/N64Recomp.exe
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue