first attempt to run tests on windows
parent
1411c5e8aa
commit
55f1b0d48e
@ -1,52 +1,48 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
DF_FOLDER=$1
|
||||||
|
OS_TARGET=$2
|
||||||
|
DF_VERSION=$3
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
df_tardest="df.tar.bz2"
|
minor=$(echo "$DF_VERSION" | cut -d. -f1)
|
||||||
save_tardest="test_save.tgz"
|
patch=$(echo "$DF_VERSION" | cut -d. -f2)
|
||||||
|
df_url="https://www.bay12games.com/dwarves/df_${minor}_${patch}"
|
||||||
cd "$(dirname "$0")"
|
if test "$OS_TARGET" = "windows"; then
|
||||||
echo "DF_VERSION: $DF_VERSION"
|
df_url="${df_url}_win_s.zip"
|
||||||
echo "DF_FOLDER: $DF_FOLDER"
|
df_archive_name="df.zip"
|
||||||
mkdir -p "$DF_FOLDER"
|
df_extract_cmd="unzip -d ${DF_FOLDER}"
|
||||||
# back out of df_linux
|
elif test "$OS_TARGET" = "linux"; then
|
||||||
cd "$DF_FOLDER/.."
|
df_url="${df_url}_linux.tar.bz2"
|
||||||
|
df_archive_name="df.tar.bz2"
|
||||||
if ! test -f "$df_tardest"; then
|
df_extract_cmd="tar -x -j --strip-components=1 -f"
|
||||||
minor=$(echo "$DF_VERSION" | cut -d. -f2)
|
else
|
||||||
patch=$(echo "$DF_VERSION" | cut -d. -f3)
|
echo "Unhandled OS target: ${OS_TARGET}"
|
||||||
echo "Downloading DF $DF_VERSION"
|
|
||||||
while read url; do
|
|
||||||
echo "Attempting download: ${url}"
|
|
||||||
if wget -v "$url" -O "$df_tardest"; then
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
done <<URLS
|
|
||||||
https://www.bay12games.com/dwarves/df_${minor}_${patch}_linux.tar.bz2
|
|
||||||
https://files.dfhack.org/DF/${minor}.${patch}/df_${minor}_${patch}_linux.tar.bz2
|
|
||||||
URLS
|
|
||||||
echo $df_tardest
|
|
||||||
if ! test -f "$df_tardest"; then
|
|
||||||
echo "DF failed to download: $df_tardest not found"
|
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Downloading test save"
|
if ! wget -v "$df_url" -O "$df_archive_name"; then
|
||||||
#test_save_url="https://files.dfhack.org/DF/0.${minor}.${patch}/test_save.tgz"
|
echo "Failed to download DF from $df_url"
|
||||||
test_save_url="https://drive.google.com/uc?export=download&id=1XvYngl-DFONiZ9SD9OC4B2Ooecu8rPFz"
|
|
||||||
if ! wget -v "$test_save_url" -O "$save_tardest"; then
|
|
||||||
echo "failed to download test save"
|
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
|
||||||
echo $save_tardest
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
rm -rf df_linux
|
save_url="https://dffd.bay12games.com/download.php?id=15434&f=dreamfort.7z"
|
||||||
mkdir -p df_linux/save
|
save_archive_name="test_save.7z"
|
||||||
|
save_extract_cmd="7z x -oDF/save"
|
||||||
|
|
||||||
|
if ! wget -v "$save_url" -O "$save_archive_name"; then
|
||||||
|
echo "Failed to download test save from $save_url"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
echo Extracting
|
echo Extracting
|
||||||
tar xf "$df_tardest" --strip-components=1 -C df_linux
|
$df_extract_cmd "$df_archive_name"
|
||||||
tar xf "$save_tardest" -C df_linux/save
|
$save_extract_cmd "$save_archive_name"
|
||||||
|
mv DF/save/* DF/save/region1
|
||||||
|
|
||||||
echo Done
|
echo Done
|
||||||
|
|
||||||
ls -l
|
ls -l
|
||||||
|
|
||||||
|
md5sum "$df_archive_name" "$save_archive_name"
|
||||||
|
Loading…
Reference in New Issue