CI: Merge 32- and 64-bit MinGW builds

This commit is contained in:
numzero 2023-07-02 22:21:47 +03:00 committed by sfan5
parent 03fd4ff533
commit dc43583a2c
1 changed files with 17 additions and 28 deletions

View File

@ -137,49 +137,38 @@ jobs:
cd bin/Linux cd bin/Linux
LIBGL_ALWAYS_SOFTWARE=true xvfb-run ./AutomatedTest ogles2 LIBGL_ALWAYS_SOFTWARE=true xvfb-run ./AutomatedTest ogles2
win32: mingw:
name: MinGW ${{matrix.config.arch}}
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
config:
-
bits: 32
arch: i686
-
bits: 64
arch: x86_64
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Install compiler - name: Install compiler
run: | run: |
sudo apt-get update && sudo apt-get install cmake -qyy sudo apt-get update && sudo apt-get install cmake -qyy
wget http://minetest.kitsunemimi.pw/mingw-w64-i686_11.2.0_ubuntu20.04.tar.xz -O mingw.tar.xz wget http://minetest.kitsunemimi.pw/mingw-w64-${{matrix.config.arch}}_11.2.0_ubuntu20.04.tar.xz -O mingw.tar.xz
sudo tar -xaf mingw.tar.xz -C /usr sudo tar -xaf mingw.tar.xz -C /usr
- name: Build - name: Build
run: | run: |
./scripts/ci-build-mingw.sh package ./scripts/ci-build-mingw.sh package
env: env:
CC: i686-w64-mingw32-gcc CC: ${{matrix.config.arch}}-w64-mingw32-gcc
CXX: i686-w64-mingw32-g++ CXX: ${{matrix.config.arch}}-w64-mingw32-g++
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v3
with: with:
name: irrlicht-win32 name: irrlicht-win${{matrix.config.bits}}
path: ./irrlicht-win32.zip path: ./irrlicht-win${{matrix.config.bits}}.zip
win64:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Install compiler
run: |
sudo apt-get update && sudo apt-get install cmake -qyy
wget http://minetest.kitsunemimi.pw/mingw-w64-x86_64_11.2.0_ubuntu20.04.tar.xz -O mingw.tar.xz
sudo tar -xaf mingw.tar.xz -C /usr
- name: Build
run: |
./scripts/ci-build-mingw.sh package
env:
CC: x86_64-w64-mingw32-gcc
CXX: x86_64-w64-mingw32-g++
- uses: actions/upload-artifact@v3
with:
name: irrlicht-win64
path: ./irrlicht-win64.zip
macos: macos:
runs-on: macos-latest runs-on: macos-latest