aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorLaurence Kedward <laurence.kedward@bristol.ac.uk>2020-10-28 15:37:34 +0000
committerGitHub <noreply@github.com>2020-10-28 15:37:34 +0000
commitc5b80a3ce0503d12d3a9fea5b520ca9ab5ac0479 (patch)
treea595ddd22c73dd7b02b9ac8962ef1ef547cc1cf4 /ci
parenta22ce1c6b6921cbc86d0eca57256910fe8926439 (diff)
parent9d5b03d192e50831e2046c7843174dff5ca2a37a (diff)
downloadfpm-c5b80a3ce0503d12d3a9fea5b520ca9ab5ac0479.tar.gz
fpm-c5b80a3ce0503d12d3a9fea5b520ca9ab5ac0479.zip
Merge pull request #204 from urbanjost/more_issues_for_new
More issues for new
Diffstat (limited to 'ci')
-rwxr-xr-xci/run_tests.bat2
-rwxr-xr-xci/run_tests.sh2
2 files changed, 4 insertions, 0 deletions
diff --git a/ci/run_tests.bat b/ci/run_tests.bat
index 7d0b178..de45f24 100755
--- a/ci/run_tests.bat
+++ b/ci/run_tests.bat
@@ -9,8 +9,10 @@ if errorlevel 1 exit 1
fpm run
if errorlevel 1 exit 1
+rmdir fpm_scratch_* /s /q
fpm test
if errorlevel 1 exit 1
+rmdir fpm_scratch_* /s /q
build\gfortran_debug\app\fpm
if errorlevel 1 exit 1
diff --git a/ci/run_tests.sh b/ci/run_tests.sh
index a42653b..4f293e2 100755
--- a/ci/run_tests.sh
+++ b/ci/run_tests.sh
@@ -5,7 +5,9 @@ set -ex
cd fpm
fpm build
fpm run
+rm -rf fpm_scratch_*/
fpm test
+rm -rf fpm_scratch_*/
build/gfortran_debug/app/fpm
cd ../example_packages/hello_world