CI Build Artifact Uploading (#165)

This commit is contained in:
LT_SCHMIDDY
2025-11-24 20:55:56 -05:00
committed by GitHub
parent c39a9b6c7e
commit f14ffe6064

View File

@@ -15,7 +15,7 @@ jobs:
matrix: matrix:
type: [ Debug, Release ] type: [ Debug, Release ]
# macos-13 is intel, macos-14 is arm, blaze/ubuntu-22.04 is arm # macos-13 is intel, macos-14 is arm, blaze/ubuntu-22.04 is arm
os: [ ubuntu-latest, windows-latest, macos-13, macos-14, blaze/ubuntu-22.04 ] os: [ ubuntu-latest, windows-latest, macos-15-intel, macos-14, blaze/ubuntu-22.04 ]
name: ${{ matrix.os }} (${{ (matrix.os == 'macos-14' || matrix.os == 'blaze/ubuntu-22.04') && 'arm64' || 'x64' }}, ${{ matrix.type }}) name: ${{ matrix.os }} (${{ (matrix.os == 'macos-14' || matrix.os == 'blaze/ubuntu-22.04') && 'arm64' || 'x64' }}, ${{ matrix.type }})
steps: steps:
- name: Checkout - name: Checkout
@@ -50,16 +50,34 @@ jobs:
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
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 }} --target N64Recomp -j $(nproc) cmake --build cmake-build --config ${{ matrix.type }} -j $(nproc)
- name: Upload Build Artifacts (Unix)
if: runner.os != 'Windows'
uses: actions/upload-artifact@v4
with:
name: N64Recomp-${{ runner.os }}-${{ runner.arch }}-${{ matrix.type }}
path: |
./cmake-build/LiveRecompTest
./cmake-build/N64Recomp
./cmake-build/OfflineModRecomp
./cmake-build/RecompModTool
./cmake-build/RSPRecomp
- name: Build N64Recomp (Windows) - name: Build N64Recomp (Windows)
if: runner.os == 'Windows' if: runner.os == 'Windows'
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 }} --target N64Recomp -j $cpuCores cmake --build cmake-build --config ${{ matrix.type }}
- name: Upload Build Artifacts (Windows)
if: runner.os == 'Windows'
uses: actions/upload-artifact@v4
with:
name: N64Recomp-${{ runner.os }}-${{ runner.arch }}-${{ matrix.type }}
path: |
./cmake-build/LiveRecompTest.exe
./cmake-build/N64Recomp.exe
./cmake-build/OfflineModRecomp.exe
./cmake-build/RecompModTool.exe
./cmake-build/RSPRecomp.exe