From 4767424aee4716eabf7bf2b6cb4ab576066f6218 Mon Sep 17 00:00:00 2001 From: Mr-Wiseguy Date: Sat, 28 Sep 2024 19:01:03 -0400 Subject: [PATCH] Fix CI building the wrong target in the N64Recomp repo --- .github/workflows/validate.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 5cccfaa..442d031 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -64,7 +64,7 @@ jobs: # Build N64Recomp & RSPRecomp cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER=g++-11 -DCMAKE_C_COMPILER=gcc-11 -DCMAKE_MAKE_PROGRAM=ninja -G Ninja -S . -B cmake-build - cmake --build cmake-build --config Release --target N64Recomp -j $(nproc) + cmake --build cmake-build --config Release --target N64RecompCLI -j $(nproc) cmake --build cmake-build --config Release --target RSPRecomp -j $(nproc) # Copy N64Recomp & RSPRecomp to root directory @@ -160,7 +160,7 @@ jobs: # Build N64Recomp & RSPRecomp cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER=g++-11 -DCMAKE_C_COMPILER=gcc-11 -DCMAKE_MAKE_PROGRAM=ninja -G Ninja -S . -B cmake-build - cmake --build cmake-build --config Release --target N64Recomp -j $(nproc) + cmake --build cmake-build --config Release --target N64RecompCLI -j $(nproc) cmake --build cmake-build --config Release --target RSPRecomp -j $(nproc) # Copy N64Recomp & RSPRecomp to root directory @@ -234,7 +234,7 @@ jobs: $cpuCores = (Get-CimInstance -ClassName Win32_Processor).NumberOfLogicalProcessors cmake -DCMAKE_BUILD_TYPE=Release -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 Release --target N64Recomp -j $cpuCores + cmake --build cmake-build --config Release --target N64RecompCLI -j $cpuCores cmake --build cmake-build --config Release --target RSPRecomp -j $cpuCores # Copy N64Recomp & RSPRecomp to root directory