Add vktool to the CI builds
This commit is contained in:
parent
d435c9c144
commit
fab7ec0ad1
1 changed files with 5 additions and 2 deletions
7
.github/workflows/continuous_integration.yml
vendored
7
.github/workflows/continuous_integration.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue