diff options
author | Ondřej Čertík <ondrej@certik.us> | 2020-07-21 16:56:44 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-21 16:56:44 -0600 |
commit | 66e46f578b209eee42b9420a12550a8de0ca3e10 (patch) | |
tree | d85fc31f6f3a48c64205b33473c8fd55eb916de2 /ci/run_tests.sh | |
parent | 661d30f4cc8b8bf4b702c3a8d71b6add86915e16 (diff) | |
parent | 3bd6db28fbd1392c2c883b48e7beb783114d0d06 (diff) | |
download | fpm-66e46f578b209eee42b9420a12550a8de0ca3e10.tar.gz fpm-66e46f578b209eee42b9420a12550a8de0ca3e10.zip |
Merge pull request #140 from certik/ex
Build hello_world
Diffstat (limited to 'ci/run_tests.sh')
-rwxr-xr-x | ci/run_tests.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ci/run_tests.sh b/ci/run_tests.sh new file mode 100755 index 0000000..8f99a2c --- /dev/null +++ b/ci/run_tests.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +set -ex + +cd fpm +fpm build +fpm run +fpm run --args build +cd ../test/example_packages/hello_world +../../../fpm/fpm build +./hello_world |