Browse Source

ci: stop generating vc2008 project files

If somebody needs them, they can revert this comment and send a PR
Or better use official msvs.py tool
pull/2/head
Alibek Omarov 3 years ago
parent
commit
ade0fd4afa
  1. 2
      .github/workflows/c-cpp.yml
  2. 10
      scripts/gha/build_win32.sh

2
.github/workflows/c-cpp.yml

@ -67,4 +67,4 @@ jobs: @@ -67,4 +67,4 @@ jobs:
run: bash scripts/continious_upload.sh xash3d-fwgs-${{ matrix.targetarch }}.AppImage xashds-linux-${{ matrix.targetarch }}
- name: Upload engine (windows)
if: matrix.targetos == 'win32'
run: bash scripts/continious_upload.sh xash3d-fwgs-win32-${{ matrix.targetarch }}.7z xash3d-fwgs-vc2008-sln-${{ matrix.targetarch }}.7z
run: bash scripts/continious_upload.sh xash3d-fwgs-win32-${{ matrix.targetarch }}.7z

10
scripts/gha/build_win32.sh

@ -25,13 +25,3 @@ else @@ -25,13 +25,3 @@ else
fi
7z a -t7z $BUILDDIR/xash3d-fwgs-win32-$ARCH.7z -m0=lzma2 -mx=9 -mfb=64 -md=32m -ms=on *.dll *.exe *.pdb
echo "Generating VC2008 project"
rm -rf vc2008/
mkdir vc2008/
./waf.bat msdev
cp *.sln vc2008/
find . -name "*.vcproj" -exec cp --parents \{\} vc2008/ \;
rm -rf vc2008/vc2008 # HACKHACK
7z a -t7z $BUILDDIR/xash3d-fwgs-vc2008-sln-$ARCH.7z -m0=lzma2 -mx=9 -mfb=64 -md=32m -ms=on -r vc2008

Loading…
Cancel
Save