From c46dc3d7e8ea792ff465cab075f8721cca3f4765 Mon Sep 17 00:00:00 2001 From: Etan Kissling Date: Wed, 30 Nov 2022 02:01:04 +0100 Subject: [PATCH] check that tests are up-to-date in CI (#4373) Enforce the `AllTests-mainnet.md` files and others to be up-to-date. --- AllTests-mainnet.md | 2 +- ci/Jenkinsfile | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AllTests-mainnet.md b/AllTests-mainnet.md index e329e75cf..45dcd822b 100644 --- a/AllTests-mainnet.md +++ b/AllTests-mainnet.md @@ -615,4 +615,4 @@ OK: 2/2 Fail: 0/2 Skip: 0/2 OK: 9/9 Fail: 0/9 Skip: 0/9 ---TOTAL--- -OK: 339/344 Fail: 0/344 Skip: 5/344 +OK: 340/345 Fail: 0/345 Skip: 5/345 diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 68fc87aad..b2013fb79 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -63,6 +63,7 @@ pipeline { stage('General') { steps { timeout(60) { sh 'make DISABLE_TEST_FIXTURES_SCRIPT=1 test' + sh 'git diff --exit-code' /* Check no uncommitted changes. */ } } }