From 734f021b165109e8976e114a811dea82d44cddc5 Mon Sep 17 00:00:00 2001 From: Shebin John Date: Mon, 15 Jul 2024 15:51:00 +0200 Subject: [PATCH] Adding CI workflow --- .../certora/scripts/verifySignatureLengthCheck.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 modules/4337/certora/scripts/verifySignatureLengthCheck.sh diff --git a/modules/4337/certora/scripts/verifySignatureLengthCheck.sh b/modules/4337/certora/scripts/verifySignatureLengthCheck.sh new file mode 100755 index 000000000..702f55feb --- /dev/null +++ b/modules/4337/certora/scripts/verifySignatureLengthCheck.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +params=() + +if [[ -n "$CI" ]]; then + params=("--wait_for_results") +fi + +certoraRun certora/conf/SignatureLengthCheck.conf \ + "${params[@]}" \ + "$@" +