diff --git a/tests/smoke/runtest.sh b/tests/smoke/runtest.sh new file mode 100755 index 0000000..2c8c03e --- /dev/null +++ b/tests/smoke/runtest.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +set -e + +echo 'main = return ()' > test.hs +ghc test.hs && ./test diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..c238f24 --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,11 @@ +--- +- hosts: localhost + tags: + - classic + roles: + - role: standard-test-basic + required_packages: + - ghc + tests: + - smoke +...