diff options
author | LKedward <laurence.kedward@bristol.ac.uk> | 2020-09-27 11:43:10 +0100 |
---|---|---|
committer | LKedward <laurence.kedward@bristol.ac.uk> | 2020-09-28 09:44:58 +0100 |
commit | d9dc4b4fc47182d60f9e18eda36478b9ca8f75fb (patch) | |
tree | 800bc9dd26c2206db004e89b567ca8278f7cac52 /ci/run_tests.bat | |
parent | 3f6c74ff3a9f009246634b860a5805be475749e2 (diff) | |
download | fpm-d9dc4b4fc47182d60f9e18eda36478b9ca8f75fb.tar.gz fpm-d9dc4b4fc47182d60f9e18eda36478b9ca8f75fb.zip |
Enable fpm CI tests for local path dependency demos
Diffstat (limited to 'ci/run_tests.bat')
-rwxr-xr-x | ci/run_tests.bat | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ci/run_tests.bat b/ci/run_tests.bat index ce79618..9c61d75 100755 --- a/ci/run_tests.bat +++ b/ci/run_tests.bat @@ -15,6 +15,7 @@ if errorlevel 1 exit 1 build\gfortran_debug\app\fpm if errorlevel 1 exit 1 + cd ..\test\example_packages\hello_world if errorlevel 1 exit 1 @@ -25,6 +26,23 @@ if errorlevel 1 exit 1 if errorlevel 1 exit 1 +cd ..\hello_fpm +if errorlevel 1 exit 1 + +..\..\..\fpm\build\gfortran_debug\app\fpm build +if errorlevel 1 exit 1 + +.\build\gfortran_debug\app\hello_fpm +if errorlevel 1 exit 1 + + +cd ..\circular_test +if errorlevel 1 exit 1 + +..\..\..\fpm\build\gfortran_debug\app\fpm build +if errorlevel 1 exit 1 + + cd ..\hello_complex if errorlevel 1 exit 1 |