summaryrefslogtreecommitdiff
path: root/ci/scripts/validate-workflow.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ci/scripts/validate-workflow.sh')
-rwxr-xr-xci/scripts/validate-workflow.sh26
1 files changed, 0 insertions, 26 deletions
diff --git a/ci/scripts/validate-workflow.sh b/ci/scripts/validate-workflow.sh
deleted file mode 100755
index 3614953ee3..0000000000
--- a/ci/scripts/validate-workflow.sh
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/bash
-
-set -euo pipefail
-
-cd deps/${project}
-
-trap 'catch $?' EXIT
-
-catch() {
- rm expected_suites.txt actual_suites.txt
-}
-
-touch expected_suites.txt
-for arg in "$@"; do
- echo "test/${arg}_SUITE.erl" >> expected_suites.txt
-done
-sort -o expected_suites.txt expected_suites.txt
-
-touch actual_suites.txt
-for f in test/*_SUITE.erl; do
- echo "$f" >> actual_suites.txt
-done
-sort -o actual_suites.txt actual_suites.txt
-
-set -x
-diff actual_suites.txt expected_suites.txt