Compare commits

...

1 Commits

Author SHA1 Message Date
Ed Hennis
f1905a30cc Make a final "success" job for each CI test suite
- That job can be used in branch protection rules
2025-03-19 17:37:35 -04:00
3 changed files with 21 additions and 0 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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