diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 566e3550e0..29a4dc5ac2 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -92,3 +92,10 @@ jobs: n=$(nproc) echo "Using $n test jobs" ${build_dir}/rippled --unittest --unittest-jobs $n + + success: + name: mac test success + needs: test + runs-on: ubuntu-latest + steps: + - run: true diff --git a/.github/workflows/nix.yml b/.github/workflows/nix.yml index d9a67a63e9..a9a1713417 100644 --- a/.github/workflows/nix.yml +++ b/.github/workflows/nix.yml @@ -163,6 +163,13 @@ jobs: run: | ${build_dir}/rippled --unittest --unittest-jobs $(nproc) + success: + name: nix test success + needs: test + runs-on: ubuntu-latest + steps: + - run: true + coverage: strategy: fail-fast: false diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 7641db0d10..6b4466eaa1 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -95,3 +95,10 @@ jobs: run: | ${build_dir}/${{ matrix.configuration.type }}/rippled --unittest \ --unittest-jobs $(nproc) + + success: + name: windows test success + needs: test + runs-on: ubuntu-latest + steps: + - run: true