From bc91986e8e703e822776ddb6b73af383dea4e6c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20B=20Nagy?= <20251272+BNAndras@users.noreply.github.com> Date: Sun, 23 Jun 2024 23:17:59 -0700 Subject: [PATCH] Whitelist binary/binary-string for CI --- bin/verify-exercises | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/bin/verify-exercises b/bin/verify-exercises index 47e8686..9db31d2 100755 --- a/bin/verify-exercises +++ b/bin/verify-exercises @@ -8,7 +8,13 @@ run_test() { mkdir -p ${temp_dir} cp -r "$1/." $temp_dir - cp $temp_dir/.meta/example.lfe $temp_dir/src/$slug.lfe + + outpath=$temp_dir/src/$slug.lfe + if [ "$slug" = "binary" ]; then + outpath=$temp_dir/src/binary-string.lfe + fi + + cp $temp_dir/.meta/example.lfe $outpath (cd /opt/test-runner && bin/run.sh $slug $temp_dir $temp_dir) || exit 1