mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
Add windows 32bit build releases
32bits build has disabled ffmpeg videos support
This commit is contained in:
parent
ee5d131b9c
commit
80edb06b79
1 changed files with 61 additions and 3 deletions
64
.github/workflows/windows.yml
vendored
64
.github/workflows/windows.yml
vendored
|
@ -5,7 +5,7 @@ on:
|
||||||
tags:
|
tags:
|
||||||
- "*"
|
- "*"
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build64:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
@ -48,8 +48,8 @@ jobs:
|
||||||
# remove unused libraries
|
# remove unused libraries
|
||||||
rm -fv release/avdevice*.dll release/avfilter*.dll release/postproc*.dll
|
rm -fv release/avdevice*.dll release/avfilter*.dll release/postproc*.dll
|
||||||
# static SDL2
|
# static SDL2
|
||||||
wget -c https://github.com/libsdl-org/SDL/releases/download/release-2.28.5/SDL2-2.28.5-win32-x64.zip
|
wget -c https://github.com/libsdl-org/SDL/releases/download/release-2.30.1/SDL2-2.30.1-win32-x64.zip
|
||||||
unzip -o SDL2-2.28.5-win32-x64.zip
|
unzip -o SDL2-2.30.1-win32-x64.zip
|
||||||
cp SDL2.dll release/
|
cp SDL2.dll release/
|
||||||
# static openal
|
# static openal
|
||||||
wget -c https://www.openal-soft.org/openal-binaries/openal-soft-1.23.1-bin.zip
|
wget -c https://www.openal-soft.org/openal-binaries/openal-soft-1.23.1-bin.zip
|
||||||
|
@ -68,3 +68,61 @@ jobs:
|
||||||
with:
|
with:
|
||||||
files: |
|
files: |
|
||||||
yquake2remaster-${{matrix.env}}-${{github.ref_name}}.zip
|
yquake2remaster-${{matrix.env}}-${{github.ref_name}}.zip
|
||||||
|
build32:
|
||||||
|
runs-on: windows-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- { sys: mingw32, env: i686 }
|
||||||
|
steps:
|
||||||
|
- uses: msys2/setup-msys2@v2
|
||||||
|
with:
|
||||||
|
msystem: ${{matrix.sys}}
|
||||||
|
update: true
|
||||||
|
install: >-
|
||||||
|
git
|
||||||
|
make
|
||||||
|
zip
|
||||||
|
unzip
|
||||||
|
mingw-w64-${{matrix.env}}-curl
|
||||||
|
mingw-w64-${{matrix.env}}-ffmpeg
|
||||||
|
mingw-w64-${{matrix.env}}-gcc
|
||||||
|
mingw-w64-${{matrix.env}}-make
|
||||||
|
mingw-w64-${{matrix.env}}-openal
|
||||||
|
mingw-w64-${{matrix.env}}-SDL2
|
||||||
|
mingw-w64-${{matrix.env}}-vulkan-headers
|
||||||
|
mingw-w64-${{matrix.env}}-wget
|
||||||
|
- name: Check out repository code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Build Release code
|
||||||
|
shell: msys2 {0}
|
||||||
|
run: |
|
||||||
|
sed -i 's|WITH_AVCODEC:=yes|WITH_AVCODEC:=no|g' Makefile
|
||||||
|
make
|
||||||
|
- name: Create release package
|
||||||
|
shell: msys2 {0}
|
||||||
|
run: |
|
||||||
|
# copy docs
|
||||||
|
cp -rv stuff/mapfixes/* LICENSE README.md doc release/
|
||||||
|
# static SDL2
|
||||||
|
wget -c https://github.com/libsdl-org/SDL/releases/download/release-2.30.1/SDL2-2.30.1-win32-x86.zip
|
||||||
|
unzip -o SDL2-2.30.1-win32-x86.zip
|
||||||
|
cp SDL2.dll release/
|
||||||
|
# static openal
|
||||||
|
wget -c https://www.openal-soft.org/openal-binaries/openal-soft-1.23.1-bin.zip
|
||||||
|
unzip -o openal-soft-1.23.1-bin.zip
|
||||||
|
cp openal-soft-1.23.1-bin/bin/Win32/soft_oal.dll release/OpenAL32.dll
|
||||||
|
# static curl
|
||||||
|
wget -c https://curl.se/windows/dl-8.5.0_3/curl-8.5.0_3-win32-mingw.zip
|
||||||
|
unzip -o curl-8.5.0_3-win32-mingw.zip
|
||||||
|
cp curl-8.5.0_3-win32-mingw/bin/libcurl.dll release/curl.dll
|
||||||
|
# create archive
|
||||||
|
mkdir yquake2remaster-${{matrix.env}}-${{github.ref_name}}
|
||||||
|
cp -rv release/* yquake2remaster-${{matrix.env}}-${{github.ref_name}}
|
||||||
|
zip -9r yquake2remaster-${{matrix.env}}-${{github.ref_name}}.zip yquake2remaster-${{matrix.env}}-${{github.ref_name}}
|
||||||
|
- name: Upload Release Asset
|
||||||
|
uses: softprops/action-gh-release@v1
|
||||||
|
with:
|
||||||
|
files: |
|
||||||
|
yquake2remaster-${{matrix.env}}-${{github.ref_name}}.zip
|
||||||
|
|
Loading…
Reference in a new issue