Skip to content

Commit 71c8466

Browse files
committed
feat: wip: setup github actions
1 parent 958fc5a commit 71c8466

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/cli-smoke-test.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ function smoke-test {
2626
### verify help output
2727

2828
res=$(docker exec cement-cli-smoke-test /bin/bash -c "cement --version")
29-
echo "$res" | grep "Cement Framework $CEMENT_VERSION.\d"
30-
echo "$res" | grep "Python $pyver.\d"
29+
echo "$res" | grep "Cement Framework $CEMENT_VERSION.[0-9]"
30+
echo "$res" | grep "Python $pyver.[0-9]"
3131
echo "$res" | grep "Platform Linux.*"
3232
res=$(docker exec cement-cli-smoke-test /bin/bash -c "cement --help")
3333
echo "$res" | grep "Cement Framework Developer Tools"
@@ -53,8 +53,8 @@ function smoke-test {
5353
docker exec cement-cli-smoke-test /bin/bash -c "cd $tmp/myapp ; pip install setuptools"
5454
docker exec cement-cli-smoke-test /bin/bash -c "cd $tmp/myapp ; python setup.py install"
5555
res=$(docker exec -t cement-cli-smoke-test /bin/bash -c "myapp --version")
56-
echo "$res" | grep "Cement Framework $CEMENT_VERSION\.\d"
57-
echo "$res" | grep "Python $pyver.\d"
56+
echo "$res" | grep "Cement Framework $CEMENT_VERSION\.[0-9]"
57+
echo "$res" | grep "Python $pyver.[0-9]"
5858
echo "$res" | grep "Platform Linux.*"
5959

6060

0 commit comments

Comments
 (0)