Skip to content

Commit

Permalink
Add vktool to the CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
dpjudas committed Jan 19, 2025
1 parent d435c9c commit fab7ec0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,17 @@ jobs:
cd build
mkdir package
if [[ "${{ runner.os }}" == 'Windows' ]]; then
cp -r ${{ matrix.config.build_type }}/vkdoom.exe ${{ matrix.config.build_type }}/*.pk3 ${{ matrix.config.build_type }}/fm_banks ${{ matrix.config.build_type }}/soundfonts package
cp -r ${{ matrix.config.build_type }}/vkdoom.exe ${{ matrix.config.build_type }}/vktool.exe ${{ matrix.config.build_type }}/*.pk3 ${{ matrix.config.build_type }}/fm_banks ${{ matrix.config.build_type }}/soundfonts package
cp ../bin/licenses.zip ../bin/windows/libsndfile/64bit/libsndfile-1.dll ../bin/windows/openal/64bit/openal32.dll ../bin/windows/zmusic/64bit/zmusic.dll package
cp ${{ matrix.config.build_type }}/vkdoom-stripped.pdb package/vkdoom.pdb
cp ${{ matrix.config.build_type }}/vkdoom-stripped.pdb package/vktool.pdb
elif [[ "${{ runner.os }}" == 'macOS' ]]; then
cp -r vkdoom.app package
cp -r vktool package
elif [[ "${{ runner.os }}" == 'Linux' ]]; then
cp vkdoom *.pk3 package
cp vkdoom vktool *.pk3 package
strip package/vkdoom
strip package/vktool
fi
- name: Upload Package
Expand Down

0 comments on commit fab7ec0

Please sign in to comment.