mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Make a final "success" job for each CI test suite
- That job can be used in branch protection rules
This commit is contained in:
7
.github/workflows/macos.yml
vendored
7
.github/workflows/macos.yml
vendored
@@ -92,3 +92,10 @@ jobs:
|
|||||||
n=$(nproc)
|
n=$(nproc)
|
||||||
echo "Using $n test jobs"
|
echo "Using $n test jobs"
|
||||||
${build_dir}/rippled --unittest --unittest-jobs $n
|
${build_dir}/rippled --unittest --unittest-jobs $n
|
||||||
|
|
||||||
|
success:
|
||||||
|
name: mac test success
|
||||||
|
needs: test
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- run: true
|
||||||
|
|||||||
7
.github/workflows/nix.yml
vendored
7
.github/workflows/nix.yml
vendored
@@ -163,6 +163,13 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
${build_dir}/rippled --unittest --unittest-jobs $(nproc)
|
${build_dir}/rippled --unittest --unittest-jobs $(nproc)
|
||||||
|
|
||||||
|
success:
|
||||||
|
name: nix test success
|
||||||
|
needs: test
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- run: true
|
||||||
|
|
||||||
coverage:
|
coverage:
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|||||||
7
.github/workflows/windows.yml
vendored
7
.github/workflows/windows.yml
vendored
@@ -95,3 +95,10 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
${build_dir}/${{ matrix.configuration.type }}/rippled --unittest \
|
${build_dir}/${{ matrix.configuration.type }}/rippled --unittest \
|
||||||
--unittest-jobs $(nproc)
|
--unittest-jobs $(nproc)
|
||||||
|
|
||||||
|
success:
|
||||||
|
name: windows test success
|
||||||
|
needs: test
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- run: true
|
||||||
|
|||||||
Reference in New Issue
Block a user