diff --git a/.gitignore b/.gitignore index 342f6e8..f0de6e2 100644 --- a/.gitignore +++ b/.gitignore @@ -146,5 +146,4 @@ static .idea .vscode *.zarr -*.tar.gz -*.dat \ No newline at end of file +*.dat diff --git a/respondo/testdata/0_download_testdata.sh b/respondo/testdata/0_download_testdata.sh index e4f267f..2ee44b5 100755 --- a/respondo/testdata/0_download_testdata.sh +++ b/respondo/testdata/0_download_testdata.sh @@ -2,7 +2,7 @@ # taken from adcc repository, written by @mfherbst -SOURCE="https://wwwagdreuw.iwr.uni-heidelberg.de/respondo_test_data/0.3.0" +# SOURCE="https://wwwagdreuw.iwr.uni-heidelberg.de/respondo_test_data/0.3.0" DATAFILES=( data_0.3.0.tar.gz ) @@ -14,17 +14,20 @@ THISDIR=$(dirname "${BASH_SOURCE[0]}") cd "$THISDIR" echo "Updating testdata ... please wait." -download() { - if which wget &> /dev/null; then - echo $@ - wget -w 1 -qN --show-progress --no-check-certificate $@ - else - echo "wget not installed" >&2 - exit 1 - fi -} - -download $(for file in ${DATAFILES[@]}; do echo $SOURCE/$file; done) +# +# ToDo: temporary fix store testdata in repository. +# As soon as new server is online move testdata there +# download() { +# if which wget &> /dev/null; then +# echo $@ +# wget -w 1 -qN --show-progress --no-check-certificate $@ +# else +# echo "wget not installed" >&2 +# exit 1 +# fi +# } + +# download $(for file in ${DATAFILES[@]}; do echo $SOURCE/$file; done) if which sha256sum &> /dev/null; then sha256sum --ignore-missing -c SHA256SUMS || exit 1 @@ -34,4 +37,4 @@ for file in ${DATAFILES[@]}; do tar -xzf $file done -exit 0 +exit 0 \ No newline at end of file diff --git a/respondo/testdata/data_0.3.0.tar.gz b/respondo/testdata/data_0.3.0.tar.gz new file mode 100644 index 0000000..d1638f0 Binary files /dev/null and b/respondo/testdata/data_0.3.0.tar.gz differ