From 421973fc3d50494149cf3b2a14181d5fef85a320 Mon Sep 17 00:00:00 2001 From: collin <16715212+collinc97@users.noreply.github.com> Date: Tue, 9 Aug 2022 15:58:13 -0700 Subject: [PATCH] add auction example to circleci --- .circleci/test-examples.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.circleci/test-examples.sh b/.circleci/test-examples.sh index 7364e58676..f1c3923b31 100755 --- a/.circleci/test-examples.sh +++ b/.circleci/test-examples.sh @@ -1,6 +1,6 @@ -# Build and run the helloworld Leo program. +# Build and run the auction Leo program. ( - cd ./project/examples/helloworld || exit + cd ./project/examples/auction || exit $LEO run main ) @@ -22,6 +22,12 @@ $LEO run main ) +# Build and run the helloworld Leo program. +( + cd ./project/examples/helloworld || exit + $LEO run main +) + # Build and run the import point example Leo program. ( cd ./project/examples/import_point || exit