Skip to content

Commit

Permalink
Whitelist binary/binary-string for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
BNAndras committed Jun 24, 2024
1 parent f91c2dd commit bc91986
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion bin/verify-exercises
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit bc91986

Please sign in to comment.