check that tests are up-to-date in CI (#4373)

Enforce the `AllTests-mainnet.md` files and others to be up-to-date.
This commit is contained in:
Etan Kissling 2022-11-30 02:01:04 +01:00 committed by GitHub
parent 9572bb8721
commit c46dc3d7e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -615,4 +615,4 @@ OK: 2/2 Fail: 0/2 Skip: 0/2
OK: 9/9 Fail: 0/9 Skip: 0/9 OK: 9/9 Fail: 0/9 Skip: 0/9
---TOTAL--- ---TOTAL---
OK: 339/344 Fail: 0/344 Skip: 5/344 OK: 340/345 Fail: 0/345 Skip: 5/345

1
ci/Jenkinsfile vendored
View File

@ -63,6 +63,7 @@ pipeline {
stage('General') { stage('General') {
steps { timeout(60) { steps { timeout(60) {
sh 'make DISABLE_TEST_FIXTURES_SCRIPT=1 test' sh 'make DISABLE_TEST_FIXTURES_SCRIPT=1 test'
sh 'git diff --exit-code' /* Check no uncommitted changes. */
} } } }
} }