Update the CLI testing script CI pipeline

This commit is contained in:
Matej Sima 2019-09-25 10:52:26 +02:00
parent 9053a74999
commit c60a02942b
2 changed files with 4 additions and 2 deletions

View File

@ -111,7 +111,7 @@ build-and-publish-latest-docker-image:
<<: *docker_build
after_script:
- docker login -u $LIGO_REGISTRY_USER -p $LIGO_REGISTRY_PASSWORD
- scripts/test_cli.sh
- sh scripts/test_cli.sh
- docker push $LIGO_REGISTRY_IMAGE:next
only:
- dev

View File

@ -115,3 +115,5 @@ if [ "$dry_run_output" != "$expected_dry_run_output" ]; then
echo "Expected $expected_dry_run_output as dry-run output, got $dry_run_output instead";
exit 1;
fi
echo "CLI tests passed";