fix XP support.

This commit is contained in:
Jean-François DEL NERO
2025-03-22 09:02:47 +01:00
parent 6035aef53b
commit fc456ea3d8
+2 -2
View File
@@ -20,11 +20,11 @@ jobs:
run: sudo apt install -q -y libx11-dev libfreetype6 libfreetype6-dev libxft-dev libxft2 && cd build && make tests -j2
build-windows-x86:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@main
- name: Build
run: sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu/ focal main universe" && sudo apt install -q -y mingw-w64=7.0.0-2 && cd build && make TARGET=mingw32 -j2
run: sudo apt install -q -y mingw-w64 && cd build && make TARGET=mingw32 -j2
- name: Package
run: cd build && ./windowscreatezip.sh _x86
- uses: actions/upload-artifact@main