aboutsummaryrefslogtreecommitdiff
path: root/ci/run_tests.sh
diff options
context:
space:
mode:
authorSebastian Ehlert <28669218+awvwgk@users.noreply.github.com>2020-11-29 12:53:38 +0100
committerSebastian Ehlert <28669218+awvwgk@users.noreply.github.com>2020-12-10 18:47:51 +0100
commit738300b515d5e9a9630a3e4abed72d728bcdaa3b (patch)
tree07619bfdc7c140f5a587acb92185ddd82a5d957c /ci/run_tests.sh
parent4977652445ebecd595a32cf70ae3be56759ea57a (diff)
downloadfpm-738300b515d5e9a9630a3e4abed72d728bcdaa3b.tar.gz
fpm-738300b515d5e9a9630a3e4abed72d728bcdaa3b.zip
Let fpm install itself on CI-runs
Diffstat (limited to 'ci/run_tests.sh')
-rwxr-xr-xci/run_tests.sh10
1 files changed, 9 insertions, 1 deletions
diff --git a/ci/run_tests.sh b/ci/run_tests.sh
index 7412fba..8229d54 100755
--- a/ci/run_tests.sh
+++ b/ci/run_tests.sh
@@ -15,12 +15,20 @@ rm -rf fpm_scratch_*/
fpm test $@
rm -rf fpm_scratch_*/
-# Build example packages
f_fpm_path="$(fpm run $@ --runner echo)"
+
+# Let fpm build itself
+"${f_fpm_path}" build
+
+# Install fpm into local directory
+"${f_fpm_path}" install --prefix "$PWD/_dist" --no-rebuild
+
+# Build example packages
cd ../example_packages/
rm -rf ./*/build
cd hello_world
+
"${f_fpm_path}" build
./build/gfortran_debug/app/hello_world
"${f_fpm_path}" run