From 7a3aa70d82476eecc58fdfe7ccdd8908c5afa867 Mon Sep 17 00:00:00 2001 From: Matt Hess Date: Wed, 17 Dec 2025 05:05:07 +0000 Subject: [PATCH] Updated all references from p2pool to p2pool-salvium in the GitHub Actions workflow to match the actual binary name after the project rename. This fixes test execution failures across all platforms. --- .github/workflows/c-cpp.yml | 40 ++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index b3896ed..0f9ad4a 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -77,7 +77,7 @@ jobs: shell: alpine.sh {0} run: | cd build - ./p2pool --test + ./p2pool-salvium --test make -j$(nproc) randomx-tests external/src/RandomX/randomx-tests @@ -101,13 +101,13 @@ jobs: run: | cd build ls -la - file p2pool + file p2pool-salvium - name: Archive binary uses: actions/upload-artifact@v4 with: name: p2pool-alpine-static-${{ matrix.config.arch }} - path: build/p2pool + path: build/p2pool-salvium build-ubuntu: @@ -146,7 +146,7 @@ jobs: - name: Run RandomX tests run: | cd build - ./p2pool --test + ./p2pool-salvium --test make -j$(nproc) randomx-tests external/src/RandomX/randomx-tests @@ -168,7 +168,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: p2pool-${{ matrix.config.os }}-${{ matrix.config.c }} - path: build/p2pool + path: build/p2pool-salvium build-ubuntu-static-libs: @@ -225,7 +225,7 @@ jobs: - name: Run RandomX tests run: | cd build - ./p2pool --test + ./p2pool-salvium --test make -j$(nproc) randomx-tests external/src/RandomX/randomx-tests @@ -247,7 +247,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: p2pool-ubuntu-static-libs - path: build/p2pool + path: build/p2pool-salvium build-ubuntu-aarch64: @@ -302,7 +302,7 @@ jobs: - name: Run RandomX tests run: | cd build - ./p2pool --test + ./p2pool-salvium --test make -j$(nproc) randomx-tests external/src/RandomX/randomx-tests @@ -324,7 +324,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: p2pool-${{ matrix.config.os }}-aarch64 - path: build/p2pool + path: build/p2pool-salvium build-ubuntu-riscv64: @@ -385,7 +385,7 @@ jobs: - name: Run self-test shell: alpine.sh {0} - run: build/p2pool --test + run: build/p2pool-salvium --test - name: Build RandomX tests run: | @@ -419,7 +419,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: p2pool-${{ matrix.config.os }}-riscv64 - path: build/p2pool + path: build/p2pool-salvium build-windows-msys2: @@ -484,7 +484,7 @@ jobs: - name: Run RandomX tests run: | cd build - ./p2pool.exe --test + ./p2pool-salvium.exe --test make -j$(nproc) randomx-tests external/src/RandomX/randomx-tests.exe @@ -506,7 +506,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: p2pool-msys2-${{ matrix.config.c }}.exe - path: build/p2pool.exe + path: build/p2pool-salvium.exe build-windows-msbuild: @@ -623,7 +623,7 @@ jobs: - name: Run RandomX tests run: | cd build - ./p2pool --test + ./p2pool-salvium --test make -j4 randomx-tests external/src/RandomX/randomx-tests @@ -645,7 +645,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: p2pool-macos - path: build/p2pool + path: build/p2pool-salvium build-macos-aarch64: @@ -690,7 +690,7 @@ jobs: - name: Run RandomX tests run: | cd build - ./p2pool --test + ./p2pool-salvium --test make -j3 randomx-tests external/src/RandomX/randomx-tests @@ -712,7 +712,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: p2pool-macos-aarch64 - path: build/p2pool + path: build/p2pool-salvium build-freebsd: @@ -767,7 +767,7 @@ jobs: cd build cmake .. -DCMAKE_BUILD_TYPE=Release -DSTATIC_LIBS=ON make -j4 p2pool-salvium - ./p2pool --test + ./p2pool-salvium --test make -j4 randomx-tests external/src/RandomX/randomx-tests cd ../tests @@ -782,7 +782,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: p2pool-${{ matrix.os.name }}-${{ matrix.os.version }} - path: build/p2pool + path: build/p2pool-salvium build-openbsd: @@ -833,4 +833,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: p2pool-${{ matrix.os.name }}-${{ matrix.os.version }} - path: build/p2pool + path: build/p2pool-salvium