build: test AlterWare build
All checks were successful
Build / build-linux (push) Successful in 8s

This commit is contained in:
6arelyFuture 2024-06-11 09:25:58 +00:00
parent e01ef5d8ec
commit 8bc664f294

View File

@ -7,6 +7,17 @@ mkdir build
cd build
mkdir iw4
mkdir iw5
mkdir iw5x
# IW4x
cd iw4
mkdir scripts
cd scripts
mkdir mp
cd ..
cd ..
# Plutonium
cd iw5
mkdir mp
mkdir scripts
@ -14,23 +25,42 @@ cd scripts
mkdir mp
cd ..
cd ..
# Alterware
cd iw5x
mkdir mp
mkdir scripts
cd scripts
mkdir mp
cd ..
cd ..
# exit build dir
cd ..
# ready for release
cp iw4/scripts/mp/_jump.gsc build/iw4
cp iw4/scripts/mp/_jump.gsc build/iw4/scripts/mp
echo "Created release for IW4"
# replace gsc extension with c. It will make gcc very happy
mv iw5/scripts/mp/_jump.gsc iw5/scripts/mp/_jump.c
# perform macro expansion (.in extension is from a Stack Overflow post)
gcc -D_UTILITY_DEBUG -DIW5 -DCI -E "iw5/scripts/mp/_jump.c" -o _jump.in
gcc -D_UTILITY_DEBUG -DIW5 -DCI -E "iw5/scripts/mp/_jump.c" -o _jump_plutonium.in
gcc -D_UTILITY_DEBUG -DIW5x -DCI -E "iw5/scripts/mp/_jump.c" -o _jump_alterware.in
# remove things gcc added to the file that we do not need
python3 .gitea/scripts/clean.py _jump.in _jump.gsc
python3 .gitea/scripts/clean.py _jump_plutonium.in _jump_plutonium.gsc
python3 .gitea/scripts/clean.py _jump_alterware.in _jump_alterware.gsc
# ready for release
mv _jump.gsc build/iw5/scripts/mp/_jump.gsc
mv _jump_plutonium.gsc build/iw5/scripts/mp/_jump.gsc
mv _jump_alterware.gsc build/iw5x/scripts/mp/_jump.gsc
cp iw5/mp/perkTable.csv build/iw5/mp
cp iw5/mp/perkTable.csv build/iw5x/mp
echo "Created release for IW5"