diff options
author | Brad Richardson <everythingfunctional@protonmail.com> | 2020-10-22 14:12:37 -0500 |
---|---|---|
committer | Brad Richardson <everythingfunctional@protonmail.com> | 2020-10-22 14:12:37 -0500 |
commit | f196336df68d0431876d558352149d009935a05a (patch) | |
tree | 8f4b745772ca8985ddca1ecc069c3997c1149d87 /ci | |
parent | 39cca4d6f55a9c1e666f98544a5ccb10a8d84334 (diff) | |
download | fpm-f196336df68d0431876d558352149d009935a05a.tar.gz fpm-f196336df68d0431876d558352149d009935a05a.zip |
Fix CI scripts
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/run_tests.bat | 6 | ||||
-rwxr-xr-x | ci/run_tests.sh | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/ci/run_tests.bat b/ci/run_tests.bat index 517ff06..7d0b178 100755 --- a/ci/run_tests.bat +++ b/ci/run_tests.bat @@ -28,7 +28,7 @@ if errorlevel 1 exit 1 cd ..\hello_fpm if errorlevel 1 exit 1 -..\..\..\fpm\build\gfortran_debug\app\fpm build +..\..\fpm\build\gfortran_debug\app\fpm build if errorlevel 1 exit 1 .\build\gfortran_debug\app\hello_fpm @@ -38,14 +38,14 @@ if errorlevel 1 exit 1 cd ..\circular_test if errorlevel 1 exit 1 -..\..\..\fpm\build\gfortran_debug\app\fpm build +..\..\fpm\build\gfortran_debug\app\fpm build if errorlevel 1 exit 1 cd ..\circular_example if errorlevel 1 exit 1 -..\..\..\fpm\build\gfortran_debug\app\fpm build +..\..\fpm\build\gfortran_debug\app\fpm build if errorlevel 1 exit 1 diff --git a/ci/run_tests.sh b/ci/run_tests.sh index 4ba590a..a42653b 100755 --- a/ci/run_tests.sh +++ b/ci/run_tests.sh @@ -13,14 +13,14 @@ cd ../example_packages/hello_world ./build/gfortran_debug/app/hello_world cd ../hello_fpm -../../../fpm/build/gfortran_debug/app/fpm build +../../fpm/build/gfortran_debug/app/fpm build ./build/gfortran_debug/app/hello_fpm cd ../circular_test -../../../fpm/build/gfortran_debug/app/fpm build +../../fpm/build/gfortran_debug/app/fpm build cd ../circular_example -../../../fpm/build/gfortran_debug/app/fpm build +../../fpm/build/gfortran_debug/app/fpm build cd ../hello_complex ../../fpm/build/gfortran_debug/app/fpm build |